@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;
}

/* 共通パーツ */
.breadcrumbs {
  font-size: 14px;
  margin-top: 20px;
}

.home {
  color: #000 !important;
}

.archive {
  color: #000;
}

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

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

.pan__ul {
  margin-top: 20px;
}
@media screen and (max-width: 896px) {
  .pan__ul {
    margin-top: 0;
  }
}

/*
コンテンツ幅を設定するための共通クラス
*/
.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;
}

.header,
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 200px;
  background: #eee;
}

.appeal-wrap {
  margin-top: 60px;
}

.appeal-ttl > h3 {
  font-size: 3.4rem;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1367px) {
  .appeal-ttl > h3 {
    font-size: 2.6rem;
  }
}

.appeal-txt {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-top: 40px;
}

.appeal-img {
  width: 800px;
  margin: 60px auto;
}
@media screen and (max-width: 1367px) {
  .appeal-img {
    width: 90%;
  }
}
.appeal-img > img {
  width: 100%;
}

.search__wrap.under {
  position: fixed;
  bottom: 10%;
  right: 1%;
  z-index: 10;
}
@media screen and (max-width: 1367px) {
  .search__wrap.under {
    right: 0;
  }
}
@media screen and (max-width: 896px) {
  .search__wrap.under {
    display: none;
  }
}
.search__wrap.under-detail {
  position: fixed;
  bottom: 10%;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 896px) {
  .search__wrap.under-detail {
    display: none;
  }
}

.tag-bl {
  width: 30%;
  background-color: #000;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  padding: 5px 15px;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  margin-right: 2%;
}
.tag-bl:last-child {
  margin-right: 0;
}
.tag-bl-under {
  background-color: #000;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  padding: 6px 15px;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  margin-right: 1%;
  margin-bottom: 10px;
}

.main-sec {
  position: relative;
}

.icon01 {
  position: absolute;
  top: 20%;
  right: -10%;
}
@media screen and (max-width: 1500px) {
  .icon01 {
    right: 0;
    top: -4%;
  }
}
@media screen and (max-width: 896px) {
  .icon01 {
    top: -3%;
    z-index: -1;
  }
}

.eria__blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 896px) {
  .eria__blk {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
    width: 100%;
  }
}
@media screen and (max-width: 896px) {
  .eria__blk:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.eria__blk-wrap {
  margin-top: 100px;
  position: relative;
}
.eria__blk-li {
  width: 45%;
  margin-bottom: 60px;
}
@media screen and (max-width: 896px) {
  .eria__blk-li {
    width: 100%;
    margin-bottom: 24px;
  }
}
.eria__blk-li:first-child {
  margin-right: 50px;
}
.eria__blk-ttl {
  font-size: 3rem;
  margin-bottom: 30px;
}
.eria__txt {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.wid-bg {
  width: 60%;
}
@media screen and (max-width: 896px) {
  .wid-bg {
    width: 100%;
  }
}

.main-three {
  max-width: 1000px;
  width: 90%;
  margin: 100px auto 0;
}
@media screen and (max-width: 896px) {
  .main-three {
    margin: 50px auto 0;
  }
}

.local__blk-wrap {
  margin-top: 60px;
}
@media screen and (max-width: 896px) {
  .local__blk-wrap {
    margin-top: 30px;
  }
}
.local__blk-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 896px) {
  .local__blk-ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.local__blk-ul > li {
  padding: 30px 20px;
  border: 2px solid black;
  width: 31%;
  margin-right: 2%;
  background-color: white;
}
@media screen and (max-width: 896px) {
  .local__blk-ul > li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.local__blk-ul > li:last-child {
  margin-right: 0;
}
.local__blk-ul > li > p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: auto;
}
.local__blk-subttl {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.local__blk-ttl {
  text-align: center;
  font-size: 2.2rem;
}
.local__img {
  text-align: center;
}

.feature-bg {
  background-image: url(../img/top-main.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 950px;
  position: relative;
}
@media screen and (max-width: 896px) {
  .feature-bg {
    height: 450px;
  }
}
.feature-bg__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.feature-bg__ttl > h3 {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .feature-bg__ttl > h3 {
    height: 300px;
  }
}
.feature-bg__ttl > h3 > p {
  text-align: center;
  margin-bottom: 50px;
}
.feature-top__ttl {
  font-size: 3rem;
  margin-bottom: 20px;
}
.feature-top__blk-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 896px) {
  .feature-top__blk-ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.feature-top__blk-li {
  width: 70%;
  margin-right: 2%;
}
@media screen and (max-width: 896px) {
  .feature-top__blk-li {
    width: 100%;
    margin-right: 0;
  }
}
.feature-top__blk-li:last-child {
  width: 28%;
  margin-right: 0;
}
@media screen and (max-width: 896px) {
  .feature-top__blk-li:last-child {
    width: 100%;
    margin-top: 20px;
  }
}
.feature-top__blk-li > img {
  width: 100%;
}
.feature-top__blk-txt > p {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.feature-content__wrap {
  margin-top: 80px;
}
@media screen and (max-width: 896px) {
  .feature-content__wrap {
    margin-top: 40px;
  }
}
.feature-content__blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}
@media screen and (max-width: 896px) {
  .feature-content__blk {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
}
.feature-content__li {
  width: 48%;
  margin-right: 2%;
}
@media screen and (max-width: 896px) {
  .feature-content__li {
    width: 100%;
    margin-right: 0;
  }
}
.feature-content__li:last-child {
  margin-right: 0;
}
.feature-content__li > img {
  width: 100%;
}
@media screen and (max-width: 896px) {
  .feature-content__li > img {
    margin-bottom: 30px;
  }
}
.feature-content__ttl {
  margin-bottom: 20px;
}
.feature-content__ttl > h4 {
  font-size: 2.2rem;
}
.feature-content__txt {
  margin-bottom: 40px;
}
@media screen and (max-width: 896px) {
  .feature-content__txt {
    margin-bottom: 0;
  }
}
.feature-content__txt > p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
}

.miryoku {
  margin-top: 100px;
}
@media screen and (max-width: 896px) {
  .miryoku {
    margin-top: 50px;
  }
}
.miryoku-txt {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.7;
  margin-top: 40px;
}
.miryoku-icon {
  background-color: #FFEA00;
  padding: 3px 0px;
  width: 42%;
  text-align: center;
  font-size: 1.3rem;
  border-radius: 30px;
  line-height: 1.2;
  position: absolute;
  top: 10px;
  left: 20px;
}
.miryoku__blk {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 896px) {
  .miryoku__blk {
    width: 45%;
  }
}
.miryoku__blk:nth-child(4n) {
  margin-right: 0;
}
.miryoku__blk-wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, 20%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 1rem;
}
@media screen and (max-width: 896px) {
  .miryoku__blk-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.miryoku__blk > p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: #fff;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.home-model {
  margin-top: 100px;
}
@media screen and (max-width: 896px) {
  .home-model {
    margin-top: 50px;
    margin-bottom: 100px;
  }
}

.section-ttl.mb-ttl {
  margin-bottom: -50px;
}
@media screen and (max-width: 896px) {
  .section-ttl.mb-ttl {
    margin-bottom: 30px;
  }
}

.btn-big {
  border: 1px solid black;
}

.slick-slide {
  min-height: 760px !important;
}