/* =========================
  1. reset
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}


/* =========================
  2. base
========================= */

html,
body {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  color: #505050;
  background-color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.8px;
}

.inner {
  margin: 0 auto;
  padding-inline: 20px;
}

.section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.section_title h2 {
  color: #192648;
  font-family: "Cormorant Garamond";
  font-size: 56px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.68px;
}
@media screen and (max-width: 767.99px){
  .section_title h2 {
    font-size:38px;
    text-align: center;
  }
}
.section_title p {
  color: #192648;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.2px;
}
.section_title p span {
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.2px;
}
@media screen and (max-width: 767.99px){
  .section_title p span {
    display: block;
    text-align: center;
  }
}

a {
  color: #505050;
  opacity: 1;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

/* =========================
  HEADER（MOON 完全最終版）
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 100px;
  padding: 15px 0;

  /* ★ MOON 正解のグラデーション透過（初期から表示） */
  background: linear-gradient(
    180deg,
    rgba(25, 38, 72, 0.75) 0%,
    rgba(25, 38, 72, 0) 100%
  );

  color: #fff;
}

@media screen and (max-width: 767px) {
  .header {
    height: 80px;
  }
}

/* =========================
  HEADER INNER
========================= */

.header_inner {
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .header_inner {
    padding: 0 20px;
  }
}

/* =========================
  LOGO
========================= */

.header_logo,
.header_logo a {
  width: fit-content;
}

.header_logo img {
  width: 70px;
  aspect-ratio: 1 / 1;
}

@media screen and (max-width: 767px) {
  .header_logo img {
    width: 40px;
  }
}

/* =========================
  PC NAV（JamLabel完全一致）
========================= */

.header_nav {
  width: fit-content;
}

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

.header_nav ul {
  display: flex;
  align-items: center;
  gap: 31px;
}

.header_nav ul li a {
  color: #fff;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.75px;
}

/* =========================
  HAMBURGER（SP・JamLabel完全一致）
========================= */

.header_openBtn {
  display: none;
}

@media screen and (max-width: 767px) {
  .header_openBtn {
    display: block;
    position: fixed;
    z-index: 10000;
    top: 5px;
    right: 10px;
    width: 50px;
    height: 50px;
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #fff;
  }

  .header_openBtn span {
    position: absolute;
    left: 14px;
    width: 45%;
    height: 3px;
    border-radius: 2px;
    background: currentColor;
    transition: all 0.4s ease;
  }

  .header_openBtn span:nth-child(1) { top: 15px; }
  .header_openBtn span:nth-child(2) { top: 23px; }
  .header_openBtn span:nth-child(3) { top: 31px; }

  /* OPEN */
  .header_openBtn.is-active span:nth-child(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .header_openBtn.is-active span:nth-child(2) {
    opacity: 0;
  }

  .header_openBtn.is-active span:nth-child(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}

/* =========================
  BODY FIX（SP MENU OPEN時）
========================= */

body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* =========================
  DRAWER（SP MENU）
========================= */

.drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .drawer {
    display: block;
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: rgba(25, 38, 72, 0.95);
    transition: right 0.3s ease;
  }

  .drawer.is-open {
    right: 0;
  }

  .drawer_nav {
    margin-top: 80px;
  }
}

.drawer_nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drawer_nav a {
  display: block;
  width: 100%;
  padding: 20px;
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
}

/* =========================
  4. MAIN VISUAL Background
========================= */
.moon_stage_bg{
  position: fixed;
  z-index: 0;
  top:0;
  left: 0;
  width: 100vw;
  height:100vh;
  background: url("../img/FV.webp") center / cover no-repeat;
}
@media screen and (max-width: 767.99px){
  .moon_stage_bg{
    background: url("../img/FV_bg_SP.webp") center / cover no-repeat;
  }
}
.moon_stage_bg.is-scrolled {
  background: #192648;
}
.moon_stage_bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(20,30,55,.45);
}
.bg-none {
  background: none;
  position: relative;
  z-index: 1;
}
main {
  overflow-x: hidden;
  position: relative;
  z-index: 2;
  background: #FFF;
}


/* =========================================================
  5.MV（最終安定版：PCは高さ基準 / SPは幅基準、変倍しない）
========================================================= */
.mv{
  margin-top: 100px;
  padding-top: 60px;
  padding-bottom: 53px;
  min-height: 80vh;
}
@media (max-width: 767.99px){
  .mv{
    margin-top: 80px;
    padding-top: 40px;
    /* SPで画像を小さくした分の余白調整（必要なら微調整） */
    min-height: auto;
    padding-bottom: 24px;
  }
}

.mv_inner{
  position: relative;
}

.mv_contents{
  padding-left: 38px;
  display: flex;
  justify-content: center;
  align-items: center; /* ← stretch防止（重要） */
}
@media (max-width: 767.99px){
  .mv_contents{
    padding-left: 0;
  }
}

/* pictureがflexで引き伸ばされないように */
.mv_contents picture{
  display: block;
}

/* --- 画像本体：ここが変倍対策の本丸 --- */
.mv_img{
  display: block;

  /* 変倍の原因になりやすい height:100% を絶対に使わない */
  height: auto;
  width: auto;

  /* PCは「画面高さに収める」方針（比率維持） */
  max-height: calc(100vh - 240px);
  max-width: 560px; /* 必要なら調整（今の値でOKならそのまま） */

  object-fit: contain;
}

/* ノートPC帯：少し大きく見せる（挙動維持） */
@media (min-width: 768px) and (max-height: 750px){
  .mv_img{
    max-height: calc(100vh - 170px);
  }
}
@media (min-width: 768px) and (max-height: 650px){
  .mv_img{
    max-height: calc(100vh - 130px);
  }
}

/* SPは「幅に合わせる」方針（比率維持） */
@media (max-width: 767.99px){
  .mv_img{
    width: 100%;
    max-width: 340px;   /* 280〜340で微調整 */
    height: auto;
    max-height: none;
  }
}

/* =========================
  MV scroll（SCROLL DOWN アニメ復活）
========================= */

.mv_scroll{
  position: absolute;
  right: 42px;
  bottom: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 5; /* 念のため前面に */
}

@media (max-width: 767.99px){
  .mv_scroll{
    right: 12px;
    bottom: -30px;
  }
}

.mv_scroll_text{
  font-family: "Cormorant Garamond", serif;
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
  writing-mode: vertical-rl;
}

.mv_scroll::after{
  content: "";
  display: block;
  width: 0.5px;
  height: 36px;
  background: rgba(255,255,255,.8);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
  animation: mvScrollLine 3s ease-in-out infinite;
}

@keyframes mvScrollLine{
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  60%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* =========================
  6.CONCEPT
========================= */
.concept{
  padding-top: 140px;
  padding-bottom: 154px;
}
.concept_inner {
  max-width: calc(1104px + 20px * 2);
}

.concept_grid{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 88px;
}
@media screen and (min-width: 768px) and (max-width: 1144px) {
  .concept_grid{
    gap: clamp(0.625rem, -9.332rem + 20.74vw, 5.5rem);
  }
}
@media screen and (max-width: 767.99px){
  .concept_grid{
    flex-direction: column;
  }
}

.concept_media{
  width: 41.75724%;
  flex-shrink: 0;
}
@media screen and (max-width: 767.99px){
  .concept_media{
    text-align: center;
    width: 100%;
  }
}
.concept_media img {
  width: 100%;
  max-width: 461px;
  aspect-ratio: 461 / 426;
}

.concept_body{
  flex-grow: 1;
}
@media screen and (max-width: 767.99px){
  .concept_body{
    width: 100%;
  }
}

.concept_title {
  padding-left: 7px;
}
.concept_title strong {
  color: #FFF;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 1.6px;
}

.concept_text {
  margin-top: 40px;
}
.concept_text p {
  color: #FFF;
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 600;
  letter-spacing: 1.3px;
}
.concept_text p + p {
  margin-top: 32px;
}


/* =========================
  7.SELF CARE
========================= */
.selfCare{
  background: linear-gradient(180deg, #F3F4FA 96.56%, #FFF 100%);
  padding-top: 72px;
  padding-bottom: 172px;
}
@media screen and (max-width: 767.99px){
  .selfCare{
    padding-bottom: 72px;
  }
}
.selfCare_inner {
  max-width: calc(1244px + 20px * 2);
}

.selfCare_title {
  width: 100%;
  height: 218px;
  position: relative;
  display: grid;
  place-items: center;
  padding-left: 11.81672%;
}
.selfCare_title h2 {
  color: #192648;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 3.2px;
  position: relative;
  z-index: 10;
}
.selfCare_title p {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 51%;
  transform: translateX(-50%);
  width: 100%;
  color: #FFF;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 180px;
  line-height: normal;
  letter-spacing: 14.4px;
}
@media screen and (max-width: 767.99px){
  .selfCare_title p {
    font-size: 83px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1284px) {
  .selfCare_title p {
    font-size: clamp(5.188rem, -3.836rem + 18.8vw, 11.25rem);
  }
}

.selfCare_card{
  margin-top: 50px;
  background:#fff;
  border-radius: 16px;
  padding: 54px 67px 48px 64px;
  display: flex;
  gap: 61px;
}
@media screen and (max-width: 960px){
  .selfCare_card{
    padding: 20px;
    flex-direction: column;
    gap: 32px;
  }
}

.selfCare_card_body{
  width: calc((100% - 61px) / 2);
  flex-shrink: 0;
}
@media screen and (max-width: 960px){
  .selfCare_card_body{
    max-width: none;
    width: 100%;
    flex-shrink: 0;
  }
}

.selfCare_card_title{
  width: fit-content;
  border-bottom: 1.5px solid rgba(25, 38, 72, 0.40);
}
.selfCare_card_title h3 {
  color: #192648;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2.8px;
}
@media screen and (max-width: 767.99px){
  .selfCare_card_title h3 {
    font-size: clamp(1.5rem, 0.738rem + 3.81vw, 1.75rem);
  }
}

.selfCare_card_text {
  margin-top: 24px;
}
.selfCare_card_text p + p {
  margin-top: 32px;
}
.selfCare_card_text span{
  color: #967D48;
  font-weight: 600;
}

.selfCare_card_media {
  flex-grow: 1;
}
.selfCare_card_media img {
  width: 100%;
  aspect-ratio: 519 / 305;
  border-radius: 16px;
}

.selfCare_lead {
  margin-top: 79px;
}
.selfCare_lead p:nth-child(1) {
  position: relative;
}
.selfCare_lead p:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 740px;
  height: 1.5px;
  background: rgba(150, 125, 72, 0.40);
}
.selfCare_lead p {
  color: #967D48;
  text-align: center;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 2.28571;
  letter-spacing: 2.8px;
}
@media screen and (max-width: 767.99px){
  .selfCare_lead p {
    font-size: 22px;
  }
}
.selfCare_lead p span {
  display: inline-block;
  font-weight: 600;
  line-height: 2.28571;
  letter-spacing: 2.8px;
}
.selfCare_lead p .lineBreak {
  display: none;
}
@media screen and (max-width: 767.99px){
  .selfCare_lead p .lineBreak {
    display: block;
  }
}

.sense_list{
  margin: 73px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  gap: 10px;
  max-width:1168px;
  width: 100%;
}
.sense_item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.sense_item p {
  text-align: center;
}
.sense_item p.sense_text span {
  display: inline-block;
}

.sense_circle{
  width: 140px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient( 180deg, #F4F6FF 0%, #CDD2F0 100% );
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.sense_en{
  font-family: "Cormorant Garamond", serif;
  font-size:12px;
  letter-spacing:.18em;
  color: rgba(36,58,99,.75);
  line-height: 1.2;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}
.sense_ja{
  color: rgba(36,58,99,.75);
  line-height: 1.2;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

.sense_bottom{
  margin: 81px auto 0;
  width: 100%;
  max-width: 997px;
  display: flex;
  align-items: center;
  gap: 56px;
}
@media screen and (max-width: 767.99px){
  .sense_bottom{
    flex-direction: column;
  }
}

.sense_photo{
  width: 44.9014%;
}
.sense_photo img{
  width: 100%;
  aspect-ratio: 447.677 / 288;
  border-radius: 16px;
}
.sense_body {
  width: 49.44834%;
}
@media screen and (max-width: 767.99px){
  .sense_photo,
  .sense_body {
    width: 100%;
  }
}
.sense_body p + p {
  margin-top: 32px;
}
.sense_body_text span{
  color: #967D48;
  font-weight: 600;
}


/* =========================
  8.LINEUP
========================= */
.lineup{
  padding-top: 128px;
  padding-bottom: 138px;
}

.lineup_note {
  width: fit-content;
  margin: 57px auto 0;
  padding-inline: 20px;
  position: relative;
}
.lineup_note:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px * 2);
  height: 1.5px;
  background: rgba(150, 125, 72, 0.40);
}
.lineup_note p {
  color: #967D48;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 2.33333;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 767.99px){
  .lineup_note p {
    text-align: center;
    font-size: 18px;
    line-height: 2;
  }
  .lineup_note p span {
    display: inline-block;
  }
}


/* =========================
  9.NEW MOON & FULL MOON
========================= */
.product {
  position: relative;
  overflow: hidden;
}
.product_new > .product_container {
  position: relative;
  z-index: 10;
}
.product_full > .product_container {
  position: relative;
  z-index: 15;
}
.product:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.product_new:before {
  z-index: 3;
  height: 51.81609%;
  aspect-ratio: 14709 / 9016;
  background: url(../img/newMoon-path.svg) no-repeat center top / contain;
}
.product_full:before {
  z-index: 5;
  height: 95.64541%;
  aspect-ratio: 3371.892 / 1845;
  background: url(../img/fullMoon-path.svg) no-repeat center top / contain;
}

.product_new {
  margin-top: 72px;
  padding-top: 128px;
}
.product_full {
  margin-top: 142px;
  padding-top: 128px;
}
@media screen and (max-width: 767.99px){
  .product_full {
    margin-top: 72px;
    padding-top: 64px;
  }
}

.product_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.product_title p {
  color: #192648;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.54px;
}
.product_title h3 {
  color: #192648;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 3.2px;
}

.product_img{
  margin-top: 57px;
  text-align: center;
}
.product_img img{
  max-width: 689px;
  width: 100%;
  aspect-ratio: 689 / 440;
}
@media screen and (max-width: 767.99px){
  .product_img img{
    width: 50%;
    aspect-ratio: 1228 / 1583;
    min-width: 280px;
  }
}
.product_img.fullMoon_img img{
  max-width: 687px;
  aspect-ratio: 687 / 439;
}
@media screen and (max-width: 767.99px){
  .product_img.fullMoon_img img{
    aspect-ratio: 1226 / 1585;
  }
}

.product_text {
  margin-top: 39px;
}
.product_text p {
  text-align: center;
}
.product_text p span {
  display: inline-block;
}

.box{
  margin: 40px auto 0;
  width: 100%;
  max-width: 637px;
  border-radius: 12px;
  border: 1px solid rgba(157, 135, 88, 0.50);
  background: #FFF;
  padding: 22px 32px 21px 47px;
}
.box.secondBox {
  padding: 22px 32px 32px 47px;
}
@media screen and (max-width: 767.99px){
  .box,
  .box.secondBox {
    padding: 20px;
    width: fit-content;
  }

}

.box_head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 9px;
  border-bottom: 1.5px solid rgba(150, 125, 72, 0.40);
}
.box_dot img{
  width: 24px;
  aspect-ratio: 1 / 1;
}
.box_title {
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 17px;
  font-weight: 600;
  line-height: 0.94118;
  letter-spacing: 0.85px;
}

.box_listArea {
  margin-top: 9px;
  padding-right: 13px;
}
@media screen and (max-width: 767.99px){
  .box_listArea {
    padding-right: 0;
  }
}
.box_list{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 4px 0;
}
.box_list li {
  position: relative;
  padding-left: 14px;
}
@media screen and (max-width: 767.99px){
  .box_list li {
    font-size: 14px;
  }
}
.box_list li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 4px;
  aspect-ratio: 1 / 1;
  background: #9D8758;
}

.product_materials{
  margin: 46px auto 0;
  width: fit-content;
  border-radius: 12px;
  background: #FFF;
  padding: 32px 40px 44px;
}
.product_materials.secondMaterials {
  padding: 32px 40px 33px;
}
@media screen and (max-width: 767.99px){
  .product_materials,
  .product_materials.secondMaterials {
    padding: 20px;
  }
}
.product_materials img{
  width: 100%;
  max-width: 900px;
  aspect-ratio: 900 / 451;
}
@media screen and (max-width: 767.99px){
  .product_materials img{
    aspect-ratio: 2187 / 2789;
  }
}


/* =========================
  10.COMMON + COLUMN
========================= */
.common_box {
  width: 96%;
  max-width: 1006px;
  margin: 82px auto 0;
  border-radius: 12px;
  border: 1px solid rgba(157, 135, 88, 0.50);
  background: #FFF;
}

.common_head {
  border-radius: 12px 12px 0 0;
  background: #D9D9D9;
  padding-top: 16.5px;
  padding-bottom: 14.5px;
}
.common_head h4 {
  text-align: center;
  color: #9D8758;
  font-size: 17px;
  font-weight: 600;
  line-height: 0.94118;
  letter-spacing: 0.85px;
}
.common_head h4 span {
  display: inline-block;
  font-weight: 600;
  line-height: 0.94118;
  letter-spacing: 0.85px;
}
@media screen and (max-width: 767.99px){
  .common_head h4 span {
    line-height: 1.5;
  }
}

.common_body {
  padding: 20px 10px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 770px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.common_title{
  font-weight: 600;
}
.common_text{
  text-align: center;
}

.column{
  max-width: 1240px;
  width: 100%;
  margin: 114px auto 0;
  border-radius: 16px;
  background: #F2F3FE;
  display: flex;
  gap: 56px;
  padding: 64px;
}
@media screen and (max-width: 1100px){
  .column{
    padding: 30px 20px;
    gap: clamp(1.5rem, -3.127rem + 9.64vw, 3.5rem);
  }
}
@media screen and (max-width: 767.99px){
  .column{
    flex-direction: column;
    align-items: center;
    gap: 56px;
  }
}

.column_body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.column_heading {
  width: fit-content;
  padding-bottom: 8.5px;
  border-bottom: 1.5px solid rgba(25, 38, 72, 0.40);
}
.column_heading h4 {
  color: #192648;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2px;
}
.column_text{
  margin-top: 14px;
}

.column_media {
  width: 30.93525%;
  max-width: 344px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}
@media screen and (max-width: 767.99px){
  .column_media {
    width: 100%;
    text-align: center;
  }
}

.column_media img{
  width: 100%;
  aspect-ratio: 344 / 382;
}


/* =========================
  11.MOON HERO
========================= */
.moonHero{
  position: relative;
  padding-top: 139px;
  padding-bottom: 139px;
}

.moonHero_topTreat {
  overflow: hidden;
  position: absolute;
  z-index: 4;
  top: -2px;
  left: 0;
  width: 100vw;
  height: 100%;
}
.moonHero_topTreat::before {
  content: "";
  position: absolute;
  top: -796.7vw;
  left: 50%;
  transform: translateX(-50%);
  width: 800vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #FFF;
}

.moonHero_bg{
  position: absolute;
  inset:0;
  overflow: hidden;
  z-index: 2;
  background: url("../img/bond_bg_PC.jpg") no-repeat center center / cover;
}
@media screen and (max-width: 767.99px){
  .moonHero_bg {
    background: url("../img/bond_bg_SP.jpg") no-repeat center center / cover;
  }
}

.moonHero_inner{
  max-width: calc(641px + 20px * 2);
  position:relative;
  z-index: 10;
}

.moonHero_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.moonHero_title p {
  color: #CEBB91;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.6px;
}
.moonHero_title h2 {
  color: #FFF;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.55556;
  letter-spacing: 3.6px;
}
@media screen and (max-width: 767.99px){
  .moonHero_title h2 {
    font-size: clamp(1.5rem, 0.963rem + 2.68vw, 2.25rem);
  }
}

.moonHero_text {
  margin-top: 48px;
}
.moonHero_text p {
  text-align: center;
  color: #FFF;
}
@media screen and (max-width: 767.99px){
  .moonHero_text p {
    font-size: clamp(0.625rem, 0.357rem + 1.34vw, 1rem);
  }
}
.moonHero_text p + p {
  margin-top: 32px;
}
.moonHero_text p span {
  display: inline-block;
}
.moonHero_text p .colorGold {
  color: #CEBB91;
  font-weight: 600;
}

.moon_band {
  position: absolute;
  z-index: 5;
  bottom: -4.16666vw;
  left: 0;
  width: 100vw;
  aspect-ratio: 1440 / 120;
  background: url(../img/moon-band.svg) no-repeat center center / contain;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767.99px){
  .moon_band {
    aspect-ratio: auto;
    height: 64px;
    background: url(../img/moon-band.svg) no-repeat center center / cover;
  }
}
.moon_band p {
  color: #FFF;
  text-align: center;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 3px;
}
@media screen and (max-width: 767.99px){
  .moon_band p {
    font-size: clamp(1rem, 0.374rem + 3.13vw, 1.875rem);
  }
}


/* =========================
  12.MOON CYCLE
========================= */
.moonCycle{
  padding-top: 61px;
  padding-bottom: 200px;
  position: relative;
}
.moonCycle::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(180deg, #2D3568 8.19%, #2D3568 63.23%, rgba(45, 53, 104, 0.90) 68.66%, rgba(45, 53, 104, 0.40) 87.2%, rgba(45, 53, 104, 0.20) 100%);
}

.moonCycle_inner {
  max-width: calc(783px + 20px * 2);
  position: relative;
  z-index: 10;
}

.moonCycle_dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:24px;
}

.moonCycle_dots span{
  width: 4px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #BBAA82;
}

.moonCycle_title{
  margin: 11px auto 0;
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid #CEBB91;
}
.moonCycle_title h2 {
  color: #CEBB91;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 3.2px;
}
@media screen and (max-width: 767.99px){
  .moonCycle_title h2 {
    text-align: center;
    font-size: clamp(1.75rem, 1.571rem + 0.89vw, 2rem);
  }
}
.moonCycle_title h2 .lineBreak {
  display: none;
}
@media screen and (max-width: 767.99px){
  .moonCycle_title h2 .lineBreak {
    display: block;
  }
}

.moonCycle_text{
  margin-top: 55px;
}
.moonCycle_text p {
  color: #FFF;
  text-align: center;
  letter-spacing: 0.4px;
}
.moonCycle_text p + p {
  margin-top: 32px;
}

.moonCycle_note {
  margin-top: 20px;
  text-align: right;
}
.moonCycle_note p {
  color: #CEBB91;
  text-align: right;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.7px;
}

.moonCycle_visual{
  margin-top: 70px;
  text-align: center;
}
.moonCycle_visual_circle{
  max-width: 727px;
  width: 100%;
  aspect-ratio: 727 / 624;
}
.moonCycle_visual_bg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1440 / 817;
  background: url(../img/mooncycle_bg.jpg) no-repeat center bottom / cover;
}
@media screen and (max-width: 960px){
  .moonCycle_visual_bg {
    aspect-ratio: auto;
    height: 545px;
    background: url(../img/mooncycle_bg.jpg) no-repeat center bottom / cover;
  }
}


/* =========================
  13.PRODUCT FEATURES
========================= */
.features{
  padding-top: 103px;
  padding-bottom: 160px;
  position: relative;
}

.features_topTreat {
  position: absolute;
  overflow: hidden;
  top: -3.125vw;
  left: 0;
  width: 100vw;
  aspect-ratio: 1440 / 47;
}
.features_topTreat::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 810vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #FFF;
}

.features_inner {
  max-width: calc(1200px + 20px * 2);
}

.features_list {
  margin-top: 104px;
  display: flex;
  flex-direction: column;
  gap: 104px;
}

.feature_row {
  display: flex;
  align-items: center;
}
.feature_row--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 980px){
  .feature_row,
  .feature_row--reverse {
    flex-direction: column;
    gap: 40px;
  }
}

.feature_body{
  width: 50%;
  flex-shrink: 0;
}

.feature_title {
  padding-bottom: 18px;
  position: relative;
}
.rightBody .feature_title {
  padding-left: 80px;
}
@media screen and (max-width: 980px){
  .rightBody .feature_title {
    padding-left: 0;
  }
}
.feature_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(150, 125, 72, 0.50);
}
.feature_title h3 {
  color: #967D48;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.76923;
  letter-spacing: 2.6px;
}
@media screen and (max-width: 767.99px){
  .feature_title h3 {
    font-size: clamp(1.375rem, 1.196rem + 0.89vw, 1.625rem);
  }
}
.feature_title h3 .lineBreak,
.feature_text p .lineBreak {
  display: none;
}
@media screen and (max-width: 767.99px){
  .feature_title h3 .lineBreak,
  .feature_text p .lineBreak {
    display: block;
  }
}

.feature_text{
  margin-top: 18px;
}
.leftBody .feature_text{
  padding-right: 13.33333%;
}
.rightBody .feature_text{
  padding-left: 13.33333%;
}
@media screen and (max-width: 980px){
  .leftBody .feature_text,
  .rightBody .feature_text{
    padding-left: 0;
    padding-right: 0;
  }
}
.feature_text p + p {
  margin-top: 11px;
}
.feature_text p .note_mark{
  font-size: .72em;
  vertical-align: super;
  line-height: 0;
}
.feature_text p.note {
  text-align: left;
  font-size: 11px;
  line-height: 1.8;
  color: rgba(40,40,40,.65);
}

.feature_media{
  width: 50%;
  height: calc(420 / 720 * 50vw);
  position: relative;
}
@media screen and (max-width: 980px){
  .feature_body,
  .feature_media {
    width: 100%;
  }
  .feature_media {
    height: calc(420 / 720 * (100vw - 20px));
  }
}
.feature_img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50vw;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 980px){
  .feature_img {
    width: calc(100vw - 20px);
  }
}
.feature_img img {
  width: 100%;
  aspect-ratio: 720 / 420;
}
.feature_row:not(.feature_row--reverse) .feature_img {
  left: 0;
}
.feature_row:not(.feature_row--reverse) .feature_img img {
  border-radius: 16px 0 0 16px;
}
.feature_row--reverse .feature_img {
  right: 0;
}
.feature_row--reverse .feature_img img {
  border-radius: 0 16px 16px 0;
}


/* =========================
  14.HOW TO USE
========================= */
.howTo{
  background: linear-gradient(180deg, rgba(243, 244, 250, 0.00) 0.00%, rgba(243, 244, 250, 0.40) 1.12%, rgba(243, 244, 250, 0.80) 3.44%);
  padding-top: 179px;
  padding-bottom: 117px;
}

.howTo_inner {
  max-width: calc(996px + 20px * 2);
}

.howTo_lead {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.howTo_lead strong {
  color: #967D48;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.92308;
  letter-spacing: 2.6px;
}
@media screen and (max-width: 767.99px){
  .howTo_lead strong {
    font-size: clamp(1.125rem, 0.767rem + 1.79vw, 1.625rem);
  }
}
.howTo_lead p {
  text-align: left;
  letter-spacing: 0.2px;
}

.howTo_steps {
  margin-top: 67px;
  padding: 56px 88px 58px 88px;
  border-radius: 16px;
  border: 1px solid rgba(157, 135, 88, 0.50);
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}
@media screen and (max-width: 767.99px){
  .howTo_steps {
    padding: 20px;
  }
}
.howTo_steps::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  left: 112px;
  width: 2px;
  aspect-ratio: 2 / 633;
  background: url(../img/howTo-stepLine.svg) no-repeat center center / cover;
}
@media screen and (max-width: 767.99px){
  .howTo_steps::after {
    left: 44px;
  }
}
@media screen and (max-width: 600px){
  .howTo_steps::after {
    display: none;
  }
}
.howTo_step {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 15;
}
@media screen and (max-width: 600px){
  .howTo_step {
    flex-direction: column;
    gap: 20px;
  }
}

.howTo_stepNumber {
  margin-right: 24px;
  width: 48px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #FFF;
  border: 1px solid rgba(157, 135, 88, 0.50);
  display: grid;
  place-items: center;
}
@media screen and (max-width: 600px){
  .howTo_stepNumber {
    margin-right: 0;
  }
}
.howTo_stepNumber p {
  color: #9D8758;
  font-family: "Cormorant Infant", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
}

.howTo_stepScript {
  flex-grow: 1;
}
.howTo_stepScript p {
  font-weight: 600;
}

.howTo_stepImage {
  margin-left: 32px;
  width: 160px;
  flex-shrink: 0;
}
@media screen and (max-width: 600px){
  .howTo_stepImage {
    margin-left: 0;
  }
}
.howTo_stepImage img {
  width: 100%;
  aspect-ratio: 1 / 1;
}


/* =========================
  15.TIME FOR YOURSELF
========================= */
.time {
  padding-top: 123px;
  padding-bottom: 129px;
  position: relative;
}
.time_topTreat {
  overflow: hidden;
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  aspect-ratio: 1440 / 48;
}
.time_topTreat::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: -816.6vw;
  left: 50%;
  transform: translateX(-50%);
  width: 820vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #F5F6FB;
}

.time_bg{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(rgba(20,30,55,.55), rgba(20,30,55,.55)),
    url("../img/time_bg_PC.jpg") center / cover no-repeat;
}
@media screen and (max-width: 767.99px){
  .time_bg{
    background:
      linear-gradient(rgba(20,30,55,.55), rgba(20,30,55,.55)),
      url("../img/time_bg_SP.jpg") center / cover no-repeat;
  }
}

.time_inner {
  position: relative;
  z-index: 15;
}

.time_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.time_title p {
  color: #CEBB91;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.6px;
}
.time_title h2 {
  color: #FFF;
  text-align: center;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.55556;
  letter-spacing: 3.6px;
}

.time_text {
  margin-top: 48px;
}
.time_text p {
  text-align: center;
  color: #FFF;
}
.time_text p + p {
  margin-top: 32px;
}


/* =========================
  16.FAQ
========================= */
.faq {
  padding-top: 82px;
  padding-bottom: 88px;
  position: relative;
}

.faq_topTreat {
  position: absolute;
  overflow: hidden;
  top: -3.125vw;
  left: 0;
  width: 100vw;
  aspect-ratio: 1440 / 47;
}
.faq_topTreat::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 810vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #FFF;
}

.faq_inner {
  max-width: calc(940px + 20px * 2);
}

.faq_list{
  margin-top: 73px;
}

.faq_item {
  border-bottom: 1px solid rgba(25,38,72,0.70);
}
.faq_item:first-child {
  border-top: 1px solid rgba(25,38,72,0.70);
}

.faq_q {
  padding: 24px 96px 31px 28px;
}
@media screen and (max-width: 767.99px){
  .faq_q {
    padding: 24px 40px 31px 10px;
  }
}
.faq_a {
  padding: 0 96px 31px 28px;
}
@media screen and (max-width: 767.99px){
  .faq_a {
    padding: 0 40px 31px 10px;
  }
}
.faq_q,
.faq_a {
  display: flex;
  align-items: center;
  gap: 44px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767.99px){
  .faq_q,
  .faq_a {
    flex-direction: column;
    align-items: start;
  }
}
.faq_qIcon,
.faq_aIcon {
  color: #192648;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767.99px){
  .faq_qIcon,
  .faq_aIcon {
    font-size: 32px;
  }
}
.faq_qText {
  padding-top: 5px;
  text-align: left;
  color: #192648;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 767.99px){
  .faq_qText {
    font-size: 16px;
  }
}
.faq_q::before,
.faq_q::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  width: 24px;
  height: 2px;
  background: #192648;
}
@media screen and (max-width: 767.99px){
  .faq_q::before,
  .faq_q::after {
    right: 5px;
  }
}
.faq_q::after {
  transform: 
    translateY(-50%)
    rotate(90deg);
}
.faq_item.is-open .faq_q::after {
  transform: 
    translateY(-50%)
    rotate(0);
}

.faq_aArea {
  display: none;
}
.faq_a {
  margin-top: 22px;
  gap: 49px;
}
@media screen and (max-width: 767.99px){
  .faq_q,
  .faq_a {
    gap: 14px;
  }
}
.faq_aText {
  font-weight: 600;
  line-height: 1.75;
}


/* =========================
  17.Bottom visual
========================= */
.bottom_visual_link {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.bottom_visual_link a{
  color: #192648;
  text-align: center;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.2px;
}

.bottom_visual_img {
  margin-top: 94px;
  width: 100%;
}
.bottom_visual_img {
  width: 100%;
  aspect-ratio: 1440 / 720;
}


/* =========================
  18. FOOTER
========================= */

.footer {
  padding-top: 40px;
  padding-bottom: 10px;
  background-color: #192648;
  position: relative;
  z-index: 3;
}

.footer_inner {
  padding-inline: 40px;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .footer_content {
    flex-direction: column;
    gap: 40px;
  }
}

.footer_logo {
  width: fit-content;
}
.footer_logo img {
  width: 188px;
  aspect-ratio: 188 / 52;
}

.footer_nav .footer_list {
  display: flex;
  gap: 31px;
}
@media screen and (max-width: 767px) {
  .footer_nav .footer_list {
    flex-direction: column;
    align-items: center;
  }
}

.footer_item a {
  color: #FFF;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  font-family: "Marcellus", "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.9px;
}

.footer_copy {
  margin-top: 71px;
  text-align: center;
}
.footer_copy small {
  color: #FFF;
  font-family: "Marcellus", "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.65px;
}
