@charset "UTF-8";

/* ===================================
   Laki - Detox & Facial Care Salon LP
   Reference-faithful Design
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* --- vw-based rem like reference --- */
html {
  font-size: 6.51vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 13.021vw;
  }
}

/* --- Reset --- */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  list-style: none;
}
*::before, *::after {
  box-sizing: border-box;
}

img, video {
  font-size: 0;
  line-height: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  font-family: "Noto Serif JP", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
  font-size: 0.22rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #1E1F20;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #EDF0F5;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.3rem;
  }
}

small {
  font-weight: normal;
}

a {
  color: currentColor;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* --- Font Classes --- */
.ff_serif {
  font-family: "Noto Serif JP", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
}
/* 数字用の美しいフォントクラスを追加 */
.ff_num_serif {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-variant-numeric: lining-nums;
}
.ff_num_sans {
  font-family: "Poppins", sans-serif;
}
.accent { color: #81D8D0; }
.gray { color: #5C636C; }

@media screen and (min-width: 769px) { .pc_hide { display: none !important; } }
@media screen and (max-width: 768px) { .sp_hide { display: none !important; } }


/* ====================================
   FIRST VIEW (FV)
   ==================================== */
.laki-fv {
  position: relative;
  padding-bottom: 0.6rem;
  background:
    linear-gradient(135deg, transparent 40%, rgba(200, 169, 110, 0.08) 40.5%, rgba(200, 169, 110, 0.08) 41%, transparent 41.5%),
    linear-gradient(135deg, transparent 65%, rgba(200, 169, 110, 0.08) 65.5%, rgba(200, 169, 110, 0.08) 66%, transparent 66.5%),
    linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 70%, #E2EDF8 100%);
  overflow: hidden;
}

/* ヘッダー */
.laki-fv_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.16rem 0.24rem;
  position: relative;
  z-index: 10;
}
.laki-fv_logo {
  display: flex;
  align-items: center;
  gap: 0.08rem;
}
.laki-fv_logo-mark svg {
  width: 0.56rem;
  height: 0.56rem;
  color: #81D8D0;
}
.laki-fv_logo-text {
  display: flex;
  flex-direction: column;
}
.laki-fv_logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.44rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1;
  color: #c8a96e;
}
.laki-fv_logo-sub {
  font-size: 0.16rem;
  color: #8c7343;
  letter-spacing: 0.04em;
  margin-top: 0.02rem;
  font-weight: 600;
}

.laki-fv_header_btn {
  position: relative;
}
.laki-fv_header_btn a {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  background: linear-gradient(135deg, #c8a96e 0%, #b29156 100%);
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.22rem;
  font-weight: 700;
  padding: 0.1rem 0.22rem;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(200, 169, 110, 0.25);
  position: relative;
  overflow: hidden;
  border: 1px solid #ecd8ab;
  white-space: nowrap;
}
.laki-fv_header_btn .icon-calendar svg,
.laki-fv_header_btn .icon-finger svg {
  width: 0.26rem;
  height: 0.26rem;
  display: block;
}
.laki-fv_header_btn .icon-finger {
  display: flex;
  align-items: center;
  animation: fingerBounce 1.5s infinite;
}
@keyframes fingerBounce {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4px, -4px) scale(0.9); }
}
.laki-fv_header_btn a::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  animation: headerShimmer 3s infinite;
}
@keyframes headerShimmer {
  0% { left: -60%; }
  30% { left: 140%; }
  100% { left: 140%; }
}

/* 駅徒歩情報の帯 */
.laki-fv_sub-header {
  width: 90%;
  max-width: 6.8rem;
  background-color: #d8e5f5;
  margin: 0.05rem auto 0.25rem;
  padding: 0.08rem 0;
  text-align: center;
  position: relative;
  z-index: 10;
}
.laki-fv_station {
  font-size: 0.28rem;
  color: #4a586e;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0;
}
.laki-fv_station .num {
  font-size: 135%;
  font-weight: 700;
  margin: 0 0.02rem;
  color: #4a586e;
}

/* メインボディ (左右レイアウト) */
.laki-fv_body {
  display: flex;
  position: relative;
  min-height: 7.2rem;
  padding: 0.1rem 0.24rem 0;
  z-index: 5;
}
.laki-fv_left {
  flex: 1.1;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.laki-fv_right {
  position: absolute;
  right: -0.2rem;
  top: 0.2rem;
  width: 4.6rem;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
.laki-fv_hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.95;
}

/* メインタイトル */
.laki-fv_main-title {
  font-size: 0.52rem;
  font-weight: 500;
  color: #b29156;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #c8a96e 0%, #b29156 50%, #8e6d2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  white-space: nowrap;
}
.laki-fv_main-title .large-num {
  font-size: 1.7rem;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  font-variant-numeric: lining-nums;
  line-height: 1.0;
  margin-right: 0.02rem;
  display: inline-block;
  vertical-align: -0.16em;
}
.laki-fv_main-title .unit {
  font-size: 0.32rem;
  font-weight: 600;
  vertical-align: 0.18rem;
  margin-right: 0.02rem;
}
.laki-fv_main-title .highlight {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  vertical-align: 0.04rem;
}
.laki-fv_main-title .to {
  font-size: 0.52rem;
  font-weight: 600;
  vertical-align: 0.04rem;
}

/* 二重円装飾 */
.laki-fv_circle-wrap {
  position: relative;
  margin-top: 0.15rem;
  margin-left: 0.08rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}
.laki-fv_circle {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(2px);
}
.laki-fv_circle::before {
  content: "";
  position: absolute;
  top: -0.06rem;
  left: -0.06rem;
  right: -0.06rem;
  bottom: -0.06rem;
  border-radius: 50%;
  border: 1px dashed rgba(200, 169, 110, 0.35);
  pointer-events: none;
  transform: rotate(15deg);
}
.laki-fv_circle::after {
  content: "";
  position: absolute;
  top: 0.04rem;
  left: 0.04rem;
  right: 0.04rem;
  bottom: 0.04rem;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.15);
  pointer-events: none;
}
.laki-fv_circle-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
}
.circle-text-large {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.44rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #2b2b2b;
  white-space: nowrap;
}
.circle-text-godcleaner {
  font-size: 0.32rem;
}
.circle-text-cross {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.3rem;
  color: #c8a96e;
  margin: 0.02rem 0;
  font-weight: 500;
}
.circle-text-medium {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.38rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #2b2b2b;
  margin-top: 0.02rem;
}
.laki-fv_circle-sub {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.28rem;
  color: #3f3f3f;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: 0.15rem;
  margin-left: 0.1rem;
}
.laki-fv_circle-sub .quotes {
  color: #c8a96e;
  font-weight: 700;
}

/* 評価バッジ */
.laki-fv_rating {
  position: relative;
  margin: 0.35rem auto 0.2rem;
  width: 90%;
  max-width: 6.8rem;
  background: #fff;
  border: 2px solid #c8a96e;
  border-radius: 0.04rem;
  padding: 0.22rem 0.16rem 0.14rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  z-index: 10;
}
.laki-fv_rating::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid rgba(200, 169, 110, 0.35);
  pointer-events: none;
}
.rating-crown {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  color: #c8a96e;
  z-index: 12;
}
.rating-crown svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}
.laki-fv_rating-title {
  position: absolute;
  top: 0;
  left: 6%;
  right: 6%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #c8a96e 0%, #b29156 100%);
  color: #fff;
  text-align: center;
  font-size: 0.22rem;
  font-weight: 600;
  padding: 0.04rem 0.16rem;
  border-radius: 3px;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 6px rgba(200,169,110,0.2);
  margin: 0;
}
.laki-fv_rating-title .year {
  font-size: 70%;
  font-weight: 400;
  opacity: 0.9;
  margin-left: 0.08rem;
}
.laki-fv_rating-scores {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 0.08rem;
  gap: 0.16rem;
}
.laki-fv_rating-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  gap: 0.06rem;
}
.laurel-left svg,
.laurel-right svg {
  width: 0.52rem;
  height: 1.04rem;
  color: #c8a96e;
  opacity: 0.85;
}
.item-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.laki-fv_rating-item .source {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.16rem;
  font-weight: 700;
  color: #8c7343;
  margin: 0;
}
.laki-fv_rating-item .label {
  font-size: 0.12rem;
  color: #999;
  margin-top: -0.02rem;
}
.laki-fv_rating-item .stars {
  display: flex;
  gap: 1px;
  margin: 0.02rem 0;
}
.laki-fv_rating-item .stars svg {
  width: 0.18rem;
  height: 0.18rem;
  color: #c8a96e;
}
.laki-fv_rating-item .score {
  font-family: "Noto Serif JP", "Shippori Mincho B1", serif;
  font-size: 0.5rem;
  font-weight: 700;
  color: #8c7343;
  line-height: 1;
  margin-top: 0.02rem;
}

/* フッター (scroll & 点付きコピー) */
.laki-fv_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.15rem;
  position: relative;
  z-index: 10;
}
.laki-fv_scroll-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.25rem;
}
.laki-fv_scroll {
  color: #7a7a7a;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.2rem;
  letter-spacing: 0.18em;
  margin: 0;
  position: static;
  transform: none;
}
.laki-fv_scroll::after {
  content: "";
  width: 1px;
  height: 0.8rem;
  background: #c8a96e;
  display: block;
  margin: 0.08rem auto 0;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.laki-fv_sub-copy {
  text-align: center;
  font-size: 0.28rem;
  line-height: 1.7;
  color: #2b2b2b;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 0.08rem;
}
.emphasis-dots {
  position: relative;
  display: inline-block;
  font-weight: 700;
  text-emphasis: '•' #c8a96e;
  -webkit-text-emphasis: '•' #c8a96e;
  text-emphasis-position: over;
  -webkit-text-emphasis-position: over;
}

/* PCレスポンシブ微調整 */
@media screen and (min-width: 769px) {
  .laki-fv {
    padding-bottom: 0.8rem;
  }
  .laki-fv_header {
    padding: 0.2rem 0.4rem;
  }
  .laki-fv_sub-header {
    margin: 0.1rem auto 0.4rem;
  }
  .laki-fv_body {
    min-height: 7.8rem;
    max-width: 10rem;
    margin: 0 auto;
  }
  .laki-fv_left {
    flex: 1.2;
  }
  .laki-fv_right {
    width: 5.6rem;
    top: 0.4rem;
    right: 0.2rem;
  }
  .laki-fv_rating {
    margin: 0.4rem auto 0.3rem;
  }
}

/* ====================================
   CTA BLOCK (セクション全体の共通CTA)
   ==================================== */
.laki-cta {
  background: linear-gradient(180deg, #F0F4FA 0%, #FFFFFF 100%);
  padding: 0.8rem 0;
  position: relative;
}
.laki-cta_header {
  text-align: center;
  margin-bottom: 0.4rem;
}
.laki-cta_header p {
  display: inline-block;
  font-size: 0.24rem;
  color: #8c7343;
  font-weight: 600;
  border-bottom: 1px solid rgba(200, 169, 110, 0.4);
  padding-bottom: 0.04rem;
  letter-spacing: 0.08em;
}
.laki-cta_header h2 {
  font-size: 0.44rem;
  font-weight: 500;
  color: #2b2b2b;
  line-height: 1.5;
  margin-top: 0.16rem;
  letter-spacing: 0.08em;
}
.laki-cta_header h2 .span1 {
  color: #c8a96e;
  font-weight: 700;
}
.laki-cta_content {
  width: min(6.8rem, 92%);
  margin: 0 auto;
  background: #FFF;
  border: 2px solid #c8a96e;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.15);
  padding: 0.35rem 0.24rem;
  position: relative;
}
.laki-cta_content::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: 4px;
  pointer-events: none;
}
.laki-cta_content_header {
  text-align: center;
  margin-bottom: 0.25rem;
}
.laki-cta_content_header h3 {
  font-size: 0.36rem;
  color: #2b2b2b;
  letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
}
.laki-cta_content_header h3 .accent {
  color: #c8a96e;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.22rem;
  display: block;
  letter-spacing: 0.15em;
}
.laki-cta_content_step-dots {
  display: flex;
  justify-content: center;
  gap: 0.1rem;
  margin-top: 0.1rem;
}
.laki-cta_content_step-dots span {
  font-size: 0.18rem;
  color: #fff;
  background: #c8a96e;
  border-radius: 50%;
  width: 0.32rem;
  height: 0.32rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

/* STEPのスクロールプレビュー */
.laki-cta_content_step {
  overflow-x: auto;
  margin: 0.15rem -0.24rem 0.25rem;
  padding: 0 0.24rem 0.15rem;
  -webkit-overflow-scrolling: touch;
}
.laki-cta_content_step::-webkit-scrollbar {
  height: 4px;
}
.laki-cta_content_step::-webkit-scrollbar-thumb {
  background: rgba(200, 169, 110, 0.4);
  border-radius: 2px;
}
.laki-cta_content_step_scroll {
  display: flex;
  gap: 0.16rem;
  width: max-content;
}
.step-card {
  width: 1.8rem;
  flex-shrink: 0;
  text-align: center;
}
.step-card img {
  width: 100%;
  height: 1.2rem;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(200, 169, 110, 0.2);
}
.step-card .step-label {
  display: block;
  font-size: 0.16rem;
  color: #666;
  margin-top: 0.08rem;
  font-weight: 600;
  line-height: 1.2;
}

/* 価格エリア */
.laki-cta_content_price {
  background: #fbf9f5;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 4px;
  padding: 0.2rem;
  text-align: center;
  margin-bottom: 0.25rem;
}
.laki-cta_content_price_report p {
  font-size: 0.2rem;
  color: #8c7343;
  margin-bottom: 0.1rem;
}
.laki-cta_content_price_num {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-old {
  font-size: 0.22rem;
  color: #999;
  text-decoration: line-through;
}
.price-new {
  font-size: 0.32rem;
  color: #c8a96e;
  margin-top: 0.02rem;
}
.price-new strong {
  font-size: 0.64rem;
  color: #c82c2c;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin: 0 0.04rem;
}

.laki-cta_content_footer_present {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F4F7FB;
  border-radius: 4px;
  padding: 0.15rem 0.2rem;
  margin-bottom: 0.25rem;
}
.laki-cta_content_footer_present h4 {
  font-size: 0.24rem;
  color: #4a5468;
}
.present-img {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #c8a96e;
}
.present-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.laki-cta_content_footer_btn {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
}
.btn-line-large {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #09D361 0%, #06B853 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.28rem;
  padding: 0.2rem 0.32rem;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(6,184,83,0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-line-large .btn-text,
.btn-phone-large .btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.btn-line-large .btn-text small {
  font-size: 70%;
  opacity: 0.9;
  font-weight: 400;
}
.btn-phone-large {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c8a96e 0%, #b29156 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.26rem;
  padding: 0.18rem 0.32rem;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(200,169,110,0.3);
  text-align: center;
  border: 1px solid #ecd8ab;
}
.btn-phone-large .btn-text small {
  font-size: 80%;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}
.btn-line-large::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  animation: headerShimmer 3s infinite;
}

.laki-cta_content_footer_link {
  text-align: center;
  margin-top: 0.2rem;
}
.laki-cta_content_footer_link a {
  font-size: 0.22rem;
  text-decoration: underline;
}


/* ====================================
   BEFORE / AFTER & VOICES
   ==================================== */
.laki-sec-ba {
  background: #FFF;
  padding: 0.8rem 0;
}
.laki-section-header {
  text-align: center;
  margin-bottom: 0.4rem;
  padding: 0 0.24rem;
}
.laki-section-header p {
  font-size: 0.22rem;
  color: #7a7a7a;
  margin-bottom: 0.1rem;
}
.laki-section-header h2 {
  font-size: 0.42rem;
  color: #2b2b2b;
  line-height: 1.5;
  font-weight: 500;
}
.laki-section-header h2 .span1 {
  color: #c8a96e;
  font-weight: 700;
}
.laki-ba_grid {
  width: min(6.8rem, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ba-card {
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 6px;
  padding: 0.16rem;
  background: #fbfaf8;
}
.ba-images {
  display: flex;
  gap: 0.12rem;
}
.ba-img {
  flex: 1;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}
.ba-img img {
  width: 100%;
  height: 2.2rem;
  object-fit: cover;
}
.badge-before, .badge-after {
  position: absolute;
  top: 0.08rem;
  left: 0.08rem;
  color: #fff;
  font-size: 0.16rem;
  font-weight: 700;
  padding: 0.02rem 0.08rem;
  border-radius: 2px;
}
.badge-before { background: #7a7a7a; }
.badge-after { background: #c8a96e; }
.ba-desc {
  font-size: 0.24rem;
  color: #333;
  font-weight: 600;
  margin-top: 0.12rem;
  text-align: center;
}
.ba-note {
  font-size: 0.16rem;
  color: #999;
  text-align: right;
  margin-right: 0.1rem;
}

.laki-ba_voices {
  width: min(6.8rem, 92%);
  margin: 0.3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.voice-comment {
  background: #f4f6fa;
  border-radius: 6px;
  padding: 0.2rem 0.24rem;
  position: relative;
}
.voice-comment::before {
  content: "";
  position: absolute;
  top: 0.05rem;
  left: 0.1rem;
  font-family: serif;
  font-size: 0.8rem;
  color: rgba(200, 169, 110, 0.2);
  line-height: 1;
}
.voice-title {
  font-size: 0.28rem;
  font-weight: 700;
  color: #8c7343;
  margin-bottom: 0.08rem;
  position: relative;
  z-index: 2;
}
.voice-detail {
  font-size: 0.24rem;
  color: #555;
  line-height: 1.6;
}
.laki-ba_footer {
  text-align: center;
  margin-top: 0.4rem;
}
.laki-ba_footer h3 {
  font-size: 0.32rem;
  color: #c8a96e;
  font-weight: 600;
}


/* ====================================
   WHAT IS SKIN ANALYSIS (肌分析)
   ==================================== */
.laki-sec-analysis {
  background: #f7f9fc;
  padding: 0.8rem 0;
}
.laki-analysis_content {
  width: min(6.8rem, 92%);
  margin: 0 auto;
}
.laki-analysis_content h3 {
  font-size: 0.32rem;
  text-align: center;
  line-height: 1.5;
  color: #2b2b2b;
  margin-bottom: 0.3rem;
}
.laki-analysis_content h3 .span1 {
  border-bottom: 2px solid #c8a96e;
  padding-bottom: 0.02rem;
}
.laki-analysis_box {
  background: #FFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.analysis-img {
  width: 100%;
  height: 3.4rem;
}
.analysis-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.analysis-text {
  padding: 0.25rem 0.2rem;
}
.analysis-text p {
  font-size: 0.24rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 0.16rem;
}
.analysis-text p:last-child {
  margin-bottom: 0;
}


/* ====================================
   7STEP DETAIL
   ==================================== */
.laki-sec-7step {
  background: #FFF;
  padding: 0.8rem 0;
}
.laki-7step_content {
  width: min(6.8rem, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.step-detail {
  background: #F9FBFD;
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 6px;
  padding: 0.24rem 0.2rem;
}
.step-num-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c8a96e 0%, #b29156 100%);
  color: #FFF;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 0.22rem;
  padding: 0.04rem 0.16rem;
  border-radius: 3px;
  margin-bottom: 0.16rem;
  letter-spacing: 0.06em;
}
.step-img-text img {
  width: 100%;
  height: 3rem;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.16rem;
}
.step-img-text p {
  font-size: 0.24rem;
  color: #4a4a4a;
  line-height: 1.6;
}

/* Swiper inside Step 5 */
.step-swiper-wrap {
  width: 100%;
}
.step-swiper-wrap .swiper {
  width: 100%;
  height: 3.4rem;
  border-radius: 4px;
  overflow: hidden;
}
.step-swiper-wrap .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.step-swiper-wrap .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.22rem;
  padding: 0.08rem;
  text-align: center;
}
.step-swiper-wrap .swiper-pagination-bullet-active {
  background: #c8a96e;
}
.step-swiper-desc {
  font-size: 0.24rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-top: 0.16rem;
}

.step-closing {
  background: #FDFBF8;
  border: 1.5px solid #c8a96e;
  border-radius: 6px;
  padding: 0.25rem 0.2rem;
  text-align: center;
  position: relative;
}
.closing-title {
  font-size: 0.28rem;
  font-weight: 700;
  color: #8c7343;
  margin-bottom: 0.08rem;
}
.closing-desc {
  font-size: 0.24rem;
  color: #4a4a4a;
  line-height: 1.6;
}


/* ====================================
   GUARANTEE (返金保証)
   ==================================== */
.laki-sec-guarantee {
  background: #f7f9fc;
  padding: 0.8rem 0;
}
.laki-guarantee_content {
  width: min(6.8rem, 92%);
  margin: 0 auto;
  background: #fff;
  border: 2px double #c8a96e;
  border-radius: 6px;
  padding: 0.4rem 0.24rem;
  text-align: center;
}
.laki-guarantee_content h2 {
  font-size: 0.36rem;
  color: #2b2b2b;
  margin-bottom: 0.25rem;
}
.laki-guarantee_content h2 .span2 {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.2rem;
  color: #c8a96e;
  letter-spacing: 0.1em;
}
.laki-guarantee_content p {
  font-size: 0.24rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 0.2rem;
}
.laki-guarantee_content ul {
  display: inline-block;
  text-align: left;
  background: #fcfbf8;
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 4px;
  padding: 0.2rem 0.3rem 0.2rem 0.5rem;
  margin-bottom: 0.2rem;
}
.laki-guarantee_content ul li {
  font-size: 0.22rem;
  color: #c82c2c;
  font-weight: 600;
  list-style-type: disc;
  margin-bottom: 0.08rem;
}
.laki-guarantee_content ul li:last-child {
  margin-bottom: 0;
}


/* ====================================
   REVIEWS (口コミ)
   ==================================== */
.laki-sec-reviews {
  background: #fff;
  padding: 0.8rem 0;
}
.laki-reviews_content {
  width: min(6.8rem, 92%);
  margin: 0 auto;
}
.reviews-header {
  display: flex;
  justify-content: space-around;
  gap: 0.16rem;
  margin-bottom: 0.35rem;
}
.reviews-score-badge {
  background: #FDF9F4;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 4px;
  flex: 1;
  text-align: center;
  padding: 0.16rem;
}
.reviews-score-badge span {
  font-size: 0.18rem;
  color: #8c7343;
  display: block;
}
.reviews-score-badge strong {
  font-size: 0.44rem;
  color: #8c7343;
  font-family: "Playfair Display", "Poppins", serif;
  font-weight: 700;
  display: block;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.review-bubble {
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 6px;
  padding: 0.2rem;
}
.review-name {
  font-size: 0.2rem;
  font-weight: 700;
  color: #c8a96e;
  margin-bottom: 0.04rem;
}
.review-text {
  font-size: 0.22rem;
  color: #4a4a4a;
  line-height: 1.5;
}


/* ====================================
   INFLUENCERS
   ==================================== */
.laki-sec-influencers {
  background: #f7f9fc;
  padding: 0.8rem 0;
}
.laki-influencers_grid {
  width: min(6.8rem, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.influencer-card {
  background: #FFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.influencer-card img {
  width: 100%;
  height: 3.4rem;
  object-fit: cover;
}
.card-info {
  padding: 0.2rem;
}
.card-info h4 {
  font-size: 0.24rem;
  color: #2b2b2b;
  margin-bottom: 0.08rem;
}
.card-info p {
  font-size: 0.22rem;
  color: #555;
  line-height: 1.5;
}
.card-info p span.accent {
  font-weight: 700;
}


/* ====================================
   4 REASONS (選ばれる理由)
   ==================================== */
.laki-sec-reasons {
  background: #fff;
  padding: 0.8rem 0;
}
.reasons-list {
  width: min(6.8rem, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.reason-card {
  background: #F9FBFC;
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 6px;
  padding: 0.25rem 0.2rem;
  position: relative;
}
.reason-num {
  font-family: "Poppins", sans-serif;
  font-size: 0.22rem;
  color: #c8a96e;
  font-weight: 700;
  border-bottom: 1.5px solid #c8a96e;
  display: inline-block;
  margin-bottom: 0.12rem;
  letter-spacing: 0.08em;
}
.reason-card h3 {
  font-size: 0.28rem;
  color: #2b2b2b;
  margin-bottom: 0.1rem;
}
.reason-card p {
  font-size: 0.22rem;
  color: #555;
  line-height: 1.6;
}


/* ====================================
   STAFF (店長紹介)
   ==================================== */
.laki-sec-staff {
  background: #f7f9fc;
  padding: 0.8rem 0;
}
.staff-profile-card {
  width: min(6.8rem, 92%);
  margin: 0 auto;
  background: #FFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.staff-img-wrap {
  width: 100%;
  height: 4.4rem;
}
.staff-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staff-profile-text {
  padding: 0.25rem 0.2rem;
}
.staff-role {
  font-size: 0.18rem;
  color: #999;
}
.staff-profile-text h3 {
  font-size: 0.36rem;
  margin: 0.04rem 0 0.12rem;
}
.staff-desc {
  font-size: 0.24rem;
  color: #555;
  line-height: 1.6;
}


/* ====================================
   GIVERS & CLINIC (系列＆クリニック提携)
   ==================================== */
.laki-sec-brand {
  background: #FFF;
  padding: 0.8rem 0;
}
.laki-brand_header {
  text-align: center;
  margin-bottom: 0.4rem;
}
.laki-brand_header h2 {
  font-size: 0.36rem;
  color: #2b2b2b;
  line-height: 1.5;
}
.brand-feature {
  width: min(6.8rem, 92%);
  margin: 0 auto 0.4rem;
  background: #F8F9FA;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}
.brand-feature:last-child {
  margin-bottom: 0;
}
.feature-img {
  width: 100%;
  height: 3rem;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-text {
  padding: 0.25rem 0.2rem;
}
.feature-badge {
  display: inline-block;
  background: #e2ebf4;
  color: #4a586e;
  font-size: 0.18rem;
  font-weight: 700;
  padding: 0.04rem 0.12rem;
  border-radius: 2px;
  margin-bottom: 0.1rem;
}
.feature-text h3 {
  font-size: 0.32rem;
  margin-bottom: 0.1rem;
}
.feature-text p {
  font-size: 0.22rem;
  color: #555;
  line-height: 1.6;
}


/* ====================================
   ACCESS (アクセス)
   ==================================== */
.laki-sec-access {
  background: #f7f9fc;
  padding: 0.8rem 0;
}
.laki-access_content {
  width: min(6.8rem, 92%);
  margin: 0 auto;
}
.laki-access_map {
  width: 100%;
  height: 3.6rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, 0.2);
  margin-bottom: 0.25rem;
}
.laki-access_map iframe {
  width: 100%;
  height: 100%;
}
.laki-access_info dl {
  border-bottom: 1px solid #e5e9f0;
  padding: 0.16rem 0;
  display: flex;
}
.laki-access_info dl:last-child {
  border-bottom: none;
}
.laki-access_info dt {
  font-weight: 700;
  width: 1.4rem;
  flex-shrink: 0;
  color: #2b2b2b;
  font-size: 0.24rem;
}
.laki-access_info dd {
  font-size: 0.24rem;
  color: #555;
  line-height: 1.5;
}


/* ====================================
   FAQ (よくある質問)
   ==================================== */
.laki-sec-faq {
  background: #fff;
  padding: 0.8rem 0;
}
.laki-faq_list {
  width: min(6.8rem, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.faq-card {
  border: 1px solid #e2ebd9;
  border-radius: 6px;
  overflow: hidden;
}
.faq-q, .faq-a {
  padding: 0.2rem;
  display: flex;
  gap: 0.12rem;
  font-size: 0.24rem;
}
.faq-q {
  background: #f6f8f4;
  color: #2b2b2b;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}
.faq-a {
  background: #fff;
  color: #555;
  line-height: 1.5;
}
.badge-q, .badge-a {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.badge-q {
  background: #c8a96e;
  color: #FFF;
}
.badge-a {
  background: #4a5468;
  color: #FFF;
}


/* ====================================
   FOOTER & FIXED BOTTOM CTA
   ==================================== */
.laki-footer {
  background: #2b2b2b;
  color: #FFF;
  text-align: center;
  padding: 0.4rem 0 1.6rem;
}
.laki-footer_logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.36rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.04rem;
  color: #c8a96e;
}
.laki-footer_sub {
  font-size: 0.18rem;
  color: #999;
  margin-bottom: 0.25rem;
}
.laki-footer_copy small {
  font-size: 0.16rem;
  color: #666;
}

.laki-footer_cta {
  position: fixed;
  z-index: 200;
  left: 0;
  bottom: 0;
  width: 100%;
  transition: 0.4s;
  background: linear-gradient(to bottom, rgba(240, 244, 250, 0) 0%, #F0F4FA 0.15rem, #F0F4FA 100%);
  transform: translate3d(0, 100%, 0);
  pointer-events: none;
  opacity: 0;
}
.body_sticky .laki-footer_cta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
.laki-footer_cta_inner {
  width: min(6.8rem, 92%);
  margin: 0 auto;
  padding: 0.08rem 0 0.12rem;
  display: flex;
  gap: 0.12rem;
}
.fixed-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  padding: 0.12rem 0.08rem;
  border-radius: 99px;
  font-size: 0.22rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.fixed-btn--line {
  background: linear-gradient(135deg, #09D361 0%, #06B853 100%);
  color: white;
  flex: 1.3;
  box-shadow: 0 4px 12px rgba(6,184,83,0.3);
}
.fixed-btn--phone {
  background: #FFF;
  color: #c8a96e;
  border: 1.5px solid #c8a96e;
}
.fixed-btn svg {
  width: 0.22rem;
  height: 0.22rem;
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .laki-footer_cta {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* PCレスポンシブ微調整 (FV以外のセクション) */
@media screen and (min-width: 769px) {
  .laki-cta_content, .laki-ba_grid, .laki-ba_voices, .laki-analysis_content, .laki-7step_content, .laki-guarantee_content, .laki-reviews_content, .laki-influencers_grid, .reasons-list, .staff-profile-card, .brand-feature, .laki-access_content, .laki-faq_list, .laki-footer_cta_inner {
    max-width: 8rem;
  }
  .laki-ba_grid {
    flex-direction: column;
    align-items: center;
  }
  .ba-card {
    width: 100%;
    max-width: 6.8rem;
  }
  .ba-note {
    width: 100%;
    max-width: 6.8rem;
    text-align: right;
  }
  .laki-analysis_box {
    display: flex;
  }
  .analysis-img {
    width: 3.4rem;
    height: auto;
  }
  .analysis-text {
    flex: 1;
  }
  .step-img-text {
    display: flex;
    gap: 0.2rem;
    align-items: center;
  }
  .step-img-text img {
    width: 2.8rem;
    height: 1.8rem;
    margin-bottom: 0;
  }
  .step-img-text p {
    flex: 1;
  }
  .staff-profile-card {
    display: flex;
  }
  .staff-img-wrap {
    width: 3rem;
    height: auto;
  }
  .staff-profile-text {
    flex: 1;
  }
  .brand-feature {
    display: flex;
  }
  .feature-img {
    width: 3rem;
    height: auto;
  }
  .feature-text {
    flex: 1;
  }
}
