@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  font-family: sans-serif;
}

a {
  text-decoration: none;
}

h2 {
  margin: 0 0 30px 0;
}

.SiteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  overflow-x: hidden;
}

.header {
  position: relative;
}
.header .header-wrap {
  background-color: #dcc58c;
  z-index: 999;
  height: 50px;
}
.header .main-nav {
  position: absolute;
  z-index: 101;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 8px 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  box-sizing: border-box;
}
.header .main-nav a {
  color: #fff;
  display: block;
  padding: 8px 16px;
}
.header .carousel_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
}

/*トップ画カルーセル*/
.carousel img {
  width: 100vw;
  height: 95vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-prev {
  left: 10px;
  z-index: 100;
}

.slick-next {
  right: 10px;
  z-index: 100;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-prev:before,
.slick-next:before {
  color: #015;
}

.slick-dots {
  bottom: 1rem;
}

.container-fluid {
  width: 100%;
}

.container {
  text-align: center;
  width: 92%;
  max-width: 900px;
  padding: 30px 0px 60px 0px;
  margin-right: auto;
  margin-left: auto;
}

.b-brown {
  background-color: #dcc58c;
}

.concept-wrap {
  background-color: #fff;
  padding: 26px 10px 10px 10px;
}
.concept-wrap p {
  line-height: 2;
}

.box-wrap {
  display: flex;
  justify-content: space-between;
}

.box {
  width: 31%;
  margin: 0 auto 1rem;
  border: solid 1px #6e6457;
}
.box img {
  width: 100%;
}
.box-text {
  padding: 20px;
}
.box-text .plan {
  font-size: 25px;
}
.box-text span {
  font-size: 16px;
}
.box-text .row-3 {
  height: clamp(4em, 8vh, 8em);
  line-height: 1.5;
}

.btn_detail {
  width: 100%;
  display: block;
  background-color: #9ec2bc;
  font-size: 1.25rem;
  text-align: center;
  border-radius: 100vh;
  padding: 0.5rem 0;
  color: #fff;
  margin-bottom: 1rem;
}

.btn_detail:hover,
.btn_detail:focus {
  filter: saturate(200%);
}

.topic-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.topic-box {
  display: grid;
  grid-template-columns: 64px 200px 12px;
  align-items: center;
  text-align: left;
  width: 278px;
  color: #000;
  border-top: solid 1px #6e6457;
  border-bottom: solid 1px #6e6457;
  margin-right: 10px;
}
.topic-box p {
  padding: 10px;
}

.topic-box:nth-child(3n) {
  margin-right: 0;
}

.topic-box:nth-child(n+4) {
  border-top: none;
}

.and-more {
  width: 28%;
  margin: 30px auto;
}

.banner {
  display: flex;
  justify-content: space-between;
}
.banner-box {
  max-width: 48%;
}
.banner-box img {
  width: 100%;
}

footer {
  background-color: #6e6457;
  padding: 10px;
  text-align: center;
  border-top: solid 2px #fff;
}
footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 48px;
}
footer .footer-nav {
  display: flex;
  list-style: none;
  padding: 8px 10px;
  margin-top: 0px;
  margin-bottom: 0px;
  box-sizing: border-box;
}
footer .footer-nav a {
  color: #fff;
  display: block;
  padding: 8px 10px;
}
footer small {
  color: #fff;
}

@media (max-width: 600px) {
  .main-nav {
    flex-direction: column;
  }

  .box-wrap {
    flex-direction: column;
  }

  .box {
    width: 100%;
    margin: 0 auto 1rem;
    border: solid 1px #6e6457;
  }
  .box img {
    width: 100%;
  }

  .topic-box {
    margin-right: 0;
  }
  .topic-box:nth-child(n+2) {
    border-top: none;
  }

  .and-more {
    width: 90%;
    margin: 30px auto;
  }

  .banner {
    flex-direction: column;
    width: 100%;
  }
  .banner-box {
    max-width: 100%;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 12px 48px;
  }

  .footer-logo {
    padding-bottom: 10px;
  }

  .footer-pc {
    display: none;
  }

  /*========= ナビゲーションのためのCSS ===============*/
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #999;
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }

  #g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }

  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
/*# sourceMappingURL=style.css.map */