﻿/* ============================================================
   Luana LP / School - Common CSS
   main.css: shared variables, base layout, nav, hero, labels, CTA, FAQ, footer
   ============================================================ */
/* ============================================================
   Luana LP — 男性専門整体ルアナ（名古屋）
   配置：/wp-content/themes/arkhe_child/luana-lp.css
   画像参照：/wp-content/uploads/luana/ の絶対URL
   ============================================================ */

:root{
  --bg: #FFFFFF;
  --paper: #FFFFFF;
  --surface: #F6F5F6;
  --ink: #1A1A1A;
  --ink-soft: #444444;
  --ink-muted: #888888;

  --blush-50: #FDEFF3;
  --blush-100: #FAD8E0;
  --blush-200: #F2B6C5;
  --rose: #F895AD;
  --mauve: #F895AD;
  --plum: #2A2528;
  --plum-deep: #110F13;

  --line: #E5E5E5;
  --line-soft: #F0F0F0;

  --serif:"Cormorant Garamond","Shippori Mincho B1", serif;
  --mincho:"Shippori Mincho B1","Yu Mincho","游明朝", serif;
  --sans-jp:"Noto Sans JP","Hiragino Sans","Yu Gothic","Meiryo", sans-serif;
  --sans:"Jost","Helvetica Neue", sans-serif;
  --script:"Bebas Neue","Oswald", sans-serif;
}

.luana-lp *{ margin:0; padding:0; box-sizing:border-box; }
.luana-lp{ scroll-behavior:smooth; }

.luana-lp{
  font-family: var(--sans-jp);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.85;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings:"palt";
}

/* 全画面ノイズオーバーレイは削除（fixed が背景固定のように見える違和感の原因） */

.luana-lp a{ color:inherit; text-decoration:none; }
.luana-lp img{ max-width:100%; display:block; }

/* ============== ナビ ============== */
.luana-lp .nav{
  position: fixed; top:0; left:0; right:0;
  z-index: 100;
  padding: 20px 44px;
  display:flex; justify-content:space-between; align-items:center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
}
.luana-lp .nav.is-visible{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.luana-lp .nav__logo{
  font-family: var(--serif);
  font-size: 26px; font-weight: 400;
  letter-spacing: 0.18em; color: var(--ink);
  font-style: italic;
}
.luana-lp .nav__logo span{
  font-family: var(--sans-jp); font-style: normal;
  font-size: 13px; letter-spacing: 0.4em;
  color: var(--ink-muted); display:block;
  margin-top: -10px !important; font-weight:500;
}
.luana-lp .nav__menu{
  display:flex; gap:30px;
  font-family: var(--serif); font-size: 16px;
  letter-spacing:0.15em; color: var(--ink-soft);
}
.luana-lp .nav__menu a{ position:relative; }
.luana-lp .nav__menu a::after{
  content:""; position:absolute; left:0; bottom:-6px;
  width:0; height:1px; background: var(--rose);
}
.luana-lp .nav__cta{
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  transition: transform .2s ease;
}
.luana-lp .nav__cta:hover{
  transform: translateY(-1px);
}
.luana-lp .nav__cta-img{
  display: block;
  height: 88px !important;
  width: auto;
  max-width: min(44vw, 360px) !important;
  object-fit: contain;
}

@media (max-width: 980px){
  .luana-lp .nav{ padding: 14px 18px; }
  .luana-lp .nav__menu{ display:none; }
  .luana-lp .nav__logo{ font-size: 22px; }
  .luana-lp .nav__logo span{ font-size: 10px; letter-spacing: 0.3em; }
  .luana-lp .nav__cta-img{
    height: 72px !important;
    max-width: calc(100vw - 150px) !important;
  }
}

/* ============== HERO ============== */
.luana-lp .hero{
  position: relative;
  padding: 0;
  background: var(--surface);
  overflow: hidden;
}
.luana-lp .hero__visual{
  display: block;
  position: relative;
  width: 100%;
}
.luana-lp .hero__visual-img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px){
  .luana-lp .hero{ padding-top: 0; padding-bottom: 0; }
}

/* ============== セクション共通 ============== */
.luana-lp section{ position:relative; z-index:2; }

.luana-lp .section-label{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  background: #1A1A1A;
  margin-bottom: 24px;
  font-family: var(--sans-jp);
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.2em;
}
.luana-lp .section-label::before,
.luana-lp .section-label::after{
  display: none !important;
}
.luana-lp .section-num{
  font-family: var(--script);
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.luana-lp .section-label__num{
  font-family: var(--script);
  font-style: normal;
  font-size: 26px; font-weight: 400;
  color: #FFFFFF !important; line-height: 1;
  letter-spacing: 0.04em;
}
.luana-lp .section-label__divider{
  display: inline-block;
  width: 1px; height: 20px;
  background: rgba(255, 255, 255, 0.5) !important;
}
.luana-lp .section-label__en{
  font-family: var(--script);
  font-style: normal;
  font-size: 18px; letter-spacing: 0.22em;
  color: #FFFFFF !important; text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 880px){
  .luana-lp .section-label{ gap: 12px; padding: 10px 20px; font-size: 15px; }
  .luana-lp .section-label__num{ font-size: 22px; }
  .luana-lp .section-label__divider{ height: 16px; }
  .luana-lp .section-label__en{ font-size: 14px; letter-spacing: 0.12em; }
}

.luana-lp .section-title em{
  font-family: var(--mincho);
  font-style: normal;
  font-weight: 700;
  color: var(--rose);
  font-size: 1.32em;
  padding: 0 8px;
  background: linear-gradient(transparent 72%, rgba(248, 149, 173, 0.22) 72%, rgba(248, 149, 173, 0.22) 94%, transparent 94%);
}
.luana-lp .section-title .block{
  font-family: var(--sans-jp);
  font-weight: 800;
}
.luana-lp .section-title{
  font-family: var(--sans-jp); font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.5; color: var(--ink);
  letter-spacing: 0.04em; margin-bottom: 60px;
}
.luana-lp .section-title .en{
  display:block;
  font-family: var(--script); font-style: normal;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--ink-muted); letter-spacing: 0.22em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* ============== 下層ページ本文 ============== */
.luana-page,
.privacy-policy{
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 128px) 24px clamp(88px, 9vw, 144px);
  font-family: var(--sans-jp);
  color: var(--ink);
  line-height: 2;
  letter-spacing: 0.04em;
}
.luana-page h1,
.privacy-policy h1{
  margin: 0 0 clamp(44px, 5vw, 72px);
  font-family: var(--mincho);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-align: center;
}
.luana-page h1::after,
.privacy-policy h1::after{
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 24px auto 0;
  background: var(--rose);
}
.luana-page h2,
.privacy-policy h2{
  margin: clamp(46px, 5vw, 64px) 0 18px;
  padding-left: 18px;
  border-left: 3px solid var(--rose);
  font-family: var(--mincho);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.luana-page p,
.privacy-policy p{
  margin: 0 0 20px;
  font-size: 16.5px;
  color: var(--ink-soft);
}
.luana-page ul,
.privacy-policy ul{
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}
.luana-page li,
.privacy-policy li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.9;
}
.luana-page li::before,
.privacy-policy li::before{
  content: "";
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}
.luana-page a,
.privacy-policy a{
  color: var(--plum);
  text-decoration: underline;
  text-decoration-color: rgba(248, 149, 173, 0.55);
  text-underline-offset: 4px;
}

@media (max-width: 768px){
  .luana-page,
  .privacy-policy{
    padding: 64px 22px 96px;
    line-height: 1.9;
  }
  .luana-page h1,
  .privacy-policy h1{
    text-align: left;
    letter-spacing: 0.06em;
  }
  .luana-page h1::after,
  .privacy-policy h1::after{
    margin-left: 0;
  }
  .luana-page h2,
  .privacy-policy h2{
    margin-top: 42px;
    padding-left: 14px;
    font-size: clamp(23px, 6.2vw, 30px);
  }
  .luana-page p,
  .privacy-policy p,
  .luana-page li,
  .privacy-policy li{
    font-size: 15.5px;
  }
}

/* ============== ⑨ よくある質問 ============== */
.luana-lp .faq{
  padding: 160px 48px;
  background: var(--surface);
}
.luana-lp .faq__inner{
  max-width: 980px; margin: 0 auto;
}
.luana-lp .faq__head{
  text-align:center;
  margin-bottom: 80px;
}
.luana-lp .faq__head .section-label{ justify-content: center; }
.luana-lp .faq__list{
  border-top: 1px solid var(--line);
}
.luana-lp .faq-item{
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.luana-lp .faq-item summary{
  list-style: none;
  display:grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0;
  align-items: center;
}
.luana-lp .faq-item summary::-webkit-details-marker{ display:none; }
.luana-lp .faq-item__q{
  font-family: var(--script); font-style: normal;
  font-weight: 400; font-size: 48px !important;
  color: var(--rose);
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
}
.luana-lp .faq-item__title{
  font-family: var(--sans-jp); font-size: 18px;
  color: var(--ink);
  line-height: 1.7; letter-spacing: 0.04em;
  font-weight: 500;
}
.luana-lp .faq-item__plus{
  width: 20px; height: 20px;
  position:relative;
}
.luana-lp .faq-item__plus::before, .luana-lp .faq-item__plus::after{
  content:""; position:absolute;
  background: var(--plum); top: 50%; left: 50%;
}
.luana-lp .faq-item__plus::before{
  width: 14px; height: 1px;
  transform: translate(-50%, -50%);
}
.luana-lp .faq-item__plus::after{
  width: 1px; height: 14px;
  transform: translate(-50%, -50%);
}
.luana-lp .faq-item[open] .faq-item__plus::after{
  transform: translate(-50%, -50%) rotate(90deg);
}
.luana-lp .faq-item__answer{
  margin-top: 16px;
  padding-left: 80px; padding-right: 40px;
  font-size: 17px; line-height: 2.05;
  color: var(--ink-soft); letter-spacing: 0.04em;
}

@media (max-width: 880px){
  .luana-lp .faq{ padding: 80px 22px; }
  .luana-lp .faq-item summary{ grid-template-columns: 48px 1fr 24px; gap: 0; }
  .luana-lp .faq-item__q{ font-size: 32px !important; }
  .luana-lp .faq-item__title{ font-size: 17.5px; }
  .luana-lp .faq-item__answer{ padding-left: 52px; padding-right: 0; font-size: 16.5px; }
}

/* ============== ⑪ ご予約方法 ============== */
.luana-lp .cta{
  padding: 200px 48px 160px;
  text-align:center;
  position: relative;
  overflow: visible;
  background: var(--paper);
  z-index: 3;
}
.luana-lp .cta::before{
  content:"";
  position:absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140vw; height: 140vw;
  max-width: 1100px; max-height: 1100px;
  background: radial-gradient(circle, rgba(253, 239, 243, 0.6) 0%, transparent 60%);
  z-index:0;
}
.luana-lp .cta::after{
  content:"蘇";
  position:absolute;
  right: -80px; bottom: -90px;
  top: auto;
  width: 540px; height: 540px;
  border: 1px solid rgba(248, 149, 173, 0.55);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--sans-jp); font-weight: 600;
  font-size: 300px; line-height: 1;
  color: rgba(248, 149, 173, 0.32);
  z-index: 1;
  pointer-events:none; user-select:none;
  transform: rotate(-12deg);
}
@media (max-width: 880px){
  .luana-lp .cta::after{
    width: 280px; height: 280px;
    right: -80px; bottom: -50px;
    font-size: 160px;
  }
}
.luana-lp .cta__inner{
  position:relative; z-index:2;
  max-width: 800px; margin: 0 auto;
}
.luana-lp .cta__seal{
  width: 60px; height: 60px;
  margin: 0 auto 40px;
  border: 1px solid var(--rose);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color: var(--rose);
  font-family: var(--mincho);
  font-size: 22px; font-weight: 600;
}
.luana-lp .cta__title{
  font-family: var(--mincho); font-weight: 700;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.65; color: var(--ink);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}
.luana-lp .cta__title em{
  font-style: normal;
  font-family: var(--mincho);
  font-weight: 700;
  color: var(--rose);
  font-size: 1.32em;
  padding: 0 8px;
  background: linear-gradient(transparent 72%, rgba(248, 149, 173, 0.22) 72%, rgba(248, 149, 173, 0.22) 94%, transparent 94%);
}
.luana-lp .cta__sub{
  font-size: 18px; color: var(--ink-soft);
  line-height: 2.1; letter-spacing: 0.06em;
  max-width: 560px; margin: 0 auto 56px;
}
.luana-lp .cta__btn{
  display: inline-block;
  position: relative;
  z-index: 3;
  line-height: 0;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}
.luana-lp .cta__btn:hover{
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 24px rgba(6, 199, 85, 0.35));
}
.luana-lp .cta__btn-img{
  display: block;
  max-width: 360px;
  width: 100%;
  height: auto;
}
.luana-lp .cta__note{
  margin-top: 32px;
  font-family: var(--script); font-style: normal;
  font-size: 16px; color: var(--ink-muted);
  letter-spacing: 0.22em;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 880px){
  .luana-lp .cta{ padding: 110px 22px 100px; }
}

/* ============== フッター ============== */
.luana-lp footer{
  background: var(--plum-deep); color: var(--blush-100);
  padding: 72px 48px 34px;
  position: relative;
  z-index:2;
}
.luana-lp .footer__inner{
  max-width: 760px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(260px, 1.15fr);
  gap: 56px;
  align-items: center;
  text-align: left;
}
.luana-lp .footer__brand{ text-align: left; }
.luana-lp .footer__brand .logo{
  font-family: var(--serif); font-style: italic;
  font-size: 34px; margin-bottom: 10px;
  color: var(--blush-50);
  line-height: 1;
}
.luana-lp .footer__label{
  font-family: var(--sans-jp); font-size: 14px;
  font-weight: 700;
  line-height: 1.7; color: rgba(253, 239, 243,0.7);
  letter-spacing: 0.14em;
}
.luana-lp .footer__message{
  font-family: var(--sans-jp); font-size: 14px;
  font-weight: 700;
  line-height: 2; color: rgba(253, 239, 243,0.78);
  letter-spacing: 0.08em;
}
.luana-lp .footer__col h5{
  font-family: var(--script); font-style: normal;
  font-size: 20px; letter-spacing: 0.22em;
  color: var(--rose); margin-bottom: 24px;
  font-weight: 400;
  text-transform: uppercase;
}
.luana-lp .footer__col ul{ list-style:none; }
.luana-lp .footer__col li{
  font-family: var(--sans-jp); font-size: 15.5px;
  color: rgba(253, 239, 243,0.75);
  line-height: 2.2; letter-spacing: 0.04em;
}
.luana-lp .footer__bottom{
  display: none;
}

@media (max-width: 880px){
  .luana-lp footer{ padding: 56px 28px 64px; }
  .luana-lp .footer__inner{
    max-width: 320px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .luana-lp .footer__brand,
  .luana-lp .footer__message{ text-align: left; }
  .luana-lp .footer__brand .logo{ font-size: 30px; }
}

/* ============== 既存WPフッター ============== */
body .l-footer,
body footer.l-footer,
body .p-footer,
body .site-footer{
  background: var(--plum-deep) !important;
  color: var(--blush-100) !important;
}
body .l-footer,
body footer.l-footer{
  padding-top: 56px !important;
  padding-bottom: 52px !important;
}
body .l-footer nav ul,
body .p-footer nav ul,
body .site-footer nav ul,
body .l-footer .menu,
body .l-footer .p-footerNav,
body .l-footer .p-footerNav__list,
body .l-footer .p-footer__nav,
body .l-footer .l-footer__nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 30px;
  padding: 0;
  margin: 0 0 32px;
}
body .l-footer nav li,
body .p-footer nav li,
body .site-footer nav li,
body .l-footer .menu-item{
  margin: 0;
  padding: 0;
  color: var(--rose) !important;
}
body .l-footer nav li::marker,
body .p-footer nav li::marker,
body .site-footer nav li::marker{
  color: var(--rose);
}
body .l-footer a,
body .p-footer a,
body .site-footer a,
body .l-footer .menu-item a{
  color: rgba(253, 239, 243, 0.72) !important;
  font-family: var(--sans-jp);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}
body .l-footer a:hover,
body .p-footer a:hover,
body .site-footer a:hover{
  color: var(--blush-50) !important;
}
body .l-footer .c-copyright,
body .p-footer .c-copyright,
body .site-footer .c-copyright,
body .c-copyright,
body .l-footer__copy,
body .p-footer__copy{
  color: rgba(253, 239, 243, 0.54) !important;
}

/* ============== フローティングLINE ============== */
.luana-lp .floating-cta{
  position: fixed;
  top: 50%; right: 0;
  transform: translateY(-50%);
  z-index: 90;
  background: #06C755; color: #FFFFFF;
  padding: 32px 14px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--sans-jp);
  font-size: 14px;
  font-weight: 600; letter-spacing: 0.3em;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: -6px 0 18px -6px rgba(0, 0, 0, 0.22);
  border-radius: 4px 0 0 4px;
}

@media (max-width: 880px){
  .luana-lp .floating-cta{
    top: auto;
    bottom: 0; right: 0; left: 0;
    transform: none;
    writing-mode: horizontal-tb;
    padding: 16px 22px;
    font-size: 14px;
    letter-spacing: 0.25em;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 -6px 18px -6px rgba(0, 0, 0, 0.18);
  }
}

.luana-lp .reveal{ /* 静的表示 */ }

.luana-lp .reveal.reveal-ready{
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  filter: blur(2px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
  will-change: opacity, transform;
}

.luana-lp .reveal.reveal-ready.is-shown{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce){
  .luana-lp .reveal.reveal-ready{
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* CTA overlap guard */
.luana-lp .cta::after{
  z-index: 0 !important;
}
.luana-lp .cta__inner{
  position: relative;
  z-index: 2 !important;
}
.luana-lp .cta__btn,
.luana-lp .cta__btn-img{
  position: relative !important;
  z-index: 5 !important;
}

/* ============================================================
   Luana LP - Front Page CSS
   front.css: TOP page specific sections
   Requires: main.css
   ============================================================ */
/* ============== ① こんなお悩みありませんか ============== */
.luana-lp .worries{
  padding: 140px 48px;
  background: var(--paper);
  position: relative;
}
.luana-lp .worries::before{
  content:"Concerns";
  position: absolute;
  bottom: 0; left: 24px;
  font-family: "Bodoni Moda", var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(170px, 22vw, 320px);
  color: rgba(26, 26, 26, 0.07);
  line-height: 0.72;
  letter-spacing: 0;
  z-index: 0; pointer-events: none;
}
.luana-lp .worries__inner{
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 2;
  text-align: center;
}
.luana-lp .worries__head{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.luana-lp .worries__head .section-label{
  justify-content: center;
  margin-bottom: 24px;
}
.luana-lp .worries__head h2{
  font-family: var(--sans-jp);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 40px);
  color: var(--ink);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.luana-lp .worries__head h2::before,
.luana-lp .worries__head h2::after{
  content: "";
  display: block;
  width: 40px;
  height: 9px;
  flex-shrink: 0;
  background:
    linear-gradient(to bottom,
      var(--ink) 0%,
      var(--ink) 22%,
      transparent 22%,
      transparent 78%,
      var(--ink) 78%,
      var(--ink) 100%);
}
.luana-lp .worries__head h2::before{ transform: rotate(65deg); }
.luana-lp .worries__head h2::after{ transform: rotate(-65deg); }
.luana-lp .worries__head h2 em{
  font-family: var(--mincho);
  font-style: normal;
  font-weight: 700;
  color: var(--rose);
  font-size: 1.3em;
  padding: 0 6px;
  background: linear-gradient(transparent 72%, rgba(248, 149, 173, 0.22) 72%, rgba(248, 149, 173, 0.22) 94%, transparent 94%);
  border-bottom: none;
}
.luana-lp .worries__head p{
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2.05;
  letter-spacing: 0.05em;
}

.luana-lp .worries__list{
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding: 56px 56px 40px;
  background: #FAFAFA;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(26, 26, 26, 0.03);
  display: flex;
  flex-direction: column;
  text-align: left;
}
.luana-lp .worries__list::before,
.luana-lp .worries__list::after{ display: none; }

.luana-lp .worry{
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 22px;
  padding: 22px 8px;
  align-items: center;
  position: relative;
  max-width: 580px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.luana-lp .worry + .worry{
  border-top: 1px solid var(--line-soft);
}
.luana-lp .worry__num{
  width: 30px;
  height: 30px;
  background: url('https://cog-test.xyz/luana/wp-content/uploads/luana/icons/check.png') no-repeat center;
  background-size: contain;
  display: block;
  font-size: 0;
  color: transparent;
  line-height: 1;
  margin-left: auto;
}
.luana-lp .worry__num::before,
.luana-lp .worry__num::after{ display: none; }
.luana-lp .worry__text{
  font-family: var(--sans-jp);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.85;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.luana-lp .worries__connector{
  text-align: center;
  margin: 24px auto 0;
  border-top: 1px solid var(--line);
  max-width: 520px;
  width: 100%;
  font-family: var(--sans-jp);
  font-size: 17.5px;
  color: var(--ink-soft);
  line-height: 2;
  letter-spacing: 0.05em;
}
.luana-lp .worries__connector strong{
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
}
.luana-lp .worries__connector-break{ display: inline; }

@media (max-width: 880px){
  .luana-lp .worries{ padding: 80px 22px; }
  .luana-lp .worries::before{
    left: -24px;
    font-size: 190px;
    max-width: none;
    white-space: nowrap;
  }
  .luana-lp .worries__head{ margin-bottom: 40px; }
  .luana-lp .worries__head .section-label{ margin-bottom: 18px; }
  .luana-lp .worries__head h2{
    flex-direction: column;
    gap: 6px;
  }
  .luana-lp .worries__head h2::before,
  .luana-lp .worries__head h2::after{ display: none; }
  .luana-lp .worries__head h2 .worries__h-text{ display: contents; }
  .luana-lp .worries__head h2 .worries__h-l1{ display: block; }
  .luana-lp .worries__head h2 .worries__h-l2{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
  .luana-lp .worries__head h2 .worries__h-l2::before,
  .luana-lp .worries__head h2 .worries__h-l2::after{
    content: "";
    display: block;
    width: 24px;
    height: 8px;
    flex-shrink: 0;
    background:
      linear-gradient(to bottom,
        var(--ink) 0%, var(--ink) 22%,
        transparent 22%, transparent 78%,
        var(--ink) 78%, var(--ink) 100%);
  }
  .luana-lp .worries__head h2 .worries__h-l2::before{ transform: rotate(65deg); }
  .luana-lp .worries__head h2 .worries__h-l2::after{ transform: rotate(-65deg); }
  .luana-lp .worries__list{ padding: 32px 22px 24px; }
  .luana-lp .worry{ grid-template-columns: 30px minmax(0, 1fr); gap: 16px; padding: 18px 0; }
  .luana-lp .worry__num{ width: 26px; height: 26px; }
  .luana-lp .worry__text{
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 18.5px;
    line-height: 1.8;
  }
  .luana-lp .worries__connector{
    align-self: stretch;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin: 24px 0 0;
    padding: 24px 0 8px;
    text-align: center;
    font-size: 16.5px;
  }
  .luana-lp .worries__connector-break{ display: block; }
}

/* ============== ② 施術で得られる変化 ============== */
.luana-lp .changes{
  padding: 160px 48px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.luana-lp .changes::before{
  content:"Transformation";
  position:absolute;
  bottom: 0; right: 24px;
  font-family: "Bodoni Moda", var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(100px, 13.5vw, 210px);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0;
  z-index: 0; line-height: 0.72;
  pointer-events: none;
  max-width: calc(100% - 48px);
  white-space: nowrap;
}
.luana-lp .changes__inner{
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index:2;
}
.luana-lp .changes__head{
  margin-bottom: 80px;
  max-width: 720px;
}
.luana-lp .changes__grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.luana-lp .change-card{
  background: #FFFFFF;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 32px 22px 28px;
  position: relative;
  text-align: center;
  box-shadow: 8px 8px 0 0 #E0E0E0;
  min-height: 240px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.luana-lp .change-card__title{
  font-family: var(--sans-jp);
  font-size: 18px; font-weight: 600;
  line-height: 1.95; color: var(--ink);
  letter-spacing: 0.05em;
}
.luana-lp .change-card__deco{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  order: -1;
}
.luana-lp .change-card__deco img,
.luana-lp .change-card__deco svg{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.luana-lp .change-card.c1{ grid-column: 1 / span 4; }
.luana-lp .change-card.c2{ grid-column: 5 / span 4; }
.luana-lp .change-card.c3{ grid-column: 9 / span 4; }
.luana-lp .change-card.c4{ grid-column: 3 / span 4; }
.luana-lp .change-card.c5{ grid-column: 7 / span 4; }

@media (max-width: 880px){
  .luana-lp .changes{ padding: 80px 22px; }
  .luana-lp .changes::before{
    right: -40px;
    font-size: 140px;
    max-width: none;
    white-space: nowrap;
  }
  .luana-lp .changes__grid{ grid-template-columns: 1fr; gap: 20px; }
  .luana-lp .change-card.c1, .luana-lp .change-card.c2, .luana-lp .change-card.c3,
  .luana-lp .change-card.c4, .luana-lp .change-card.c5{
    grid-column: 1 / -1;
  }
  .luana-lp .change-card{ padding: 28px 22px; border-radius: 14px; box-shadow: 6px 6px 0 0 #E0E0E0; }
}

/* ============== ③ 当院の特徴（左右交互） ============== */
.luana-lp .features{
  padding: 160px 48px;
  background: var(--paper);
  position: relative;
}
.luana-lp .features__head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 100px;
}
.luana-lp .features__head .section-label{ justify-content: center; }

.luana-lp .feature-row{
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.luana-lp .feature-row:last-child{ margin-bottom: 0; }
.luana-lp .feature-row--reverse{ direction: rtl; }
.luana-lp .feature-row--reverse > *{ direction: ltr; }

.luana-lp .feature-row__visual{
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #F5E4E7 0%, #E5CFD9 45%, #C5B4CD 100%);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 28px -10px rgba(63, 46, 69, 0.22);
}
.luana-lp .feature-row__visual::before{
  content:"";
  position:absolute; inset: 14px;
  border: 1px solid rgba(255,255,255,0.55);
  z-index: 2; pointer-events: none;
}
.luana-lp .feature-row__visual::after{
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,0.28), transparent 55%),
    radial-gradient(circle at 25% 85%, rgba(63, 46, 69, 0.10), transparent 60%);
}
.luana-lp .feature-row__visual-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.luana-lp .feature-row--01 .feature-row__visual-img{
  object-fit: cover;
  object-position: center center;
}
.luana-lp .feature-row__visual:has(img.feature-row__visual-img){
  box-shadow: 18px 18px 0 0 var(--rose);
  background: var(--surface);
  overflow: visible;
}
.luana-lp .feature-row__visual:has(img.feature-row__visual-img)::after{
  display: none;
}
.luana-lp .feature-row__visual:has(img.feature-row__visual-img) .feature-row__visual-num{
  display: none;
}
.luana-lp .feature-row__visual-num{
  position: absolute;
  top: 20px; right: 28px;
  z-index: 3;
  font-family: var(--script); font-style: normal;
  font-weight: 400; font-size: 100px;
  color: rgba(255,255,255,0.95);
  line-height: 1;
  font-feature-settings:"lnum";
  letter-spacing: 0.02em;
}
.luana-lp .feature-row__visual-label{
  position: absolute;
  bottom: 28px; left: 28px;
  z-index: 3;
  color: rgba(255,255,255,0.85);
  font-family: var(--script); font-style: normal;
  font-size: 16px; letter-spacing: 0.2em;
}

.luana-lp .feature-row__content .num-tag{
  display: inline-block;
  font-family: var(--script); font-style: normal;
  font-size: 16px; color: #FFFFFF;
  letter-spacing: 0.22em; margin-bottom: 14px;
  background: #1A1A1A;
  padding: 6px 14px;
}
.luana-lp .feature-row__content h3{
  font-family: var(--sans-jp); font-weight: 600;
  font-size: clamp(21px, 2.6vw, 28px);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.luana-lp .feature-row__content p{
  font-size: 18px; color: var(--ink-soft);
  line-height: 2.05; letter-spacing: 0.05em;
}
.luana-lp .feature-row__content p strong{
  color: var(--ink); font-weight: 700;
  background: linear-gradient(transparent 75%, rgba(248, 149, 173, 0.18) 75%, rgba(248, 149, 173, 0.18) 95%, transparent 95%);
  padding: 0 2px;
}

@media (max-width: 880px){
  .luana-lp .features{ padding: 80px 22px; }
  .luana-lp .feature-row{ grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .luana-lp .feature-row--reverse{ direction: ltr; }
  .luana-lp .feature-row__visual:has(img.feature-row__visual-img){
    box-shadow: 12px 12px 0 0 var(--rose);
  }
  .luana-lp .feature-row__visual:has(img.feature-row__visual-img) .feature-row__visual-num{
    display: none;
  }
}

/* ============== ④ 本気で変わりたい方へ（マニフェスト） ============== */
.luana-lp .manifesto{
  padding: 200px 48px;
  background: #0A0A0A;
  color: var(--blush-50);
  position: relative;
  overflow: visible;
  z-index: 4;
}
.luana-lp .manifesto::before{
  content:"漢";
  position:absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mincho); font-weight: 800;
  font-size: clamp(280px, 45vw, 560px);
  color: rgba(255, 255, 255, 0.045);
  line-height:1;
  z-index:0;
  pointer-events:none; user-select:none;
}
.luana-lp .manifesto__inner{
  max-width: 900px; margin: 0 auto;
  text-align: center;
  position:relative; z-index:2;
}
.luana-lp .manifesto__eyebrow{
  font-family: var(--script); font-style: normal;
  font-size: 16px; letter-spacing: 0.36em;
  color: var(--blush-200); margin-bottom: 32px;
  font-weight: 400;
  text-transform: uppercase;
}
.luana-lp .manifesto__title{
  font-family: var(--mincho); font-weight: 600;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.65; letter-spacing: 0.08em;
  margin-bottom: 48px;
  word-break: keep-all;
  overflow-wrap: normal;
}
.luana-lp .manifesto__title em{
  font-style: normal;
  color: #FFFFFF;
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 1.18em;
  padding: 0 8px;
  background: linear-gradient(transparent 72%, rgba(248, 149, 173, 0.3) 72%, rgba(248, 149, 173, 0.3) 93%, transparent 93%);
  border-bottom: none;
}
.luana-lp .manifesto__body{
  font-size: 18px; line-height: 2.2;
  color: rgba(251, 243, 244, 0.85);
  letter-spacing: 0.06em;
  max-width: 640px; margin: 0 auto;
}
.luana-lp .manifesto__body p + p{ margin-top: 20px; }

.luana-lp .manifesto__divider{
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 220px;
  background: var(--rose);
  z-index: 5;
}

@media (max-width: 880px){
  .luana-lp .manifesto{ padding: 110px 22px; }
  .luana-lp .manifesto::before{
    color: rgba(255, 255, 255, 0.105);
  }
  .luana-lp .manifesto__divider{
    bottom: -70px;
    height: 160px;
  }
  .luana-lp .manifesto__title{
    font-size: clamp(22px, 5.4vw, 30px);
    letter-spacing: 0.05em;
    line-height: 1.7;
  }
  .luana-lp .manifesto__title em{
    font-size: 1.12em;
    padding: 0 4px;
  }
  .luana-lp .manifesto__body{ font-size: 17.5px; line-height: 2.1; }
}

/* ============== ⑤ メニュー・料金 ============== */
.luana-lp .pricing{
  padding: 160px 48px;
  background: var(--surface);
}
.luana-lp .pricing__inner{
  max-width: 1100px; margin: 0 auto;
}
.luana-lp .pricing__head{
  text-align: center;
  margin-bottom: 80px;
}
.luana-lp .pricing__head .section-label{ justify-content: center; }
.luana-lp .pricing__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.luana-lp .price-card{
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 56px 48px;
  position: relative;
}
.luana-lp .price-card--feature{
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px -10px rgba(63, 46, 69, 0.12);
}
.luana-lp .price-card__tag{
  position: absolute;
  top: 0; right: 10px;
  background: var(--plum-deep); color: #FFFFFF;
  padding: 10px 10px 20px;
  font-family: var(--script); font-style: normal;
  font-weight: 400;
  font-size: 14px; letter-spacing: 0.22em;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 12px), 0 100%);
  z-index: 3;
  box-shadow: 0 4px 14px -4px rgba(63, 46, 69, 0.35);
}
.luana-lp .price-card__tag--new{
  background: var(--rose);
  letter-spacing: 0.32em;
}
.luana-lp .price-card__title{
  font-family: var(--mincho); font-weight: 700;
  font-size: 28px; color: var(--ink);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 32px;
}
.luana-lp .price-card__sub{
  font-family: var(--script); font-style: normal;
  font-size: 17px; color: var(--ink-muted);
  letter-spacing: 0.22em;
  margin-bottom: 32px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.luana-lp .price-table{
  width: 100%;
  border: none !important;
  border-top: none !important;
  border-right: none !important;
  border-collapse: collapse;
  margin-bottom: 28px;
  background: transparent;
}
.luana-lp .price-table tr{
  border-bottom: 1px solid var(--line-soft);
}
.luana-lp .price-table tr:last-child{
  border-bottom: none;
}
.luana-lp .price-table td,
.luana-lp .price-table th{
  border: none !important;
  border-left: none !important;
  border-bottom: none !important;
  background: transparent !important;
  padding: 22px 0 !important;
  font-family: var(--sans-jp);
  vertical-align: middle;
  word-break: normal;
  color: inherit;
  font-weight: normal;
}
.luana-lp .price-table td:first-child{
  font-size: 18.5px; color: var(--ink);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.luana-lp .price-table td:last-child{
  text-align: right;
  font-family: var(--sans-jp); color: var(--ink);
  font-feature-settings:"lnum";
}
.luana-lp .price-table .strike{
  display: block;
  text-decoration: line-through;
  text-decoration-color: rgba(26, 26, 26, 0.55);
  text-decoration-thickness: 1px;
  color: var(--ink-muted);
  font-size: 18px;
  margin-bottom: 2px;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-family: var(--sans-jp);
}
.luana-lp .price-table .now{
  font-family: var(--sans-jp);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.luana-lp .price-table .now--sale{
  font-size: 42px;
  color: var(--rose);
}
.luana-lp .price-table .yen--sale{
  color: var(--rose);
  font-weight: 700;
  font-size: 18px;
}
.luana-lp .price-table .yen{
  font-family: var(--sans-jp);
  font-size: 17.5px;
  margin-left: 4px;
  color: var(--ink-soft);
  font-weight: 500;
}

.luana-lp .price-card__meta{
  display: flex; flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 18px; color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.luana-lp .price-card__meta strong{
  color: var(--ink); font-weight: 600;
  margin-right: 8px;
}
@media (max-width: 880px){
  .luana-lp .price-card__meta{
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
  }
}

.luana-lp .price-note{
  text-align: center;
  margin-top: 28px;
  font-size: 16.5px; color: var(--ink-muted);
  line-height: 1.9;
}

@media (max-width: 880px){
  .luana-lp .pricing{ padding: 80px 22px; }
  .luana-lp .pricing__grid{ grid-template-columns: 1fr; gap: 18px; }
  .luana-lp .price-card{ padding: 72px 26px 36px; }
  .luana-lp .price-card__tag{
    top: 0;
    right: 10px;
    min-width: 88px;
    padding: 10px 10px 20px;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-align: center;
  }
  .luana-lp .price-card:not(.price-card--feature) .price-table{
    table-layout: fixed;
  }
  .luana-lp .price-card:not(.price-card--feature) .price-table td:first-child{
    width: 45%;
    white-space: normal;
    font-size: 17px;
    letter-spacing: 0.04em;
    line-height: 1.7;
  }
  .luana-lp .price-card:not(.price-card--feature) .price-table td:last-child{
    width: 55%;
  }
  .luana-lp .price-table__inquiry{
    display: inline-block;
    line-height: 1.7;
    text-align: right;
    white-space: nowrap;
  }
  .luana-lp .price-card__title{ font-size: 24px; }
}

/* ============== ⑥ 施術の流れ ============== */
.luana-lp .flow{
  padding: 120px 48px;
  background: var(--bg);
}
.luana-lp .flow__inner{
  max-width: 1200px; margin: 0 auto;
}
.luana-lp .flow__head{ text-align: center; max-width: 700px; margin: 0 auto 60px; }

.luana-lp .flow__steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.luana-lp .flow__steps::before,
.luana-lp .flow__steps::after{
  content:"";
  position:absolute;
  top: 75px;
  height: 1px;
  background: var(--rose);
  z-index: 1;
}
.luana-lp .flow__steps::before{
  left: calc(16.666% + 85px);
  width: calc(33.333% - 170px);
}
.luana-lp .flow__steps::after{
  left: calc(50% + 85px);
  width: calc(33.333% - 170px);
}
.luana-lp .step{
  padding: 0 24px;
  position: relative;
  text-align: center;
}
.luana-lp .step__visual{
  width: 150px;
  margin: 0 auto 22px;
  text-align: center;
}
.luana-lp .step__circle{
  width: 150px; height: 150px;
  border-radius:50%;
  background: var(--rose);
  border: none;
  display:flex; align-items:center; justify-content:center;
  position:relative; z-index:2;
  margin: 0 auto;
}
.luana-lp .step__circle::before{
  content:"";
  position: absolute;
  top: -10px; left: -10px;
  right: -10px; bottom: -10px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  pointer-events: none;
}
.luana-lp .step__icon{
  width: 96px; height: 96px;
  object-fit: contain;
}
.luana-lp .step__num{
  display: block;
  margin-top: 22px;
  font-family: var(--script); font-style: normal;
  font-weight: 400; font-size: 40px;
  color: #1A1A1A;
  line-height: 1;
  font-feature-settings:"lnum";
  letter-spacing: 0.04em;
}
@media (max-width: 880px){
  .luana-lp .step__visual{ width: 124px; }
  .luana-lp .step__circle{ width: 124px; height: 124px; }
  .luana-lp .step__icon{ width: 78px; height: 78px; }
  .luana-lp .step__num{ font-size: 28px; margin-top: 16px; }
}
.luana-lp .step__title{
  font-family: var(--sans-jp); font-weight: 600;
  font-size: 24px; color: var(--ink);
  letter-spacing: 0.08em; margin-bottom: 6px;
}
.luana-lp .step__sub{
  font-family: var(--script); font-style: normal;
  color: var(--ink-muted);
  font-size: 17px; letter-spacing: 0.22em;
  margin-bottom: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.luana-lp .step__body{
  font-family: var(--sans-jp);
  font-size: 18px; color: var(--ink-soft);
  line-height: 1.95; letter-spacing: 0.04em;
}

@media (max-width: 880px){
  .luana-lp .flow{ padding: 80px 22px 92px; }
  .luana-lp .flow__head{ margin-bottom: 42px; }
  .luana-lp .flow__steps{ grid-template-columns: 1fr; gap: 60px; }
  .luana-lp .flow__steps::before{ display:none; }
  .luana-lp .step{ padding: 0 8px; }
  .luana-lp .step__visual{ width: 124px; margin: 0 auto 4px; }
  .luana-lp .step__num{ font-size: 28px; margin-top: 23px; }
  .luana-lp .step__title{ font-size: 22px; line-height: 1.45; margin-bottom: 4px; }
  .luana-lp .step__sub{ font-size: 16px; line-height: 1; margin-bottom: 14px; }
  .luana-lp .step__body{ font-size: 17.5px; line-height: 1.85; }
}

/* ============== ⑦ 院長プロフィール ============== */
.luana-lp .profile{
  padding: 160px 48px;
  background: var(--surface);
  position:relative;
}
.luana-lp .profile__inner{
  max-width: 1200px; margin: 0 auto;
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.luana-lp .profile__visual{
  position: sticky; top: 120px;
}
.luana-lp .profile__visual::before{ display: none; }
.luana-lp .profile__photo-frame{
  aspect-ratio: 3/4;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 18px 18px 0 0 var(--rose);
  z-index: 2;
}
.luana-lp .profile__photo-frame::before{
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  z-index: 3;
  pointer-events: none;
}
.luana-lp .profile__photo{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.luana-lp .profile__content .section-label{ margin-bottom: 24px; }
.luana-lp .profile__title{
  font-family: var(--mincho); font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.6; color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.luana-lp .profile__name{
  font-family: var(--script); font-style: normal;
  font-size: 17px; color: var(--ink-muted);
  margin-bottom: 40px;
  letter-spacing: 0.22em;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.luana-lp .profile__story{
  display:flex; flex-direction: column; gap: 18px;
}
.luana-lp .profile__story p{
  font-size: 18px; line-height: 2.1;
  color: var(--ink-soft); letter-spacing: 0.04em;
}
.luana-lp .profile__story p strong{
  color: var(--ink); font-weight: 600;
}
.luana-lp .profile__highlight{
  margin-top: 36px;
  padding: 28px 32px;
  border-left: 1px solid var(--rose);
  background: rgba(255, 255, 255, 0.6);
}
.luana-lp .profile__highlight p{
  font-family: var(--mincho); font-size: 18.5px;
  color: var(--ink);
  line-height: 2; letter-spacing: 0.06em;
  font-weight: 500;
}

@media (max-width: 880px){
  .luana-lp .profile{ padding: 80px 22px; }
  .luana-lp .profile__inner{ grid-template-columns: 1fr; gap: 40px; }
  .luana-lp .profile__visual{ position: static; }
  .luana-lp .profile__photo-frame{
    box-shadow: 12px 12px 0 0 var(--rose);
  }
  .luana-lp .profile__highlight{ padding: 22px 24px; }
  .luana-lp .profile__highlight p{ font-size: 17.5px; }
  .luana-lp .profile__story p{ font-size: 17.5px; }
}

/* ============== ⑧ お客様の声 ============== */
.luana-lp .voices{
  padding: 160px 48px 200px;
  overflow:hidden;
  position:relative;
  background: var(--paper);
}
.luana-lp .voices::before{
  content: "Customer Voice";
  position: absolute;
  bottom: 0; right: 24px;
  font-family: "Bodoni Moda", var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(100px, 13.5vw, 210px);
  color: rgba(26, 26, 26, 0.07);
  line-height: 0.72;
  letter-spacing: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  max-width: none;
  white-space: nowrap;
}
.luana-lp .voices::after{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://cog-test.xyz/luana/wp-content/uploads/luana/voices/voices-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  opacity: 0.10;
  mix-blend-mode: normal;
  z-index: 1;
  pointer-events: none;
}
.luana-lp .voices__head{
  max-width: 1200px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}
.luana-lp .voices__head .section-title{ color: var(--ink); }

.luana-lp .voices__lines{
  max-width: 1100px;
  margin: 0 auto;
  columns: 3;
  column-gap: 30px;
  position: relative;
  z-index: 2;
}
.luana-lp .voice{
  display: block;
  position: relative;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 28px;
  background: #FFFFFF;
  padding: 14px 14px 32px;
  border-radius: 3px;
  box-shadow:
    0 14px 30px -10px rgba(63, 46, 69, 0.32),
    0 2px 6px rgba(63, 46, 69, 0.06);
}
.luana-lp .voice img{
  display: block;
  width: 100%;
  border: none;
  background: none;
  margin: 0;
  box-shadow: none;
}
.luana-lp .voice::before{
  content:"";
  position: absolute;
  top: -10px; left: 50%;
  width: 72px; height: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(248, 149, 173,0.5) 100%);
  border-left: 1px dashed rgba(255,255,255,0.55);
  border-right: 1px dashed rgba(255,255,255,0.55);
  z-index: 3;
  box-shadow: 0 2px 6px rgba(63, 46, 69, 0.18);
  transform: translateX(-50%) rotate(-2deg);
}

@media (max-width: 880px){
  .luana-lp .voices{ padding: 80px 22px 120px; }
  .luana-lp .voices__lines{ columns: 1; }
  .luana-lp .voice{
    transform: none !important;
    margin-top: 0 !important;
    margin-bottom: 22px;
  }
  .luana-lp .voices::before{
    font-size: 160px;
    bottom: 0; right: -28px;
    max-width: none;
    white-space: nowrap;
  }
  .luana-lp .voices::after{
    width: 100%;
    background-size: cover;
    background-position: center bottom;
    opacity: 0.10;
  }
}

/* ============== ⑩ アクセス・営業情報 ============== */
.luana-lp .access{
  padding: 160px 48px;
  background: var(--paper);
}
.luana-lp .access__inner{
  max-width: 720px; margin: 0 auto;
  display: block;
  text-align: center;
}
.luana-lp .access__info{ text-align: center; }
.luana-lp .access__info .section-label{
  margin-bottom: 24px;
  display: inline-flex;
  justify-content: center;
}
.luana-lp .access__info h2{ margin-bottom: 48px; }
.luana-lp .access__detail{
  max-width: 560px;
  margin: 0 auto;
  display:flex; flex-direction:column;
}
.luana-lp .access__row{
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.luana-lp .access__row:first-child{ border-top: 1px solid var(--line); }
.luana-lp .access__row .label{
  font-family: var(--sans-jp); font-style: normal;
  font-size: 17px; color: var(--ink);
  letter-spacing: 0.12em;
  text-transform: none;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.3;
}
.luana-lp .access__row .label-en{
  font-family: var(--script); font-style: normal;
  font-size: 13px; color: var(--ink-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}
.luana-lp .access__row .val{
  font-family: var(--sans-jp); font-size: 18px;
  color: var(--ink); letter-spacing: 0.06em;
  line-height: 1.7; font-weight: 500;
}
.luana-lp .access__row .val .station{
  display:inline-block;
  background: var(--blush-100); color: var(--ink);
  padding: 3px 12px;
  font-family: var(--sans-jp); font-size: 15px;
  margin-left: 8px; letter-spacing: 0.05em;
}

.luana-lp .access__map{
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(253, 239, 243,0.4), rgba(248, 149, 173,0.2)),
    var(--blush-50);
  border: 1px solid var(--line);
  position: relative;
  overflow:hidden;
}
.luana-lp .access__map::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(var(--blush-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--blush-200) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}
.luana-lp .access__map-pin{
  position:absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--rose);
  border-radius:50%;
  box-shadow: 0 0 0 6px rgba(248, 149, 173, 0.3),
              0 0 0 18px rgba(248, 149, 173, 0.15);
}
.luana-lp .access__map-label{
  position:absolute;
  top: calc(50% - 36px); left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans-jp); font-size: 12px;
  color: var(--ink); background: var(--paper);
  padding: 6px 14px;
  letter-spacing: 0.1em; white-space: nowrap;
  border: 1px solid var(--rose);
}

@media (max-width: 880px){
  .luana-lp .access{ padding: 80px 22px; }
  .luana-lp .access__row{ grid-template-columns: 100px 1fr; gap: 16px; padding: 18px 0; }
  .luana-lp .access__row .val{ font-size: 17.5px; }
  .luana-lp .access__row .label{ font-size: 16px; }
  .luana-lp .access__row .label-en{ font-size: 12px; }
}

/* Voice background final override */
.luana-lp .voices::before{
  content: "Customer Voice" !important;
  bottom: 0 !important;
  max-width: none !important;
  white-space: nowrap !important;
}
@media (max-width: 880px){
  .luana-lp .voices::before{
    content: "Voice" !important;
    font-size: 160px !important;
    bottom: 0 !important;
    right: -28px !important;
    max-width: none !important;
    white-space: nowrap !important;
  }
}

/* CTA overlap final override */
.luana-lp .cta::after{
  z-index: 1 !important;
}
.luana-lp .cta__inner{
  z-index: 2 !important;
}
.luana-lp .cta__btn{
  position: relative !important;
  z-index: 3 !important;
}

/* SP final override: WP側の古い余白指定に負けないよう最後に固定 */
@media (max-width: 880px){
  .luana-lp .worries .worries__head h2::before,
  .luana-lp .worries .worries__head h2::after{
    content: none !important;
    display: none !important;
  }
  .luana-lp .worries .worries__head h2 .worries__h-l2::before,
  .luana-lp .worries .worries__head h2 .worries__h-l2::after{
    content: "" !important;
    display: block !important;
  }
  .luana-lp .worries .worries__list > .worries__connector{
    align-self: stretch !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: none !important;
    margin: 24px 0 0 !important;
    padding: 24px 0 8px !important;
    text-align: center !important;
  }
  .luana-lp .pricing .price-card{
    padding-top: 72px !important;
  }
  .luana-lp .pricing .price-card__tag{
    top: 0 !important;
    right: 10px !important;
    min-width: 88px !important;
    padding: 10px 10px 20px !important;
    font-size: 14px !important;
    letter-spacing: 0.22em !important;
    text-align: center !important;
  }
  .luana-lp .pricing .price-card:not(.price-card--feature) .price-table{
    table-layout: fixed !important;
  }
  .luana-lp .pricing .price-card:not(.price-card--feature) .price-table td:first-child{
    width: 45% !important;
    white-space: normal !important;
    font-size: 17px !important;
    letter-spacing: 0.04em !important;
    line-height: 1.7 !important;
  }
  .luana-lp .pricing .price-card:not(.price-card--feature) .price-table td:last-child{
    width: 55% !important;
  }
  .luana-lp .pricing .price-table__inquiry{
    display: inline-block !important;
    line-height: 1.7 !important;
    text-align: right !important;
    white-space: nowrap !important;
  }
  .luana-lp .flow{
    padding: 80px 22px 92px !important;
  }
  .luana-lp .flow__head{
    margin-bottom: 42px !important;
  }
  .luana-lp .flow__steps{
    grid-template-columns: 1fr !important;
    gap: 60px !important;
  }
  .luana-lp .step__visual{
    width: 124px !important;
    margin: 0 auto 4px !important;
  }
  .luana-lp .step__num{
    margin-top: 23px !important;
  }
  .luana-lp .step__title{
    line-height: 1.45 !important;
    margin-bottom: 4px !important;
  }
  .luana-lp .step__sub{
    margin-bottom: 14px !important;
  }
  .luana-lp .step__body{
    line-height: 1.85 !important;
  }
}
