@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #EEEDE2;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.gloabal {
  overflow: hidden;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

/* 共通パーツ */
.section-width {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.section-width-md {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

/*
コンテンツ幅を設定するための共通クラス
*/
.wrapper {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

/*
  セクションタイトル用の共通クラス
  */
.section-ttl {
  font-size: 4rem;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 896px) {
  .section-ttl {
    font-size: 2.4rem;
  }
}

/* 疑似要素でタイトル下に下線を引く */
.section-title::after {
  content: "";
  width: 100px;
  height: 3px;
  background-color: #333;
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.button-sp-wrap {
  display: none;
}
@media screen and (max-width: 1025px) {
  .button-sp-wrap {
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    font-size: 50px;
    color: #fff;
    background: #FFEA00;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 30;
    /*デフォルトで非表示にする*/
    opacity: 0;
    visibility: hidden;
  }
}

/*このクラスが付与されると表示する*/
.active {
  opacity: 1;
  visibility: visible;
}

.button-sp-link {
  text-align: center;
  width: 50%;
}
.button-sp-link:first-child {
  border-right: 1px solid black;
}
.button-sp-link > p {
  font-size: 1.3rem;
  color: #000;
  margin-top: -10px;
}
.button-sp-link-img > img {
  width: 25px;
  height: 25px;
  position: relative;
  bottom: 20px;
}

.section-width-under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1200px;
  margin: 0 auto 100px;
  width: 90%;
}
@media screen and (max-width: 896px) {
  .section-width-under {
    margin: 0 auto 50px;
  }
}

.under-ttl {
  font-size: 8rem;
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1025px) {
  .under-ttl {
    font-size: 4rem;
    margin-bottom: 20px;
    margin-top: 130px;
  }
}
@media screen and (max-width: 896px) {
  .under-ttl {
    font-size: 2.6rem;
  }
}
.under-ttl > h2 > img {
  width: 80px;
}
@media screen and (max-width: 896px) {
  .under-ttl > h2 > img {
    width: 30px;
  }
}

.pan__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pan__ul > li {
  margin-right: 10px;
  font-size: 1.4rem;
}
.pan__ul > li > a {
  color: #000;
  font-size: 1.4rem;
}

.under-main-ttl {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.under-main-txt {
  font-size: 2rem;
  margin-bottom: 40px;
}
.under-main-txt-top {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: 500;
}

.under-main-des {
  font-size: 1.6rem;
  font-weight: 500;
}

.sub-blk {
  margin-top: 60px;
}
.sub-blk-txt {
  margin-bottom: 20px;
}
.sub-blk-txt > a {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 20px;
}

.tel {
  color: #000;
}

.mail {
  color: #000;
}