@charset "UTF-8";
@import url("reset.css");
/* ---------------------------
数値
--------------------------- */
/* ---------------------------
  カラー
--------------------------- */
/* ---------------------------
  スムーズスクロール
--------------------------- */
html {
  overflow-x: hidden;
}

/* ---------------------------
  フォント
--------------------------- */
body {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #6b5151;
}

/* ---------------------------
  フッター下付け
--------------------------- */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* ---------------------------
  その他
--------------------------- */
/* メニュー展開時にbodyに付与してスクロールをロック */
body.no-scroll {
  overflow: hidden;
}

/* --- 画像表示 --- */
img {
  width: 100%;
  height: auto;
}

/* --- リンクホバー --- */
a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* --- PCのみ表示 --- */
@media screen and (max-width: 768px) {
  .pc-view {
    display: none;
  }
}

/* --- SPのみ表示 --- */
.sp-view {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-view {
    display: block;
  }
}

/* --- PC表示にてTELリンク無効化 --- */
@media (min-width: 1024px) {
  /* PCサイズ */
  a[href^=tel] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
  }
}
/* --- スクロールアニメーション（フェードアップ） --- */
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --- to-topボタン --- */
.to-top {
  position: fixed;
  right: 50px;
  bottom: 70px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  font-size: 24px;
  color: #fff;
  background: #d8a39d;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    right: 30px;
    bottom: 50px;
  }
}
.to-top.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ----------------------------------------
  ヘッダー
---------------------------------------- */
.header {
  height: 80px;
  position: relative;
  z-index: 100;
  /* ▼▼▼ 追加: スライド用のアニメーション設定 ▼▼▼ */
  -webkit-transition: top 0.4s ease, background-color 0.3s;
  transition: top 0.4s ease, background-color 0.3s;
  /* ▼▼▼ 追加: スクロール固定時の設定（1000pxスクロール後） ▼▼▼ */
  /* ▲▲▲ 追加ここまで ▲▲▲ */
}
@media (max-width: 900px) {
  .header {
    height: 46px;
  }
}
.header.is-fixed {
  position: fixed; /* 画面に追従 */
  top: -120px; /* 最初は画面外（上）に隠しておく */
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* #fffの20%透過 */
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* 薄い影（任意） */
  /* JSで .is-show がついたらスライドして降りてくる */
}
.header.is-fixed.is-show {
  top: 0;
}
.header__inner {
  width: 1180px;
  max-width: 95%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner h1 {
  margin: 0;
  padding: 0;
  line-height: 1;
}
.header__inner--logo {
  display: block;
  width: 376px;
}
@media (max-width: 900px) {
  .header__inner--logo {
    width: 30vw;
    min-width: 183px;
  }
}
.header__inner--logo img {
  display: block;
  height: auto;
}
.header__inner--contact {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 174px;
}
@media (max-width: 900px) {
  .header__inner--contact {
    display: none;
  }
}
.header__inner--contact img {
  display: block;
  height: auto;
}
.header__hamburger {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #d8a39d;
  border: none;
  cursor: pointer;
  width: 25.5px;
  height: 25.5px;
  padding: 0;
  position: relative;
  border-radius: 2px;
  z-index: 200;
}
@media (max-width: 900px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger span {
  display: block;
  width: 14px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 2px;
}
.header__hamburger span:nth-child(1) {
  top: 6px;
}
.header__hamburger span:nth-child(2) {
  top: 12px;
}
.header__hamburger span:nth-child(3) {
  top: 18px;
}
.header__hamburger.is-active span:nth-child(1) {
  top: 12px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  top: 12px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
.header__sp-nav {
  display: none;
  position: fixed;
  top: 60px;
  right: 15px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 900px) {
  .header__sp-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__sp-nav.is-active {
  opacity: 1;
  pointer-events: auto;
}
.header__sp-nav--inner {
  width: 100%;
  max-width: 340px;
  background-color: #bfa582;
  padding: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.header__sp-nav--list {
  border: 1px solid #fff;
  list-style: none;
  margin: 0;
  padding: 30px;
}
.header__sp-nav--list li {
  margin-bottom: 20px;
}
.header__sp-nav--list li:last-child {
  margin-bottom: 0;
}
.header__sp-nav--list li a {
  text-decoration: none;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 0.5px;
}

/* ----------------------------------------
  ブロックエディタ共通
---------------------------------------- */
.block {
  margin: 50px 0 100px;
}
@media screen and (max-width: 768px) {
  .block {
    margin-bottom: 15.6vw;
  }
}
.block-inner {
  width: 1000px !important;
  max-width: 90%;
  margin: 0 auto;
}
.block-inner .wp-block-paragraph,
.block-inner .wp-block-heading,
.block-inner .wp-block-columns,
.block-inner .wp-block-image,
.block-inner .wp-block-list,
.block-inner .wp-block-quote,
.block-inner .wp-block-code,
.block-inner .wp-block-preformatted,
.block-inner .wp-block-verse,
.block-inner .wp-block-table,
.block-inner h3,
.block-inner p {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 20px;
}
.block .post__title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .block .post__title {
    font-size: 5.6vw;
  }
}

/* ---------------------------
  下層タイトル部分
--------------------------- */
.sub-title {
  font-size: 48px;
  line-height: 1.2;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .sub-title {
    font-size: clamp(18px, 5.6vw, 48px);
  }
}
.sub-title::before, .sub-title::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  width: 185px;
  height: 41px;
}
@media screen and (max-width: 1000px) {
  .sub-title::before, .sub-title::after {
    width: 18.8vw;
    height: 4.1vw;
  }
}
.sub-title::before {
  background: url(../img/title-left.png) center center/cover no-repeat;
  left: 0;
  -webkit-transform: translate(-110%, -50%);
          transform: translate(-110%, -50%);
}
.sub-title::after {
  background: url(../img/title-right.png) center center/cover no-repeat;
  right: 0;
  -webkit-transform: translate(110%, -50%);
          transform: translate(110%, -50%);
}

.sub-title-under {
  text-align: center;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  .sub-title-under {
    font-size: clamp(14px, 4.4vw, 36px);
    margin-bottom: 6.3vw;
  }
}

/* ----------------------------------------
  タイトル
---------------------------------------- */
/* ----------------------------------------
  トップ／FV
---------------------------------------- */
.fv {
  background: url(../img/fv-pc.png) center bottom/cover no-repeat;
  height: 650px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv {
    background: url(../img/fv-pc.png) 20% bottom/cover no-repeat;
    height: 97.5vw;
  }
}
.fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1120px;
  max-width: 90%;
  margin: 0 auto;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    width: 90%;
  }
}
.fv__left--title {
  color: #6b5151;
  font-size: 40px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .fv__left--title {
    font-size: 6.25vw;
  }
}
.fv__left--btn {
  display: block;
  margin-top: 80px;
  width: 250px;
}
@media screen and (max-width: 768px) {
  .fv__left--btn {
    width: 65vw;
    margin-top: 9.4vw;
  }
}

/* ----------------------------------------
  トップ／メニュー
---------------------------------------- */
.menu-bg {
  background: #fafafa;
  padding: 120px 0 0;
  margin-top: -60px;
  position: relative;
}

.menu {
  width: 1125px;
  max-width: 95%;
  background-color: #bfa582;
  padding: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .menu {
    display: none;
  }
}
.menu__inner {
  width: 1180px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 9px 0;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.menu__item a {
  display: block;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  text-decoration: underline;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-underline-offset: 2px;
  text-decoration-thickness: 0.5px;
  font-weight: bold;
}

/* ----------------------------------------
  トップ／コンセプト
---------------------------------------- */
.concept {
  padding: 100px 0 150px;
  background: #fafafa;
  margin-bottom: -10px;
}
@media screen and (max-width: 768px) {
  .concept {
    padding: 11.9vw 0 24.4vw;
    margin-top: -9.4vw;
    margin-bottom: -9.4vw;
    position: relative;
    z-index: -1;
  }
}
.concept__inner {
  width: 1180px;
  max-width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.concept__title {
  width: 752px;
  max-width: 95%;
  margin: 0 auto;
}
.concept__text1 {
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #6e5545;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 600;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .concept__text1 {
    font-size: 4.38vw;
    margin-top: 7.5vw;
  }
}
.concept__text2 {
  font-size: 24px;
  text-align: center;
  color: #6e5545;
  letter-spacing: 0.05em;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .concept__text2 {
    font-size: 4.38vw;
    margin-top: 7.5vw;
    letter-spacing: 0;
  }
}
.concept__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .concept__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 7.5vw;
  }
}
.concept__flex--thumbnail {
  width: 42%;
  min-width: 350px;
  border-radius: 0 50px 0 50px;
  aspect-ratio: 440/306;
  overflow: hidden;
}
.concept__flex--thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .concept__flex--thumbnail {
    min-width: 0;
    width: 100%;
  }
}
.concept__flex p {
  width: 50%;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.17em;
  color: #6e5545;
  text-align: justify;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .concept__flex p {
    width: 100%;
    font-size: 4.4vw;
    line-height: 1.6;
  }
}

/* ----------------------------------------
  トップ／レッスンメニュー
---------------------------------------- */
.lesson-menu {
  padding: 80px 0;
  background: #f8f4f1;
  position: relative;
}
.lesson-menu.sub {
  margin: 80px 0 158px;
}
@media screen and (max-width: 768px) {
  .lesson-menu.sub {
    margin: 6.3vw 0;
  }
}
@media screen and (max-width: 768px) {
  .lesson-menu {
    padding: 18.8vw 0;
  }
}
.lesson-menu::before, .lesson-menu::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
}
.lesson-menu::before {
  background: url(../img/lesson-menu-top.png) center center/100% no-repeat;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-98%);
          transform: translateY(-98%);
  height: 5.8vw;
}
.lesson-menu::after {
  background: url(../img/lesson-menu-bottom.png) center center/100% no-repeat;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(98%);
          transform: translateY(98%);
  height: 7.8vw;
}
.lesson-menu__inner {
  width: 1040px;
  max-width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lesson-menu__list {
  border-top: 1px solid #c8b188;
}
@media screen and (max-width: 768px) {
  .lesson-menu__list {
    border: none;
  }
}
.lesson-menu__title {
  text-align: center;
  margin-bottom: 10px;
  width: 762px;
  max-width: 95%;
  margin: 0 auto;
}
.lesson-menu__title img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.lesson-menu__sub-title {
  text-align: center;
  font-size: 36px;
  color: #6e5545;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .lesson-menu__sub-title {
    display: none;
  }
}
.lesson-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .lesson-menu__list {
    margin-top: 10vw;
  }
}
.lesson-menu__list--item {
  border-bottom: 1px solid #c8b188;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .lesson-menu__list--item {
    border: none;
  }
}
.lesson-menu__list--item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.lesson-menu__list--item .title {
  font-size: 36px;
  color: #bfa582;
  font-weight: bold;
  padding-left: 10px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .lesson-menu__list--item .title {
    font-size: 6.3vw;
    text-align: center;
  }
}
.lesson-menu__list--item .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .lesson-menu__list--item .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 7.5vw;
  }
}
.lesson-menu__list--item .flex .thumbnail {
  border-radius: 0 50px;
  overflow: hidden;
  width: 41%;
  aspect-ratio: 408/306;
}
@media screen and (max-width: 768px) {
  .lesson-menu__list--item .flex .thumbnail {
    width: 100%;
  }
}
.lesson-menu__list--item .flex .thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.lesson-menu__list--item .flex .right {
  width: 51%;
}
@media screen and (max-width: 768px) {
  .lesson-menu__list--item .flex .right {
    width: 100%;
  }
}
.lesson-menu__list--item .flex .right p {
  font-size: 16px;
  line-height: 2;
  color: #6e5545;
  text-align: justify;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .lesson-menu__list--item .flex .right p {
    font-size: 4.4vw;
    margin-top: 7.5vw;
  }
}
.lesson-menu__list--item .flex .right .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #c8b188;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 20px;
  letter-spacing: 0.05em;
  position: relative;
  margin-top: 30px;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}
@media screen and (max-width: 768px) {
  .lesson-menu__list--item .flex .right .btn {
    margin-top: 7.5vw;
    font-size: 5vw;
    width: 100%;
  }
}
.lesson-menu__list--item .flex .right .btn::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid #fff;
  pointer-events: none;
}
.lesson-menu__list--item .flex .right .btn img {
  display: block;
  width: 20px;
  height: auto;
  margin-left: 15px;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  margin-left: 5px;
}

/* ----------------------------------------
  トップ／クラスオペレーション
---------------------------------------- */
.class-operation {
  padding: 200px 0;
  background: #fafafa;
}
@media screen and (max-width: 768px) {
  .class-operation {
    padding: 31.3vw 0;
  }
}
.class-operation__inner {
  width: 1040px;
  max-width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.class-operation__title {
  text-align: center;
  margin-bottom: 10px;
  width: 762px;
  max-width: 95%;
  margin: 0 auto;
}
.class-operation__title img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.class-operation__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .class-operation__list {
    margin-top: 10vw;
  }
}
.class-operation__list--item {
  border-bottom: 1px solid #c8b188;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .class-operation__list--item {
    border: none;
  }
}
.class-operation__list--item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.class-operation__list--item .title {
  font-size: 36px;
  color: #D8A39D;
  font-weight: bold;
  padding-left: 10px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .class-operation__list--item .title {
    font-size: 6.3vw;
    text-align: center;
  }
}
.class-operation__list--item .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .class-operation__list--item .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 7.5vw;
  }
}
.class-operation__list--item .flex .thumbnail {
  border-radius: 0 50px;
  overflow: hidden;
  width: 41%;
  aspect-ratio: 408/306;
}
@media screen and (max-width: 768px) {
  .class-operation__list--item .flex .thumbnail {
    width: 100%;
  }
}
.class-operation__list--item .flex .thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.class-operation__list--item .flex .right {
  width: 51%;
}
@media screen and (max-width: 768px) {
  .class-operation__list--item .flex .right {
    width: 100%;
  }
}
.class-operation__list--item .flex .right p {
  font-size: 16px;
  line-height: 2;
  color: #6e5545;
  text-align: justify;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .class-operation__list--item .flex .right p {
    font-size: 4.4vw;
    margin-top: 7.5vw;
  }
}
.class-operation__list--item .flex .right .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #c8b188;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 20px;
  letter-spacing: 0.05em;
  position: relative;
  margin-top: 30px;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}
@media screen and (max-width: 768px) {
  .class-operation__list--item .flex .right .btn {
    margin-top: 7.5vw;
    font-size: 5vw;
    width: 100%;
  }
}
.class-operation__list--item .flex .right .btn::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid #fff;
  pointer-events: none;
}
.class-operation__list--item .flex .right .btn img {
  display: block;
  width: 20px;
  height: auto;
  margin-left: 15px;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  margin-left: 5px;
}

/* ----------------------------------------
  トップ／OTHER
---------------------------------------- */
.other {
  padding: 80px 0;
  position: relative;
  background: #f8f4f1;
}
@media screen and (max-width: 768px) {
  .other {
    padding: 18.8vw 0;
  }
}
.other::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  background: url(../img/lesson-menu-top.png) center center/100% no-repeat;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  height: 5.2vw;
}
.other__inner {
  width: 1040px;
  max-width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.other__list {
  border-top: 1px solid #c8b188;
}
@media screen and (max-width: 768px) {
  .other__list {
    border: none;
  }
}
.other__title {
  text-align: center;
  margin-bottom: 10px;
  width: 559px;
  max-width: 95%;
  margin: 0 auto;
}
.other__title img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.other__list {
  list-style: none;
  margin-top: 57px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .other__list {
    margin-top: 10vw;
  }
}
.other__list--item {
  border-bottom: 1px solid #c8b188;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .other__list--item {
    border: none;
  }
}
.other__list--item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.other__list--item .title {
  font-size: 36px;
  color: #bfa582;
  font-weight: bold;
  padding-left: 10px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .other__list--item .title {
    font-size: 6.3vw;
    text-align: center;
  }
}
.other__list--item .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .other__list--item .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 7.5vw;
  }
}
.other__list--item .flex .thumbnail {
  border-radius: 0 50px;
  overflow: hidden;
  width: 41%;
  aspect-ratio: 408/306;
}
@media screen and (max-width: 768px) {
  .other__list--item .flex .thumbnail {
    width: 100%;
  }
}
.other__list--item .flex .thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.other__list--item .flex .right {
  width: 51%;
}
@media screen and (max-width: 768px) {
  .other__list--item .flex .right {
    width: 100%;
  }
}
.other__list--item .flex .right p {
  font-size: 16px;
  line-height: 2;
  color: #6e5545;
  text-align: justify;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .other__list--item .flex .right p {
    font-size: 4.4vw;
    margin-top: 7.5vw;
  }
}
.other__list--item .flex .right .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #c8b188;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 20px;
  letter-spacing: 0.05em;
  position: relative;
  margin-top: 30px;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}
@media screen and (max-width: 768px) {
  .other__list--item .flex .right .btn {
    margin-top: 7.5vw;
    font-size: 5vw;
    width: 100%;
  }
}
.other__list--item .flex .right .btn::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid #fff;
  pointer-events: none;
}
.other__list--item .flex .right .btn img {
  display: block;
  width: 20px;
  height: auto;
  margin-left: 15px;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  margin-left: 5px;
}

/* ----------------------------------------
  トップ／レッスンバナー
---------------------------------------- */
.lesson-banner {
  padding: 90px 0;
  background: #fafafa;
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 上部のレース装飾 */
  /* 下部のレース装飾 */
  /* ボタンのスタイル */
}
@media screen and (max-width: 768px) {
  .lesson-banner {
    padding: 12.5vw 0;
  }
}
.lesson-banner::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url(../img/lesson-banner-top.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.lesson-banner::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url(../img/lesson-banner-bottom.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.lesson-banner__inner {
  width: 1180px;
  max-width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lesson-banner__title {
  text-align: center;
  width: 832px;
  max-width: 95%;
}
.lesson-banner__title img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .lesson-banner__title {
    font-size: 6.3vw;
    font-weight: 600;
  }
}
.lesson-banner__text {
  font-size: 16px;
  text-align: center;
  color: #6e5545;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  width: 721px;
  max-width: 100%;
  margin-top: 33px;
}
@media screen and (max-width: 768px) {
  .lesson-banner__text {
    font-size: 4.4vw;
    margin-top: 6.9vw;
  }
}
.lesson-banner .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 45px;
  background-color: #d8a39d;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-decoration: none;
  position: relative;
  margin-top: 60px;
  font-weight: 600;
  clip-path: polygon(5px 0, calc(100% - 5px) 0, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px), 0 5px);
}
@media screen and (max-width: 768px) {
  .lesson-banner .btn {
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  }
}
.lesson-banner .btn::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid #fff;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .lesson-banner .btn::after {
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  .lesson-banner .btn {
    margin-top: 6.6vw;
    font-size: 5vw;
    height: 11.3vw;
    padding-left: 9.4vw;
    padding-right: 9.4vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/* ----------------------------------------
  トップ／ギャラリー
---------------------------------------- */
.gallery {
  padding: 80px 0;
  background: #f4ece3;
}
@media screen and (max-width: 768px) {
  .gallery {
    padding: 18.8vw 0;
  }
}
.gallery__inner {
  width: 1125px;
  max-width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.gallery__title {
  text-align: center;
  width: 741px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .gallery__title {
    width: 85.6vw;
  }
}
.gallery__title img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.gallery__title2 {
  text-align: center;
  width: 741px;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .gallery__title2 {
    width: 86.3vw;
  }
}
.gallery__title2 img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.gallery__category {
  margin: 0 auto;
}
.gallery__each-title {
  background: #c8b188;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  position: relative;
  margin-top: 50px;
}
.gallery__each-title.mt100 {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .gallery__each-title {
    font-size: 4.4vw;
    margin-top: 10vw;
    padding: 0.6vw 0;
  }
}
.gallery__each-title::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid #fff;
  pointer-events: none;
}
.gallery__flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .gallery__flex3 {
    margin-top: 10vw;
  }
}
.gallery__flex3--item {
  width: 29%;
}
@media (max-width: 768px) {
  .gallery__flex3--item {
    width: 100%;
  }
  .gallery__flex3--item:nth-child(n+2) {
    margin-top: 15vw;
  }
}
.gallery__flex3--thumbnail {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0 50px 0 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gallery__flex3--thumbnail {
    margin: 0 auto;
  }
}
.gallery__flex3--thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__flex3--title {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .gallery__flex3--title {
    font-size: 5vw;
    margin-top: 5.9vw;
  }
}
.gallery__flex3--text {
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .gallery__flex3--text {
    font-size: 4.4vw;
    margin-top: 5.9vw;
  }
}
.gallery__flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 50px auto 0;
  gap: 21px 94px;
}
@media (max-width: 768px) {
  .gallery__flex2 {
    margin-top: 10vw;
  }
}
.gallery__flex2--item {
  width: 38.7%;
}
@media (max-width: 768px) {
  .gallery__flex2--item {
    width: 100%;
  }
  .gallery__flex2--item:nth-child(n+2) {
    margin-top: 15vw;
  }
}
.gallery__flex2--thumbnail {
  width: 100%;
  aspect-ratio: 435/327;
  border-radius: 0 50px 0 50px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .gallery__flex2--thumbnail {
    margin: 0 auto;
  }
}
.gallery__flex2--thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__flex2--title {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-top: 14px;
}
@media (max-width: 768px) {
  .gallery__flex2--title {
    margin-top: 5.9vw;
    font-size: 5vw;
  }
}

/* ----------------------------------------
  トップ／ニュース
---------------------------------------- */
.news {
  padding: 80px 0;
  background-color: #fbf3f3;
}
@media (max-width: 768px) {
  .news {
    padding: 20.3vw 0;
  }
}
.news__inner {
  width: 1140px;
  max-width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.news__title {
  text-align: center;
  width: 592px;
  max-width: 95%;
  margin: 0 auto;
}
.news__title img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 68px;
}
@media (max-width: 768px) {
  .news__list {
    margin-top: 14.7vw;
  }
}
.news__list--item {
  border-bottom: 1px solid #d8a39d;
}
.news__list--item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) {
  .news__list--item a {
    display: block;
    padding: 3.8vw 0;
  }
}
.news__list--item .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
}
@media (max-width: 768px) {
  .news__list--item .left {
    margin-right: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.news__list--item .left .new {
  color: #d8a39d;
  font-family: "Cormorant Garamond", serif;
  margin-right: 25px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .news__list--item .left .new {
    margin-right: 0;
    margin-left: 15px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 5vw;
  }
}
.news__list--item .left .date {
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 768px) {
  .news__list--item .left .date {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 5vw;
  }
}
.news__list--item .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .news__list--item .title {
    font-size: 4.4vw;
    margin-top: 2.8vw;
  }
}

/* ----------------------------------------
  トップ／プロフィール
---------------------------------------- */
.profile {
  padding: 100px 0 150px;
  background: #fafafa;
  margin-bottom: -10px;
}
@media screen and (max-width: 768px) {
  .profile {
    padding: 11.9vw 0 24.4vw;
    position: relative;
    z-index: -1;
  }
}
.profile__inner {
  width: 976px;
  max-width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .profile__inner {
    width: 90%;
  }
}
.profile__title {
  width: 612px;
  max-width: 95%;
  margin: 0 auto;
}
.profile__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .profile__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 7.5vw;
  }
}
.profile__flex--thumbnail {
  width: 46%;
  min-width: 350px;
  border-radius: 0 50px 0 50px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.profile__flex--thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .profile__flex--thumbnail {
    min-width: 0;
    width: 100%;
  }
}
.profile__flex--explain {
  width: 46%;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  .profile__flex--explain {
    width: 100%;
  }
}
.profile__flex--explain .name {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .profile__flex--explain .name {
    text-align: center;
    font-size: 6.3vw;
    margin-top: 5.9vw;
  }
}
.profile__flex--explain .text {
  margin-top: 33px;
}
@media screen and (max-width: 768px) {
  .profile__flex--explain .text {
    font-size: 4.4vw;
    margin-top: 5.9vw;
  }
}

/* ----------------------------------------
  トップ／Voice&Campaign背景
---------------------------------------- */
.vc-bg {
  background: #f8f4f1;
  position: relative;
}
.vc-bg::before, .vc-bg::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
}
.vc-bg::before {
  background: url(../img/lesson-menu-top.png) center center/100% no-repeat;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  height: 5.2vw;
}
.vc-bg::after {
  background: url(../img/lesson-menu-bottom.png) center center/100% no-repeat;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  height: 7.2vw;
}

/* ----------------------------------------
  トップ／お客様の声
---------------------------------------- */
.voice {
  padding: 80px 0;
  background: #f8f4f1;
}
@media (max-width: 768px) {
  .voice {
    padding: 18.8vw 0;
  }
}
.voice__inner {
  width: 1110px;
  max-width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.voice__title {
  text-align: center;
  width: 632px;
  max-width: 95%;
  margin: 0 auto;
}
.voice__title img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.voice__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
.voice__flex--item {
  width: 31%;
}
.voice__flex--item:nth-child(n+4) {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .voice__flex--item {
    width: 100%;
  }
  .voice__flex--item:nth-child(n+2) {
    margin-top: 15vw;
  }
}
.voice__flex--item a {
  color: inherit;
  display: block;
}
.voice__flex--thumbnail {
  width: 100%;
  aspect-ratio: 344/258;
  border-radius: 0 50px 0 50px;
  overflow: hidden;
}
.voice__flex--thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice__flex--text {
  margin-top: 20px;
  font-size: 16px;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .voice__flex--text {
    font-size: 5vw;
    margin-top: 6.6vw;
  }
}

/* ----------------------------------------
  トップ／キャンペーン
---------------------------------------- */
.campaign {
  padding: 80px 0;
  background: #f8f4f1;
}
@media (max-width: 768px) {
  .campaign {
    padding: 9.4vw 0 18.8vw 0;
  }
}
.campaign__inner {
  width: 964px;
  max-width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.campaign__title {
  text-align: center;
  width: 632px;
  max-width: 95%;
  margin: 0 auto;
}
.campaign__title img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.campaign__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 70px;
}
.campaign__flex--item {
  width: 46%;
}
.campaign__flex--item:nth-child(n+3) {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .campaign__flex--item {
    width: 100%;
  }
  .campaign__flex--item:nth-child(n+2) {
    margin-top: 7.5vw;
  }
}
.campaign__flex--item a {
  color: inherit;
  display: block;
}
.campaign__flex--thumbnail {
  width: 100%;
  aspect-ratio: 344/258;
  border-radius: 0 50px 0 50px;
  overflow: hidden;
}
.campaign__flex--thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.campaign__flex--text {
  margin-top: 20px;
  font-size: 16px;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .campaign__flex--text {
    font-size: 5vw;
    margin-top: 6.6vw;
  }
}

/* ----------------------------------------
  トップ／Q&A
---------------------------------------- */
.qa {
  padding: 160px 0 0;
  background-color: #fafafa;
}
@media (max-width: 768px) {
  .qa {
    padding: 25vw 0 0;
  }
}
.qa__inner {
  width: 1180px;
  max-width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.qa__title {
  text-align: center;
  margin-bottom: 60px;
  width: 632px;
  margin: 0 auto;
  max-width: 95%;
}
.qa__title img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.qa__lists {
  margin-top: 65px;
}
@media (max-width: 768px) {
  .qa__lists {
    margin-top: 10vw;
  }
}
.qa__item {
  margin-top: 20px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .qa__item {
    margin-top: 5vw;
  }
}
.qa__item:first-child {
  margin-top: 0;
}
.qa__mark {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .qa__mark {
    font-size: 6.3vw;
  }
}
.qa__head {
  background: #eed4d1;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 34px;
  border-radius: 20px 0 0 0;
  border: 1px solid #eed4d1;
}
@media (max-width: 768px) {
  .qa__head {
    gap: 3.1vw;
    padding: 1.9vw 4.4vw;
  }
}
.qa__head-text {
  font-size: 16px;
  line-height: 36px;
  width: calc(100% - 80px);
}
@media (max-width: 768px) {
  .qa__head-text {
    font-size: 4.4vw;
    line-height: 7.5vw;
    margin-top: 1.9vw;
    width: calc(100% - 15.6vw);
  }
}
.qa__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 8px;
}
.qa__icon::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 auto;
}
.qa__head.is-open .qa__icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.qa__body {
  display: none;
  background-color: #fff;
  border-top: none;
  border: 1px solid #eed4d1;
  font-family: "Shippori Mincho", serif;
}
.qa__body-inner {
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 34px;
}
@media (max-width: 768px) {
  .qa__body-inner {
    gap: 3.1vw;
    padding: 1.9vw 4.4vw;
  }
}
.qa__body-text {
  font-size: 16px;
  width: calc(100% - 40px);
  text-align: justify;
  font-weight: 400;
  line-height: 36px;
}
@media (max-width: 768px) {
  .qa__body-text {
    font-size: 4.4vw;
    line-height: 7.5vw;
    margin-top: 1.9vw;
  }
}

/* ----------------------------------------
  トップ／アクセス
---------------------------------------- */
.access {
  background: #fafafa;
  padding: 120px 0 100px;
}
@media screen and (max-width: 768px) {
  .access {
    padding: 25vw 0 18.8vw;
  }
}
.access__inner {
  width: 1136px;
  max-width: 90%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .access__inner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .access__sp-title {
    font-size: 7.5vw;
    margin-top: 5.9vw;
    font-weight: 600;
  }
}
.access__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .access__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 7.5vw;
  }
}
.access__flex--thumbnail {
  width: 42%;
  min-width: 350px;
  border-radius: 0 50px 0 50px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.access__flex--thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .access__flex--thumbnail {
    min-width: 0;
    width: 100%;
  }
}
.access__flex--explain {
  width: 48%;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  .access__flex--explain {
    width: 100%;
  }
}
.access__flex--explain .name {
  font-size: 36px;
  font-weight: 600;
}
.access__flex--explain .text {
  margin-top: 33px;
}
@media screen and (max-width: 768px) {
  .access__flex--explain .text {
    font-size: 4.4vw;
    margin-top: 5.9vw;
  }
}

/* ----------------------------------------
  トップ／フッター
---------------------------------------- */
.footer {
  background-color: #fafafa;
  position: relative;
  padding-top: 80px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 14.1vw;
  }
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url(./img/lesson-banner-top.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.footer__inner {
  width: 1050px;
  max-width: 90%;
  margin: 0 auto;
}
.footer__flex {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1050px) {
  .footer__flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 900px) {
  .footer__flex {
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .footer__flex {
    gap: 0;
    padding-bottom: 0;
  }
}
.footer__flex > a {
  display: block;
  width: 376px;
}
@media (max-width: 1050px) {
  .footer__flex > a {
    display: none;
  }
}
.footer__flex > a img {
  display: block;
  width: auto;
  max-height: 80px;
}
@media (max-width: 768px) {
  .footer__flex > a img {
    max-height: 60px;
  }
}
.footer__external-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer__external-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.footer__external-link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  letter-spacing: 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  .footer__external-link a {
    font-size: 5vw;
    margin-top: 4.7vw;
  }
  .footer__external-link a:first-child {
    margin-top: 0;
  }
}
.footer__external-link a img {
  display: block;
  width: 12px;
  height: auto;
  margin-left: 8px;
}
@media (max-width: 768px) {
  .footer__external-link a img {
    width: 3.1vw;
    margin-left: 1.9vw;
    margin-top: 0.9vw;
  }
}
.footer__contact {
  text-align: right;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 768px) {
  .footer__contact {
    text-align: center;
    margin-top: 6.3vw;
    width: 100%;
  }
}
.footer__contact p {
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__contact p {
    font-size: 5vw;
  }
}
.footer__contact .btn {
  margin-top: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 172px;
  height: 50px;
  background-color: #d8a39d;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.05em;
  position: relative;
  font-weight: 600;
  clip-path: polygon(5px 0, calc(100% - 5px) 0, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px), 0 5px);
}
@media screen and (max-width: 1050px) {
  .footer__contact .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__contact .btn {
    margin-top: 6.3vw;
    font-size: 5vw;
    width: 53.8vw;
    height: 12.5vw;
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  }
}
.footer__contact .btn::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid #fff;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footer__contact .btn::after {
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
  }
}
.footer__bottom {
  background: #d8a39d;
  padding: 5px 0;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 900px) {
  .footer__bottom {
    background: transparent;
    color: #d8a39d;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-top: 7.8vw;
    font-size: 4.4vw;
  }
}
.footer__bottom--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  width: 1050px;
  max-width: 95%;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .footer__bottom--inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .footer__bottom--inner {
    gap: 4.7vw;
  }
}
.footer__bottom a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 900px) {
  .footer__bottom a {
    color: #d8a39d;
  }
}
@media (max-width: 768px) {
  .footer__bottom a {
    display: block;
  }
}
.footer__bottom p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 900px) {
  .footer__bottom p {
    width: 100%;
    background: #d8a39d;
    color: #fff;
    text-align: center;
    padding: 5px 0;
  }
}
@media (max-width: 768px) {
  .footer__bottom p {
    margin-top: 30px;
    font-size: 3.1vw;
  }
}