@charset "UTF-8";

/*-----------------------------------
    メインビジュアル
-----------------------------------*/
#main_img {
  position: relative;
  margin-top: 84px;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.7)), url(../img/index/mv.jpg);
  background-size: cover;
  background-position: center;
  padding: 60px 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 6vw;
}

#main_img::before,
#main_img::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 42% 58% 68% 32% / 42% 48% 58% 52%;
  mix-blend-mode: multiply;
}

#main_img::before {
  top: 60px;
  right: -8vw;
  width: 46vw;
  height: 46vw;
  max-width: 640px;
  max-height: 640px;
  background: #FFF5F5;
}

#main_img::after {
  bottom: -40px;
  left: -6vw;
  width: 26vw;
  height: 26vw;
  max-width: 380px;
  max-height: 380px;
  background: #F4E9E9;
}

.main_img_inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: 90%;
  height: auto;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 0vw;
}

.main_img_lead {
  position: relative;
  margin-bottom: 18px;
  padding-left: 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.24em;
  font-family: "Noto Serif JP", serif;
  color: var(--color-primary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.main_img_lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--color-primary);
}

.main_img_text h1 {
  margin-bottom: 28px;
  font-size: 60px;
  line-height: 1.55;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.main_img_text h1 strong {
  position: relative;
  font-weight: 500;
  background: linear-gradient(120deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main_img_desc {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 2;
  color: var(--color-text-sub);
}

/* ビジュアルエリア全体 */
.main_img_visual {
  position: relative;
  width: 80%;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 0px 0px 0;
}

.main_img_visual .leaf_deco {
  width: 200px;
  position: absolute;
  right: -30px;
  bottom:20px;
  z-index: 10;
  animation: floatBadge 3s ease-in-out infinite;
}

.main_img_visual_main {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.main_img_visual_main picture,
.main_img_visual_main img {
  display: block;
}

.main_img_visual_main img {
  object-fit: cover;
}


.main_img_visual_sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 浮遊する装飾(花びら・光の粒) */
.main_img_deco {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.main_img_deco_01 {
  top: 0;
  left: -6%;
  width: 26px;
  height: 26px;
  background: var(--color-accent);
  opacity: 0.55;
  animation: floatDeco 4s ease-in-out infinite;
}

.main_img_deco_02 {
  top: 18%;
  right: 2%;
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  opacity: 0.4;
  animation: floatDeco 3.4s ease-in-out infinite 0.6s;
}

.main_img_deco_03 {
  bottom: 30%;
  left: 4%;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  opacity: 0.5;
  animation: floatDeco 3s ease-in-out infinite 1.2s;
}

@keyframes floatDeco {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-14px) scale(1.15);
  }
}

.main_img_badge {
  position: absolute;
  z-index: 4;
  bottom: 10%;
  left: -8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  animation: floatBadge 3s ease-in-out infinite;
}

.main_img_badge_num {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
}

.main_img_badge_num span {
  font-size: 22px;
}

.main_img_badge_txt {
  font-size: 11px;
  color: var(--color-text-sub);
  font-weight: 500;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .main_img_text h1 {
    font-size: 42px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  #main_img {
    padding: 50px 0 50px;
    margin-top: 64px;
  }

  .main_img_inner {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .main_img_text {
    display: contents;
  }

  .main_img_lead,
  .main_img_text h1,
  .main_img_desc {
    order: 1;
    text-align: center;
  }

  .main_img_desc {
    font-size: 14px;
  }

  .main_img_lead {
    padding-left: 0;
  }

  .main_img_lead::before {
    display: none;
  }

  .main_img_visual {
    order: 2;
    width: 220px;
    padding: 0;
    margin: 0 auto;
  }

  .main_img_visual .leaf_deco {
    display: none;
  }

  .main_img_visual_sub {
    width: 40%;
  }

  .main_img_deco {
    display: none;
  }

  .main_img_btn {
    order: 3;
    margin: 50px auto 0;
  }

  .main_img_text h1 {
    font-size: 32px;
  }

  .main_img_badge {
    display: none;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .main_img_text h1 {
    font-size: 28px;
  }
}

/*-----------------------------------
    お悩み
-----------------------------------*/
#nayami_block {
  padding: 8vw 0;
  background-color: var(--color-bg-cream);
  background-size: cover;
}

.nayami_head {
  margin-bottom: 4vw;
}

.nayami_label {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  font-family: "Noto Serif JP", serif;
  /* 追加 */
}

.nayami_catch {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  /* 追加 */
}

.nayami_catch strong {
  font-weight: 500;
  font-size: 48px;
  letter-spacing: 0.04em;
}

.nayami_check_list {
  gap: 20px;
  margin-bottom: 20px;
}

.nayami_check_list li {
  display: flex;
  align-items: center;
  flex: 1 1 calc(33.333% - 14px);
  gap: 16px;
  padding: 24px 26px;
  background: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 8px 24px rgba(51, 51, 51, 0.05);
}

.nayami_check_icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  box-shadow: 0 10px 25px rgba(226, 186, 213, 0.25);
}

.nayami_check_icon svg {
  width: 20px;
  height: 20px;
}

.nayami_check_list p {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.nayami_message {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
  width: fit-content;
  border-radius: 2rem;
  margin: 0 auto;
}

.nayami_message_img {
  max-width: 200px;
  height: auto;
}

.nayami_message_img img {
  width: 100%;
  height: 100%;
}

.nayami_message p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  color: var(--color-text-dark);
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .nayami_catch {
    font-size: 26px;
  }

  .nayami_head {
    margin-bottom: 20px
  }

  .nayami_check_list {
    gap: 14px;
    margin-bottom: 0;
  }

  .nayami_check_list li {
    flex: 1 1 calc(50% - 7px);
    padding: 15px 15px;
  }

  .nayami_message {
    flex-direction: column;
    padding: 40px 0 0;
    gap: 20px;
  }

  .nayami_message p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .nayami_catch {
    font-size: 22px;
  }

  .nayami_check_list li {
    flex: 1 1 100%;
  }
}

/*-----------------------------------
    コンセプト
-----------------------------------*/
#concept_block {
  padding: 8vw 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/common/bg_02.jpg);
  background-size: cover;
  background-position: center;
}

.concept_inner {
  display: grid;
  grid-template-columns: 1.1fr;
  align-items: center;
  gap: 70px;
}

.concept_visual {
  order: 2;
  /* 追加：画像を下に */
}

.concept_text {
  order: 1;
  /* 追加：テキストを上に */
  text-align: center;
}

.concept_visual img,
.concept_visual video {
  display: block;
  width: 90%;
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1.5rem;
  object-fit: cover;
}

.concept_visual {

  overflow: hidden;
  /* 追加：はみ出した部分を隠す */
}

#concept_block h2 {
  color: #fff;
}

.concept_lead {
  font-size: 18px;
  line-height: 2.5;
  color: #fff;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .concept_inner {
    grid-template-columns: 1fr;
    gap: 8vw;
  }

  .concept_text {
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .concept_lead {
    font-size: 14px;
    line-height: 2.3;
    margin-top: 30px;
  }

  .concept_visual img,
  .concept_visual video {
    width: 100%;
  }

  #concept_block {
    padding: 8vw 0;
  }
}


/*-----------------------------------
    アディクト
-----------------------------------*/
#addict_block {
  padding: 8vw 0 5vw;
  background-color: var(--color-bg-cream);
}

#addict_block .h2_style span {
  color: var(--color-primary);
  text-shadow: none;
}

.addict_inner {
  justify-content: center;
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 550px);
  /* 画像側にも上限を指定 */
  align-items: start;
  gap: 7vw;
  /* 6vw → 3vwなど、狭めたい分だけ調整 */
}

/* addict_block: transformに変更 + モバイルでリセット */
.addict_text {
  max-width: 440px;
  transform: translateY(-2vw);
  /* margin-topから変更 */
}

.addict_visual {
  transform: translateY(2vw);
  /* margin-topから変更 */
}


.addict_lead {
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text-sub);
}

.dummy_img_addict img {
  object-fit: cover;
}


/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .addict_inner {
    display: flex;
    /* gridから切り替え、縦積みを明確に */
    flex-direction: column;
    padding: 0 4vw;
    gap: 30px;
  }

  .addict_text {
    display: contents;
    /* 追加:中の要素をinnerの直下に展開し、orderを効かせる */
  }

  /* 表示順:画像 → 見出し → リード文 */
  .addict_visual {
    order: 1;
    position: relative;
    width: 62%;
    margin: 0 auto 0;
  }

  .addict_visual::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--color-primary);
    border-radius: 1.2rem;
    opacity: 0.5;
    z-index: 0;
  }

  .dummy_img_addict {
    position: relative;
    z-index: 2;
    aspect-ratio: 4 / 3;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(51, 51, 51, 0.1);
  }

  .dummy_img_addict img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #addict_block .title_box {
    order: 1;
    text-align: left;
  }

  #addict_block .title_box .h2_style span {
    position: relative;
    padding-left: 24px;
    font-size: 12px;
  }

  #addict_block .title_box .h2_style span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 1px;
    background: var(--color-primary);
  }

  #addict_block .h2_style h2 {
    font-size: 24px;
    text-align: left;
  }

  .addict_lead {
    order: 3;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 10px;
    border-left: 2px solid var(--color-primary);
  }
}

/*-----------------------------------
    SCALP&HAIR
-----------------------------------*/
#scalp_block {
  padding: 5vw 0 8vw;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    url(../img/common/bg_01.jpg);
  background-size: cover;
  background-position: center;
}

#scalp_block .h2_style span {
  color: var(--color-primary);
} 

.scalp_inner {
  display: grid;
  grid-template-columns: minmax(0, 550px) minmax(0, 600px);
  align-items: flex-start;
  gap: 7vw;
  justify-content: center;
}

/* テキストが先、画像が後になったため、grid-template-columnsの並びを画像優先の見た目に保つ */
.scalp_text {
  order: 2;
  transform: translateY(-2vw);
}

.scalp_visual {
  order: 1;
}

.dummy_img_scalp {
  max-width: 550px;
  transform: translateY(2vw);
}

.dummy_img_scalp img {
  object-fit: cover;
}

.scalp_text h2 {
  margin-bottom: 1.8vw;
  font-size: 48px;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.scalp_desc {
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text-sub);
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .scalp_inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .scalp_text,
  .scalp_visual {
    order: initial;   /* PCのorder指定をリセットし、HTMLの記述順どおりに */
    transform: none;
  }
  .scalp_text {
    text-align: center;
    margin-top: 8vw;  /* 画像の後にテキストが来るための余白 */
  }
  .scalp_text h2 {
    font-size: 24px;
    margin-bottom: 8vw;
  }
  .dummy_img_scalp {
    max-width: none;
  }
  #scalp_block {
    padding: 8vw 0 8vw;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .scalp_inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* 追加:中の要素をscalp_innerの直下として扱い、orderを効かせる */
  .scalp_text {
    display: contents;
  }

  /* 画像:背面にずらしたフレームを追加 */
  .scalp_visual {
    order: 2;
    position: relative;
    width: 62%;
    margin: 0 auto;
  }
  .scalp_visual::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--color-primary);
    border-radius: 1.2rem;
    opacity: 0.5;
    z-index: 0;
  }

  .dummy_img_scalp {
    position: relative;
    z-index: 1;
    max-width: none;
    aspect-ratio: 4 / 3;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(51, 51, 51, 0.1);
    transform: none;
  }
  .dummy_img_scalp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* テキスト:左揃え+アクセントラインで編集ページ風に */
  .scalp_text .title_box {
    order: 1;
    text-align: left;
  }
  .scalp_text .title_box .h2_style span {
    position: relative;
    padding-left: 24px;
    font-size: 12px;
  }
  .scalp_text .title_box .h2_style span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 1px;
    background: var(--color-primary);
  }

  .scalp_text h2 {
    font-size: 22px;
    text-align: left;
    margin-bottom: 0px;
  }

  .scalp_desc {
    order: 3;
    text-align: left;
    font-size: 14px;
    line-height: 1.9;
    padding-left: 10px;
    border-left: 2px solid var(--color-primary);
  }
}

/*-----------------------------------
    POINT
-----------------------------------*/
#point_block {
  padding: 8vw 0;
  background:
    linear-gradient(rgba(225, 225, 225, 0.7), rgba(225, 225, 225, 0.7)),
    url(../img/common/bg_04.jpg);
  background-size: cover;
  background-position: bottom;
}

#point_block .title_box {
  margin-bottom: 50px;

}

#point_block h2 {
  color: var(--color-text-dark);

}

#point_block .h2_style span {
  color: var(--color-primary);
}

#point_block .leaf_deco {
  width: 200px;
  position: absolute;
  right: -50px;
  bottom: -40px;
}

.point_row {
  flex-direction: column;
  position: relative;
  align-items: center;
  margin-bottom: 6vw;
  padding: 50px 50px 80px;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(51, 51, 51, 0.05);
  gap: 20px;
}

.point_row:last-child {
  margin-bottom: 0;
}

.point_num {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 110px;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  font-family: "Noto Serif JP", serif;
  /* 追加 */
}

.point_num span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  padding-top: 0px;
  /* 追加：数字をわずかに下へ */
  padding-left: 1px;
  /* 追加：数字をわずかに右へ */
  box-sizing: border-box;

}

.point_row_inner {
  flex: 1;
}

.point_title {
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  /* 追加 */
}

.point_desc {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-sub);
  text-align: center;
}

.point_icon_list {
  gap: 24px;
  margin-top: 32px;
}

.point_icon_list li {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  background: var(--color-bg-cream);
  border-radius: 1.5rem;
}

.point_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 50%;
}

.point_icon img {
  width: 50px;
  height: 50px;
}

.point_icon_list p {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.point_icon_desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-sub);
}

.ingredient_list {
  gap: 50px;
  margin-top: 32px;
}

.ingredient_list li {
  flex: 1;
  text-align: center;
}

.dummy_img_ingredient {
  aspect-ratio: 1 / 1;
  border-radius: 1.5rem;
  overflow: hidden;
  max-width: 200px;
  margin: 0 auto 15px;
}

.dummy_img_ingredient img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  text-align: center;
}

.ingredient_name {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.ingredient_desc {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-sub);
}

/* POINT1内 Treatment サブセクション */
.point_sub {
  display: flex;
  align-items: center;
  gap: 3vw;
  margin-top: 40px;
  border-radius: 2rem;
}

.point_sub_visual {
  flex: 0 0 34%;
}

.dummy_img_treatment img {
  object-fit: cover;
}

.point_sub_text {
  flex: 1;
}

.point_sub_label {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
}

.point_sub_title {
  margin-bottom: 12px;
  font-size: 28px;
  color: var(--color-text-dark);
  font-family: "Noto Serif JP", serif;
  /* 追加 */
}

.point_sub_desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-sub);
}

@media screen and (max-width: 1200px) {
  #point_block .leaf_deco {
    width: 150px;
    position: absolute;
    right: -30px;
    bottom: -30px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .point_row {
    margin-bottom: 8vw;
    padding: 8vw 6vw;
  }

  .point_num {
    width: auto;
    gap: 5px;
    margin-bottom: 12px;
  }

  .point_icon_list,
  .ingredient_list {
    flex-wrap: wrap;
  }

  .point_icon_list li,
  .ingredient_list li {
    flex: 1 1 45%;
  }

  .point_sub {
    flex-direction: column;
    gap: 6vw;
    padding: 2vw 6vw;
    text-align: center;
  }

  .point_sub_visual {
    flex: none;
    width: 100%;
  }

  #point_block .leaf_deco {
    width: 120px;
    position: absolute;
    right: 0px;
    bottom: -40px;
  }
.point_sub_desc {
  text-align: left;
}
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .point_title {
    font-size: 21px;
  }

  .point_icon_list li,
  .ingredient_list li {
    flex: 1 1 100%;
  }
 .ingredient_list {
  gap: 20px;
 }
  .point_icon_list li {
    padding: 20px 15px;
  }

  .point_row {
    gap: 10px;
    padding: 20px 20px;
  }

  .point_icon {
    width: 30px;
    height: 30px;
  }

  .point_icon img {
    width: 30px;
    height: 30px;
  }

  .point_icon_list p {
    font-size: 18px;
  }

  .point_sub_title {
  margin-bottom: 7px;
  font-size: 21px;
}

.dummy_img_ingredient {
  max-width: 150px;
}
  #point_block .leaf_deco {
    width: 70px;
    position: absolute;
    right: -5px;
    bottom: -20px;
  }
}

/*-----------------------------------
    ラインナップ
-----------------------------------*/
#lineup_block {
  padding: 8vw 0;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/common/bg_01.jpg);
  background-size: cover;
  background-position: center;
}

#lineup_block .h2_style span {
  color: var(--color-primary);
  text-shadow: none;
}

.lineup_note {
  margin-bottom: 5vw;
  font-size: 14px;
  text-align: center;
  color: var(--color-text-sub);
}

.lineup_list {
  gap: 28px;
}

.lineup_list li {
  display: flex;
  /* 追加 */
  flex-direction: column;
  /* 追加 */
  flex: 1 1 calc(25% - 21px);
  padding: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
}

.lineup_list .btn_primary {
  margin-top: 20px;
}



.dummy_img_product {
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
  border-radius: 1.4rem;
}

.lineup_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 1.4rem;
  background: #fff;
  /* 画像読み込み前のちらつき防止 */
}

.lineup_img img {
  display: block;
  width: 100%;

  height: 100%;
  object-fit: contain;
  margin: auto;
  object-position: center;
}

.lineup_cat {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  font-family: "Noto Serif JP", serif;
  /* 追加 */
}

.lineup_name {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-dark);
  min-height: 2.9em;
  /* 追加:2行分の高さを確保して1行/2行の差を吸収 */
  line-height: 1.45;
  /* 追加:min-heightの計算基準を明示 */
}

.lineup_desc {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-sub);
}

.lineup_price {
  margin-top: auto;
  /* 追加:価格を常にカード下端に押し付ける */
  padding-top: 16px;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-dark);
  border-top: 1px solid var(--color-border);
  font-family: "Noto Serif JP", serif;
  /* 追加 */
}

.lineup_price span {
  font-size: 16px;
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .lineup_list li {
    flex: 0 1 calc(33.333% - (28px * 2 / 3));
    /* flex-growを0に、3列基準の計算式に変更 */
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .lineup_list {
    gap: 10px;
  }

  .lineup_list li {
    flex: 1 1 calc(50% - 8px);
    padding: 15px 10px;
  }

  #lineup_block .btn_primary {
width: 100%;
font-size: 13px;
margin-top: 15px;
  }
  .lineup_name {
    font-size: 14px;
  }
  .lineup_price {
    padding-top: 10px;
  }
  .lineup_price span {
    font-size: 10px;
  }
  .lineup_cat {
    margin-bottom: 4px;
  }
  .lineup_price {
    font-size: 18px;
  }
}

/*-----------------------------------
    店舗情報
-----------------------------------*/
#origin_block {
  padding: 10vw 0;
  background: url(../img/common/bg.jpg);
  background-size: cover;
}

.origin_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
}

.origin_col {
  position: relative;
  padding-top: 20px;
}

/* 大きな飾り番号 */
.origin_num {
  position: absolute;
  top: -18px;
  right: 0;
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  /* 追加 */
  color: var(--color-primary);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.dummy_img_salon,
.dummy_img_shop {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  margin-bottom: -40px;
  /* 下のカードに食い込ませる */
  border-radius: 1.4rem;

}

.dummy_img_salon img,
.dummy_img_shop img {
  object-fit: cover;
  object-position: top;
  border-radius: 1.4rem;

}

.origin_col_body {
  position: relative;
  z-index: 2;
  margin: 0 24px;
  padding: 36px 32px 40px;
  background: #fff;
  border-radius: 1.4rem;
}

.origin_label {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  font-family: "Noto Serif JP", serif;
}

.origin_col h3 {
  margin-bottom: 16px;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.origin_desc {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-sub);
}

/* 2つ目のカードだけ少し下にずらしてリズムを出す */
.origin_col:nth-child(2) {
  margin-top: 5vw;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .origin_inner {
    grid-template-columns: 1fr;
    gap: 14vw;
  }

  .origin_col:nth-child(2) {
    margin-top: 0;
  }

  .origin_col_body {
    margin: 0 12px;
    padding: 8vw 6vw;
  }

  .origin_num {
    font-size: 56px;
  }
}

@media screen and (max-width: 640px) {
.origin_col h3 {
  font-size: 24px;
}
#origin_block {
  padding: 15vw 0
}
.origin_col_body {
  padding: 5vw;
}
.origin_desc {
  line-height: 1.8;
}
}

/*-----------------------------------
    ご使用方法
-----------------------------------*/
#howto_block {
  padding: 8vw 0;
  background: #fff;
}

#howto_block .intro_txt {
  text-align: center;
}

#howto_block span {
  display: block;
}

#howto_block .h2_style span {
  color: var(--color-primary);
  text-shadow: none;
}

.howto_card_title {
  margin: 0 auto 28px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-dark);
  text-align: center;
  width: fit-content;
  border-bottom: 2px solid color-mix(in srgb, var(--color-primary), transparent 60%);
  padding-bottom: 0.2em;
  font-family: "Noto Serif JP", serif;
  /* 追加 */
}

.howto_group {
  margin-bottom: 6vw;
  margin-top: 60px;
}

.howto_group:last-child {
  margin-bottom: 0;
}

.howto_img_steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.howto_img_steps li {
  flex: 1 1 0;
  max-width: 230px;
  text-align: center;
}

.howto_img_step_visual {
  aspect-ratio: 1 / 1;
  margin-bottom: 18px;
  padding: 20px;
  overflow: hidden;
}

.howto_img_step_visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.howto_img_steps p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-sub);
  text-align: left;
  width: 95%;
  margin: 0 auto;
}

/* 矢印 */
.howto_arrow {
  flex: 0 0 auto;
  max-width: 50px !important;
  align-self: center;
  margin-top: -60px;
  /* 円の中心あたりの高さに合わせる */
  width: 28px;
}

.howto_arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent var(--color-primary);
  opacity: 0.5;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .howto_img_steps {
    flex-wrap: wrap;
    row-gap: 32px;
    gap: 12px;
  }

  .howto_img_steps li {
    flex: 1 1 calc(50% - 20px);
    max-width: none;
  }

  .howto_arrow {
    display: none;
    /* 2列折り返し時は矢印を非表示 */
  }
}


/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {

  .howto_img_steps {
    row-gap: 24px;
    column-gap: 12px;   /* 追加:2列時の左右の間隔を調整 */
  }
  .howto_img_steps li {
    flex: 1 1 calc(50% - 6px);  /* 100% → 50%基準に変更(gapの半分を差し引く) */
    max-width: none;
  }
  .howto_img_steps p {
    font-size: 14px;
  }
.howto_img_steps p span {
  font-size: 12px;
}
.howto_img_step_visual {
  padding: 10px;
  margin-bottom: 5px;
}
}

/*-----------------------------------
    購入方法
-----------------------------------*/
#order_block {
  padding: 8vw 0;
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/common/bg_01.jpg);
  background-size: cover;
  background-position: center;
}

#order_block .h2_style span {
  color: var(--color-primary);
  text-shadow: none;
}

.order_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  max-width: 1000px;
  margin: 0 auto;
}

.order_col {
  min-width: 0;
}

/* 見出し下線(フレグランス参考:色分け) */
.order_type {
  display: flex;
  /* 追加:アイコンとテキストを横並びに */
  align-items: center;
  /* 追加:縦位置を揃える */
  gap: 8px;
  /* 追加:アイコンとテキストの間隔 */
  margin-bottom: 16px;
  padding-bottom: 0.2em;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  /* 追加 */
  border-bottom: 2px solid;
}

.order_type_icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.order_col_online .order_type {
  color: var(--color-primary);
  border-bottom: 2px solid color-mix(in srgb, var(--color-primary), transparent 60%);
}

.order_col_shop .order_type {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

.order_col_heading {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: var(--color-text-dark);
}

.order_desc {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-sub);
}

.order_note {
  margin-top: 24px;
  font-size: 11px;
  line-height: 1.9;
  color: var(--color-text-sub);
  opacity: 0.8;
}

/* 店舗リスト:ドットリーダー */
.order_shop_list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 0;
  /* 追加:上下の線と中身の間に余白 */
  border-top: 1px solid var(--color-border);
  /* 追加:リスト全体の上線 */
  border-bottom: 1px solid var(--color-border);
  /* 追加:リスト全体の下線 */
}

.order_shop_list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.order_shop_list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  /* 最後の項目は線なし(リスト全体の下線と重複するため) */
}

.order_shop_name {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
  white-space: nowrap;
}

.order_shop_leader {
  flex: 1;
  min-width: 12px;
  border-bottom: 1px dotted var(--color-border);
  margin-bottom: 4px;
}

.order_shop_tel {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.order_shop_tel a {
  color: inherit;
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .order_row {
    grid-template-columns: 1fr;
    gap: 12vw;
  }

  .order_shop_list li {
    flex-wrap: wrap;
  }

  .order_shop_leader {
    display: none;
  }
}

@media screen and (max-width: 840px) {
.order_shop_list {
  gap: 10px;
    padding: 10px 0;
}
.order_shop_list li {
  padding-bottom: 10px;
  	align-items: center;
    justify-content: space-between;
}
}

/*-----------------------------------
    お客様の声
-----------------------------------*/
#voice_block {
  padding: 5vw 0;
  background: #fff;
}

#voice_block .h2_style span {
  color: var(--color-primary);
  text-shadow: none;
}

#voice_block .flex-between {
  justify-content: center;
}

.voice_list {
  display: flex;
  /* 追加:明示的に指定(flex-betweenクラスに依存させない) */
  justify-content: center;
  /* 追加:中央寄せ */
  gap: 50px;
}

.voice_list li {
  flex: 0 1 450px;
  /* flex: 1 → flex: 0 1 380px に変更 */
  padding: 36px 28px;
  text-align: center;
  background: #fff;
  border-radius: 2rem;
}

.voice_face {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--color-primary);
}

.voice_face svg {
  width: 34px;
  height: 34px;
}

.voice_title {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  color: var(--color-text-dark);
}

.voice_text {
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text);
}

.voice_age {
  font-size: 14px;
  color: var(--color-text-sub);
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .voice_list {
    flex-wrap: wrap;
  }

  .voice_list li {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 840px) {
  #voice_block {
    padding: 8vw 0;
  }
.voice_list li {
  padding: 20px 0;
}
.voice_list {
  gap: 0px;
}
}

/*-----------------------------------
    フッターCTA
-----------------------------------*/
#cta_block {
  padding: 5vw 0;
  background: url(../img/common/bg_01.jpg);
  background-size: cover;
  background-position: center;
}

.cta_label {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  font-family: "Noto Serif JP", serif;
  /* 追加 */
}

#cta_block h2 {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: var(--color-text-dark);
}



.cta_lead {
  margin-bottom: 44px;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: var(--color-text-sub);
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  #cta_block {
    padding: 8vw 0;
  }
  .cta_label {
    font-size: 12px;
    letter-spacing: 0.25em;
  }

  #cta_block h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .cta_lead {
    font-size: 14px;
    margin-bottom: 20px;
  }
}