:root {
  /* 色 */
  --color-txt: #333;
  --color-main: #66B255;
  --color-light: #D5EDCA;
  --color-dark: #365B26;
  --color-fff: #fff;
  --color-contact: #FAF8F5;
  --color-yellow: #FAE57C;
  --color-yellow-light: #FCF8D3;
  --color-bk: #FFFCF2;

  /* フォント */
  /*14px*/
  --text-xs: 0.875rem;
  /*16px*/
  --text-base: clamp(0.875rem, 0.834rem + 0.2vw, 1rem);
  /*18px*/
  --text-sm: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  /*20px*/
  --text-md: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  /*22px*/
  --text-lg: clamp(0.875rem, 0.575rem + 1.28vw, 1.375rem);
  /*32px*/
  --text-xl: clamp(1.125rem, 0.6rem + 2.24vw, 2rem);
  /*36px（タイトル）*/
  --text-ttl: clamp(1.125rem, 0.804rem + 1.61vw, 2.25rem);
  /* ボタン */
  --fs-btn: clamp(16.00px, calc(1.53vw + 10.26px), 22.00px);
}

body {
  font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-txt);
  background-color: var(--color-bk);
}

/***************************************
アニメーション
****************************************/

body {
  animation: fadeIn 2s ease 0s 1 normal;
}

/* 個別で設定したい場合 */
.fade-in {
  animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

:lang(en) {
  font-family: "Quicksand", sans-serif;
  text-transform: capitalize;
}

* {
  line-height: 1.8;
  letter-spacing: .1em;
}

/***************************************
幅設定
****************************************/
.wrapper {
  width: 95%;
  max-width: 1440px;
  margin: 0 auto;
}

.wrapper__xs {
  width: 90%;
  max-width: 978px;
  margin: 0 auto;
}

/* 1085px */
.wrapper__s {
  width: 90%;
  max-width: 1085px;
  margin: 0 auto;
}

/* 1200px */
.wrapper__m {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 1300px */
.wrapper__l {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* pcとspの切り替え用 */
.sp,
.tb-br,
.sp-br {
  display: none;
}

.pc {
  display: block;
}

@media (max-width:768px) {
  .tb-br {
    display: block;
  }
}

@media (max-width:400px) {
  .sp-br {
    display: block;
  }
}

/* テキスト配置 */
.txt-C {
  text-align: center;
}

.txt-L {
  text-align: left;
}

.txt-R {
  text-align: right;
}

/* flex */
.flex {
  display: flex;
}

.jc-C {
  justify-content: center;
}

.jc-R {
  justify-content: right;
}

iframe {
  border-radius: 20px;
}

/* 反転用 */
.--reverse {
  transform: scale(-1, 1);
}

/* 縦書き */
.scroll,
.right__nav__item {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/***************************************
svg
****************************************/

svg {
  display: block;
  vertical-align: top;
}

.wave__bk {
  position: relative;
  width: 100%;
  line-height: 0;
  /* 重要 */
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.wave__bk svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* タブレットとスマホの時だけ木を消す */
@media (max-width:768px) {

  .cls-2,
  .cls-3 {
    display: none;
  }
}

/***************************************
共通ボタン
****************************************/

.btn_wrap {
  margin-top: 70px;
}

@media (max-width:768px) {
  .btn_wrap {
    margin-top: clamp(35px, 2.5vw, 60px);
  }
}

@media (max-width:420px) {
  .btn_wrap {
    margin-top: 35px;
  }
}

/* ボタン基礎 */
.btn {
  position: relative;
  display: inline-block;
  padding: clamp(0.5rem, 1.2vw, 0.75rem) clamp(1.375rem, 3vw, 2rem) clamp(0.5rem, 1.2vw, 0.75rem) clamp(0.5rem, 1.5vw, 0px);
  background-color: var(--color-main);
  color: var(--color-fff);
  border-radius: 40px;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 500;
  text-align: center;
  /* ホバーアニメーション */
  transition-duration: 0.3s;
}

/* 通常ボタン */
.btn-base {
  max-width: 310px;
  width: 100%;
}

.right__nav {
  position: fixed;
  z-index: 2;
  top: 100px;
  right: 0px;
  bottom: unset;
  width: auto;
  left: unset;
}

/* 右側CTAボタン */
.btn-cta {
  top: 0;
  right: 0;
  border-radius: 10px 0 0 10px;
  display: block;
  padding: 18px 10px;
  background-color: var(--color-main);
  color: var(--color-fff);
  border: 1px solid var(--color-bk);
  font-weight: 500;
  text-align: center;
  /* ホバーアニメーション */
  transition-duration: 0.3s;
}

.right__nav__item {
  /* 横文字を縦書き */
  text-orientation: upright;
  display: block;
  width: auto;
  height: auto;
}

@media (max-width:420px) {
  .right__nav {
    position: fixed;
    top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    width: 100%;
  }

  .right__nav__list {
    display: flex;
    justify-content: center;
    border: none;
  }

  .right__nav__item {
    /* 縦書きを横書きに戻す */
    writing-mode: horizontal-tb;
  }

  .btn-cta {
    border-radius: 10px 10px 0 0;
    padding: 12px 18px;
  }
}

/* ヘッダーボタン */
.btn-head {
  width: clamp(180px, 14vw, 215px);
  font-size: clamp(0.8125rem, 1.1vw, 1rem);
}

/* コースボタン */
.btn-course {
  width: clamp(71%, 19vw, 215px);
  font-size: clamp(13px, 1.1vw, 1rem);
}

/* ボタン：ボーダー */
.btn.--btn-border,
.btn-cta.--btn-border {
  background-color: var(--color-fff);
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
}

/* ボタン：白 */
.btn.--btn-white {
  background-color: var(--color-fff);
  color: var(--color-dark);
}

/* ボタン：黄色 */
.btn.--btn-yellow {
  background-color: #FAE57C;
  color: var(--color-dark);
}

/* ボタン：通常用矢印 */
.btn-base::after,
.btn-head::after,
.btn-course::after {
  content: "";
  position: absolute;
  vertical-align: middle;
  color: var(--color-fff);
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  margin: auto;
  right: 5%;
  top: 40%;
}

/* ボタン：白,黄色,ボーダー用矢印 */
.btn.--btn-white::after,
.btn.--btn-yellow::after,
.btn.--btn-border::after {
  content: "";
  position: absolute;
  vertical-align: middle;
  color: var(--color-dark);
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  margin: auto;
  right: 5%;
  top: 40%;
}

/* ボタン：ホバー */
.btn:hover,
.btn.--btn-border:hover,
.btn-cta.--btn-border:hover,
.btn-cta:hover {
  background-color: var(--color-dark);
  color: var(--color-fff);
}

.--btn-border:hover::after {
  color: var(--color-fff);
}

/* ボタン：白用ホバー */
.btn.--btn-white:hover {
  background-color: var(--color-dark);
  color: var(--color-fff);
}

/* ボタン：黄色用ホバー */
.btn.--btn-yellow:hover {
  background-color: #F7D943;
  color: var(--color-dark);
}

/***************************************
共通タイトル
****************************************/

.section__ttl {
  line-height: 1.5;
  margin-bottom: clamp(25px, 15vw, 82px);
  color: var(--color-dark);
}

.ttl-ja {
  font-size: var(--text-ttl);
  font-weight: 600;
}

.ttl-en {
  font-size: var(--text-sm);
  padding-top: 12px;
  font-weight: 600;
}

@media (max-width:420px) {
  .ttl-en {
    padding-top: 0;
  }
}

.section__ttl.--ttl-white {
  color: var(--color-bk);
}

h3.box__tll {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-dark);
  text-align: center;
}

@media (max-width:767px) {
  .section__ttl {
    text-align: center;
    margin-bottom: clamp(35px, 14vw, 65px);
  }
}

@media (max-width:400px) {
  .section__ttl {
    margin-bottom: 40px;
  }
}

/***************************************
header
****************************************/

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 117px;
  padding: 42px 0;
  gap: 20px;
  margin-bottom: 17px;
}

.gnav__list {
  display: flex;
  gap: clamp(0.875rem, 1vw, 1.5625rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-dark);
  font-weight: 600;
  justify-content: right;
  align-items: center;
}

nav.gnav {
  flex-grow: 1;
}

.logo img {
  max-width: 215px;
  margin-bottom: 10px;
  width: 100%;
}

.sp,
.sp_nav,
li.gnav__item.sp_btn-none {
  display: none;
}


@media (max-width:1140px) {
  li.gnav__item.sp_btn-none {
    display: block;
  }

  .gnav__item:nth-of-type(8) {
    display: none;
  }

  .gnav__item:nth-of-type(7) {
    margin-bottom: clamp(20px, 2.16vw, 50px);
  }

  /* ハンバーガーメニュー*/
  .sp_nav {
    position: fixed;
    top: 27px;
    right: 24px;
    z-index: 9999;
    display: block;
    width: 25px;
    height: 22px;
    border-radius: 2px;
  }

  /* ハンバーガーメニューボタン(フェードイン) */
/* .hamburger-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  z-index: 1001;
}*/

  /* 閉じている時_ライン */
  .sp_nav .bar,
  .sp_nav .bar::before,
  .sp_nav .bar::after {
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    display: block;
  }

  .sp_nav .bar::before {
    content: "";
    transform: translateY(-11px);
    transition: transform 0.3s ease-in-out;
  }

  .sp_nav .bar::after {
    content: "";
    transform: translateY(11px);
    transition: transform 0.3s ease-in-out;
  }

  /* 開いている時_ライン */
  .active .sp_nav .bar,
  .active .sp_nav .bar::before,
  .active .sp_nav .bar::after {
    height: 2px;
    background-color: var(--color-main);
  }

  .active .sp_nav .bar::before {
    transform: rotate(-45deg);
  }

  .active .sp_nav .bar::after {
    transform: rotate(45deg);
  }

  .active .sp_nav .bar {
    background-color: transparent;
    /* 真ん中の線を消す */
  }

  /* 開いている時 */
  .gnav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    z-index: 999;
    height: 100vh;
    background-color: var(--color-bk);
    border-radius: 40px 0 0 40px;
    border-top: 1px solid var(--color-dark);
    border-left: 1px solid var(--color-dark);
    border-bottom: 1px solid var(--color-dark);
    padding: 80px 0 50px;
    color: #fff;
    transform: translateX(100%);
    transition-duration: 0.4s;
  }




  .gnav__list {
    display: flex;
    gap: clamp(15px, 1.2vw, 26px);
    font-size: clamp(16px, 1.1vw, 20px);
    color: var(--color-dark);
    font-weight: 600;
    justify-content: right;
    align-items: center;
  }

  .active .gnav {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    gap: clamp(16px, 2vw, 26px);
  }



/* X */
/*.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
} */

/* アクティブ状態（Xアニメーション） */
/* .hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
} */

/* .hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
} */

/* .hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
} */

/* メニュー */
/* .slide-menu.fade-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.4s ease-in-out;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow-y: auto;
  overflow-x: hidden;
 }

 /* スライドのアニメーション */
/* .slide-menu.fade-menu.active {
  right: 0;
  opacity: 1;
}

.menu-list {
  list-style: none;
  padding: 80px 0 0 0;
  margin: 0;
}

.menu-list li {
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease-in-out;
}

.slide-menu.fade-menu.active .menu-list li {
  opacity: 1;
  transform: translateX(0);
}

.menu-list a {
  display: block;
  padding: 15px 30px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.menu-list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
} */

}

@media (max-width:786px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

}

/***************************************
よくある質問
****************************************/
.accordion-006 {
  max-width: 978px;
  margin-bottom: 35px;
  background-color: var(--color-fff);
  border-radius: 20px;
}

.qa__ttl {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.qa__txta {
  display: inline-block;
  padding-left: 0.1em;
  text-indent: -0.1em;
}

.label__q {
  font-size: clamp(0.875rem, 0.834rem + 0.2vw, 1rem);
  color: var(--color-main);
  font-weight: 700;
}

.label__a {
  font-size: clamp(0.875rem, 0.834rem + 0.2vw, 1rem);
  color: #D9BD4D;
  font-weight: 700;
}

.accordion-006 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: var(--color-dark);
  font-weight: 600;
  cursor: pointer;
}

.accordion-006 summary::-webkit-details-marker {
  display: none;
}

.accordion-006 summary::before,
.accordion-006 summary::after {
  width: 3px;
  height: .9em;
  right: 2em;
  border-radius: 5px;
  background-color: var(--color-main);
  content: '';
}

.accordion-006 summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.accordion-006 summary::after {
  transition: rotate .3s;
}

.accordion-006[open] summary::after {
  rotate: 90deg;
}

.accordion-006 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em;
  color: #333;
  background-color: #FCF8D3;
  border-radius: 20px;
  transition: transform .5s, opacity .5s;
}

.accordion-006[open] p {
  transform: none;
  opacity: 1;
}

@media (max-width:768px) {
  /* .qa__section {
    margin-bottom: 120px;
  } */

  .accordion-006 {
    margin-bottom: 25px;
  }
}

@media (max-width:420px) {
  /* .qa__section {
    margin-bottom: 80px;
  } */

  .accordion-006 {
    margin-bottom: 20px;
  }

  .qa__ttl {
    gap: 5px;
  }

  .qa__txta,
  .qa__txtq {
    max-width: 300px;
  }

  .accordion-006 summary {
    padding: 18px;
  }

  .accordion-006 summary::before,
  .accordion-006 summary::after {
    width: 3px;
    right: 18px;
  }

  .accordion-006 p {
    padding: 18px;
  }
}

/***************************************
contact
****************************************/


.info__section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.info__inner {
  background-color: var(--color-main);
}

.contact__section {
  background-color: var(--color-fff);
  border-radius: 50px;
  padding: 3.8vw 8.5vw;
  margin-bottom: 140px;
}

.contact__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  max-width: 315px;
  width: 100%;
  background-color: var(--color-contact);
  padding: 26px 30px;
  margin: 0 auto;
  text-align: center;
  border-radius: 20px;
}

.contact__inner {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.contact__ico {
  width: 55px;
  padding: 27px 0;
}

@media (max-width:768px) {

  .contact__section {
    padding: 50px 106px;
    margin-bottom: 70px
  }

  .contact__inner {
    flex-direction: column;
    gap: 20px;
  }

  .contact__inner {
    flex-direction: column;
  }

  .contact__box {
    max-width: 100%;
  }
}

@media (max-width:420px) {
  .contact__section {
    padding: 40px 30px;
    margin-bottom: 50px;
  }

  .contact__inner {
    gap: 15px;
  }

  .contact__box {
    max-width: 100%;
  }

  .contact__ico {
    width: 40px;
    padding: 12px 0;
  }
}

/***************************************
access
****************************************/

.access__contents {
  display: flex;
  justify-content: space-between;
  gap: 59px;
  margin-bottom: 70px;
  color: var(--color-bk);
}

.access__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.access__img img {
  border-radius: 20px;
}

.shop__name {
  border-bottom: 1px solid var(--color-fff);
  font-size: 22px;
  display: inline-block;
}

.access__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 59px;
  margin-bottom: 70px;
  color: var(--color-bk);
}

.shop__name {
  border-bottom: 1px solid var(--color-fff);
  font-size: clamp(0.875rem, 0.575rem + 1.28vw, 1.375rem);
  display: inline-block;
  margin-bottom: 22px;
}

.access__img {
  width: 578px;
  height: auto;
  object-fit: cover;
}

.access__txt {
  max-width: 448px;
  width: 100%;
}

.addr {
  display: flex;
  align-items: flex-start;
  gap: 3px;
}

.addr .access__ico {
  margin-top: 4px;
}

.walk,
.tel,
.mail {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 17px;
}

.access__ico {
  width: 20px;
  flex-shrink: 0;
}


@media (max-width:768px) {
  .access__contents {
    gap: 25px;
    margin-bottom: 40px;
  }

  .shop__name {
    margin-bottom: 17px;
  }

  .access__img img {
    object-fit: cover;
    border-radius: 20px;
  }

  .access__img img {
    border-radius: 20px;
    height: 269px;
    width: 339px;
    object-fit: cover;
  }

  .access__txt {
    max-width: 309px;
    width: 100%;
  }

  .addr,
  .walk,
  .tel,
  .mail {
    gap: 2px;
  }

  .walk,
  .tel,
  .mail {
    margin-top: 10px
  }
}

@media (max-width:420px) {
  .access__contents {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    margin-bottom: 15px;
  }

  .shop__name {
    margin-bottom: 5px;
  }

  .access__txt {
    margin-bottom: 15px;
  }

  .access__contents {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    margin-bottom: 15px;
  }

  .shop__name {
    margin-bottom: 15px;
  }

  .access__img {
    object-fit: cover;
    width: 335px;
  }

  .access__ico {
    width: 14px;
    flex-shrink: 0;
  }

  .addr .access__ico {
    margin-top: 5px;
  }

  .walk,
  .tel,
  .mail {
    margin-top: 8px
  }

}

/***************************************
footer
****************************************/

.footer__section {
  margin-top: clamp(45px, 15vw, 140px);
  ;
}

.footer .logo {
  margin-bottom: 16px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 92px;
  gap: 4vw;
  color: var(--color-dark);
}

.footer__list__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5.2vw;
}

.contact__label {
  min-width: 100px;
  width: 100%;
  border: 1px solid var(--color-dark);
  border-radius: 20px;
  padding: 0px 15px;
  height: 28px;
  margin-bottom: 14px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
}

ul.nav__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact {
  display: block;
  text-align: center;
}

.footer__contact__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer__contact__ico {
  width: 30px;
}

.copy {
  font-size: var(--text-xs);
  line-height: 1.6;
  margin-bottom: 35px;
}

@media (max-width:768px) {

  .about__inner {
    justify-content: baseline;
  }

  .news__section,
  .footer__inner {
    flex-direction: column;
    margin: auto;
  }

  .footer__list__wrap {
    width: 100%;
  }
}

@media (max-width:420px) {

  .voice__inner,
  .news__link,
  .ul.nav__list {
    flex-direction: column;
    margin: auto;
    width: 100%;
  }

  .footer__list__wrap {
    flex-direction: column;
    width: 100%;
  }

  .footer__contact {
    margin: auto;
  }

  .copy {
    margin: 39px auto 84px;
  }

}