/* =========================================
   ITADORI SAUNA LP — lp.css
   NOT A HOTEL inspired design
   ========================================= */

/* ===== デザイントークン ===== */
:root {
    --black:    #0f0f0f;
    --off-white:#f5f3ef;
    --white:    #ffffff;
    --mid:      #444444;
    --gray:     #888888;
    --line:     #e0ddd8;
    --gold:     #c8973a;
    --gold-dim: rgba(200,151,58,0.15);
}

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

body.lp-page {
    margin: 0;
    padding: 0;
    font-family: "source-han-sans-japanese", "Noto Sans JP", "Hiragino Sans", sans-serif;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== 共通ラベル ===== */
.lp-section-label {
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gray);
    margin: 0 0 20px;
    display: block;
}

/* ===== セクションタイトル ===== */
.lp-section-title {
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 64px;
    letter-spacing: -0.02em;
}

/* ===== 予約ボタン（共通） ===== */
.lp-btn--reserve {
    display: inline-block;
    background: #f97316;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.45);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    white-space: nowrap;
}

.lp-btn--reserve:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(249, 115, 22, 0.55);
}

.lp-btn--reserve-large {
    padding: 20px 56px;
    font-size: 1rem;
}

/* ===== その他ボタン（旧来） ===== */
.lp-btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
    text-align: center;
    border-radius: 0;
}

.lp-btn:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.lp-btn--secondary {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

/* ===== LP ヘッダー ===== */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lp-header__logo img {
    height: 50px;
    width: auto;
}

.lp-header__cta {
    background: #f97316;
    color: var(--white);
    padding: 9px 22px;
    border: none;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: opacity 0.2s, transform 0.2s;
}

.lp-header__cta:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ===== Hero ===== */
.lp-hero {
    position: relative;
    height: 100svh;
    overflow: hidden;
}

.lp-hero__video-wrap {
    position: absolute;
    inset: 0;
}

.lp-hero__thumbnail,
.lp-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease;
}

.lp-hero__thumbnail {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.lp-hero__video { z-index: 0; }

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 60px 48px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.lp-hero__location {
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin: 0 0 20px;
    animation: lpFadeUp 1s ease 0.5s both;
}

.lp-hero__title {
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
    margin: 0 0 24px;
    animation: lpFadeUp 1s ease 0.9s both;
}

.lp-hero__desc {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.08em;
    margin: 0 0 40px;
    line-height: 1.8;
    animation: lpFadeUp 1s ease 1.3s both;
}

.lp-hero .lp-btn--primary {
    animation: lpFadeUp 1s ease 1.7s both;
    background: transparent;
    border-color: rgba(255,255,255,0.7);
    color: var(--white);
    font-size: 0.7rem;
}

.lp-hero__scroll {
    position: absolute;
    bottom: 32px;
    right: 48px;
    z-index: 2;
    animation: lpFadeUp 1s ease 2.2s both;
}

.lp-hero__scroll-line {
    display: block;
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.5);
    animation: scrollBounce 1.8s ease-in-out 3s infinite;
}

@keyframes lpFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50%       { transform: translateY(12px); opacity: 0.15; }
}

/* ===== 共感フックセクション ===== */
.lp-hook {
    background: var(--black);
    color: var(--white);
    padding: 120px 48px;
}

.lp-hook__inner {
    max-width: 760px;
    margin: 0 auto;
}

.lp-hook .lp-section-label { color: #777; }

.lp-hook__title {
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 64px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.lp-hook__list {
    list-style: none;
    padding: 0;
    margin: 0 0 80px;
}

.lp-hook__list li {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.6;
    color: #dedede;
    padding: 22px 0;
    border-bottom: 1px solid #1e1e1e;
    position: relative;
    padding-left: 28px;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.lp-hook__list li:first-child { border-top: 1px solid #1e1e1e; }

.lp-hook__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #666;
    font-size: 0.8rem;
}

.lp-hook__reframe {
    border-top: 1px solid #1e1e1e;
    padding-top: 48px;
}

.lp-hook__reframe p {
    margin: 0 0 12px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.85;
    color: #aaa;
    letter-spacing: 0.03em;
}

.lp-hook__reframe strong {
    color: var(--white);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    letter-spacing: -0.01em;
    display: block;
    margin-top: 8px;
}

.lp-hook__cta,
.lp-objection__cta,
.lp-reviews__cta {
    margin-top: 56px;
    text-align: center;
}

/* ===== 90% フォトブロック ===== */
.lp-photo-wrap {
    padding: 0 5%;
}

.lp-photo-wrap--dark { background: var(--black); padding-top: 0; padding-bottom: 60px; }
.lp-photo-wrap--light { background: var(--off-white); padding-top: 0; padding-bottom: 60px; }

.lp-photo-block {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 7;
}

.lp-photo-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.lp-photo-block:hover img {
    transform: scale(1.02);
}

/* ===== 対比セクション ===== */
.lp-diff {
    position: relative;
    color: var(--white);
    padding: 120px 48px;
    text-align: left;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.lp-diff__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 0;
}

.lp-diff__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.lp-diff .lp-section-label { color: #777; }
.lp-diff .lp-section-title { color: var(--white); }

.lp-diff__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-diff__item {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
    gap: 16px;
    padding: 28px 0;
}

.lp-diff__normal {
    font-size: 0.82rem;
    color: #bebebe;
    line-height: 1.7;
    text-align: right;
    letter-spacing: 0.02em;
}

.lp-diff__arrow {
    color: var(--gold);
    font-size: 1rem;
    text-align: center;
    font-family: 'Renner*', 'renner*', sans-serif;
}

.lp-diff__itadori {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.7;
    text-align: left;
    letter-spacing: 0.02em;
}

/* ===== Objection潰しセクション ===== */
.lp-objection {
    background: var(--off-white);
    padding: 120px 48px;
}

.lp-objection__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.lp-objection .lp-section-title {
    color: var(--black);
}

.lp-obj-list {
    display: flex;
    flex-direction: column;
}

.lp-obj-item {
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
}

.lp-obj-item:first-child { border-top: 1px solid var(--line); }

.lp-obj__q {
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: #aaa;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.lp-obj__a {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--mid);
    margin: 0;
    letter-spacing: 0.02em;
}

/* ===== 体験セクション ===== */
.lp-experience {
    padding: 120px 0 0;
    background: var(--white);
}

.lp-experience__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: left;
}

.lp-exp-block {
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

.lp-exp-block--dark { background: var(--black); padding-left: 0; padding-right: 0; }
.lp-exp-block--light { background: var(--off-white); padding-left: 0; padding-right: 0; }

/* テキストエリア：中央寄せ・幅制限 */
.lp-exp-block__text {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 48px;
}

/* 画像ラップ：画面幅いっぱい */
.lp-exp-block__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.lp-exp-block__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 下からのグラデーションオーバーレイ */
.lp-exp-block__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.70) 0%,
        rgba(0,0,0,0.15) 50%,
        rgba(0,0,0,0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* num：左上に配置 */
.lp-exp-block__num {
    position: absolute;
    top: 24px;
    left: 28px;
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--white);
    text-transform: uppercase;
    z-index: 2;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* title：写真下部・左揃え・白文字 */
.lp-exp-block__title {
    position: absolute;
    bottom: 44px;
    left: 28px;
    right: 28px;
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    z-index: 2;
}

/* sub：title直下 */
.lp-exp-block__sub {
    position: absolute;
    bottom: 24px;
    left: 28px;
    right: 28px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
}

.lp-exp-block--dark .lp-exp-block__text { color: var(--white); }
.lp-exp-block--light .lp-exp-block__text { color: var(--black); }

.lp-exp-block__desc {
    font-size: 0.9rem;
    line-height: 2;
    opacity: 0.8;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ===== 中間CTA ===== */
.lp-mid-cta {
    background: var(--off-white);
    padding: 120px 48px;
    text-align: center;
}

.lp-mid-cta__inner {
    max-width: 760px;
    margin: 0 auto;
}

.lp-mid-cta__sub {
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gray);
    margin: 0 0 20px;
    display: block;
}

.lp-mid-cta__title {
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: clamp(1.6rem, 4.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin: 0 0 48px;
    letter-spacing: -0.02em;
}

.lp-mid-cta .lp-btn--primary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ===== プランセクション（NOT A HOTEL ラインナップ型） ===== */
.lp-plans {
    padding: 120px 0 120px 48px;
    background: var(--white);
    overflow: hidden;
}

.lp-plans__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-right: 48px;
    margin-bottom: 48px;
}

.lp-plans__head .lp-section-title {
    margin-bottom: 0;
}

.lp-plans__all-link {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.lp-plan-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-right: 48px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.lp-plan-scroll::-webkit-scrollbar { display: none; }
.lp-plan-scroll:active { cursor: grabbing; }

.lp-plan-card {
    flex-shrink: 0;
    width: 300px;
    scroll-snap-align: start;
    border-radius: 12px;
    border: 1px solid #e0ddd8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lp-plan-card__link {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
    text-decoration: none;
}

.lp-plan-card__img-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #eee;
    flex-shrink: 0;
}

.lp-plan-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.lp-plan-card__link:hover .lp-plan-card__img-wrap img {
    transform: scale(1.04);
}

/* 上部グラデーション（タイトル文字の可読性確保） */
.lp-plan-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0) 60%
    );
    pointer-events: none;
    z-index: 1;
}

/* タイトル：写真上部・中央揃え・白文字 */
.lp-plan-card__name {
    position: absolute;
    top: 20px;
    left: 12px;
    right: 12px;
    text-align: center;
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--white);
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
    margin: 0;
    z-index: 2;
}

/* タグ：写真下部・白背景ボックス・黒文字 */
.lp-plan-card__tag {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 5px 14px;
    white-space: nowrap;
    z-index: 2;
}

.lp-plan-card__body {
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    background: var(--white);
}

.lp-plan-card__desc {
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--gray);
    margin: 0 0 12px;
    letter-spacing: 0.02em;
}

.lp-plan-card__note {
    display: block;
    font-size: 0.68rem;
    color: var(--gold);
    margin-top: 4px;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.lp-plan-card__cta {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-transform: uppercase;
}

/* ===== レビュー ===== */
.lp-reviews {
    padding: 120px 48px;
    background: var(--black);
    color: var(--white);
}

.lp-reviews__inner {
    max-width: 1040px;
    margin: 0 auto;
    text-align: left;
}

.lp-reviews .lp-section-label { color: #777; }
.lp-reviews .lp-section-title { color: var(--white); }

.lp-review-summary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #444;
    padding: 18px 32px;
    margin-bottom: 56px;
}

.lp-review-summary__score {
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
}

.lp-review-summary__stars {
    display: block;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
}

.lp-review-summary__label {
    display: block;
    font-size: 0.65rem;
    color: #888;
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.lp-review-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #1a1a1a;
}

.lp-review-card {
    background: var(--black);
    padding: 32px;
}

.lp-review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.lp-review-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #3a3a3a;
    color: #ccc;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #333;
}

.lp-review-card__meta { flex: 1; }

.lp-review-card__name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    letter-spacing: 0.05em;
}

.lp-review-card__stars {
    color: var(--gold);
    font-size: 0.65rem;
    flex-shrink: 0;
    letter-spacing: 2px;
}

.lp-review-card__text {
    font-size: 0.82rem;
    line-height: 1.9;
    color: #aaa;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ===== Q&A ===== */
.lp-faq {
    padding: 120px 48px;
    background: var(--white);
}

.lp-faq__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.lp-faq__list {
    display: flex;
    flex-direction: column;
}

.lp-faq__item {
    border-bottom: 1px solid var(--line);
}

.lp-faq__item:first-child { border-top: 1px solid var(--line); }

.lp-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    gap: 16px;
    letter-spacing: 0.03em;
    line-height: 1.6;
}

.lp-faq__q::-webkit-details-marker { display: none; }

.lp-faq__q::after {
    content: '+';
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--black);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.lp-faq__item[open] .lp-faq__q::after {
    transform: rotate(45deg);
}

.lp-faq__a {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--gray);
    padding: 0 0 24px;
    margin: 0;
    letter-spacing: 0.02em;
}

.lp-faq__a a {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== アクセス ===== */
.lp-access {
    padding: 120px 48px;
    background: var(--off-white);
    text-align: left;
}

.lp-access__inner {
    max-width: 760px;
    margin: 0 auto;
}

.lp-access__address {
    font-size: 0.82rem;
    color: var(--gray);
    margin: -44px 0 32px;
    letter-spacing: 0.05em;
}

.lp-access__map {
    overflow: hidden;
}

/* ===== 最終CTA ===== */
.lp-final-cta {
    background: var(--black);
    color: var(--white);
    padding: 160px 48px;
    text-align: center;
}

.lp-final-cta__inner {
    max-width: 760px;
    margin: 0 auto;
}

.lp-final-cta__sub {
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #bbbbbb;
    margin: 0 0 24px;
    display: block;
}

.lp-final-cta__title {
    font-family: 'Renner*', 'renner*', sans-serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0 0 56px;
    letter-spacing: -0.03em;
}

.lp-final-cta__tel {
    margin-top: 28px;
    font-size: 0.72rem;
    color: #888;
    letter-spacing: 0.08em;
}

.lp-final-cta__tel a {
    color: #aaa;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== フッター ===== */
.lp-footer {
    background: #080808;
    color: #444;
    text-align: left;
    padding: 32px 48px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    line-height: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-footer a { color: #777; transition: color 0.2s; }
.lp-footer a:hover { color: var(--white); }
.lp-footer__copy { margin: 0; color: #444; }

/* =========================================
   レスポンシブ（〜768px）
   ========================================= */
@media screen and (max-width: 768px) {

    /* ヘッダー */
    .lp-header { padding: 8px 20px; }

    /* Hero */
    .lp-hero__overlay {
        padding: 40px 24px;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .lp-hero__scroll { right: 24px; }

    /* セクション余白 */
    .lp-hook,
    .lp-diff,
    .lp-objection,
    .lp-mid-cta,
    .lp-plans,
    .lp-reviews,
    .lp-faq,
    .lp-access,
    .lp-final-cta {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .lp-experience { padding: 80px 0 0; }

    /* タイトル・見出しのフォントサイズ（不自然な改行を防止） */
    .lp-section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .lp-hook__title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .lp-hero__title {
        font-size: 1.55rem;
    }

    .lp-hero__desc {
        font-size: 0.85rem;
    }

    .lp-mid-cta__title {
        font-size: 1.4rem;
    }

    .lp-final-cta__title {
        font-size: 1.55rem;
    }

    .lp-obj__q {
        font-size: 1rem;
    }

    /* 体験ブロック：縦積み */
    .lp-exp-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .lp-exp-block__img-wrap { aspect-ratio: 4 / 3; }
    .lp-exp-block__text { padding: 32px 24px; }

    .lp-exp-block__num { top: 18px; left: 20px; }
    .lp-exp-block__title {
        bottom: 36px;
        left: 20px;
        right: 20px;
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .lp-exp-block__sub { bottom: 18px; left: 20px; right: 20px; }

    /* プラン：モバイル横スクロール調整 */
    .lp-plans {
        padding: 80px 0 80px 24px;
    }

    .lp-plans__head {
        padding-right: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .lp-plan-scroll {
        padding-right: 24px;
        gap: 14px;
    }

    .lp-plan-card {
        width: 72vw;
        min-width: 72vw;
    }

    /* レビュー：横スクロール */
    .lp-reviews {
        padding-left: 0;
        padding-right: 0;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .lp-reviews__inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .lp-review-summary { margin-bottom: 32px; }

    .lp-review-cards {
        grid-template-columns: 1fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 0 24px 16px;
        background: transparent;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0 0 0 0;
    }

    .lp-review-cards::-webkit-scrollbar { display: none; }

    .lp-review-card {
        width: 76vw;
        min-width: 76vw;
        max-width: 76vw;
        box-sizing: border-box;
        scroll-snap-align: start;
        flex-shrink: 0;
        border: 1px solid #444;
    }

    /* 90% フォトブロック */
    .lp-photo-wrap { padding: 0 4%; }
    .lp-photo-wrap--dark { padding-bottom: 40px; }
    .lp-photo-wrap--light { padding-bottom: 40px; }
    .lp-photo-block { border-radius: 12px; aspect-ratio: 4 / 3; }

    /* 対比：背景固定解除（モバイル非対応） */
    .lp-diff { background-attachment: scroll; }

    /* 対比：グリッド調整 */
    .lp-diff__item {
        grid-template-columns: 1fr 32px 1fr;
        gap: 10px;
        padding: 20px 0;
    }

    /* Hook */
    .lp-hook__list li { padding: 18px 0 18px 24px; }

    /* 最終CTA */
    .lp-final-cta { padding-top: 100px; padding-bottom: 100px; }

    /* フッター */
    .lp-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 28px 24px;
    }
}
