@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #000000;
  --black-color02: #383e45;
  --black-color03: #393e46;
  --white-color: #fff;
  --gray-color: #ccc;
  --gray-color-02: #eae8e9;
  --primary-color: #8D812B;
  --accent-color: #A3987E;
}

:root {
  /* スクロール全体の進捗 (0 to 100) */
  --total-progress: 0;
  /* 最初のフィルターのY位置 (0 → -100vh) */
  --filter-1-y: 0;
  /* 2番目のフィルター（テキスト）のY位置 (100vh → 0) */
  --filter-2-y: 100vh;
  /* テキストの移動量 */
  --text-y: 0;
  /* パララックス背景用の変数 */
  --parallax-y-origin: 0%;
  --parallax-y-program: 0%;
}

html {
  scrollbar-width: none;
  /*Firefox対応のスクロールバー非表示コード*/
  -ms-overflow-style: none;
  /*Internet Explore対応のスクロールバー非表示コード*/
}

html::-webkit-scrollbar {
  display: none;
  /*Google Chrome、Safari、Microsoft Edge対応のスクロールバー非表示コード*/
}


body {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  color: #000;
  font-size: 14px;
}

.l_contents {
  padding: 0 30px;
  max-width: calc(1028px + 30px * 2);
  margin: 0 auto;
}

.u_lg-db {
  display: none;
}

.u_ms-db {
  display: none;
}

@media screen and (max-width: 767px) {
  .u_sp-dn {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u_ms-dn {
    display: none;
  }
  .u_ms-db {
    display: block;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }

  .u_lg-db {
    display: block;
  }
}

/* ------------------fv_title (lead内で使用)------------------ */

.fv_title {
  font-size: 56px;
  color: var(--white-color);
  text-align: center;
  line-height: calc(64px / 56px);
  letter-spacing: 0.18em;
  white-space: nowrap;
  display: inline-block;
}

.fv_title_char {
  opacity: 0;
  display: inline-block;
}

/* iPhone SEなどの縦が短い端末向けの調整 */
@media screen and (max-height: 700px) {
  .fv_title {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }
}

@media screen and (min-width: 1080px) {
  .fv_title {
    font-size: 100px;
    letter-spacing: 0.05em;
  }
}

.fv_title_lg {
  font-size: 56px;
}

/* iPhone SEなどの縦が短い端末向けの調整 */
@media screen and (max-height: 700px) {
  .fv_title_lg {
    font-size: 36px;
  }
}

@media screen and (min-width: 1080px) {
  .fv_title_lg {
    font-size: 116px;
  }
}

/* ------------------lead------------------ */
.lead {
  position: relative;
  height: 300vh;
  /* 2段階演出のため長めに確保 */
  width: 100%;
  margin-top: 0;
}

.lead_wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* FV画像：固定背景として全セクションの背面に配置、コンテンツが上から被さる */
.lead_img-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.lead_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* lead セクションを抜けたら FV 画像を非表示（背面への重なり防止） */
.lead_img-box.is-hidden {
  visibility: hidden;
}

/* 1. 最初の黒いフィルター（タイトルと一緒に上に移動） */
.lead_filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(var(--filter-1-y));
  z-index: 10;
}

/* スクロールの矢印 */
.lead_scroll-wrapper {
  opacity: 0;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease; /* 表示・非表示を滑らかに */
}
/* 表示用クラス */
.lead_scroll-wrapper.is-active {
  opacity: 1;
  visibility: visible;
}

.lead_scroll-text {
  font-size: 24px;
  font-family: "GFS Didot", serif;
  color: var(--white-color);
}

.lead_scroll-arrow {
  display: block;
  width: 40px;
  height: 40px;
  border-right: 3px solid var(--white-color);
  border-bottom: 3px solid var(--white-color);
  transform: rotate(45deg);
}


/* 2. テキスト入りのフィルター（下から上にスライド） */
.lead_copy_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(var(--filter-2-y));
  z-index: 20;
}

.lead_copy_inner {
  text-align: center;
  padding: 72px 0;
  letter-spacing: 0.05em;
  font-size: 20px;
  color: white;
}

/* iPhone SEなどの縦が短い端末向けの調整 */
@media screen and (max-height: 700px) {
  .lead_copy_inner {
    padding: 20px 0;
    font-size: 14px;
  }
}

@media screen and (min-width: 1080px) {
  .lead_copy_inner {
    padding: 100px 0;
  }
}


.lead_copy_title {
  font-size: 40px;
  letter-spacing: 0.095em;
}

/* iPhone SEなどの縦が短い端末向けの調整 */
@media screen and (max-height: 700px) {
  .lead_copy_title {
    font-size: 28px;
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 768px) {
  .lead_copy_title {
    font-size: 50px;
    letter-spacing: 0.055em;
  }
}

.lead_copy-title__lg {
  font-size: 40px;
}

/* iPhone SEなどの縦が短い端末向けの調整 */
@media screen and (max-height: 700px) {
  .lead_copy-title__lg {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) {
  .lead_copy-title__lg {
    font-size: 72px;
  }
}


.lead_copy_sub-title {
  font-size: 17px;
  margin-top: 28px;
  letter-spacing: 0.3em;
  line-height: calc(31px / 17px);
}

/* iPhone SEなどの縦が短い端末向けの調整 */
@media screen and (max-height: 700px) {
  .lead_copy_sub-title {
    font-size: 17px;
    margin-top: 16px;
    letter-spacing: 0.2em;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .lead_copy_sub-title {
    font-size: 40px;
    letter-spacing: 0.1em;
    margin-top: 70px;
    font-weight: bold;
  }
}


.lead_copy_text {
  font-family: "Noto Sans JP", sans-serif;
  line-height: calc(29px / 14px);
  letter-spacing: 0.09em;
  margin-top: 40px;
}

/* iPhone SEなどの縦が短い端末向けの調整 */
@media screen and (max-height: 700px) {
  .lead_copy_text {
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-top: 25px;
  }
}

@media screen and (min-width: 1080px) {
  .lead_copy_text {
    font-size: 24px;
    margin-top: 84px;
  }
}


/* ----be myself---- */
.myself {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #fff;
}

.myself_contents {
  position: relative;
}

.myself_contents::after {
  content: "";
  display: block;
  width: 190px;
  height: 238px;
  background-image: url(../img/bemyself-img.webp);
  background-size: cover;
  background-position: center center;
  border-radius: 86px 86px 0 0;
  border: 2px solid #fff;
  position: absolute;
  top: 32px;
  right: 30px;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .myself_contents::after {
    width: 290px;
    height: 400px;
    top: 68px;
  }
}

@media screen and (min-width: 1080px) {
  .myself_contents::after {
    width: 515px;
    height: 650px;
    border-radius: 0 0 200px 200px;
    top: 0;
    right: 16px;
  }
}


.myself_inner {
  padding: 170px 0 42px;
}

@media screen and (min-width: 768px) {
  .myself_inner {
    padding: 96px 0 120px;
    padding-right: 320px;
  }
}

@media screen and (min-width: 1080px) {
  .myself_inner {
    padding-right: 540px;
  }
}

.myself_title {
  display: inline-block;
  font-family: "Charmonman", cursive;
  font-size: 32px;
  background: linear-gradient(to right, #25637a, #bfceda);
  background-clip: text;
  color: transparent;
}

@media screen and (min-width: 768px) {
  .myself_title {
    font-size: 56px;
  }
}

@media screen and (min-width: 1080px) {
  .myself_title {
    font-size: 100px;
  }
}

.myself_text {
  letter-spacing: 0.07em;
  line-height: 2.21;
  margin-top: 64px;
}

@media screen and (min-width: 768px) {
  .myself_text {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .myself_text {
    font-size: 27px;
    letter-spacing: 0.05em;
    line-height: calc(74px / 27px);
  }
}


/* ----name origin----- */
.name-origin {
  position: relative;
  z-index: 1; /* 次のセクションより低くする */
  overflow: hidden; /* 疑似要素がはみ出さないように */
}

/* iOS Safari対応: background-attachment: fixedの代わりに疑似要素を使用 */
.name-origin::before {
  content: "";
  position: absolute;
  /* 上下に余裕を持たせてパララックス時にはみ出さないようにする */
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url("../img/stone.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
  /* CSS変数でY位置を制御 */
  transform: translateY(var(--parallax-y-origin));
  will-change: transform;
}

.name-origin_wrapper {
  position: relative;
  z-index: 2; /* 背景より上に表示 */
  padding: 45px 0 48px;
}
@media screen and (min-width: 1080px) {
  .name-origin_wrapper {
    padding: 105px 0 100px;
  }
}

.name-origin_inner {
  padding: 48px 0 35px;
  background-color: #ffffff;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1080px) {
  .name-origin_inner {
    padding: 68px 0 62px;
  }
}


.name-origin_title {
  font-family: "GFS Didot", serif;
  color: var(--primary-color);
  font-size: 28px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .name-origin_title {
    font-size: 56px;
  }
}

@media screen and (min-width: 1080px) {
  .name-origin_title {
    font-size: 100px;
  }
}

.name-origin_title__sub {
  color: var(--primary-color);
  font-size: 20px;
  text-align: center;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .name-origin_title__sub {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .name-origin_title__sub {
    font-size: 45px;
    margin-top: 40px;
  }
}

.name-origin_text-wrapper {
  margin-top: 24px;
  text-align: center;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .name-origin_text-wrapper {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .name-origin_text-wrapper {
    margin-top: 80px;
    font-size: 30px;
  }
}

.name-origin_text {
  letter-spacing: 0.07em;
  line-height: calc(33px / 14px);
  /* font-weight: 500; */
}

.name-origin_text__boutique {
  margin-top: 20px;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 1080px) {
  .name-origin_text__boutique {
    letter-spacing: 0.055em;
  }
}


/* ------about----- */
.about {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.about_inner {
  padding: 60px 0;
}

@media screen and (min-width: 1080px) {
  .about_inner {
    padding: 140px 0 124px;
  }
}


.about_title {
  font-size: 27px;
  letter-spacing: 0.07em;
  font-family: "GFS Didot", serif;
  color: var(--primary-color);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .about_title {
    font-size: 56px;
  }
}

@media screen and (min-width: 1080px) {
  .about_title {
    font-size: 100px;
  }
}


.about_main-copy {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.11em;
  margin-top: 36px;
}

@media screen and (min-width: 768px) {
  .about_main-copy {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .about_main-copy {
    font-size: 38px;
  }
}

.about_sub-copy {
  text-align: center;
  line-height: calc(34px / 14px);
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .about_sub-copy {
    font-size: 18px;
  }
}

@media screen and (min-width: 1080px) {
  .about_sub-copy {
    font-size: 34px;
  }
}

.about_wapper {
  margin-top: 36px;
}

@media screen and (min-width: 1080px) {
  .about_wapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 90px;
  }
}


.about_text-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .about_text-wrapper {
    margin-left: 0;
    margin-right: 0;
    width: 480px;
  }
}


.about_suggestion {
  background: linear-gradient(var(--white-color) 20px, var(--gray-color-02) 20px);
  padding-bottom: 28px;
}

@media screen and (min-width: 1080px) {
  .about_suggestion {
    width: 100%;
    padding-bottom: 40px;
  }
}

.about_suggestion-title {
  height: 40px;
  width: 225px;
  background-color: var(--accent-color);
  margin: 0 auto;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.11em;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1080px) {
  .about_suggestion-title {
    width: 350px;
    height: 64px;
    font-size: 24px;
  }
}

.about_suggestion-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 240px;
  margin: 20px auto 0;
}

@media screen and (min-width: 768px) {
  .about_suggestion-list {
    width: 300px;
  }
}

@media screen and (min-width: 1080px) {
  .about_suggestion-list {
    margin-top: 40px;
    gap: 36px;
    width: 400px;
  }
}

.about-suggestion-item {
  display: flex;
  gap: 18px;
}

.about_suggestion-check {
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background-color: var(--accent-color);
  position: relative;
}

@media screen and (min-width: 1080px) {
  .about_suggestion-check {
    width: 36px;
    height: 36px;
  }
}

.about_suggestion-check::before {
  content: "";
  width: 20px;
  height: 12px;
  background-color: var(--white-color);
  display: block;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.about_suggestion-check::after {
  content: "";
  width: 16px;
  height: 8px;
  background-color: var(--accent-color);
  display: block;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.about_suggestion-text {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
  .about_suggestion-text {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .about_suggestion-text {
    font-size: 24px;
  }
}

.about_suggestion-copy {
  text-align: center;
  line-height: calc(35px / 14px);
  letter-spacing: 0.07em;
  margin-top: 36px;
}

@media screen and (min-width: 768px) {
  .about_suggestion-copy {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .about_suggestion-copy {
    font-size: 28px;
  }
}

.about_img-wrapper {
  height: 354px;
  width: 295px;
  padding: 12px;
  border-radius: 130px 130px 0 0;
  border: 2px solid var(--primary-color);
  margin: 30px auto 0;
}

@media screen and (min-width: 1080px) {
  .about_img-wrapper {
    width: 472px;
    height: 740px;
    margin: 0;
    padding: 0;
    border: none;
  }
}

.about_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 130px 130px 0 0;
}

@media screen and (min-width: 1080px) {
  .about_img {
    border-radius: 200px;
  }
}


/* ---program--- */
.program {
  position: relative;
  z-index: 1; /* 次のセクションより低く */
  overflow: hidden; /* 疑似要素がはみ出さないように */
}

/* iOS Safari対応: background-attachment: fixedの代わりに疑似要素を使用 */
/* 画像読み込み完了まで非表示、body.program-bg-ready で表示（表示遅延対策） */
.program::before {
  content: "";
  position: absolute;
  /* 上下に余裕を持たせてパララックス時にはみ出さないようにする */
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url("../img/bg_section4_pattern.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
  /* CSS変数でY位置を制御 */
  transform: translateY(var(--parallax-y-program));
  will-change: transform;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

body.program-bg-ready .program::before {
  opacity: 1;
}

.program_wrapper {
  position: relative;
  z-index: 2;
}

.program_inner {
  padding: 65px 0 62px;
}

@media screen and (min-width: 1080px) {
  .program_inner {
    padding: 170px 0 190px;
  }
}


.program_title {
  font-family: "GFS Didot", serif;
  color: var(--primary-color);
  font-size: 28px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .program_title {
    font-size: 56px;
  }
}

@media screen and (min-width: 1080px) {
  .program_title {
    font-size: 100px;
  }
}

.program_boxes {
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .program_boxes {
    margin-top: 150px;
  }
}

.program_box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .program_box {
    flex-direction: row;
    align-items: start;
    justify-content: center;
  }
}

.program_box__special {
  margin-top: 64px;
}

@media screen and (min-width: 768px) {
  .program_box__special {
    flex-direction: row-reverse;
    margin-top: 180px;
  }
}

.program_box-text-wrapper {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .program_box-text-wrapper {
    width: max-content;
    text-align: left;
  }
}

.program_box-title {
  font-size: 23px;
  color: var(--primary-color);
  font-family: "GFS Didot", serif;
  letter-spacing: 0.09em;
}

@media screen and (min-width: 768px) {
  .program_box-title {
    font-size: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .program_box-title {
    font-size: 58px;
  }

  .program_box-title__special {
    font-size: 55px;
  }
}

.program_box-sub-title {
  font-size: 18px;
  color: var(--primary-color);
  letter-spacing: 0.03em;
  margin-top: 14px;
}

@media screen and (min-width: 768px) {
  .program_box-sub-title {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .program_box-sub-title {
    font-size: 30px;
    margin-top: 24px;
  }
}

.program_box-text-wrap {
  margin-top: 20px;
}

@media screen and (min-width: 1080px) {
  .program_box-text-wrap {
    margin-top: 72px;
  }
}

.program_box-text {
  margin-top: 20px;
  line-height: 2.0;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 1080px) {
  .program_box-text {
    font-size: 22px;
    letter-spacing: 0.07em;
    margin-top: 0;
  }

  .program_box-text__1 {
    margin-top: 36px;
  }

  .program_box-text__2 {
    margin-top: 60px;
  }
}


.program_box-img-wrapper {
  width: 290px;
  height: 370px;
  border-radius: 60px;
}

@media screen and (min-width: 1080px) {
  .program_box-img-wrapper {
    width: 475px;
    height: 680px;
    flex-shrink: 0;
  }
}

.program_box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 60px;
  flex-shrink: 0;
}




/* ----flow----- */
.flow {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.flow_inner {
  padding: 60px 0;
}

@media screen and (min-width: 1080px) {
  .flow_inner {
    padding: 160px 0 170px;
  }
}

.flow_title {
  font-size: 36px;
  font-family: "GFS Didot", serif;
  color: var(--primary-color);
  text-align: center;
  letter-spacing: 0.11em;
}

@media screen and (min-width: 768px) {
  .flow_title {
    font-size: 56px;
  }
}

@media screen and (min-width: 1080px) {
  .flow_title {
    font-size: 100px;
  }
}

.flow_sub-title {
  font-size: 20px;
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.07em;
  color: var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .flow_sub-title {
    font-size: 35px;
    margin-top: 40px;
  }
}

.flow_list {
  width: 300px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

@media screen and (min-width: 768px) {
  .flow_list {
    width: 510px;
  }
}

@media screen and (min-width: 1080px) {
  .flow_list {
    height: calc(112px * 3 + 115px * 2);
    width: 100%;
    gap: 115px 0;
    text-align: center;
    flex-wrap: wrap;
    margin-top: 96px;
  }
}

.flow_item {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media screen and (min-width: 1080px) {
  .flow_item {
    gap: 30px;
    margin-left: 40px;
  }
}

.flow_icon-wrapper {
  background-color: var(--accent-color);
  width: 68px;
  height: 68px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .flow_icon-wrapper {
    width: 112px;
    height: 112px;
    padding: 20px;
  }
}

.flow_item:not(:last-child) .flow_icon-wrapper::before {
  content: "";
  width: 1px;
  height: 50px;
  background-color: var(--accent-color);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .flow_item:not(:last-child) .flow_icon-wrapper::before {
    height: 115px;
  }
}

@media screen and (min-width: 1080px) {
  .flow_item:nth-child(3) .flow_icon-wrapper::before {
    display: none;
  }
}


.flow_text {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
}

@media screen and (min-width: 768px) {
  .flow_text {
    font-size: 40px;
  }
}


/* ------member------ */
.member {
  position: relative;
  z-index: 2;
  background-color: var(--gray-color-02);
}

.member_inner {
  padding: 66px 0 70px;
}

@media screen and (min-width: 1080px) {
  .member_inner {
    padding: 155px 0 165px;
  }
}

.member_title {
  font-family: "GFS Didot", serif;
  color: var(--primary-color);
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {
  .member_title {
    font-size: 56px;
  }
}

@media screen and (min-width: 1080px) {
  .member_title {
    font-size: 100px;
  }
}

.member_title_sub {
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.11em;
  color: var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .member_title_sub {
    font-size: 35px;
    margin-top: 40px;
  }
}

.member-boxes {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

@media screen and (min-width: 1080px) {
  .member-boxes {
    flex-direction: row;
    justify-content: center;
    gap: 100px;
  }
}

.member-box {
  background-color: var(--white-color);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 45px;
}

@media screen and (min-width: 768px) {
  .member-box {
    width: 430px;
    height: 570px;
  }
}

.member-box__1 {
  padding-top: 30px;
}

.member-box__2 {
  padding-top: 40px;
}

.member_img-wrapper {
  width: 230px;
  height: 230px;
  border-radius: 100%;
  border: 3px solid var(--accent-color);
}

@media screen and (min-width: 768px) {
  .member_img-wrapper {
    height: 265px;
    width: 265px;
    border: none;
  }
}

.member_img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}


.memmber_name {
  font-size: 25px;
  font-style: italic;
  text-align: center;
  font-family: "GFS Didot", serif;
  color: var(--primary-color);
  margin-top: 35px;
}

@media screen and (min-width: 768px) {
  .memmber_name {
    font-size: 35px;
  }
}

.member_coment {
  font-size: 15px;
  font-weight: 100;
  font-family: "Noto Sans JP", sans-serif;
  line-height: calc(34px / 15px);
  letter-spacing: 0.07em;
  margin-top: 24px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .member_coment {
    font-size: 21px;
    line-height: calc(35px / 21px);
    letter-spacing: 0.05em;
  }
}

/* ------instagram------ */
.instagram {
  position: relative;
  z-index: 2;
  background: url(../img/stone.webp) center/ cover;
  padding: 53px 0;
}

@media screen and (min-width: 1080px) {
  .instagram {
    padding: 130px 0;
  }
}

.instagram_inner {
  padding: 100px 0 45px;
  background-color: #ffffff80;
  border-radius: 30px;
}

@media screen and (min-width: 1080px) {
  .instagram_inner {
    padding: 200px 0 72px;
  }
}

.instagram_title {
  font-family: "GFS Didot", serif;
  color: var(--primary-color);
  font-size: 31px;
  letter-spacing: 0.07em;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .instagram_title {
    font-size: 56px;
  }
}

@media screen and (min-width: 1080px) {
  .instagram_title {
    font-size: 100px;
  }
}

.instagram_title::before {
  content: "気になる方はまずCheck!";
  display: block;
  width: 270px;
  height: 35px;
  border-radius: 35px;
  font-size: 16px;
  letter-spacing: 0.095em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background-color: var(--accent-color);
  position: absolute;
  top: calc(-100% - 16px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.instagram_title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 30px solid var(--accent-color);
  position: absolute;
  top: -32px;
  left: 55%;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .instagram_title::before {
    content: "気になる方はまずInstagramをCheck!";
    width: 500px;
    height: 56px;
    font-size: 20px;
  }

  .instagram_title::after {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 35px solid var(--accent-color);
    top: -65%;
    left: 60%;
    transform: rotate(45deg);
  }
}

@media screen and (min-width: 1080px) {
  .instagram_title::before {
    width: 790px;
    height: 88px;
    font-size: 36px;
  }

  .instagram_title::after {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 50px solid var(--accent-color);
    top: -80px;
    left: 60%;
    transform: rotate(45deg);
  }
}

.instagram_boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 46px;
  margin-top: 46px;
}

@media screen and (min-width: 768px) {
  .instagram_boxes {
    flex-direction: row;
    gap: 120px;
    margin-top: 55px;
  }
}

@media screen and (min-width: 1080px) {
  .instagram_boxes {
    gap: 240px;
  }
}

.instagram_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

@media screen and (min-width: 1080px) {
  .instagram_address {
    gap: 30px;
  }
}

.instagram_icon-link {
  width: 150px;
}

@media screen and (min-width: 1080px) {
  .instagram_icon-link {
    width: 200px;
  }
}

.instagram_icon {
  width: 100%;
}

.instagram_address {
  font-size: 20px;
  letter-spacing: 0.03em;
}

/* -----apply-------- */
.apply {
  position: relative;
  z-index: 2;
}

/* apply用固定背景：FVと同じ動き（固定レイヤー＋その上をテキストがスクロール） */
.apply_bg-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  visibility: hidden;
}
.apply_bg-box.is-visible {
  visibility: visible;
}
.apply_bg-box picture,
.apply_bg-box .apply_bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.apply_bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.40));
}
@media screen and (min-width: 1080px) {
  .apply_bg-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.20));
  }
}

.apply_text-wrapper {
  position: relative;
  z-index: 2;
  height: 578px;
  padding-top: 240px;
  /* テキストの下に黒いフィルター（固定背景の上に重なる） */
  background: linear-gradient(rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.20));
}

@media screen and (min-width: 1080px) {
  .apply_text-wrapper {
    height: 675px;
    padding-top: 250px;
    background: linear-gradient(rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.20));
  }
}

.apply_form-wrapper {
  background-color: #fff;
}

.apply_title {
  color: var(--white-color);
  font-size: 24px;
  letter-spacing: 0.07em;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .apply_title {
    font-size: 36px;
  }
}

@media screen and (min-width: 1080px) {
  .apply_title {
    font-size: 48px;
  }
}

.apply_title::before {
  content: "BOUTIQUE\ATOKYO";
  white-space: pre-wrap;
  display: block;
  font-size: 42px;
  line-height: calc(62px / 42px);
  letter-spacing: 0.18em;
  position: absolute;
  bottom: calc(100% + 40px);
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .apply_title::before {
    font-size: 56px;
  }
}

@media screen and (min-width: 1080px) {
  .apply_title::before {
    content: "BOUTIQUE TOKYO";
    white-space: nowrap;
    font-size: 80px;
    bottom: calc(100% + 35px);
  }
}

.apply_text {
  line-height: calc(32px / 14px);
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-top: 56px;
  color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .apply_text {
    font-size: 20px;
    margin-top: 80px;
  }
}


.apply_form_inner {
  padding: 50px 0 90px;
}

@media screen and (min-width: 1080px) {
  .apply_form_inner {
    padding: 110px 0 240px;
  }
}

.apply_form_heading {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
  .apply_form_heading {
    font-size: 25px;
  }
}

.apply_form_heading:not(:first-child) {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .apply_form_heading:not(:first-child) {
    margin-top: 30px;
  }
}

.apply_form_tag {
  width: 44px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .apply_form_tag {
    width: 54px;
    height: 30px;
    font-size: 20px;
  }
}

.apply_form_required {
  background-color: #f44336;
}

.apply_form_optional {
  background-color: #667c89;
}

.apply_form_input {
  width: 100%;
  height: 35px;
  border: 1.8px solid #c9caca;
  border-radius: 6px;
  margin-top: 4px;
  padding: 8px 12px;
}

@media screen and (min-width: 768px) {
  .apply_form_input {
    height: 70px;
    margin-top: 20px;
  }
}

.apply_form_textarea {
  width: 100%;
  height: 35px;
  border: 1.8px solid #c9caca;
  border-radius: 6px;
  margin-top: 4px;
  padding: 8px 12px;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.apply_form_textarea::-webkit-scrollbar {
  display: none;
}

@media screen and (min-width: 768px) {
  .apply_form_textarea {
    height: 70px;
  }
}

.apply_from_checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

@media screen and (min-width: 768px) {
  .apply_from_checkbox-label {
    margin-top: 72px;
  }
}

.apply_from_checkbox {
  width: 26px;
  height: 26px;
  display: block;
  border: 3px solid #c9caca;
  background: var(--gray-color-02);
  border-radius: 2px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .apply_from_checkbox {
    width: 44px;
    height: 44px;
  }
}

.apply_from_checkbox:checked.apply_from_checkbox::before {
  content: "";
  width: 8px;
  height: 12px;
  border-right: 3px solid var(--black-color);
  border-bottom: 3px solid var(--black-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .apply_from_checkbox:checked.apply_from_checkbox::before {
    width: 12px;
    height: 24px;
  }
}

.apply_from_checkbox-text {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
  .apply_from_checkbox-text {
    font-size: 24px;
  }
}

.apply_form_privacy-policy {
  color: #1d68cb;
}

.apply_form_btn-wrapper {
  background-color: var(--accent-color);
  width: 180px;
  height: 46px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 38px auto 0;
}

@media screen and (min-width: 768px) {
  .apply_form_btn-wrapper {
    width: 240px;
    height: 64px;
    border-radius: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .apply_form_btn-wrapper {
    width: 400px;
    height: 96px;
    border-radius: 48px;
  }

  .apply_form_btn-wrapper:hover {
    transform: scale(1.05);
  }
}

.apply_form_btn {
  color: var(--white-color);
  letter-spacing: 0.21em;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
  .apply_form_btn {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .apply_form_btn {
    font-size: 36px;
  }
}


/* --privacy--- */

.privacy_bg-wrapper {
  width: 100%;
  height: 264px;
  position: fixed;
  top: 0;
}

.privacy_bg-img {
  width: 100%;
  height: 100%;
  object-position: bottom;
}


@media screen and (min-width: 768px) {
  .privacy_contents {
    padding: 0 64px;
  }
}

.privacy_heading {
  position: relative;
  z-index: 2;
  color: var(--white-color);
  height: 264px;
  padding: 86px 0 0;
}

.privacy_title {
  font-family: "GFS Didot", serif;
  font-size: 28px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .privacy_title {
    font-size: 56px;
  }
}


.privacy_sub-title {
  margin-top: 28px;
  font-size: 20px;
}
@media screen and (min-width: 1080px) {
  .privacy_sub-title {
    font-size: 35px;
  }
}

.privacy_wrapper {
  position: relative;
  z-index: 2;
  background-color: var(--white-color);
}


.privacy_inner {
  padding: 140px 0 144px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.0;
}

.privacy_list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.privacy_item-text {
  padding-left: 14px;
}

.privacy_item-observer {
  margin-top: 50px;
}


.privacy_google-wrapper {
  margin-top: 64px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
}

.privacy_google-link-text {
  margin-top: 24px;
}

.privacy_google-link {
  text-decoration: underline;
}

/* reCAPTCHAのバッジを非表示にする */
.grecaptcha-badge {
    visibility: hidden;
}
