@charset "UTF-8";

/* =========================================================
   Mens Esute Base — Product LP（KAISER WEB トーン準拠）
   ========================================================= */

:root {
    --lp-white: #ffffff;
    --lp-bg: #ffffff;
    --lp-gray: #f6f6f6;
    --lp-dark: #0c0c0c;
    --lp-text: #333333;
    --lp-text-muted: #666666;
    --lp-text-light: #cccccc;
    --lp-gold: #b59b6b;
    --lp-border: #e5e5e5;
    --lp-font-en: "Montserrat", sans-serif;
    --lp-font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    --lp-font-serif: "Playfair Display", serif;
    --lp-font-mincho: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
    --lp-accent: var(--lp-gold);
    --lp-accent-dark: #96784f;
    --lp-accent-soft: #f5f0e8;
    --lp-line: var(--lp-border);
    --lp-line-soft: #efefef;
    --lp-bg-soft: var(--lp-gray);
    --lp-bg-mint: var(--lp-gray);
    --lp-accent-pale: #faf8f5;
    --lp-heading: var(--lp-font-mincho);
    --lp-sans: var(--lp-font-ja);
    --lp-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    --lp-shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --lp-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --lp-radius: 2px;
    --lp-radius-lg: 2px;
    --lp-radius-xl: 2px;
    --lp-radius-pill: 2px;
    --lp-header-h: 68px;
    --lp-pc-ratio: 1920 / 1280;
    --lp-phone-ratio: 390 / 844;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--lp-header-h) + 20px);
}

body.lp-body {
    margin: 0;
    font-family: var(--lp-font-ja);
    color: var(--lp-text);
    background: var(--lp-bg);
    line-height: 1.9;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
}

.lp-container {
    width: min(1140px, calc(100% - 40px));
    margin-inline: auto;
}

.lp-container--wide {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

/* ----- Header ----- */
.lp-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--lp-header-h);
    display: flex;
    align-items: center;
    background: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.lp-header.is-scrolled {
    background: var(--lp-dark);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-brand {
    flex-shrink: 0;
    min-width: 0;
}

.lp-brand__logo {
    display: inline-block;
    font-family: var(--lp-font-en);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    white-space: nowrap;
    line-height: 1.2;
}

.lp-brand__logo span { color: var(--lp-gold); margin-left: 4px; }

.lp-header__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
    flex-shrink: 0;
}

.lp-header__tel {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--lp-font-en);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #fff;
    white-space: nowrap;
}

.lp-header__tel i { font-size: 0.95rem; color: var(--lp-gold); }
.lp-header__tel:hover { color: var(--lp-gold); }

.lp-header__cta {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    font-family: var(--lp-font-ja);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #fff;
}

.lp-header__cta:hover {
    background: #fff;
    color: var(--lp-dark);
    border-color: #fff;
}

.lp-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.lp-mobile-nav {
    display: none;
    position: fixed;
    inset: var(--lp-header-h) 0 0;
    z-index: 999;
    background: var(--lp-dark);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-mobile-nav.is-open { display: flex; }

.lp-mobile-nav a {
    font-family: var(--lp-font-en);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ----- Buttons ----- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 14px 34px;
    border-radius: 2px;
    font-family: var(--lp-font-en);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.35s ease;
}

.lp-btn--primary {
    background: var(--lp-dark);
    border-color: var(--lp-dark);
    color: #fff;
}

.lp-btn--primary:hover {
    background: transparent;
    color: var(--lp-dark);
}

.lp-btn--ghost,
.lp-btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.lp-btn--ghost:hover,
.lp-btn--outline:hover {
    background: #fff;
    color: var(--lp-dark);
    border-color: #fff;
}

.lp-section .lp-btn--ghost,
.lp-section .lp-btn--outline {
    border-color: var(--lp-dark);
    color: var(--lp-dark);
}

.lp-section .lp-btn--ghost:hover,
.lp-section .lp-btn--outline:hover {
    background: var(--lp-dark);
    color: #fff;
}

/* ----- Hero ----- */
.lp-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0.55) 42%, rgba(8, 8, 8, 0.25) 100%),
        url("../../images/common/lp-top.png") center / cover no-repeat;
    transform: scale(1.03);
}

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.35;
}

.lp-hero__inner {
    position: relative;
    z-index: 2;
    padding: calc(var(--lp-header-h) + 48px) 0 80px;
}

.lp-hero__copy { max-width: 760px; }

.lp-hero__eyebrow {
    font-family: var(--lp-font-en);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--lp-gold);
    margin: 0 0 22px;
}

.lp-hero__title {
    font-family: var(--lp-font-mincho);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 0 28px;
}

.lp-hero__title span {
    display: block;
    font-size: clamp(1.8rem, 6vw, 3.4rem);
}

.lp-hero__lead {
    font-family: var(--lp-font-mincho);
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    font-weight: 500;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.7;
}

.lp-hero__desc {
    font-size: 0.95rem;
    color: var(--lp-text-light);
    max-width: 620px;
    margin: 0 0 34px;
    line-height: 2;
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

/* 暗いヒーロー上 — primary の hover は白背景＋黒文字（デフォルト hover は黒文字×透明で見えなくなる） */
.lp-hero__actions .lp-btn--primary:hover {
    background: #fff;
    color: var(--lp-dark);
    border-color: #fff;
}

.lp-hero__points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
}

.lp-hero__points li {
    font-family: var(--lp-font-en);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
}

.lp-hero__points li::before {
    content: "— ";
    color: var(--lp-gold);
}

.lp-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 2;
    font-family: var(--lp-font-en);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.7);
}

.lp-hero__scroll span { position: relative; }

.lp-hero__scroll span::after {
    content: "";
    display: block;
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.45);
    margin: 10px auto 0;
    animation: lpScrollLine 2s ease-in-out infinite;
}

@keyframes lpScrollLine {
    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; }
}

/* ----- Section ----- */
.lp-section {
    padding: 100px 0;
    background: var(--lp-white);
}

.lp-section--alt { background: var(--lp-gray); }
.lp-section--light { background: var(--lp-gray); }

.lp-section__head {
    text-align: left;
    margin-bottom: 56px;
    max-width: 880px;
}

.lp-section__head--left { text-align: left; }

.lp-section__eyebrow {
    display: block;
    font-family: var(--lp-font-en);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--lp-gold);
    margin-bottom: 14px;
}

.lp-section__title {
    font-family: var(--lp-font-mincho);
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin: 0 0 20px;
    color: var(--lp-dark);
}

.lp-section__lead {
    margin: 0;
    max-width: 40em;
    font-size: 1rem;
    color: var(--lp-text-muted);
    line-height: 2;
}

[data-lp-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-lp-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* ----- Demo ----- */
.lp-demo,
.lp-demo__stage,
.lp-device__screen {
    overflow-anchor: none;
}

.lp-demo__controls { margin-bottom: 1.75rem; }

.lp-demo__surface {
    display: inline-flex;
    margin-bottom: 1rem;
    border: 1px solid var(--lp-border);
    overflow: hidden;
    background: var(--lp-white);
}

.lp-surface-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.15rem;
    border: none;
    background: transparent;
    color: var(--lp-text-muted);
    font-family: var(--lp-font-en);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.lp-surface-btn + .lp-surface-btn { border-left: 1px solid var(--lp-border); }

.lp-surface-btn.is-active {
    background: var(--lp-dark);
    color: #fff;
}

.lp-demo__theme-head {
    margin: 0 0 0.85rem;
    font-family: var(--lp-font-en);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--lp-text-muted);
}

.lp-demo__theme-panels { margin-bottom: 0.5rem; }

.lp-demo__theme-panel {
    display: none;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.lp-demo__theme-panel.is-active { display: flex; }

.lp-theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--lp-border);
    background: var(--lp-white);
    color: var(--lp-text-muted);
    font-size: 0.72rem;
    cursor: pointer;
}

.lp-theme-btn.is-active,
.lp-theme-btn:hover {
    border-color: var(--lp-dark);
    color: var(--lp-dark);
    background: var(--lp-gray);
}

.lp-theme-btn__swatches { display: flex; gap: 3px; }

.lp-theme-btn__swatches span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.lp-theme-btn__name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-demo__stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: end;
}

.lp-device__shell {
    position: relative;
}

.lp-device__shell--pc {
    width: 100%;
}

.lp-device__shell--pc .lp-device__frame {
    overflow: hidden;
    border: 10px solid #1a1a1a;
    border-bottom-width: 12px;
    border-radius: 14px 14px 0 0;
    background: #0c0c0c;
    box-shadow:
        0 24px 48px rgba(12, 12, 12, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lp-device__chin {
    width: calc(100% - 24px);
    height: 12px;
    margin: 0 auto;
    background: linear-gradient(180deg, #222 0%, #1a1a1a 100%);
    border-radius: 0 0 4px 4px;
}

.lp-device__stand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2px;
}

.lp-device__stand-neck {
    display: block;
    width: 52px;
    height: 32px;
    background: linear-gradient(180deg, #3a3a3a 0%, #252525 100%);
    clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.lp-device__stand-base {
    display: block;
    width: 132px;
    height: 10px;
    margin-top: -1px;
    background: linear-gradient(180deg, #2e2e2e 0%, #1f1f1f 100%);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 16px rgba(12, 12, 12, 0.12);
}

.lp-device__shell--phone {
    padding: 12px 10px 14px;
    background: linear-gradient(160deg, #3d3d3d 0%, #151515 55%, #0a0a0a 100%);
    border-radius: 34px;
    box-shadow:
        0 24px 40px rgba(12, 12, 12, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

.lp-device__shell--phone .lp-device__frame {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 24px;
    background: #000;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lp-device__bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.9rem;
    background: linear-gradient(180deg, #ececec 0%, #e2e2e2 100%);
    border-bottom: 1px solid #d0d0d0;
}

.lp-device__dots { display: flex; gap: 6px; }

.lp-device__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-device__dots span:nth-child(1) { background: #ff5f57; }
.lp-device__dots span:nth-child(2) { background: #febc2e; }
.lp-device__dots span:nth-child(3) { background: #28c840; }

.lp-device__url {
    flex: 1;
    margin-left: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    font-size: 0.68rem;
    color: var(--lp-text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-device--pc .lp-device__screen { aspect-ratio: var(--lp-pc-ratio); }

.lp-device--phone .lp-device__screen {
    aspect-ratio: var(--lp-phone-ratio);
    width: 220px;
}

.lp-device__iframe-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.lp-device__screen {
    position: relative;
    background: #111;
    overflow: hidden;
}

.lp-device--pc .lp-device__iframe-wrap {
    inset: auto;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1280px;
    transform-origin: top left;
}

.lp-device--pc .lp-device__iframe {
    width: 1920px;
    height: 1280px;
    border: none;
}

.lp-device--phone .lp-device__iframe-wrap {
    width: 390px;
    height: 844px;
    transform-origin: top left;
    transform: scale(calc(220 / 390));
}

.lp-device--phone .lp-device__iframe {
    width: 390px;
    height: 844px;
    border: none;
}

.lp-device--phone .lp-device__bezel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    background: #000;
    border-radius: 999px;
    z-index: 2;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.lp-device__home-bar {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 96px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    z-index: 2;
    pointer-events: none;
}

.lp-device__label {
    margin-top: 0.85rem;
    font-family: var(--lp-font-en);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lp-text-muted);
    text-align: center;
}

.lp-demo__loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-gray);
    color: var(--lp-text-muted);
    font-size: 0.78rem;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.lp-demo__loading.is-hidden { opacity: 0; pointer-events: none; }

/* ----- Feature row ----- */
.lp-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 0;
    border: 1px solid var(--lp-border);
    background: var(--lp-white);
}

.lp-feature-row + .lp-feature-row { margin-top: -1px; }

/* ----- Full-bleed feature rows ----- */
.lp-section--launch,
.lp-section--daily,
.lp-section--manage,
.lp-section--stats,
.lp-section--reservation {
    padding-bottom: 0;
}

.lp-section--launch .lp-container--wide,
.lp-section--daily .lp-container--wide,
.lp-section--manage .lp-container--wide,
.lp-section--stats .lp-container--wide,
.lp-section--reservation .lp-container--wide {
    margin-bottom: 48px;
}

.lp-fullbleed-rows {
    width: 100%;
}

.lp-fullbleed-rows .lp-feature-row--full {
    grid-template-columns: minmax(300px, 1fr) minmax(360px, 1.15fr);
    border-left: none;
    border-right: none;
}

.lp-fullbleed-rows .lp-feature-row--full .lp-feature-row__text {
    padding: clamp(48px, 5vw, 88px) clamp(32px, 5vw, 64px);
}

.lp-fullbleed-rows .lp-feature-row--full:not(.lp-feature-row--reverse) .lp-feature-row__text {
    padding-left: clamp(32px, 6vw, 80px);
}

.lp-fullbleed-rows .lp-feature-row--full.lp-feature-row--reverse .lp-feature-row__text {
    padding-right: clamp(32px, 6vw, 80px);
}

.lp-fullbleed-rows .lp-feature-row__text-inner {
    max-width: 560px;
}

.lp-fullbleed-rows .lp-feature-row--full.lp-feature-row--reverse .lp-feature-row__text-inner {
    margin-left: auto;
}

.lp-fullbleed-rows .lp-feature-row--full .lp-feature-row__title {
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

.lp-fullbleed-rows .lp-feature-row--full .lp-feature-row__visual {
    padding: 0;
    min-height: clamp(360px, 52vh, 640px);
    background: var(--lp-gray);
}

.lp-fullbleed-rows .lp-feature-visual {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(360px, 52vh, 640px);
    object-fit: cover;
    object-position: top center;
}

.lp-option-badge {
    display: inline-block;
    margin-left: 0.35em;
    padding: 0.15em 0.55em;
    font-family: var(--lp-font-ja);
    font-size: 0.45em;
    font-weight: 700;
    letter-spacing: 0.06em;
    vertical-align: middle;
    color: var(--lp-gold);
    border: 1px solid rgba(181, 155, 107, 0.45);
    background: var(--lp-accent-pale);
}

.lp-feature-row__note {
    margin: 1rem 0 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--lp-gold);
}

.lp-feature-row__text {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-feature-row--reverse .lp-feature-row__text {
    order: 2;
    background: var(--lp-dark);
    color: var(--lp-text-light);
}

.lp-feature-row--reverse .lp-feature-row__title,
.lp-feature-row--reverse .lp-feature-row__label { color: #fff; }

.lp-feature-row--reverse .lp-feature-row__desc,
.lp-feature-row--reverse .lp-checklist li { color: var(--lp-text-light); }

.lp-feature-row--reverse .lp-feature-row__visual { order: 1; }

.lp-feature-row__visual {
    padding: 32px;
    background: var(--lp-gray);
    display: flex;
    align-items: center;
}

.lp-feature-row__visual .lp-shot { margin: 0; width: 100%; }

.lp-feature-row__label {
    display: block;
    font-family: var(--lp-font-en);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--lp-gold);
    margin-bottom: 12px;
}

.lp-feature-row__title {
    font-family: var(--lp-font-mincho);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.65;
    margin: 0 0 16px;
    color: var(--lp-dark);
}

.lp-feature-row__desc {
    margin: 0 0 16px;
    font-size: 0.95rem;
    color: var(--lp-text-muted);
    line-height: 2;
}

.lp-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-checklist li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    color: var(--lp-text-muted);
    line-height: 1.8;
}

.lp-checklist li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--lp-gold);
}

/* ----- Grid cards ----- */
.lp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--lp-border);
    border: 1px solid var(--lp-border);
}

.lp-grid-card {
    padding: 32px 28px;
    background: var(--lp-white);
    transition: background 0.3s ease;
}

.lp-grid-card--visual {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.lp-grid-card__visual {
    overflow: hidden;
    background: var(--lp-gray);
    border-bottom: 1px solid var(--lp-border);
    aspect-ratio: 480 / 280;
}

.lp-grid-card__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.lp-grid-card--visual .lp-grid-card__body {
    flex: 1;
    padding: 1.25rem 1.35rem 1.5rem;
}

.lp-grid-card:hover { background: var(--lp-gray); }

.lp-grid-card__icon {
    width: auto;
    height: auto;
    display: block;
    border: none;
    background: none;
    color: var(--lp-gold);
    font-size: 1.25rem;
    margin-bottom: 14px;
    border-radius: 0;
}

.lp-grid-card h3 {
    font-family: var(--lp-font-mincho);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--lp-dark);
}

.lp-grid-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--lp-text-muted);
    line-height: 1.85;
}

/* ----- Screen placeholder ----- */
.lp-shot { position: relative; margin: 0; }

.lp-shot__glow { display: none; }

.lp-shot__frame {
    overflow: hidden;
    border: 1px solid var(--lp-border);
    box-shadow: none;
    background: var(--lp-white);
}

.lp-shot__img {
    display: block;
    width: 100%;
    height: auto;
}

.lp-shot__caption {
    margin-top: 12px;
    padding-left: 2px;
}

.lp-shot__caption-title {
    font-family: var(--lp-font-mincho);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lp-dark);
}

.lp-shot__caption-desc {
    font-size: 0.82rem;
    color: var(--lp-text-muted);
}

/* ----- Tabs ----- */
.lp-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--lp-border);
}

.lp-tab {
    padding: 0.75rem 1.25rem;
    border: none;
    background: none;
    color: var(--lp-text-muted);
    font-family: var(--lp-font-en);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.lp-tab.is-active,
.lp-tab:hover {
    color: var(--lp-dark);
    border-bottom-color: var(--lp-gold);
    background: transparent;
}

.lp-tab-panel { display: none; padding-top: 2rem; }
.lp-tab-panel.is-active { display: block; }

/* ----- Compare ----- */
.lp-compare-wrap {
    overflow-x: auto;
    border: 1px solid var(--lp-border);
    background: var(--lp-white);
}

.lp-compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.lp-compare th,
.lp-compare td {
    padding: 1rem 1.15rem;
    text-align: left;
    border-bottom: 1px solid var(--lp-border);
    font-size: 0.88rem;
}

.lp-compare thead th {
    background: var(--lp-dark);
    color: #fff;
    font-family: var(--lp-font-en);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.lp-compare thead th.is-highlight {
    background: var(--lp-gold);
    color: var(--lp-dark);
    font-weight: 700;
    letter-spacing: 0.12em;
    border-left: 2px solid var(--lp-gold);
    border-right: 2px solid var(--lp-gold);
}

.lp-compare td:first-child { color: var(--lp-text-muted); width: 36%; }

.lp-compare td.is-highlight,
.lp-compare tbody th.is-highlight {
    background: #fbf8f3;
    font-weight: 600;
    border-left: 2px solid rgba(181, 155, 107, 0.45);
    border-right: 2px solid rgba(181, 155, 107, 0.45);
}

.lp-compare tbody tr:last-child td.is-highlight {
    border-bottom: 2px solid rgba(181, 155, 107, 0.45);
}

.lp-compare .is-yes { color: var(--lp-dark); }
.lp-compare .is-no { color: #aaa; }

.lp-compare__opt {
    display: inline-block;
    margin-left: 0.45rem;
    padding: 0.12rem 0.45rem;
    font-family: var(--lp-font-en);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--lp-dark);
    background: rgba(181, 155, 107, 0.22);
    vertical-align: middle;
}

/* ----- Flow ----- */
.lp-flow-fork {
    margin-bottom: 1px;
}

.lp-flow-fork__label {
    margin: 0 0 12px;
    font-family: var(--lp-font-en);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--lp-gold);
}

.lp-flow-fork__entries {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--lp-border);
    border: 1px solid var(--lp-border);
}

.lp-flow-fork__merge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0.85rem 1rem;
    font-family: var(--lp-font-mincho);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--lp-dark);
    background: var(--lp-gray);
    border: 1px solid var(--lp-border);
    border-top: none;
}

.lp-flow-fork__merge .bi {
    font-size: 1.35rem;
    color: var(--lp-gold);
}

.lp-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--lp-border);
    border: 1px solid var(--lp-border);
    border-top: none;
}

.lp-flow__step {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--lp-white);
    text-align: center;
}

.lp-flow__visual {
    overflow: hidden;
    background: var(--lp-gray);
    border-bottom: 1px solid var(--lp-border);
    aspect-ratio: 560 / 320;
}

.lp-flow__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.lp-flow__body {
    flex: 1;
    padding: 1.15rem 1.25rem 1.5rem;
}

.lp-flow__step-label {
    margin: 0 0 8px;
    font-family: var(--lp-font-en);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--lp-gold);
}

.lp-flow__step--entry .lp-flow__body {
    padding-top: 1rem;
}

.lp-flow__step h3 {
    font-family: var(--lp-font-mincho);
    font-size: 0.92rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--lp-dark);
}

.lp-flow__step p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--lp-text-muted);
    line-height: 1.85;
}

.lp-flow__step p strong {
    color: var(--lp-dark);
    font-weight: 600;
}

/* ----- CTA ----- */
.lp-cta {
    padding: 100px 0;
    background: var(--lp-dark);
    color: #fff;
}

.lp-cta .lp-section__eyebrow { color: var(--lp-gold); }

.lp-cta__title {
    font-family: var(--lp-font-mincho);
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
}

.lp-cta__lead {
    margin: 0 0 28px;
    max-width: 34em;
    font-size: 0.95rem;
    color: var(--lp-text-light);
    line-height: 2;
}

.lp-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.lp-cta .lp-btn--primary {
    background: #fff;
    color: var(--lp-dark);
    border-color: #fff;
}

.lp-cta .lp-btn--primary:hover {
    background: transparent;
    color: #fff;
}

.lp-cta .lp-btn--ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.lp-cta .lp-btn--ghost:hover {
    background: #fff;
    color: var(--lp-dark);
    border-color: #fff;
}

/* ----- Footer (KAISER WEB トーン) ----- */
.lp-footer {
    padding: 70px 0 28px;
    background: var(--lp-dark);
    border-top: 4px solid var(--lp-gold);
    color: #fff;
}

.lp-footer__top {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(0, 1.4fr);
    gap: 2.5rem 3rem;
    align-items: start;
}

.lp-footer__logo {
    display: inline-block;
    margin-bottom: 18px;
    font-family: var(--lp-font-en);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #fff;
    white-space: nowrap;
}

.lp-footer__logo span { color: var(--lp-gold); margin-left: 4px; }

.lp-footer__logo:hover { color: #fff; }

.lp-footer__company {
    margin: 0 0 10px;
    font-weight: 700;
    color: #fff;
}

.lp-footer__line {
    margin: 0 0 6px;
    font-size: 0.9rem;
    color: var(--lp-text-light);
    line-height: 1.85;
}

.lp-footer__line a {
    color: var(--lp-text-light);
}

.lp-footer__line a:hover { color: var(--lp-gold); }

.lp-footer__nav {
    margin: 0;
}

.lp-footer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
}

.lp-footer__nav a {
    font-family: var(--lp-font-en);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.75);
}

.lp-footer__nav a:hover { color: var(--lp-gold); }

.lp-footer__bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer__copy {
    margin: 0;
    font-family: var(--lp-font-en);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.lp-footer__copy a { color: rgba(255, 255, 255, 0.65); }

.lp-footer__copy a:hover { color: var(--lp-gold); }

/* ----- Pages tabs ----- */
.lp-pages-wrap {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    padding: 0;
}

.lp-tabs--pages {
    position: sticky;
    top: var(--lp-header-h);
    z-index: 40;
    display: flex;
    gap: 0;
    margin-bottom: 0;
    padding: 0;
    border-bottom: 1px solid var(--lp-border);
    background: var(--lp-white);
    box-shadow: 0 6px 16px rgba(12, 12, 12, 0.06);
}

.lp-tabs--pages .lp-tab {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.25rem;
    font-family: var(--lp-font-mincho);
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    border: none;
    border-bottom: 2px solid transparent;
    background: var(--lp-gray);
    color: var(--lp-text-muted);
    margin-bottom: -1px;
}

.lp-tabs--pages .lp-tab.is-active,
.lp-tabs--pages .lp-tab:hover {
    background: var(--lp-white);
    color: var(--lp-dark);
    border-bottom-color: var(--lp-gold);
}

.lp-tab-panel.lp-pages-panel { padding: 2rem; }

.lp-pages-panel__head {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lp-border);
}

.lp-pages-panel__head-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lp-border);
    color: var(--lp-gold);
    font-size: 1.25rem;
}

.lp-pages-panel__title {
    font-family: var(--lp-font-mincho);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--lp-dark);
}

.lp-pages-panel__lead {
    margin: 0 0 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--lp-gold);
}

.lp-pages-panel__intro {
    margin: 0;
    font-size: 0.92rem;
    color: var(--lp-text-muted);
    line-height: 1.95;
}

.lp-pages-subtabs {
    border: 1px solid var(--lp-border);
    background: var(--lp-white);
}

.lp-tabs--sub {
    padding: 0 1rem;
    background: var(--lp-gray);
}

.lp-tabs--sub .lp-tab {
    font-family: var(--lp-font-mincho);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.lp-pages-subtabs > .lp-tab-panel {
    padding: 0;
}

.lp-pages-subtabs .lp-feature-row {
    margin-bottom: 0;
    border: none;
}

.lp-checklist__demo {
    display: inline-block;
    margin-left: 0.35rem;
    font-family: var(--lp-font-en);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--lp-gold);
    text-decoration: none;
}

.lp-checklist__demo:hover { color: var(--lp-dark); }

.lp-checklist li strong {
    font-weight: 700;
    color: var(--lp-dark);
}

/* ----- About / SEO intro ----- */
.lp-section--about {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, var(--lp-accent-pale) 0%, var(--lp-gray) 48%, var(--lp-white) 100%);
}

.lp-about-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lp-about-deco__word {
    position: absolute;
    top: 52px;
    right: -0.08em;
    font-family: var(--lp-font-en);
    font-size: clamp(5rem, 16vw, 11rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(181, 155, 107, 0.14);
    opacity: 0.9;
    user-select: none;
}

.lp-about-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 40px 56px;
    align-items: end;
    margin-bottom: 56px;
}

.lp-about-head__main {
    max-width: 760px;
}

.lp-about-head__main .lp-section__lead strong {
    color: var(--lp-dark);
    font-weight: 700;
}

.lp-about-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1px;
    background: var(--lp-border);
    border: 1px solid var(--lp-border);
}

.lp-about-stats li {
    display: grid;
    gap: 2px;
    padding: 18px 20px;
    background: var(--lp-white);
}

.lp-about-stats__num {
    font-family: var(--lp-font-en);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--lp-gold);
}

.lp-about-stats__en {
    font-family: var(--lp-font-en);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lp-dark);
}

.lp-about-stats__ja {
    font-size: 0.78rem;
    color: var(--lp-text-muted);
}

.lp-about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.lp-about-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px 28px 28px;
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.lp-about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-gold), var(--lp-accent-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

.lp-about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
    border-color: rgba(181, 155, 107, 0.35);
}

.lp-about-card:hover::before { transform: scaleX(1); }

.lp-about-card--featured {
    background: var(--lp-dark);
    border-color: var(--lp-dark);
    color: #fff;
}

.lp-about-card--featured::before {
    background: linear-gradient(90deg, var(--lp-gold), #e8d5b5);
}

.lp-about-card--featured:hover {
    border-color: rgba(181, 155, 107, 0.5);
    box-shadow: 0 24px 48px rgba(12, 12, 12, 0.28);
}

.lp-about-card__no {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--lp-font-en);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(181, 155, 107, 0.12);
    pointer-events: none;
}

.lp-about-card--featured .lp-about-card__no {
    color: rgba(255, 255, 255, 0.06);
}

.lp-about-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border: 1px solid rgba(181, 155, 107, 0.35);
    color: var(--lp-gold);
    font-size: 1.35rem;
    background: var(--lp-accent-pale);
}

.lp-about-card--featured .lp-about-card__icon {
    background: rgba(181, 155, 107, 0.12);
    border-color: rgba(181, 155, 107, 0.45);
    color: var(--lp-gold);
}

.lp-about-card__en {
    display: block;
    margin-bottom: 8px;
    font-family: var(--lp-font-en);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lp-gold);
}

.lp-about-card h3 {
    margin: 0 0 14px;
    padding-right: 2.5rem;
    font-family: var(--lp-font-mincho);
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--lp-dark);
}

.lp-about-card--featured h3 { color: #fff; }

.lp-about-card p {
    margin: 0 0 22px;
    flex: 1;
    font-size: 0.92rem;
    line-height: 1.95;
    color: var(--lp-text-muted);
}

.lp-about-card--featured p { color: rgba(255, 255, 255, 0.72); }

.lp-about-card__tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.lp-about-card__tags li {
    padding: 0.28rem 0.65rem;
    font-family: var(--lp-font-en);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-gold);
    background: var(--lp-accent-pale);
    border: 1px solid rgba(181, 155, 107, 0.22);
}

.lp-about-card--featured .lp-about-card__tags li {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.lp-about-grid .lp-about-card[data-lp-reveal]:nth-child(2).is-visible { transition-delay: 0.12s; }
.lp-about-grid .lp-about-card[data-lp-reveal]:nth-child(3).is-visible { transition-delay: 0.24s; }

/* ----- Pricing ----- */
.lp-plan {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 1px;
    background: var(--lp-border);
    border: 1px solid var(--lp-border);
    margin-bottom: 2rem;
}

.lp-plan__main,
.lp-plan__monthly {
    background: var(--lp-white);
}

.lp-plan__main-head {
    padding: 2rem 2rem 1.5rem;
    background: var(--lp-dark);
    color: #fff;
}

.lp-plan__main-body {
    padding: 1.75rem 2rem 2rem;
}

.lp-plan__label {
    margin: 0 0 8px;
    font-family: var(--lp-font-en);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--lp-gold);
}

.lp-plan__main-head .lp-plan__label { color: rgba(181, 155, 107, 0.95); }

.lp-plan__name {
    margin: 0 0 16px;
    font-family: var(--lp-font-mincho);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.5;
}

.lp-plan__main-head .lp-plan__name { color: #fff; }

.lp-plan__price {
    margin: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
}

.lp-plan__price-num {
    font-family: var(--lp-font-en);
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

.lp-plan__main-head .lp-plan__price-num { color: #fff; }

.lp-plan__price-unit {
    font-size: 0.95rem;
    font-weight: 600;
}

.lp-plan__main-head .lp-plan__price-unit { color: var(--lp-text-light); }

.lp-plan__price-note {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: var(--lp-text-light);
}

.lp-plan__subheading {
    margin: 0 0 12px;
    font-family: var(--lp-font-mincho);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lp-dark);
}

.lp-plan__page-counts {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    border: 1px solid var(--lp-border);
}

.lp-plan__page-counts li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.lp-plan__page-counts li + li { border-top: 1px solid var(--lp-border); }

.lp-plan__page-count-label { color: var(--lp-text-muted); }

.lp-plan__page-count-num {
    font-family: var(--lp-font-en);
    font-weight: 700;
    color: var(--lp-dark);
}

.lp-plan__page-note {
    margin: 0 0 1.5rem;
    font-size: 0.82rem;
    color: var(--lp-text-muted);
}

.lp-plan__page-note a {
    color: var(--lp-gold);
    text-decoration: underline;
}

.lp-plan__includes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.lp-plan__includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--lp-text);
}

.lp-plan__includes .bi-check2 {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--lp-gold);
}

.lp-plan__addon-inline {
    margin: 1.25rem 0 0;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    background: var(--lp-gray);
    color: var(--lp-text-muted);
    line-height: 1.7;
}

.lp-plan__monthly {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
}

.lp-plan__price--monthly .lp-plan__price-num {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--lp-dark);
}

.lp-plan__includes--compact { margin-top: auto; }

.lp-plan__monthly-note {
    margin: 1rem 0 0;
    font-size: 0.82rem;
    color: var(--lp-text-muted);
    line-height: 1.85;
}

.lp-plan-options__title {
    margin: 0 0 1.25rem;
    font-family: var(--lp-font-mincho);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-dark);
}

.lp-plan-options__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--lp-border);
    border: 1px solid var(--lp-border);
}

.lp-plan-option {
    padding: 1.35rem 1.4rem;
    background: var(--lp-white);
}

.lp-plan-option h4 {
    margin: 0 0 8px;
    font-family: var(--lp-font-mincho);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--lp-dark);
}

.lp-plan-option__price {
    margin: 0 0 8px;
    font-family: var(--lp-font-en);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lp-gold);
}

.lp-plan-option__desc {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.85;
    color: var(--lp-text-muted);
}

/* ----- FAQ ----- */
.lp-faq {
    display: grid;
    gap: 40px;
    max-width: 52rem;
}

.lp-faq__group {
    display: grid;
    gap: 14px;
}

.lp-faq__category {
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--lp-border);
    font-family: var(--lp-font-mincho);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--lp-dark);
}

.lp-faq__list {
    display: grid;
    gap: 10px;
}

.lp-faq__item {
    border: 1px solid var(--lp-border);
    background: var(--lp-white);
}

.lp-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-family: var(--lp-font-mincho);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.65;
    color: var(--lp-dark);
    cursor: pointer;
    list-style: none;
}

.lp-faq__q::-webkit-details-marker { display: none; }

.lp-faq__q::after {
    content: "+";
    flex: 0 0 auto;
    font-family: var(--lp-font-en);
    font-size: 1.2rem;
    color: var(--lp-gold);
}

.lp-faq__item[open] .lp-faq__q::after { content: "−"; }

.lp-faq__a {
    padding: 0 20px 18px;
    border-top: 1px solid var(--lp-border);
}

.lp-faq__a p {
    margin: 16px 0 0;
    font-size: 0.92rem;
    line-height: 1.95;
    color: var(--lp-text-muted);
}

/* ----- Side menu (desktop) ----- */
body.lp-menu-open { overflow: hidden; }

.lp-side-menu-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1070;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 13px;
    border: none;
    border-radius: 12px 0 0 12px;
    background: linear-gradient(to bottom, #c4ab7a 0%, var(--lp-gold) 55%, var(--lp-accent-dark) 100%);
    color: #fff;
    box-shadow: -4px 0 18px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.lp-side-menu-btn:hover {
    padding-right: 19px;
    box-shadow: -7px 0 24px rgba(0, 0, 0, 0.3);
}

.lp-side-menu-btn__icon { font-size: 1.35rem; line-height: 1; }

.lp-side-menu-btn__text {
    writing-mode: vertical-rl;
    font-family: var(--lp-font-en);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
}

.lp-overlay-menu {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 28px 28px;
    background: rgba(6, 6, 6, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
}

.lp-overlay-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.lp-overlay-menu__close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-radius: 2px;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.lp-overlay-menu__close:hover {
    background: var(--lp-gold);
    border-color: var(--lp-gold);
    color: #fff;
}

.lp-overlay-menu__panel {
    width: min(920px, 100%);
    padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 48px);
    border: 1px solid rgba(181, 155, 107, 0.28);
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.98) 0%, rgba(12, 12, 12, 0.98) 100%);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.lp-overlay-menu.is-open .lp-overlay-menu__panel {
    transform: translateY(0);
    opacity: 1;
}

.lp-overlay-menu__head {
    margin-bottom: clamp(16px, 2.5vh, 28px);
    padding-bottom: clamp(12px, 2vh, 20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-overlay-menu__eyebrow {
    display: block;
    font-family: var(--lp-font-en);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    color: var(--lp-gold);
    margin-bottom: 8px;
}

.lp-overlay-menu__brand {
    margin: 0;
    font-family: var(--lp-font-en);
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #fff;
}

.lp-overlay-menu__brand span { color: var(--lp-gold); margin-left: 6px; }

.lp-overlay-menu__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px 12px;
}

.lp-overlay-menu__grid a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
    border-left: 2px solid transparent;
    color: #fff;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.lp-overlay-menu__grid a:hover {
    border-left-color: var(--lp-gold);
    background: rgba(181, 155, 107, 0.1);
    color: #fff;
}

.lp-overlay-menu__en {
    font-family: var(--lp-font-en);
    font-size: clamp(0.78rem, 1.4vw, 0.92rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.3;
}

.lp-overlay-menu__ja {
    font-size: clamp(0.62rem, 1.1vw, 0.72rem);
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    line-height: 1.4;
}

.lp-overlay-menu__grid a:hover .lp-overlay-menu__ja { color: rgba(181, 155, 107, 0.85); }

.lp-overlay-menu__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    margin-top: clamp(16px, 2.5vh, 28px);
    padding-top: clamp(12px, 2vh, 20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.lp-overlay-menu__tel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--lp-font-en);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #fff;
}

.lp-overlay-menu__tel i { color: var(--lp-gold); font-size: 0.9rem; }
.lp-overlay-menu__tel:hover { color: var(--lp-gold); }

.lp-overlay-menu__company { letter-spacing: 0.04em; }

.lp-overlay-menu__contact {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--lp-font-en);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--lp-gold);
}

.lp-overlay-menu__contact:hover { color: #fff; }

@media (max-height: 720px) {
    .lp-overlay-menu {
        align-items: flex-start;
        padding-top: 56px;
    }

    .lp-overlay-menu__panel {
        padding: 20px 24px;
    }

    .lp-overlay-menu__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px 8px;
    }

    .lp-overlay-menu__grid a {
        padding: 7px 10px;
    }
}

@media (max-width: 767.98px) {
    .lp-overlay-menu__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-overlay-menu__contact {
        margin-left: 0;
        width: 100%;
    }
}

/* ----- Responsive ----- */
@media (max-width: 991.98px) {
    .lp-feature-row,
    .lp-grid-3,
    .lp-flow,
    .lp-flow-fork__entries,
    .lp-demo__stage,
    .lp-about-grid,
    .lp-about-head,
    .lp-plan,
    .lp-plan-options__grid {
        grid-template-columns: 1fr;
    }

    .lp-fullbleed-rows .lp-feature-row--full .lp-feature-row__text,
    .lp-fullbleed-rows .lp-feature-row--full .lp-feature-row__visual {
        padding-left: 28px;
        padding-right: 28px;
    }

    .lp-fullbleed-rows .lp-feature-row--full .lp-feature-row__visual,
    .lp-fullbleed-rows .lp-feature-visual {
        min-height: auto;
    }

    .lp-fullbleed-rows .lp-feature-visual {
        min-height: 240px;
        object-fit: cover;
    }

    .lp-fullbleed-rows .lp-feature-row--full.lp-feature-row--reverse .lp-feature-row__text-inner {
        margin-left: 0;
    }

    .lp-about-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lp-about-deco__word {
        top: 24px;
        right: -0.04em;
        font-size: clamp(4rem, 22vw, 7rem);
    }

    .lp-feature-row--reverse .lp-feature-row__text,
    .lp-feature-row--reverse .lp-feature-row__visual { order: unset; }

    .lp-header__actions,
    .lp-side-menu-btn { display: none; }
    .lp-menu-toggle { display: block; }

    .lp-device--phone { justify-self: center; }

    .lp-feature-row__text,
    .lp-feature-row__visual { padding: 28px 24px; }

    .lp-footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
    .lp-container, .lp-container--wide {
        width: calc(100% - 28px);
    }

    .lp-section { padding: 72px 0; }
    .lp-hero__title span { font-size: clamp(1.8rem, 11vw, 2.8rem); }

    .lp-tab-panel.lp-pages-panel { padding: 1.25rem; }

    .lp-tabs--pages .lp-tab {
        flex: 1 1 100%;
        font-size: 0.82rem;
    }

    .lp-tabs--sub .lp-tab {
        flex: 1 1 auto;
        padding: 0.65rem 0.85rem;
        font-size: 0.78rem;
    }

    .lp-pages-panel__head {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .lp-about-stats {
        grid-template-columns: 1fr;
    }

    .lp-about-card {
        padding: 26px 22px 22px;
    }

    .lp-about-deco__word { opacity: 0.45; }

    .lp-device--phone .lp-device__screen { width: 180px; }
    .lp-device--phone .lp-device__iframe-wrap {
        transform: scale(calc(180 / 390));
    }

    .lp-device__shell--phone {
        padding: 10px 8px 12px;
        border-radius: 28px;
    }

    .lp-device__shell--phone .lp-device__frame {
        border-radius: 20px;
    }

    .lp-grid-3 { grid-template-columns: 1fr; }
}

/* ----- Subpage / Contact ----- */
.lp-subpage .lp-header {
    background: var(--lp-dark);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lp-subpage-main {
    padding-top: calc(var(--lp-header-h) + 48px);
    padding-bottom: 80px;
    min-height: 70vh;
}

.lp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 0.82rem;
    color: var(--lp-text-muted);
}

.lp-breadcrumb a:hover { color: var(--lp-gold); }

.lp-contact-page__head {
    max-width: 720px;
    margin-bottom: 36px;
}

.lp-contact-page__title {
    margin: 0 0 16px;
    font-family: var(--lp-heading);
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.04em;
}

.lp-contact-page__lead {
    margin: 0;
    color: var(--lp-text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
}

.lp-contact-alert {
    margin-bottom: 28px;
    padding: 18px 20px;
    border: 1px solid #f1caca;
    background: #fff5f5;
    color: #8a2e2e;
}

.lp-contact-alert__title {
    margin: 0 0 8px;
    font-weight: 700;
}

.lp-contact-alert ul {
    margin: 0;
    padding-left: 1.2rem;
}

.lp-contact-form {
    max-width: 820px;
    padding: clamp(24px, 4vw, 40px);
    background: #fff;
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-shadow-sm);
}

.lp-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
}

.lp-contact-form__field--full { grid-column: 1 / -1; }

.lp-contact-form__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.88rem;
    font-weight: 600;
}

.lp-contact-form__req {
    margin-left: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #b45309;
}

.lp-contact-form__control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: #fff;
    color: var(--lp-text);
    font: inherit;
    line-height: 1.6;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lp-contact-form__control:focus {
    outline: none;
    border-color: var(--lp-gold);
    box-shadow: 0 0 0 3px rgba(181, 155, 107, 0.18);
}

.lp-contact-form__control--textarea {
    min-height: 180px;
    resize: vertical;
}

.lp-contact-form__recaptcha { margin-top: 24px; }

.lp-contact-form__note {
    margin: 20px 0 0;
    font-size: 0.82rem;
    color: var(--lp-text-muted);
    line-height: 1.8;
}

.lp-contact-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* 白背景のお問い合わせページ — outline は暗色文字（ヒーロー用の白文字を上書き） */
.lp-contact-page .lp-btn--outline {
    border-color: var(--lp-dark);
    color: var(--lp-dark);
}

.lp-contact-page .lp-btn--outline:hover {
    background: var(--lp-dark);
    color: #fff;
    border-color: var(--lp-dark);
}

.lp-contact-complete {
    max-width: 640px;
    padding: clamp(28px, 5vw, 48px);
    background: #fff;
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-shadow-sm);
}

.lp-contact-complete__lead {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.9;
}

.lp-contact-complete__note {
    margin: 0 0 24px;
    font-size: 0.88rem;
    color: var(--lp-text-muted);
    line-height: 1.8;
}

@media (max-width: 767.98px) {
    .lp-contact-form__grid { grid-template-columns: 1fr; }
    .lp-contact-form__actions .lp-btn { width: 100%; justify-content: center; }
}
