@charset "UTF-8";
/*---------------------------------------------------------
 アウトライン
---------------------------------------------------------*/
.l-container {
  width: 89.33vw;
  margin: 0 auto;
}

/*---------------------------------------------------------
 共通
---------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #FBF8F2;
}

body * {
  color: #472803;
}

a {
  text-decoration: none;
}

br {
  height: 0;
}

h2 {
  color: #472803;
  font-size: 8vw;
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", sans-serif;
  letter-spacing: 0.1em;
}
h2 span {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.73vw;
  margin-top: 0.8vw;
  letter-spacing: 0em;
}

li {
  list-style: none;
}

.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.hidden-sp {
  display: none;
}

.hidden-pc {
  display: block;
}

/*---------------------------------------------------------
 ヘッダー
---------------------------------------------------------*/
.header {
  background-color: #FBF8F2;
  height: 15.46vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  width: 94.66vw;
  margin-left: auto;
}
.header__inner h1 a {
  display: flex;
  height: 15.46vw;
  align-items: center;
  color: #472803;
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 1.41;
  font-family: "Zen Maru Gothic", sans-serif;
}
.header__inner__nav {
  display: flex;
  align-items: center;
}
.header__inner__nav button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15.46vw;
  height: 15.46vw;
}
.header__inner__nav button img {
  width: 4.8vw;
  height: 4.26vw;
}
.header__inner__nav ul {
  display: none;
  width: 100vw;
  position: absolute;
  top: 15.46vw;
  left: 0;
  right: 0;
  padding: 5.33vw 0 8vw;
  background-color: #FBF8F2;
}
.header__inner__nav ul li a {
  display: block;
  color: #472803;
  font-size: 3.2vw;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  padding: 2.66vw 0;
}
.header__inner__nav ul li:last-child a {
  display: block;
  width: 42.13vw;
  height: 9.86vw;
  color: #FBF8F2;
  line-height: 9.86vw;
  background: #472803;
  border-radius: 1.33vw;
  padding: 0;
  margin: 2.66vw auto 0;
}

/*---------------------------------------------------------
 メインビジュアル
---------------------------------------------------------*/
.mv {
  margin-top: 39.2vw;
  position: relative;
  /*Scrollテキストの描写*/
  /* 丸の描写 */
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*上から下にかけて丸が透過→不透明→透過する*/
  /* 線の描写 */
}
.mv h2 {
  position: absolute;
  top: -21.94vw;
  right: 5.33vw;
  text-align: left;
}
.mv h2 span {
  display: inline-block;
  height: 11.73vw;
  color: #472803;
  font-size: 5.33vw;
  background: #FFF;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 11.73vw;
  padding: 0 2.66vw;
  border-radius: 0.8vw;
}
.mv h2 span:not(:last-child) {
  margin-bottom: 2.13vw;
}
.mv__bg--main {
  width: 86.13vw;
  margin-left: auto;
  border-top: #472803 solid thin;
  border-left: #472803 solid thin;
  border-bottom: #472803 solid thin;
  border-top-left-radius: 13.33vw;
  border-bottom-left-radius: 13.33vw;
  overflow: hidden;
  text-align: center;
}
.mv__bg--main img {
  width: 86.13vw;
  vertical-align: top;
}
.mv__bg--sub {
  width: 46.4vw;
  position: relative;
  margin-left: 5.33vw;
  bottom: 9vw;
  border-top: #472803 solid thin;
  border-left: #472803 solid thin;
  border-bottom: #472803 solid thin;
  border: #472803 solid thin;
  border-radius: 2.66vw;
  overflow: hidden;
  text-align: center;
}
.mv__bg--sub img {
  width: 46.4vw;
  vertical-align: top;
}
.mv .scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 66.6vw;
  left: 5%;
}
.mv .scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: #472803;
  font-size: 2.4vw;
  font-weight: 700;
  letter-spacing: 0.2em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
  font-family: "Zen Maru Gothic", sans-serif;
}
.mv .scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -0.8vw;
  /*丸の形状*/
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  background: #472803;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove {
  0% {
    bottom: 13.41vw;
  }
  100% {
    bottom: -8vw;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.mv .scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: -5.86vw;
  left: 0;
  /*線の形状*/
  width: 0.33vw;
  height: 21.41vw;
  background: #472803;
}

/*---------------------------------------------------------
 コンセプト
---------------------------------------------------------*/
.concept {
  padding-bottom: 31.73vw;
}
.concept figure {
  width: 94.66vw;
  margin-right: auto;
  margin-bottom: 11.2vw;
}
.concept figure img {
  width: 94.66vw;
  border-top: #472803 solid thin;
  border-right: #472803 solid thin;
  border-bottom: #472803 solid thin;
  border-top-right-radius: 13.33vw;
  border-bottom-right-radius: 13.33vw;
}
.concept__textarea h2 {
  font-size: 5.33vw;
  color: #472803;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 13.33vw;
}
.concept__textarea p {
  color: #472803;
  font-size: 3.46vw;
  font-weight: 500;
  line-height: 2;
}

/*---------------------------------------------------------
 アクティビティ
---------------------------------------------------------*/
.activity {
  position: relative;
}
.activity__deco {
  position: absolute;
  top: -24.8vw;
  right: 0;
  z-index: 2;
}
.activity__deco img {
  width: 26.93vw;
  border-top: #472803 solid thin;
  border-left: #472803 solid thin;
  border-bottom: #472803 solid thin;
  border-top-left-radius: 2.66vw;
  border-bottom-left-radius: 2.66vw;
}
.activity__content {
  padding: 18.13vw 0;
}
.activity__content::before {
  content: "";
  display: block;
  background: #FFF;
  width: 94.66vw;
  height: 165.06vw;
  margin-left: auto;
  border-top-left-radius: 18.66vw;
  border-bottom-left-radius: 18.66vw;
  position: absolute;
  right: 0;
  top: 0;
}
.activity__content h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 10.66vw;
  text-align: center;
}
.activity__content ul {
  position: relative;
  z-index: 2;
  width: 85.86vw;
  margin-left: auto;
  display: flex;
  overflow-x: scroll;
  overflow-y: visible;
  padding-bottom: 7vw;
}
.activity__content ul li {
  width: 71.47vw;
  padding-top: 6.66vw;
  padding-left: 3.1vw;
}
.activity__content ul li:not(:last-child) {
  margin-right: 12.26vw;
}
.activity__content ul li:last-child {
  margin-right: 15.73vw;
}
.activity__content ul li figure {
  position: relative;
}
.activity__content ul li figure::after {
  content: "";
  display: block;
  width: 63.99vw;
  height: 43.86vw;
  background-color: #9D906A;
  transform: rotate(10deg);
  border-radius: 5.33vw;
  position: absolute;
  top: 0;
  left: 0;
}
.activity__content ul li figure img {
  border: #472803 solid thin;
  border-radius: 5.33vw;
  width: 63.99vw;
  position: relative;
  z-index: 2;
  margin-bottom: 8vw;
}
.activity__content ul li h3 {
  color: #472803;
  font-size: 4.26vw;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 4vw;
}
.activity__content ul li p {
  font-size: 3.2vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.66;
}

/*---------------------------------------------------------
 アクセス
---------------------------------------------------------*/
.access {
  padding-top: 12.8vw;
}
.access .l-container {
  width: auto;
  margin: auto;
}
.access__textarea {
  width: 89.33vw;
  margin: 0 auto;
}
.access__textarea h2 {
  margin-bottom: 7.46vw;
}
.access__textarea p {
  font-size: 3.73vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 7.2vw;
}
.access__textarea ul {
  margin-bottom: 11.2vw;
}
.access__textarea ul li {
  font-size: 3.2vw;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.access__textarea ul li:not(:last-child) {
  margin-bottom: 7.2vw;
}
.access__map {
  width: 94.66vw;
  height: 65.8vw;
  margin-right: auto;
  border-top: #472803 solid thin;
  border-right: #472803 solid thin;
  border-bottom: #472803 solid thin;
  border-top-right-radius: 5.33vw;
  border-bottom-right-radius: 5.33vw;
  overflow: hidden;
}
.access__map img {
  width: 94.66vw;
  height: 65.8vw;
}

/*---------------------------------------------------------
 入会までの流れ
---------------------------------------------------------*/
.step {
  padding-top: 19.2vw;
  padding-bottom: 16vw;
}
.step h2 {
  text-align: center;
  margin-bottom: 8vw;
}
.step__txt {
  font-size: 3.2vw;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-bottom: 14.93vw;
}
.step ul li {
  width: 66.66vw;
  background-color: #FFF;
  border: #472803 solid 0.58vw;
  border-radius: 2.66vw;
  padding: 18.4vw 4.8vw 11.46vw;
  margin: 0 auto;
  position: relative;
}
.step ul li:not(:last-child) {
  margin: 0 auto 17.86vw;
}
.step ul li::before {
  content: "";
  display: block;
  width: 25.6vw;
  height: 19.46vw;
  position: absolute;
  top: -10.3vw;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
}
.step ul li.-list01::before {
  background: url(/asset/image/step_icon_01_sp.png) no-repeat center/cover;
}
.step ul li.-list01 h3::after {
  width: 11.73vw;
  height: 12vw;
  background: url(asset/image/step_contact_icon_sp.png) no-repeat center/cover;
}
.step ul li.-list02::before {
  background: url(/asset/image/step_icon_02_sp.png) no-repeat center/cover;
}
.step ul li.-list02 h3::after {
  width: 11.2vw;
  height: 11.46vw;
  background: url(asset/image/step_experience_icon_sp.png) no-repeat center/cover;
}
.step ul li.-list02 p span em {
  display: inline-block;
  margin: 0 2.93vw;
  font-size: 10.4vw;
  font-style: normal;
}
.step ul li.-list03::before {
  background: url(/asset/image/step_icon_03_sp.png) no-repeat center/cover;
}
.step ul li.-list03 h3::after {
  width: 11.2vw;
  height: 11.46vw;
  background: url(asset/image/step_sign_icon_sp.png) no-repeat center/cover;
}
.step ul li.-list03 p span em {
  font-size: 5.06vw;
  font-style: normal;
}
.step ul li.-list03 p span em b {
  display: inline-block;
  margin: 0 1.6vw 0 0;
  font-size: 10.66vw;
  font-style: normal;
}
.step ul li h3 {
  color: #472803;
  font-size: 6.66vw;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "Zen Maru Gothic", sans-serif;
}
.step ul li h3::after {
  content: "";
  display: block;
  margin: 2.13vw auto 6vw;
}
.step ul li p {
  font-size: 3.2vw;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
.step ul li p span {
  font-size: 2.9vw;
  font-weight: 700;
  font-style: normal;
  font-family: "Zen Maru Gothic", sans-serif;
}
.step small {
  display: block;
  font-size: 2.4vw;
  width: 66.13vw;
  margin: 8vw auto 0;
}

/*---------------------------------------------------------
 お問い合わせ
---------------------------------------------------------*/
.contact {
  background-color: #FFF;
  padding: 25.06vw 0 16vw;
  position: relative;
}
.contact::before {
  content: "";
  display: block;
  width: 100vw;
  height: 9.06vw;
  background: url(asset/image/contact_deco_sp.png) no-repeat center/cover;
  position: absolute;
  top: -4.5vw;
}
.contact h2 {
  text-align: center;
  margin-bottom: 8vw;
}
.contact__txt {
  font-size: 3.2vw;
  font-weight: 500;
  margin-bottom: 13.33vw;
  text-align: center;
  line-height: 2;
}
.contact form > p > label {
  display: block;
  margin-bottom: 10.82vw;
}
.contact form > p > br {
  display: none;
}
.contact__form__item {
  display: inline-block;
  width: auto;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2vw;
  font-weight: 600;
}
.contact__form__item:not(.norequire)::after {
  content: "必須";
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #FFFFFF;
  width: 8.44vw;
  height: 4.178vw;
  font-size: 2.66vw;
  letter-spacing: 0.05em;
  background-color: #472803;
  text-align: center;
  line-height: 4.178vw;
  margin-left: 5.33vw;
}
.contact .contact__form__item {
  margin-bottom: 4.26vw;
}
.contact input[type=text], .contact input[type=email] {
  border: #472803 solid 0.3vw;
  width: 100%;
  height: 10.6vw;
  border-radius: 1.33vw;
  padding: 0 0.5em;
  font-size: 3.2vw;
}
.contact textarea {
  border: #472803 solid 0.3vw;
  width: 100%;
  height: 21.78vw;
  border-radius: 1.33vw;
  margin-bottom: 0;
  padding: 0.5em;
  font-size: 3.2vw;
}
.contact .wpcf7-radio {
  display: flex;
  justify-content: space-between;
}
.contact .wpcf7-radio input[type=radio] {
  display: none;
}
.contact .wpcf7-list-item-label {
  font-size: 3.2vw;
  color: #472803;
}
.contact .wpcf7-list-item > label {
  display: flex;
  align-items: center;
}
.contact .wpcf7-list-item > label::before {
  content: "";
  display: inline-block;
  width: 2.93vw;
  height: 2.93vw;
  border-radius: 50%;
  border: #472803 solid 0.26vw;
  margin-right: 2.45vw;
}
.contact .wpcf7-list-item > label:has(input[type=radio]:checked)::before {
  background: radial-gradient(#472803 0% 50%, #FFF 50% 100%);
}
.contact input[type=submit] {
  background-color: #472803;
  color: #FBF8F2;
  margin: 0 auto;
  display: block;
  width: 25.7vw;
  height: 8.75vw;
  font-size: 3.2vw;
  letter-spacing: 0.1em;
  border-radius: 4.38vw;
}
.contact .screen-reader-response {
  display: none;
}
.contact .wpcf7-not-valid-tip, .contact .wpcf7-response-output {
  font-size: 3.2vw;
  font-weight: 700;
  text-decoration: underline;
  margin-top: 5vw;
}

/*---------------------------------------------------------
 フッター
---------------------------------------------------------*/
.footer {
  padding: 22.4vw 0 35.2vw;
  background-color: #FBF8F2;
}
.footer .l-container {
  position: relative;
}
.footer p {
  line-height: 1.41;
}
.footer * {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 3.2vw;
}
.footer__info__txt--com {
  margin-bottom: 17.86vw;
}
.footer__info__txt--rep {
  line-height: 2;
  width: 55vw;
}
.footer__link {
  position: absolute;
  right: 0;
  top: 31.26vw;
}
.footer__link li:not(:last-child) {
  margin-bottom: 2.66vw;
}

/*---------------------------------------------------------
 以下PC表示
---------------------------------------------------------*/
@media (min-width: 768px) {
  /*---------------------------------------------------------
  アウトライン
  ---------------------------------------------------------*/
  main {
    overflow: hidden;
  }
  .l-container {
    width: auto;
    max-width: 1220px;
    padding: 0 20px;
  }
  /*---------------------------------------------------------
  共通
  ---------------------------------------------------------*/
  h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  h2 span {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    margin-top: 8px;
    letter-spacing: 0em;
  }
  li {
    list-style: none;
  }
  br {
    display: block;
    height: 0;
  }
  a, input[type=submit]:hover {
    transition: 0.1s all;
  }
  a:hover, input[type=submit]:hover {
    transition: 0.1s all;
    opacity: 0.6;
  }
  .timing02 {
    transition-delay: 0.2s;
  }
  .timing03 {
    transition-delay: 0.4s;
  }
  .timing04 {
    transition-delay: 0.6s;
  }
  .timing05 {
    transition-delay: 0.8s;
  }
  .timing05 {
    transition-delay: 1s;
  }
  .timing06 {
    transition-delay: 1.2s;
  }
  .hidden-sp {
    display: block;
  }
  .hidden-pc {
    display: none;
  }
  /*---------------------------------------------------------
  ヘッダー
  ---------------------------------------------------------*/
  .header {
    height: 79px;
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1360px;
    width: auto;
    padding: 0 20px;
    margin: 0 auto;
  }
  .header__inner__nav button {
    display: none;
  }
  .header__inner h1 a {
    display: flex;
    height: 79px;
    align-items: center;
    font-size: 16px;
    line-height: 1.5;
  }
  .header__inner__nav {
    display: flex;
    align-items: center;
  }
  .header__inner__nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 451px;
    position: relative;
    top: 0;
    padding: 0;
  }
  .header__inner__nav ul li a {
    font-size: 14px;
    text-align: unset;
    padding: 0;
  }
  .header__inner__nav ul li:last-child a {
    width: 109px;
    height: 37px;
    line-height: 37px;
    border-radius: 3px;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  /*---------------------------------------------------------
  メインビジュアル
  ---------------------------------------------------------*/
  .mv {
    margin-top: 110px;
    /*Scrollテキストの描写*/
    /* 丸の描写 */
    /*下からの距離が変化して丸の全体が上から下に動く*/
    /*上から下にかけて丸が透過→不透明→透過する*/
    /* 線の描写 */
  }
  .mv h2 {
    top: auto;
    bottom: 229px;
    left: 141px;
    text-align: left;
    position: relative;
  }
  .mv h2 span {
    height: 47px;
    font-size: 24px;
    line-height: 47px;
    padding: 0 10px;
    border-radius: 3px;
    margin-top: 0;
  }
  .mv h2 span:not(:last-child) {
    margin-bottom: 5px;
  }
  .mv__bg--main {
    width: 100%;
    height: 626px;
    margin-left: 261px;
    border-top: #472803 solid 1px;
    border-left: #472803 solid 1px;
    border-bottom: #472803 solid 1px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    overflow: hidden;
    text-align: center;
  }
  .mv__bg--main img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    vertical-align: top;
  }
  .mv__bg--sub {
    width: 221px;
    position: relative;
    margin-left: 140px;
    bottom: 173px;
    border-top: #472803 solid 1px;
    border-left: #472803 solid 1px;
    border-bottom: #472803 solid 1px;
    border: #472803 solid 1px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
  }
  .mv__bg--sub img {
    width: 221px;
    vertical-align: top;
  }
  .mv .scrolldown2 {
    position: absolute;
    bottom: auto;
    top: 340px;
    left: 36px;
  }
  .mv .scrolldown2 span {
    /*描画位置*/
    position: absolute;
    left: 10px;
    bottom: -35px;
    font-size: 12px;
    letter-spacing: 0.2em;
    /*縦書き設定*/
    writing-mode: vertical-rl;
    font-family: "Zen Maru Gothic", sans-serif;
  }
  .mv .scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: -2px;
    /*丸の形状*/
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #472803;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
  @keyframes circlemove {
    0% {
      bottom: 20px;
    }
    100% {
      bottom: -90px;
    }
  }
  @keyframes cirlemovehide {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 0.9;
    }
    100% {
      opacity: 0;
    }
  }
  .mv .scrolldown2:after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: -85px;
    left: 0;
    /*線の形状*/
    width: 1px;
    height: 105px;
    background: #472803;
  }
  /*---------------------------------------------------------
  コンセプト
  ---------------------------------------------------------*/
  .concept {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 120px;
    margin-top: -150px;
  }
  .concept figure {
    width: 50vw;
    min-width: 40vw;
    margin-right: 93px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .concept figure img {
    width: 50vw;
    min-width: 40vw;
    border-top: #472803 solid 1px;
    border-right: #472803 solid 1px;
    border-bottom: #472803 solid 1px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  .concept__textarea {
    max-width: 540px;
  }
  .concept__textarea.l-container {
    width: auto;
    margin: 0 auto 0 0;
  }
  .concept__textarea h2 {
    width: auto;
    max-width: 427px;
    font-size: 25px;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-bottom: 56px;
    margin-left: auto;
  }
  .concept__textarea p {
    width: auto;
    max-width: 427px;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    margin-left: auto;
  }
  /*---------------------------------------------------------
  アクティビティ
  ---------------------------------------------------------*/
  .activity {
    position: relative;
  }
  .activity__deco {
    position: absolute;
    top: -81px;
    right: 0;
    z-index: 2;
  }
  .activity__deco img {
    width: 203px;
    border-top: #472803 solid 1px;
    border-left: #472803 solid 1px;
    border-bottom: #472803 solid 1px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .activity__content {
    padding: 127px 0 84px;
  }
  .activity__content::before {
    width: 81vw;
    height: 100%;
    margin-left: auto;
    border-top-left-radius: 70px;
    border-bottom-left-radius: 70px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .activity__content h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 65px;
    text-align: center;
  }
  .activity__content ul {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 1080px;
    justify-content: space-between;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    overflow: unset;
    padding: 0 20px 0;
    margin: 0 auto;
  }
  .activity__content ul li {
    width: 307px;
    padding-top: 0;
    padding-left: 0;
    flex-shrink: 0;
    margin: 0 34px 64px;
    margin-bottom: 64px;
  }
  .activity__content ul li:not(:last-child) {
    margin-right: 0;
  }
  .activity__content ul li:last-child {
    margin-right: 0;
  }
  .activity__content ul li figure {
    position: relative;
  }
  .activity__content ul li figure::after {
    content: "";
    display: block;
    width: 278px;
    height: 193px;
    background-color: #9D906A;
    transform: rotate(10deg);
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .activity__content ul li figure img {
    border: #472803 solid thin;
    border-radius: 20px;
    width: 278px;
    position: relative;
    z-index: 2;
    margin-bottom: 35px;
  }
  .activity__content ul li h3 {
    font-size: 17px;
    margin-bottom: 23px;
  }
  .activity__content ul li p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.71;
  }
  /*---------------------------------------------------------
  アクセス
  ---------------------------------------------------------*/
  .access {
    padding-top: 100px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .access__textarea {
    width: auto;
    max-width: 493px;
    margin: 0 auto 0 0;
  }
  .access__textarea h2 {
    margin-bottom: 46px;
  }
  .access__textarea p {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-bottom: 42px;
  }
  .access__textarea ul {
    margin-bottom: 0;
  }
  .access__textarea ul li {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .access__textarea ul li:not(:last-child) {
    margin-bottom: 37px;
  }
  .access__map {
    width: 50vw;
    min-width: 40vw;
    margin-right: 92px;
    left: 0;
  }
  .access__map img {
    width: 50vw;
  }
  .access__map {
    width: 50vw;
    min-width: 40vw;
    height: 468px;
    margin-right: 92px;
    margin-right: auto;
    border-top: #472803 solid 1px;
    border-right: #472803 solid 1px;
    border-bottom: #472803 solid 1px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
  }
  .access__map img {
    width: 50vw;
    height: 468px;
  }
  /*---------------------------------------------------------
  入会までの流れ
  ---------------------------------------------------------*/
  .step {
    padding-top: 119px;
    padding-bottom: 103px;
  }
  .step h2 {
    text-align: center;
    margin-bottom: 37px;
  }
  .step__txt {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    margin-bottom: 91px;
  }
  .step ul {
    display: flex;
    max-width: 1053px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .step ul li {
    width: 301px;
    height: 376px;
    border: #472803 solid 2px;
    border-radius: 10px;
    padding: 67px 25px 0;
    margin: 0 25px 70px;
    position: relative;
  }
  .step ul li:not(:last-child) {
    margin: 0 25px 70px;
  }
  .step ul li::before {
    content: "";
    display: block;
    width: 116px;
    height: 88px;
    position: absolute;
    top: -47px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
  }
  .step ul li.-list01::before {
    background: url(asset/image/step_icon_01_pc.png) no-repeat center/cover;
  }
  .step ul li.-list01 h3::after {
    width: 53px;
    height: 53px;
    background: url(asset/image/step_contact_icon_pc.png) no-repeat center/cover;
  }
  .step ul li.-list02::before {
    background: url(asset/image/step_icon_02_pc.png) no-repeat center/cover;
  }
  .step ul li.-list02 h3::after {
    width: 51px;
    height: 51px;
    background: url(asset/image/step_experience_icon_pc.png) no-repeat center/cover;
  }
  .step ul li.-list02 p span em {
    display: inline-block;
    margin: 0 7px;
    font-size: 50px;
    margin-top: -15px;
  }
  .step ul li.-list03::before {
    background: url(asset/image/step_icon_03_pc.png) no-repeat center/cover;
  }
  .step ul li.-list03 h3::after {
    width: 51px;
    height: 51px;
    background: url(asset/image/step_sign_icon_pc.png) no-repeat center/cover;
  }
  .step ul li.-list03 p span {
    display: inline-block;
    margin-top: -15px;
  }
  .step ul li.-list03 p span em {
    font-size: 24px;
    font-style: normal;
  }
  .step ul li.-list03 p span em b {
    display: inline-block;
    margin: 0 7px 0 2px;
    font-size: 50px;
    font-style: normal;
  }
  .step ul li h3 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.05em;
    height: 105px;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .step ul li h3::after {
    content: "";
    display: block;
    margin: 0 auto;
  }
  .step ul li p {
    font-size: 14px;
    font-weight: 600;
    line-height: 2;
  }
  .step ul li p span {
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    font-family: "Zen Maru Gothic", sans-serif;
  }
  .step small {
    display: block;
    width: 1003px;
    margin: 0 auto;
    font-size: 12px;
    font-weight: 300;
    margin-top: -40px;
  }
  /*---------------------------------------------------------
  お問い合わせ
  ---------------------------------------------------------*/
  .contact {
    padding: 140px 0 60px;
    position: relative;
  }
  .contact .l-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .contact::before {
    width: 100vw;
    height: 80px;
    background: url(asset/image/contact_deco_pc.png) no-repeat center/cover;
    position: absolute;
    top: -40px;
  }
  .contact h2 {
    text-align: center;
    margin-bottom: 36px;
  }
  .contact__txt {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 60px;
    text-align: center;
    line-height: 2;
  }
  .contact__textarea {
    min-width: 330px;
  }
  .contact__textarea__figure {
    width: 307px;
    padding-top: 0;
    padding-left: 0;
    flex-shrink: 0;
    margin: 0 34px 64px;
    margin-bottom: 64px;
  }
  .contact__textarea__figure:not(:last-child) {
    margin-right: 0;
  }
  .contact__textarea__figure:last-child {
    margin-right: 0;
  }
  .contact__textarea__figure figure {
    position: relative;
  }
  .contact__textarea__figure figure::after {
    content: "";
    display: block;
    width: 278px;
    height: 193px;
    background-color: #9D906A;
    transform: rotate(10deg);
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .contact__textarea__figure figure img {
    border: #472803 solid thin;
    border-radius: 20px;
    width: 278px;
    position: relative;
    z-index: 2;
    margin-bottom: 35px;
  }
  .contact__textarea__figure h3 {
    font-size: 17px;
    margin-bottom: 23px;
  }
  .contact__textarea__figure p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.71;
  }
  .contact form > p > label {
    display: block;
    margin-bottom: 35px;
  }
  .contact form > p > br {
    display: none;
  }
  .contact__form__item {
    display: inline-block;
    width: auto;
    font-size: 14px;
    font-weight: 600;
  }
  .contact__form__item:not(.norequire)::after {
    content: "必須";
    display: inline-block;
    color: #FFFFFF;
    width: 33px;
    height: 17px;
    font-size: 9px;
    letter-spacing: 0.05em;
    line-height: 17px;
    margin-left: 20px;
  }
  .contact .contact__form__item {
    margin-bottom: 29px;
  }
  .contact input[type=text], .contact input[type=email] {
    border: #472803 solid 1px;
    width: 488px;
    height: 50px;
    border-radius: 5px;
    padding: 0 0.5em;
    font-size: 14px;
  }
  .contact textarea {
    border: #472803 solid 1px;
    width: 488px;
    height: 119px;
    border-radius: 5px;
    margin-bottom: 40px;
    padding: 0.5em;
    font-size: 14px;
  }
  .contact .wpcf7-radio {
    display: flex;
    justify-content: space-between;
  }
  .contact .wpcf7-radio input[type=radio] {
    display: none;
  }
  .contact .wpcf7-list-item-label {
    font-size: 14px;
  }
  .contact .wpcf7-list-item > label::before {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: #472803 solid 1px;
    margin-right: 10px;
  }
  .contact .wpcf7-list-item > label:has(input[type=radio]:checked)::before {
    background: radial-gradient(#472803 0% 50%, #FFF 50% 100%);
  }
  .contact input[type=submit] {
    width: 123px;
    height: 42px;
    font-size: 14px;
    letter-spacing: 0.1em;
    border-radius: 21px;
  }
  .contact .screen-reader-response {
    display: none;
  }
  .contact .wpcf7-not-valid-tip, .contact .wpcf7-response-output {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    margin-top: 30px;
  }
  /*---------------------------------------------------------
  フッター
  ---------------------------------------------------------*/
  .footer {
    padding: 80px 0 76px;
    background-color: #FBF8F2;
  }
  .footer .l-container {
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .footer p {
    line-height: 1.41;
  }
  .footer * {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 16px;
  }
  .footer__info__txt--com {
    margin-bottom: 79px;
  }
  .footer__info__txt--rep {
    width: auto;
  }
  .footer__link {
    position: unset;
    width: 165px;
  }
  .footer__link li:not(:last-child) {
    margin-bottom: 12px;
  }
}/*# sourceMappingURL=style.css.map */