@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=GFS+Didot&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/* @import "_vars.scss"; */
/* font */
/* width */
/*サイトのメインカラー*/
/*-------------------------------------------
animate.css
----------------------------------------------*/
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    /* 拡大率 */
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    /* 拡大率 */
  }
}

.add-animation {
  -webkit-animation: zoomUp 10s linear 0s normal both;
          animation: zoomUp 10s linear 0s normal both;
}

/*-------------------------------------------
animate.css
----------------------------------------------*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.zoomin {
  -webkit-animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-03s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.animated.delay-05s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.animated.delay-08s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

@media all and (max-width: 769px) {
  .animated.delay-1s,
  .animated.delay-2s,
  .animated.delay-3s,
  .animated.delay-4s,
  .animated.delay-5s {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
  }
}

/**

  @mixin
---------------------------------------------------------
  _clearfix.scss
--------------------------------------------------------
  Use @include clearfix(); in your CSS
  Use @include before(); in your CSS
--------------------------------------------------------- */
/**
  @breakpoints mixin (PC-first)
-----------------------------------------------------
@include for-size(phone-only){}
@include for-size(tablet-portrait-up){}
@include for-size(tablet-landscape-up){}
@include for-size(desktop){}
@include for-size(desktop-up){}
-----------------------------------------------------  */
/**
  @bgimg.scss bgimg
--------------------------------------------------------
  Use @include bgimg(); in your CSS
--------------------------------------------------------- */
/**
  @fonts.scss fonts
--------------------------------------------------------
@include sec-read();
@include base-text($size);
@include base-text_2($size);
@include base-text_en($size);


in your CSS
--------------------------------------------------------- */
/**
  @align-height
--------------------------------------------------------
@include align-height(); in your CSS
--------------------------------------------------------- */
/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
  display: table;
  width: 100%;
  table-layout: fixed;
}

@media all and (max-width: 639px) {
  .innerB {
    display: block;
  }
}

.innerB .left,
.innerB .right {
  width: 48%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left,
  .innerB .right {
    width: 100%;
    float: none;
  }
}

.innerB .right {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerB .right {
    margin-left: 0;
    margin-top: 15px;
  }
}

.innerB .left_s {
  width: 30%;
  float: left;
}

@media all and (max-width: 639px) {
  .innerB .left_s {
    width: 100%;
    float: none;
  }
}

.innerB .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .innerB .right_l {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    float: none;
  }
}

.innerC {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.innerC .left,
.innerC .right {
  width: 48%;
  float: left;
}

.innerC .right {
  margin-left: 4%;
}

.innerC .left_s {
  width: 30%;
  float: left;
}

.innerC .right_l {
  width: 66%;
  float: left;
  margin-left: 4%;
}

/* 基本リセット */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-image: url(../img/sile_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #333;
}

/* 全体レイアウト */
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 100vh;
}

/* --- 中央コンテンツ (メイン) --- */
main {
  width: 100%;
  max-width: 523px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

main .in {
  background-image: url(../img/main_bg.jpg);
  background-repeat: repeat-y;
  /* 上下方向のみ繰り返す */
  background-position: center top;
  -webkit-box-sizing: 200%;
          box-sizing: 200%;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* --- サイドバー共通 (PCのみ) --- */
.side {
  display: none;
  /* デフォルト（スマホ）では非表示 */
}

@media (min-width: 1024px) {
  .side {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc((100% - 523px) / 2);
    height: 100vh;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    overflow: hidden;
  }
}

/* --- 左側: ロゴ・キャッチ --- */
.left-side {
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.left-side .in_conte {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* 垂直方向（上下）の中央 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 水平方向（左右）の中央 */
  height: 100%;
  /* 親の 100vh をいっぱいまで使う */
  width: 100%;
}

.logo {
  display: block;
  max-width: 341px;
  width: 100%;
  margin: 0 auto;
}

.catch {
  max-width: 241px;
  width: 100%;
  margin: 0 auto 0;
}

.catch img {
  display: block;
  width: 100%;
}

/* --- 右側: ページナビ --- */
.right-side {
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.right-side .cenn {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* 垂直方向（上下）の中央 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 水平方向（左右）の中央 */
  height: 100%;
  /* 親の 100vh をいっぱいまで使う */
  width: 100%;
}

nav {
  display: table;
  margin: auto;
}

.nav-list {
  list-style: none;
  display: table;
}

.nav-list li {
  margin-bottom: 25px;
  position: relative;
}

.nav-list li a {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #404a58;
  padding-left: 15px;
}

.nav-list li a:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 9px;
  height: 9px;
  background-image: url(../img/nav_icon.svg);
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-list li a span {
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
  letter-spacing: 0.03em;
  color: #8f9ca3;
  margin-right: 15px;
}

.nav-list li a:hover, .nav-list li a.is-active {
  color: #997d4d;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-list li a:hover span, .nav-list li a.is-active span {
  color: #b8b0a0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-list li a:hover:before, .nav-list li a.is-active:before {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.side_linik_btt {
  display: block;
  width: 100%;
  background-image: url(../img/side_linik_btt.svg);
  padding: 19px 0;
  border-radius: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 30px;
}

.side_linik_btt span {
  display: table;
  position: relative;
  margin: auto;
  padding-right: 20px;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  font-weight: 400;
  color: #fff;
}

.side_linik_btt span:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  height: 6px;
  background-image: url(../img/link_icon.svg);
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

/* --- ハンバーガーボタン本体 --- */
.hamburger {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-right: 14px;
  gap: 5px;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  /* 開いた時のバツ印 */
}

.hamburger__line {
  display: block;
  height: 1px;
  background: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.hamburger__line:nth-child(1) {
  width: 22px;
}

.hamburger__line:nth-child(2) {
  width: 15px;
}

.hamburger__line:nth-child(3) {
  width: 18px;
}

.hamburger.is-open .hamburger__line:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
  width: 22px;
}

.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
  width: 22px;
}

@media (max-width: 1023px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* --- ドロワー（円形に広がるアニメーション） --- */
.drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  /* ★重要：ボタンの位置（右上の座標）から円形に広げる設定 */
  -webkit-clip-path: circle(0px at calc(100% - 45px) 45px);
          clip-path: circle(0px at calc(100% - 45px) 45px);
  -webkit-transition: -webkit-clip-path 0.7s cubic-bezier(0.8, 0, 0.2, 1);
  transition: -webkit-clip-path 0.7s cubic-bezier(0.8, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.8, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.8, 0, 0.2, 1), -webkit-clip-path 0.7s cubic-bezier(0.8, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  /* 中のメニューレイアウト（2カラム） */
}

.drawer.is-open {
  -webkit-clip-path: circle(150% at calc(100% - 45px) 45px);
          clip-path: circle(150% at calc(100% - 45px) 45px);
  padding-bottom: 40px;
  display: block;
}

@media (max-width: 1023px) {
  .drawer {
    display: block;
  }
}

.drawer .logo {
  display: block;
  width: 50%;
  margin: auto;
}

.drawer .r-menu {
  padding: 0 20px 40px;
  max-width: 600px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.drawer .r-menu__group-lbl {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

.drawer .r-menu__item {
  padding: 20px 10px;
  border: 1px solid #eee;
  background: #fdfdfd;
  text-decoration: none;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

.drawer .r-menu__item.is-active {
  border-color: #a38b62;
  background: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(163, 139, 98, 0.1);
          box-shadow: 0 4px 12px rgba(163, 139, 98, 0.1);
}

.drawer .r-menu__en {
  display: block;
  color: #a38b62;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  letter-spacing: 0;
  line-height: 1em;
}

.drawer .r-menu__ja {
  display: block;
  font-size: 11px;
  color: #333;
}

.drawer .side_linik_btt {
  width: 80%;
  margin: auto;
}

#top_ani {
  height: 100vh;
  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;
  overflow: hidden;
  position: absolute;
  padding: 0;
  width: 100%;
}

#top_ani .marquee-wrapper {
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  height: 60px;
}

@media (min-width: 1024px) {
  #top_ani .marquee-wrapper {
    width: 100vw;
    max-width: none;
  }
}

#top_ani .marquee-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee-loop 100s linear infinite;
          animation: marquee-loop 100s linear infinite;
  position: fixed;
}

#top_ani .marquee-content span {
  z-index: 2;
  display: inline-block;
  font-family: YakuHanMP, "GFS Didot", serif;
  font-size: 3.75rem;
  color: rgba(200, 200, 200, 0.6);
  padding-right: 20px;
  letter-spacing: 0.03em;
}

@media (min-width: 1024px) {
  #top_ani .marquee-content span {
    font-family: YakuHanMP, "GFS Didot", serif;
    font-size: 3.75rem;
  }
}

@-webkit-keyframes marquee-loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee-loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/*==============================
メインコンテンツ
==============================*/
/* --- コンテンツ内パーツ (サンプル) --- */
.section {
  padding: 60px 20px;
}

/* --- PC表示の切り替え (1024px以上) --- */
@media (min-width: 1024px) {
  .side {
    display: block;
  }
  body {
    padding: 0 20px;
    overflow-x: hidden;
  }
}

/*==============================
ヒーロー
==============================*/
.hero {
  position: relative;
}

.hero ._sp {
  display: block;
  width: 130px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 22;
}

@media (min-width: 1024px) {
  .hero ._sp {
    display: none;
  }
}

.hero .hero_visua {
  /* Slickが読み込まれるまでのガタつき防止 */
}

.hero .hero_visua .slid {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.hero .hero_visua .slid li {
  width: 100%;
  height: auto;
}

.hero .hero_visua .slid li img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 0 0 500px 500px;
}

.hero .hero_visua .slid:not(.slick-initialized) li:not(:first-child) {
  display: none;
}

.hero .hero_chachi {
  width: 100%;
  height: 347px;
  bottom: 0;
  margin-top: -120px;
}

@media (min-width: 1024px) {
  .hero .hero_chachi {
    width: 511px;
    height: 347px;
    margin-top: -190px;
  }
}

.hero .hero_chachi:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 611px;
  height: 367px;
  background-image: url(../img/hero_chachi_bg.svg);
  mix-blend-mode: multiply;
  background-size: 100%;
  left: -40px;
}

@media (min-width: 1024px) {
  .hero .hero_chachi:before {
    width: 511px;
    height: 347px;
    left: 0;
  }
}

.hero .hero_chachi img {
  padding-top: 100px;
  display: block;
  width: 85%;
  margin: auto;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@media (min-width: 1024px) {
  .hero .hero_chachi img {
    padding-top: 40px;
  }
}

.FV_bottom {
  padding-bottom: 100px;
}

.FV_bottom img {
  display: block;
  width: 98%;
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
}

.FV_bottom .fv_bottom_main {
  text-align: center;
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  margin: 30px 0 0;
}

@media (min-width: 1024px) {
  .FV_bottom .fv_bottom_main {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.375rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

.FV_bottom .fv_bottom_list {
  margin-top: 70px;
}

.FV_bottom .fv_bottom_list li {
  position: relative;
}

.FV_bottom .fv_bottom_list li:nth-child(n + 2) {
  margin-top: 40px;
}

.FV_bottom .fv_bottom_list li img {
  display: block;
  margin: auto;
  width: 152px;
}

.FV_bottom .fv_bottom_list li .fv_bottom_item_read {
  text-align: center;
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.375rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.FV_bottom .fv_bottom_list li .fv_bottom_item_read span {
  display: block;
  color: #997d4d;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  margin-top: -80px;
  position: relative;
}

.FV_bottom .fv_bottom_list li .fv_bottom_item_main {
  text-align: center;
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  margin-top: 20px;
}

/*==============================
PROBLEM
==============================*/
#problem {
  background: #8f9ca3;
}

#problem .section_title {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  margin-bottom: 40px;
}

#problem .section_title span {
  display: block;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

#problem .problem_sub_read {
  text-align: center;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0;
}

@media (min-width: 1024px) {
  #problem .problem_sub_read {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.5625rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0;
    margin-top: 90px;
  }
}

#problem .problem_text {
  text-align: center;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 40px;
  line-height: 1.7em;
}

@media (min-width: 1024px) {
  #problem .problem_text {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.125rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.7em;
  }
}

#problem .problem_item {
  position: relative;
  padding-top: 20px;
}

#problem .problem_item .problem_item_read {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0;
  color: #fff;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  #problem .problem_item .problem_item_read {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.5625rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0;
  }
}

#problem .problem_item ul {
  max-width: 437px;
  width: 100%;
  margin: 50px auto;
}

@media (min-width: 1024px) {
  #problem .problem_item ul {
    width: 90%;
  }
}

#problem .problem_item ul li {
  position: relative;
  padding-left: 45px;
}

@media (min-width: 1024px) {
  #problem .problem_item ul li {
    padding-left: 55px;
  }
}

#problem .problem_item ul li:nth-child(n + 2) {
  margin-top: 30px;
}

#problem .problem_item ul li .item_no {
  display: block;
  position: absolute;
  height: 28px;
  left: 0;
  top: 3px;
}

#problem .problem_item ul li .problem_item_list_read {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.1875rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  display: table;
  background: #fff;
  color: #404a58;
  line-height: 1.1em;
  padding: 5px 9px;
}

@media (min-width: 1024px) {
  #problem .problem_item ul li .problem_item_list_read {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.375rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

#problem .problem_item ul li .problem_item_list_main {
  position: relative;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  color: #fff;
  padding-left: 35px;
  margin: 10px;
}

@media (min-width: 1024px) {
  #problem .problem_item ul li .problem_item_list_main {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.0625rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
    padding-left: 55px;
  }
}

#problem .problem_item ul li .problem_item_list_main:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 28px;
  height: 8px;
  background-image: url(../img/problem_item_list_main_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
}

@media (min-width: 1024px) {
  #problem .problem_item ul li .problem_item_list_main:before {
    width: 42px;
  }
}

#problem .problem_item .problem_item_illust {
  display: block;
  position: absolute;
  width: 60px;
  right: 0;
  bottom: -20px;
}

#problem .problem_item_bottom {
  text-align: center;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  line-height: 1.8em;
  padding-top: 50px;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}

@media (min-width: 1024px) {
  #problem .problem_item_bottom {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.5625rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0;
    margin-top: 90px;
  }
}

.problem_item_bottom_sita {
  display: block;
  width: 110%;
  margin-left: -5%;
}

/*==============================
WHY REVIVE
==============================*/
#whyrevive .section_title {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  margin-bottom: 40px;
}

#whyrevive .section_title span {
  display: block;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

#whyrevive .whyrevive_read {
  text-align: center;
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0;
}

@media (min-width: 1024px) {
  #whyrevive .whyrevive_read {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.5625rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0;
  }
}

#whyrevive .whyrevive_photo {
  margin: 40px 0;
  position: relative;
  padding: 30px 0;
}

#whyrevive .whyrevive_photo:before, #whyrevive .whyrevive_photo:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
}

#whyrevive .whyrevive_photo:before {
  width: 337px;
  height: 186px;
  background-image: url(../img/whyrevive_photo_asirai-t.svg);
  top: 0;
  right: 0;
}

#whyrevive .whyrevive_photo:after {
  width: 337px;
  height: 186px;
  background-image: url(../img/whyrevive_photo_asirai-b.svg);
  bottom: 0;
  left: 30px;
  z-index: 1;
}

#whyrevive .whyrevive_photo .whyrevive_photo_img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}

#whyrevive .whyrevive_photo .whyrevive_photo_text {
  margin-top: -50px;
}

#whyrevive .whyrevive_photo .whyrevive_photo_text span {
  display: table;
  margin: 0 auto 10px;
  background: -webkit-gradient(linear, left top, right top, from(#e6bac1), color-stop(20%, #e6bac1), color-stop(80%, #8eb7af), to(#8eb7af));
  background: linear-gradient(to right, #e6bac1 0%, #e6bac1 20%, #8eb7af 80%, #8eb7af 100%);
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  position: relative;
  z-index: 3;
  padding: 2px 10px;
}

@media (min-width: 1024px) {
  #whyrevive .whyrevive_photo .whyrevive_photo_text span {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.1875rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

#whyrevive ul li {
  background: #fff;
  padding: 30px 20px;
  border: 1px solid #f4f5f6;
  position: relative;
}

@media (min-width: 1024px) {
  #whyrevive ul li {
    padding: 30px;
  }
}

#whyrevive ul li:nth-child(n + 2) {
  margin-top: 50px;
}

#whyrevive ul li .whyrevive_item_no {
  display: block;
  position: absolute;
  width: 58px;
  left: 10px;
  top: 0;
}

@media (min-width: 1024px) {
  #whyrevive ul li .whyrevive_item_no {
    width: 83px;
    left: 30px;
  }
}

#whyrevive ul li .whyrevive_item_read {
  color: #997d4d;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  padding-left: 56px;
}

@media (min-width: 1024px) {
  #whyrevive ul li .whyrevive_item_read {
    padding-left: 100px;
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

#whyrevive ul li .whyrevive_item_photo {
  display: block;
  width: 100%;
  margin: 20px 0;
}

#whyrevive ul li .whyrevive_item_main {
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8em;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  #whyrevive ul li .whyrevive_item_main {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.8em;
  }
}

#whyrevive ul li .whyrevive_item_main span {
  background: #efcf30;
  padding: 0 4px;
}

#whyrevive ul li .whyrevive_item_asira-1 {
  display: block;
  position: absolute;
  width: 99px;
  top: -20px;
  right: -20px;
}

#whyrevive ul li .whyrevive_item_asira-2 {
  display: block;
  position: absolute;
  width: 94px;
  bottom: -30px;
  left: -20px;
  z-index: 1;
}

#whyrevive ul li .whyrevive_item_asira-3 {
  display: block;
  position: absolute;
  width: 94px;
  bottom: -20px;
  right: -20px;
}

#whyrevive .hikaku {
  margin-top: 70px;
}

#whyrevive .hikaku .hikaku_sub_read {
  display: block;
  height: 21px;
  margin: auto;
}

#whyrevive .hikaku .hikaku_read {
  text-align: center;
  color: #997d4d;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

@media (min-width: 1024px) {
  #whyrevive .hikaku .hikaku_read {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.4375rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

#whyrevive .hikaku .hikaku_read span {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.4375rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

@media (min-width: 1024px) {
  #whyrevive .hikaku .hikaku_read span {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.75rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

#whyrevive .hikaku .hikaku_hyou {
  display: block;
  margin: 30px auto 0;
  width: 100%;
}

/*==============================
SUPPORT
==============================*/
#support {
  position: relative;
}

#support:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 369px;
  height: 404px;
  background-image: url(../img/support_read_bg.svg);
  margin: auto;
  left: 0;
  right: 0;
  top: -30px;
  mix-blend-mode: multiply;
}

#support .suppor_tilte_in {
  position: relative;
}

#support .suppor_tilte_in:before, #support .suppor_tilte_in:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
}

#support .suppor_tilte_in:before {
  width: 109px;
  height: 116px;
  background-image: url(../img/suppor_tilte_in_l.svg);
  top: -40px;
}

#support .suppor_tilte_in:after {
  width: 67px;
  height: 75px;
  background-image: url(../img/suppor_tilte_in_r.svg);
  bottom: 0;
  right: 0;
}

#support .section_title {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  margin-bottom: 40px;
  position: relative;
}

#support .section_title span {
  display: block;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

#support .support_sub_read {
  text-align: center;
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0;
  position: relative;
}

@media (min-width: 1024px) {
  #support .support_sub_read {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.5625rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0;
  }
}

#support .support_photo {
  display: block;
  width: 100%;
  margin-top: 30px;
  position: relative;
}

#support ul {
  width: 95%;
  margin: 40px auto 0;
}

#support ul li {
  border-bottom: 1px solid #e1e3eb;
  padding: 20px 0;
  position: relative;
  padding-left: 25px;
}

@media (min-width: 1024px) {
  #support ul li {
    padding-left: 35px;
  }
}

#support ul li:first-child {
  border-top: 1px solid #e1e3eb;
}

#support ul li i {
  position: absolute;
  color: #997d4d;
  left: 0;
  top: 27px;
}

@media (min-width: 1024px) {
  #support ul li i {
    left: 16px;
  }
}

#support ul li p {
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

@media (min-width: 1024px) {
  #support ul li p {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.125rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

#support ul li p span {
  display: block;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

@media (min-width: 1024px) {
  #support ul li p span {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

/*==============================
CURRICULU
==============================*/
#curriculum {
  background-color: #b8b0a0;
  background-image: url(../img/curriculu_bg.svg);
  border-radius: 0 100px 0 0;
}

#curriculum .section_title {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  margin-bottom: 40px;
  position: relative;
  color: #404a58;
}

#curriculum .section_title span {
  display: block;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

#curriculum .curriculum_sub_read {
  text-align: center;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0;
  position: relative;
}

@media (min-width: 1024px) {
  #curriculum .curriculum_sub_read {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.5625rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0;
  }
}

#curriculum .curriculum_item {
  margin-top: 70px;
  position: relative;
}

#curriculum .curriculum_item .curriculum_item_read {
  position: relative;
}

#curriculum .curriculum_item .curriculum_item_read:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 1px;
  border-top: 1px solid #fff;
  margin: auto;
  top: 0;
  bottom: 0;
}

#curriculum .curriculum_item .curriculum_item_read span {
  display: table;
  background: #b8b0a0;
  border: 1px solid #fff;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  padding: 3px 50px;
  border-radius: 100px;
  margin: auto;
  position: relative;
}

#curriculum .curriculum_item .curriculum_item_read_bottom {
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  #curriculum .curriculum_item .curriculum_item_read_bottom {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.375rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

#curriculum .curriculum_item .slide-items {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  overflow: hidden;
  padding: 30px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 1024px) {
  #curriculum .curriculum_item .slide-items {
    padding: 30px;
  }
}

#curriculum .curriculum_item .slide-items .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

#curriculum .curriculum_item .slide-items .slick-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#curriculum .curriculum_item .slide-items li {
  background: #fff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#curriculum .curriculum_item .slide-items li:nth-child(n + 2) {
  margin-top: 30px;
}

#curriculum .curriculum_item .slide-items li .in_w {
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

#curriculum .curriculum_item .slide-items li .in_w .curriculum_item_day {
  width: 226px;
  height: 45px;
  background-image: url(../img/curriculum_item_day_bg.svg);
  background-repeat: no-repeat;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  padding-left: 32px;
  margin-left: -30px;
  padding-top: 13px;
  line-height: 1em;
  position: relative;
}

#curriculum .curriculum_item .slide-items li .in_w .curriculum_item_day span {
  color: #c4bcad;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #fff;
  line-height: 1em;
}

#curriculum .curriculum_item .slide-items li .in_w img {
  display: block;
  width: 100%;
  margin-top: -25px;
}

#curriculum .curriculum_item .slide-items li .in_w .curriculum_item_text {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  color: #404a58;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  #curriculum .curriculum_item .slide-items li .in_w .curriculum_item_text {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

#curriculum .curriculum_item .sliiii {
  position: relative;
}

#curriculum .curriculum_item .slick-slide {
  height: auto;
  outline: none;
}

#curriculum .curriculum_item .slick-slide li {
  width: 100%;
  padding: 0 10px;
  background: #fff;
  border: 1px solid;
  outline: none;
}

#curriculum .curriculum_item .slick-slide .curriculum-slider-wrapper {
  position: relative;
  width: 100%;
}

#curriculum .curriculum_item .slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 20px;
  z-index: 10;
  /* --- 左側のボタン --- */
  /* --- 右側のボタン --- */
}

#curriculum .curriculum_item .slider-nav button {
  background: #fff;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #4a5d7c;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  margin: auto;
  top: 0;
  bottom: 0;
}

#curriculum .curriculum_item .slider-nav button:hover {
  background: #f9f9f9;
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
}

#curriculum .curriculum_item .slider-nav .prev-btn {
  left: -15px;
}

@media (min-width: 1024px) {
  #curriculum .curriculum_item .slider-nav .prev-btn {
    left: 5px;
  }
}

#curriculum .curriculum_item .slider-nav .next-btn {
  right: -15px;
}

@media (min-width: 1024px) {
  #curriculum .curriculum_item .slider-nav .next-btn {
    right: 5px;
  }
}

/*==============================
MISSON
==============================*/
#misson .section_title {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  margin-bottom: 40px;
  position: relative;
  color: #404a58;
}

#misson .section_title span {
  display: block;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

#misson .misson_sub_read {
  text-align: center;
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0;
  position: relative;
}

@media (min-width: 1024px) {
  #misson .misson_sub_read {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.5625rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0;
  }
}

#misson .misson_sub_read_bottom {
  text-align: center;
  color: #997d4d;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.1875rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0;
  margin-top: 40px;
}

#misson .suche {
  margin-top: 40px;
}

#misson .suche .suche_read {
  position: relative;
}

#misson .suche .suche_read:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 1px;
  border-top: 1px solid #404a58;
  margin: auto;
  top: 0;
  bottom: 0;
}

#misson .suche .suche_read span {
  display: table;
  background: #fff;
  border: 1px solid #404a58;
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  padding: 3px 50px;
  border-radius: 100px;
  margin: auto;
  position: relative;
}

#misson .suche .misson_suche_time {
  display: block;
  width: 100%;
  margin: 30px auto 0;
}

#misson .item_fututer {
  margin-top: 60px;
}

#misson .item_fututer .item_fututer_photo {
  display: block;
  width: 100%;
}

#misson .item_fututer .item_fututer_text {
  margin-top: 40px;
}

#misson .item_fututer .item_fututer_text .item_fututer_tex_en {
  display: block;
  height: 42px;
  margin: auto;
}

#misson .item_fututer .item_fututer_text .item_fututer_text_read {
  text-align: center;
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  margin-top: -23px;
}

#misson .item_fututer .item_fututer_text .item_fututer_text_main {
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  text-align: center;
  margin-top: 30px;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}

@media (min-width: 1024px) {
  #misson .item_fututer .item_fututer_text .item_fututer_text_main {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

#misson .item_fututer .meri {
  margin-top: 40px;
}

#misson .item_fututer .meri .meri_read {
  position: relative;
  text-align: center;
  color: #997d4d;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  padding-bottom: 20px;
}

#misson .item_fututer .meri .meri_read:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 330px;
  height: 12px;
  background-image: url(../img/meri_read_line.svg);
  background-size: 100%;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}

#misson .item_fututer .meri ul {
  margin-top: 40px;
}

#misson .item_fututer .meri ul li {
  position: relative;
}

#misson .item_fututer .meri ul li:nth-child(n + 2) {
  margin-top: 60px;
}

#misson .item_fututer .meri ul li .meri_item_no {
  display: block;
  position: absolute;
  width: 152px;
  top: 0;
  right: 0;
}

#misson .item_fututer .meri ul li .meri_item_read {
  position: relative;
}

#misson .item_fututer .meri ul li .meri_item_read span {
  background: #404a58;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  padding: 2px 10px;
  margin-top: 4px;
  display: table;
}

@media (min-width: 1024px) {
  #misson .item_fututer .meri ul li .meri_item_read span {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.1875rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

#misson .item_fututer .meri ul li .meri_item_main {
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  margin-top: 21px;
  position: relative;
  line-height: 1.8em;
}

@media (min-width: 1024px) {
  #misson .item_fututer .meri ul li .meri_item_main {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

/*==============================
STORY
==============================*/
#story .section_title {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  margin-bottom: 40px;
  position: relative;
  color: #404a58;
}

#story .section_title span {
  display: block;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

#story .item_story {
  margin-top: 60px;
}

#story .item_story .item_story_photo {
  display: block;
  width: 100%;
}

#story .item_story .item_story_text {
  margin-top: 40px;
}

#story .item_story .item_story_text:nth-child(n + 2) {
  margin-top: 100px;
}

#story .item_story .item_story_text .item_story_section {
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  text-align: center;
  margin-top: 40px;
}

#story .item_story .item_story_text .item_story_section span {
  display: block;
  color: #997d4d;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
}

#story .item_story .item_story_text .item_fututer_text_main {
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  text-align: center;
  margin-top: 40px;
}

@media (min-width: 1024px) {
  #story .item_story .item_story_text .item_fututer_text_main {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

#story .item_story .item_story_text .item_fututer_text_read_sub {
  color: #404a58;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.1875rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  text-align: center;
  margin-top: 30px;
}

#story .item_story .item_story_text .item_fututer_text_read_sub:nth-child(n + 2) {
  margin-top: 60px;
}

#story .item_story .item_story_text .item_fututer_text_read_main {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  color: #404a58;
  margin-top: 30px;
  line-height: 1.8em;
}

#story .item_story .item_story_text .item_fututer_text_read_main span {
  display: block;
  margin: 30px 0;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  color: #997d4d;
}

/*==============================
GALLERY
==============================*/
#gallery {
  background: #8f9ca3;
  border-radius: 0 100px 0 0;
  margin-top: 40px;
}

#gallery .section_title {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  margin-bottom: 40px;
  position: relative;
  color: #fff;
}

#gallery .section_title span {
  display: block;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

#gallery .gallery_main {
  text-align: center;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
  position: relative;
}

@media (min-width: 1024px) {
  #gallery .gallery_main {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
  }
}

#gallery .gallery_item {
  margin-top: 60px;
}

#gallery .gallery_item .gallery_item_read {
  position: relative;
}

#gallery .gallery_item .gallery_item_read:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 1px;
  border-top: 1px solid #fff;
  margin: auto;
  top: 0;
  bottom: 0;
}

#gallery .gallery_item .gallery_item_read span {
  display: table;
  background: #8f9ca3;
  border: 1px solid #fff;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  padding: 3px 50px;
  border-radius: 100px;
  margin: auto;
  position: relative;
}

#gallery .gallery_item .gallery_item_read_bottom {
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}

#gallery .gallery_item .slide-items {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  overflow: hidden;
  padding: 30px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#gallery .gallery_item .slide-items .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

#gallery .gallery_item .slide-items .slick-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  outline: none;
}

#gallery .gallery_item .slide-items li {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  outline: none;
}

#gallery .gallery_item .slide-items li .col-2 {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#gallery .gallery_item .slide-items li .col-2 .col-2-irtem {
  width: 48%;
}

#gallery .gallery_item .slide-items li .col-2 .col-2-irtem:nth-child(even) {
  margin-left: auto;
}

#gallery .gallery_item .slide-items li .col-2 .col-2-irtem img {
  display: block;
  width: 100%;
}

#gallery .gallery_item .slide-items li .col-2 .col-2-irtem p {
  text-align: center;
  margin-top: 7px;
  color: #fff;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

#gallery .gallery_item .slide-items .curriculum-slider-wrapper {
  position: relative;
  width: 100%;
}

#gallery .gallery_item .sliiii {
  position: relative;
}

#gallery .gallery_item .slider-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 20px;
  z-index: 10;
  /* --- 左側のボタン --- */
  /* --- 右側のボタン --- */
}

#gallery .gallery_item .slider-nav button {
  background: #fff;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #4a5d7c;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  margin: auto;
  top: 0;
  bottom: 0;
}

#gallery .gallery_item .slider-nav button:hover {
  background: #f9f9f9;
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
}

#gallery .gallery_item .slider-nav .prev-btn {
  left: -15px;
}

#gallery .gallery_item .slider-nav .next-btn {
  right: -15px;
}

/*==============================
COURSE
==============================*/
#course .section_title {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  margin-bottom: 40px;
  position: relative;
  color: #404a58;
}

#course .section_title span {
  display: block;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

#course .list_mein_course {
  margin-top: 50px;
}

#course .list_mein_course li {
  background: #fff;
  border: 1px solid #f4f5f6;
  padding: 50px 30px;
}

@media (min-width: 1024px) {
  #course .list_mein_course li {
    padding: 50px 40px;
  }
}

#course .list_mein_course li:nth-child(n + 2) {
  margin-top: 50px;
}

#course .list_mein_course li.item_1 {
  background-image: url(../img/list_mein_course_item_1_bg.png);
  background-size: 250px;
  background-repeat: no-repeat;
  background-position: top left;
}

#course .list_mein_course li.item_2 {
  background-image: url(../img/list_mein_course_item_2_bg.png);
  background-size: 222px;
  background-repeat: no-repeat;
  background-position: top right;
  border-color: #997d4d;
}

#course .list_mein_course li.item_3 {
  background-image: url(../img/list_mein_course_item_3_bg.png);
  background-size: 222px;
  background-repeat: no-repeat;
  background-position: bottom left;
}

#course .list_mein_course li .osusume {
  display: block;
  height: 19px;
  margin: auto;
}

#course .list_mein_course li .list_mein_course_neme {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.375rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  color: #404a58;
}

#course .list_mein_course li .list_mein_course_neme span {
  display: table;
  position: relative;
  margin: auto;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
  color: #404a58;
  padding: 0 30px;
  letter-spacing: 0em;
}

#course .list_mein_course li .list_mein_course_neme span:before, #course .list_mein_course li .list_mein_course_neme span:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 22px;
  height: 1px;
  border-top: 1px solid #404a58;
  margin: auto;
  top: 0;
  bottom: 0;
}

#course .list_mein_course li .list_mein_course_neme span:before {
  left: 0;
}

#course .list_mein_course li .list_mein_course_neme span:after {
  right: 0;
}

#course .list_mein_course li .list_mein_course_nedan {
  font-family: YakuHanMP, "GFS Didot", serif;
  font-size: 1.875rem;
  font-weight: 400;
  color: #997d4d;
  text-align: center;
  margin-top: 15px;
}

#course .list_mein_course li .list_mein_course_nedan .yen {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

#course .list_mein_course li .list_mein_course_nedan .zei {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

#course .list_mein_course li .list_mein_course_sub {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  color: #404a58;
  margin-top: 6px;
}

#course .list_mein_course li .list_mein_course_info {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #f4f5f6;
}

#course .list_mein_course li .list_mein_course_info {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  color: #404a58;
}

#course .kit_list_read {
  text-align: center;
  border-bottom: 1px solid #997d4d;
  border-top: 1px solid #997d4d;
  color: #997d4d;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  margin: 80px auto 0;
  width: 100%;
  padding: 10px 0;
}

@media (min-width: 1024px) {
  #course .kit_list_read {
    width: 80%;
  }
}

#course .kit_list_text {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  color: #404a58;
  line-height: 2.5em;
  margin-top: 30px;
}

#course .bottom {
  margin-top: 80px;
}

#course .bottom .bottom_read {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

#course .bottom .bottom_read span {
  display: block;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

#course .bottom .list_othr_course {
  margin-top: 50px;
}

#course .bottom .list_othr_course li {
  padding: 40px 0;
  border-bottom: 1px solid #f4f5f6;
}

#course .bottom .list_othr_course li:first-child {
  border-top: 1px solid #f4f5f6;
}

#course .bottom .list_othr_course li .list_othr_course_read {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

#course .bottom .list_othr_course li .list_othr_course_read span {
  display: block;
  color: #8f9ca3;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

#course .bottom .list_othr_course li .list_mein_course_nedan {
  font-family: YakuHanMP, "GFS Didot", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #997d4d;
  text-align: center;
  margin-top: 15px;
}

#course .bottom .list_othr_course li .list_mein_course_nedan .yen {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

#course .bottom .list_othr_course li .list_mein_course_nedan .zei {
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

#course .bottom .list_othr_course li .list_othr_course_text {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  color: #404a58;
  margin-top: 15px;
}

#course .bottom .list_othr_course li .list_othr_course_text_bottom {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  color: #404a58;
  margin-top: 15px;
}

/*==============================
Q&A
==============================*/
#faq .section_title {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  margin-bottom: 40px;
  position: relative;
  color: #404a58;
}

#faq .section_title span {
  display: block;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

#faq .qa_container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

@media (min-width: 1024px) {
  #faq .qa_container {
    padding: 0 20px;
  }
}

#faq .qa_container .qa_item {
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#faq .qa_container .qa_item[open] .qa_question .icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 0;
}

#faq .qa_container .qa_question {
  padding: 30px 5px;
  list-style: none;
  cursor: pointer;
  font-weight: bold;
  /*justify-content: space-between;*/
  /*align-items: center;*/
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  color: #404a58;
  position: relative;
  padding-right: 30px;
}

#faq .qa_container .qa_question::-webkit-details-marker {
  display: none;
}

#faq .qa_container .qa_question span:first-child {
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  color: #997d4d;
  margin-right: 10px;
}

#faq .qa_container .qa_question .icon {
  position: absolute;
  width: 14px;
  height: 14px;
  margin-left: auto;
  margin-top: 10px;
  right: 0;
  top: 32px;
}

#faq .qa_container .qa_question .icon::before, #faq .qa_container .qa_question .icon::after {
  content: "";
  position: absolute;
  background: #4a5d7c;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#faq .qa_container .qa_question .icon::before {
  width: 14px;
  height: 2px;
}

#faq .qa_container .qa_question .icon::after {
  width: 2px;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#faq .qa_container .qa_answer {
  padding: 0 5px 30px;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  color: #404a58;
  -webkit-animation: fadeIn 0.4s ease;
          animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*==============================
RESERVE
==============================*/
#reserve {
  background-color: #b8b0a0;
  background-image: url(../img/curriculu_bg.svg);
  border-radius: 0 100px 0 0;
}

#reserve .section_title {
  text-align: center;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  margin-bottom: 40px;
  position: relative;
  color: #fff;
}

#reserve .section_title span {
  display: block;
  font-family: YakuHanMP, "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

#reserve .reserve_sub_read {
  text-align: center;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0;
  position: relative;
}

@media (min-width: 1024px) {
  #reserve .reserve_sub_read {
    font-family: YakuHanMP, "Zen Old Mincho", serif;
    font-size: 1.5625rem;
    letter-spacing: 0.03em;
    line-height: 1.6em;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0;
  }
}

#reserve .ultra_simple_list {
  margin-top: 50px;
}

#reserve .ultra_simple_list li {
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  padding: 16px;
  border-bottom: 1px solid #fff;
  position: relative;
  padding-left: 37px;
}

#reserve .ultra_simple_list li:first-child {
  border-top: 1px solid #fff;
}

#reserve .ultra_simple_list li:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  width: 9px;
  height: 9px;
  background-image: url(../img/reserve_list_icon.svg);
  margin: auto;
  top: 0;
  bottom: 0;
  left: 20px;
}

#reserve .reserve_text {
  margin-top: 40px;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

#reserve .reserve_item_access {
  margin-top: 100px;
}

#reserve .reserve_item_access .acess_logo {
  display: block;
  margin: 0 auto 60px;
  width: 49%;
}

@media (min-width: 1024px) {
  #reserve .reserve_item_access .acess_logo {
    width: 39%;
  }
}

#reserve .reserve_item_access .reserve_item_access_read_en {
  display: block;
  height: 42px;
  margin: auto;
}

#reserve .reserve_item_access .reserve_item_access_read {
  text-align: center;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  margin-top: -23px;
}

#reserve .reserve_item_access .reserve_item_access_main {
  text-align: center;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  margin-top: 15px;
}

#reserve .reserve_item_access .item_access_photo {
  display: block;
  width: 100%;
  margin: 40px 0;
}

#reserve .reserve_item_access .reserve_item_access_bottom {
  text-align: center;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
}

footer {
  margin-top: 40px;
  text-align: center;
  color: #fff;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6em;
  font-weight: 400;
  padding-bottom: 40px;
}

@media (min-width: 1024px) {
  footer {
    padding-bottom: 0;
  }
}

.kotei_bnn {
  position: fixed;
  bottom: 20px;
  max-width: 300px;
  width: 80%;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 444;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.kotei_bnn.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (min-width: 1024px) {
  .kotei_bnn {
    display: none;
  }
}

/*==============================
AOS
==============================*/
[data-aos="fade-up"] {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

[data-aos="fade-up"].aos-animate {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

[data-aos="fade-right"] {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

[data-aos="fade-right"].aos-animate {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
/*# sourceMappingURL=style.css.map */