/* =================================================================
   Fine Parking — Unified Design System (v8)
   配置先: 子テーマ/assets/css/style-fine-top.css
   ================================================================= */

/* -----------------------------------------
   1. FORCE FULL-WIDTH + SWELL Override
   ----------------------------------------- */
.fp-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: hidden;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;

    --c-navy: #0d1b2a;
    --c-navy-light: #1b2d44;
    --c-gold: #c9a96e;
    --c-gold-hover: #b08d55;
    --c-white: #ffffff;
    --c-bg: #f8f7f4;
    --c-text: #4a4f57;
    --c-border: rgba(0,0,0,0.06);
    --f-en: 'Cormorant Garamond', serif;
    --f-ja: 'Noto Sans JP', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* SWELL テーマ上書き（トップページ専用） */
body.page-template-page-fine-top #sidebar,
body.page-template-page-fine-top .l-sidebar,
body.page-template-page-fine-top .c-pageTitle,
body.page-template-page-fine-top .l-header__titleArea,
body.page-template-page-fine-top .p-breadcrumb,
body.page-template-page-fine-top .c-mvTitle,
body.page-fine-parking-top #sidebar,
body.page-fine-parking-top .l-sidebar,
body.page-fine-parking-top .c-pageTitle,
body.page-fine-parking-top .l-header__titleArea,
body.page-fine-parking-top .p-breadcrumb,
body.page-fine-parking-top .c-mvTitle {
    display: none !important;
}

body.page-template-page-fine-top .l-content,
body.page-template-page-fine-top .l-mainContent,
body.page-template-page-fine-top .l-mainContent__inner,
body.page-template-page-fine-top .l-content__inner,
body.page-template-page-fine-top .post_content,
body.page-template-page-fine-top .l-article,
body.page-template-page-fine-top .l-container,
body.page-fine-parking-top .l-content,
body.page-fine-parking-top .l-mainContent,
body.page-fine-parking-top .l-mainContent__inner,
body.page-fine-parking-top .l-content__inner,
body.page-fine-parking-top .post_content,
body.page-fine-parking-top .l-article,
body.page-fine-parking-top .l-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.fp-wrapper img { max-width: 100%; height: auto; vertical-align: bottom; }
.fp-wrapper a { text-decoration: none; color: inherit; transition: 0.3s; }
.fp-wrapper * { box-sizing: border-box; }

html { scroll-behavior: smooth; }
.pc-only { display: none; }
@media (min-width: 769px) { .pc-only { display: inline; } }


/* -----------------------------------------
   2. OPENING
   ----------------------------------------- */
.fp-opening {
    position: fixed;
    inset: 0;
    background: var(--c-navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-opening__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
}

.fp-opening__logo {
    color: var(--c-gold);
    font-family: var(--f-en);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    letter-spacing: 0.3em;
    font-weight: 600;
}

.fp-opening__bar {
    width: 0;
    height: 2px;
    background: var(--c-gold);
}


/* -----------------------------------------
   3. HERO
   ----------------------------------------- */
.fp-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.fp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fp-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,27,42,0.3) 0%, rgba(13,27,42,0.7) 100%);
}

.fp-hero__container {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 20px;
}

.fp-hero__sub {
    font-family: var(--f-ja);
    font-size: clamp(0.75rem, 1.4vw, 1rem);
    color: var(--c-gold);
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    display: block;
    opacity: 0;
}

.fp-hero__title {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #fff;
    opacity: 0;
}

.fp-hero__desc {
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    line-height: 2;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    opacity: 0;
}

.fp-hero__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
}

/* Scroll Indicator */
.fp-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-en);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.6);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
}

.fp-scroll-indicator__line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.6);
    transform-origin: top;
    animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
    0%   { transform: scaleY(0); opacity: 0; }
    40%  { transform: scaleY(1); opacity: 1; }
    80%  { transform: scaleY(1); opacity: 0; }
    100% { transform: scaleY(0); opacity: 0; }
}


/* -----------------------------------------
   4. BUTTONS
   ----------------------------------------- */
.fp-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-family: var(--f-ja);
    font-size: 0.9rem;
    border: none;
}

.fp-btn--primary {
    background: var(--c-gold);
    color: var(--c-navy);
    box-shadow: 0 4px 15px rgba(201,169,110,0.4);
}
.fp-btn--primary:hover {
    background: var(--c-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,169,110,0.5);
}

.fp-btn--glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.fp-btn--glass:hover {
    background: rgba(255,255,255,0.2);
}

.fp-btn--outline {
    background: transparent;
    border: 1px solid var(--c-navy);
    color: var(--c-navy);
}
.fp-btn--outline:hover {
    background: var(--c-navy);
    color: #fff;
}

.fp-btn--lg { padding: 20px 60px; font-size: 1.1rem; }
.fp-btn--sm { padding: 10px 24px; font-size: 0.85rem; }
.fp-btn--full { width: 100%; }


/* -----------------------------------------
   5. SECTIONS COMMON
   ----------------------------------------- */
.fp-section { padding: 100px 0; }
.fp-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.fp-container--narrow { max-width: 820px; }

.fp-section-header { text-align: center; margin-bottom: 60px; }
.fp-section-header .en {
    display: block;
    font-family: var(--f-en);
    color: var(--c-gold);
    font-size: 1rem;
    letter-spacing: 0.25em;
    margin-bottom: 10px;
}
.fp-section-header .ja {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--c-navy);
}


/* -----------------------------------------
   6. TRUST BANNER（実績・信頼・安心）
   ----------------------------------------- */
.fp-trust-banner {
    position: relative;
    padding: 0;
    overflow: visible;
}

.fp-trust-banner__bg {
    position: relative;
    background: linear-gradient(135deg, #c9a96e 0%, #d4b87a 40%, #b89555 100%);
    padding: 60px 20px 100px;
    overflow: hidden;
}

.fp-trust-banner__bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fp-trust-banner__bg::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fp-trust-banner__tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--f-en);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 700;
    font-style: italic;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.06em;
    line-height: 1.1;
    white-space: nowrap;
    pointer-events: none;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .fp-trust-banner__tagline { font-size: 2rem; }
}

.fp-trust-banner__grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    max-width: 1100px;
    margin: -65px auto 0;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .fp-trust-banner__bg { padding: 50px 20px 85px; }
    .fp-trust-banner__grid {
        flex-direction: column;
        align-items: center;
        margin-top: -55px;
        gap: 0;
    }
}

/* カード全体を1つの丸い帯にする */
.fp-trust-banner__card {
    display: flex;
    align-items: center;
    background: var(--c-navy);
    padding: 0;
    flex: 1;
    min-height: 100px;
    transition: all 0.35s var(--ease);
    position: relative;
}

/* 左端カード：左側を大きく丸める */
.fp-trust-banner__card:first-child {
    border-radius: 60px 0 0 60px;
    box-shadow: -4px 8px 32px rgba(0,0,0,0.12);
}

/* 中央カード：角なし＋クリーム背景で強調 */
.fp-trust-banner__card:nth-child(2) {
    background: #fdf8ed;
    border-radius: 0;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: scale(1.04);
}

/* 右端カード：右側を大きく丸める */
.fp-trust-banner__card:last-child {
    border-radius: 0 60px 60px 0;
    box-shadow: 4px 8px 32px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    .fp-trust-banner__card:first-child  { border-radius: 40px 40px 0 0; }
    .fp-trust-banner__card:nth-child(2) { border-radius: 0; transform: scale(1); }
    .fp-trust-banner__card:last-child   { border-radius: 0 0 40px 40px; }
}

.fp-trust-banner__card:hover {
    transform: translateY(-4px);
}
.fp-trust-banner__card:nth-child(2):hover {
    transform: scale(1.04) translateY(-4px);
}

/* ナンバー — 紺背景カード用 */
.fp-trust-banner__num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: 0 8px;
    font-family: var(--f-en);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--c-gold);
    flex-shrink: 0;
}

/* 中央カードのナンバーはネイビー */
.fp-trust-banner__card:nth-child(2) .fp-trust-banner__num {
    color: var(--c-gold);
}

@media (max-width: 768px) {
    .fp-trust-banner__num { min-width: 70px; font-size: 2.2rem; }
}

/* テキスト部分 — 紺背景カード用（白文字） */
.fp-trust-banner__body {
    padding: 24px 28px 24px 20px;
    border-left: 3px solid var(--c-gold);
}

.fp-trust-banner__body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: 0.08em;
}

.fp-trust-banner__body p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin: 0;
}

/* 中央カード（クリーム背景）のテキストはネイビー */
.fp-trust-banner__card:nth-child(2) .fp-trust-banner__body h3 {
    color: var(--c-navy);
}
.fp-trust-banner__card:nth-child(2) .fp-trust-banner__body p {
    color: #777;
}

.fp-trust-banner__divider { display: none; }


/* -----------------------------------------
   7. REASON (Magazine-style Image Cards)
   ----------------------------------------- */
.fp-reason { background: var(--c-bg); }

.fp-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 960px) {
    .fp-bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .fp-bento-grid { grid-template-columns: 1fr; }
}

.fp-bento-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
    border: 1px solid var(--c-border);
    overflow: hidden;
}

.fp-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.fp-bento-card--gold {
    border: 2px solid var(--c-gold);
}

.fp-bento-card__img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--c-navy);
}

.fp-bento-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.fp-bento-card:hover .fp-bento-card__img img {
    transform: scale(1.05);
}

.fp-bento-card__num {
    position: absolute;
    bottom: 10px;
    right: 14px;
    font-family: var(--f-en);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    pointer-events: none;
}

.fp-bento-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
    color: var(--c-gold);
}

.fp-bento-card__placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.6;
}

.fp-bento-card__placeholder span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
    color: rgba(255,255,255,0.6);
}

.fp-bento-card--gold .fp-bento-card__placeholder {
    background: linear-gradient(135deg, #3a2f1c 0%, var(--c-navy) 100%);
}

.fp-bento-card__body {
    padding: 24px;
}

.fp-bento-card__body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 10px;
    line-height: 1.5;
}

.fp-bento-card__body p {
    font-size: 0.85rem;
    color: var(--c-text);
    line-height: 1.85;
}


/* -----------------------------------------
   8. MESSAGE (ABOUT)
   ----------------------------------------- */
.fp-message {
    position: relative;
    background: var(--c-navy);
    color: #fff;
    overflow: hidden;
}

.fp-message__bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.fp-message__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

@media (max-width: 768px) {
    .fp-message__inner { flex-direction: column-reverse; gap: 40px; }
}

.fp-message__text { flex: 1; }
.fp-message__text .sub {
    font-family: var(--f-en);
    color: var(--c-gold);
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.fp-message__text h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
}
.fp-divider { width: 60px; height: 3px; background: var(--c-gold); margin-bottom: 30px; }
.fp-message__text p { line-height: 2; color: rgba(255,255,255,0.85); font-size: 0.95rem; }

.fp-message__img { flex: 1; }
.fp-message__img img {
    border-radius: 8px;
    box-shadow: 20px 20px 0 rgba(201,169,110,0.15);
    width: 100%;
}

.fp-message__img--placeholder .fp-message__placeholder {
    background: var(--c-navy-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 12px;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.fp-message__placeholder svg { width: 60px; height: 60px; }


/* -----------------------------------------
   9. FLOW — Storytelling Timeline
   ----------------------------------------- */
.fp-flow { background: var(--c-white); }

.fp-container--wide { max-width: 1200px; }

.fp-section-header__desc {
    font-size: 0.9rem;
    color: var(--c-text);
    margin-top: 12px;
    letter-spacing: 0.02em;
}

.fp-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.fp-timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--c-gold) 0%, rgba(201,169,110,0.15) 100%);
    transform: translateX(-50%);
}

.fp-timeline__step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
    padding: 40px 0;
}

.fp-timeline__step .fp-timeline__media  { grid-column: 1; justify-self: end; padding-right: 50px; }
.fp-timeline__step .fp-timeline__dot    { grid-column: 2; }
.fp-timeline__step .fp-timeline__content { grid-column: 3; padding-left: 50px; }

.fp-timeline__step--reverse .fp-timeline__content { grid-column: 1; padding-right: 50px; padding-left: 0; text-align: right; }
.fp-timeline__step--reverse .fp-timeline__dot     { grid-column: 2; }
.fp-timeline__step--reverse .fp-timeline__media   { grid-column: 3; justify-self: start; padding-left: 50px; padding-right: 0; }

.fp-timeline__dot {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 6px var(--c-white), 0 4px 16px rgba(201,169,110,0.3);
    flex-shrink: 0;
}

.fp-timeline__dot span {
    font-family: var(--f-en);
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1;
}

.fp-timeline__media {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    background: var(--c-navy);
    box-shadow: var(--shadow-md);
}

.fp-timeline__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.fp-timeline__step:hover .fp-timeline__media img {
    transform: scale(1.04);
}

.fp-timeline__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
    color: var(--c-gold);
}

.fp-timeline__placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.fp-timeline__placeholder span {
    font-size: 0.75rem;
    opacity: 0.4;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
}

.fp-timeline__content {
    position: relative;
}

.fp-timeline__tag {
    display: inline-block;
    background: rgba(201,169,110,0.12);
    color: var(--c-gold-hover);
    font-family: var(--f-ja);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(201,169,110,0.2);
}

.fp-timeline__num-bg {
    position: absolute;
    top: -10px;
    font-family: var(--f-en);
    font-size: 7rem;
    font-weight: 700;
    color: rgba(0,0,0,0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.fp-timeline__step:not(.fp-timeline__step--reverse) .fp-timeline__num-bg { left: -10px; }
.fp-timeline__step--reverse .fp-timeline__num-bg { right: -10px; }

.fp-timeline__title {
    font-family: var(--f-ja);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 12px;
    line-height: 1.5;
}

.fp-timeline__lead {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-navy);
    margin-bottom: 10px;
    line-height: 1.7;
}

.fp-timeline__text {
    font-size: 0.85rem;
    color: var(--c-text);
    line-height: 1.9;
}

.fp-flow__cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--c-border);
}

.fp-flow__cta-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-navy);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

@media (max-width: 960px) {
    .fp-timeline__step .fp-timeline__media,
    .fp-timeline__step--reverse .fp-timeline__media {
        max-width: 320px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .fp-timeline__step .fp-timeline__content,
    .fp-timeline__step--reverse .fp-timeline__content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .fp-timeline__line {
        left: 24px;
        transform: none;
    }

    .fp-timeline__step,
    .fp-timeline__step--reverse {
        display: flex;
        flex-direction: column;
        padding: 0 0 48px 60px;
    }

    .fp-timeline__step .fp-timeline__media,
    .fp-timeline__step--reverse .fp-timeline__media,
    .fp-timeline__step .fp-timeline__content,
    .fp-timeline__step--reverse .fp-timeline__content {
        padding: 0;
        text-align: left;
        justify-self: auto;
        max-width: 100%;
    }

    .fp-timeline__step--reverse .fp-timeline__content { text-align: left; }
    .fp-timeline__step--reverse .fp-timeline__num-bg { right: auto; left: -10px; }

    .fp-timeline__dot {
        position: absolute;
        left: -36px;
        top: 0;
        width: 48px;
        height: 48px;
    }

    .fp-timeline__media {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .fp-timeline__num-bg {
        font-size: 4rem;
        top: -5px;
    }

    .fp-timeline__title { font-size: 1.1rem; }
    .fp-timeline__lead { font-size: 0.9rem; }
}


/* -----------------------------------------
   10. PRICE SIMULATOR（実料金対応版）
   ----------------------------------------- */
.fp-price { background: var(--c-white); }

/* --- 料金テーブル --- */
.fp-price-table {
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.fp-price-table__main {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}
.fp-price-table__main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.fp-price-table__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--c-gold), #e8c97a);
    color: var(--c-navy);
    font-size: .75rem;
    font-weight: 700;
    padding: .3em .9em;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    letter-spacing: .05em;
}
.fp-price-table__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fp-price-table__row:last-of-type { border-bottom: none; }
.fp-price-table__row--hero .fp-price-table__value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-gold);
}
.fp-price-table__row--hero .fp-price-table__value small {
    font-size: .7rem;
    font-weight: 400;
    opacity: .7;
    margin-left: .3em;
}
.fp-price-table__label {
    font-size: .95rem;
    color: rgba(255,255,255,0.8);
}
.fp-price-table__value {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}
.fp-price-table__value strong {
    color: var(--c-gold);
}
.fp-price-table__example {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: .82rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: .4em;
    flex-wrap: wrap;
}
.fp-price-table__example strong { color: rgba(255,255,255,0.85); }
.fp-price-table__example svg { flex-shrink: 0; stroke: var(--c-gold); }

/* --- シミュレーターボックス --- */
.fp-simulator-box {
    background: var(--c-navy);
    padding: 40px;
    border-radius: 16px;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.fp-simulator-box__title {
    display: flex;
    align-items: center;
    gap: .5em;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}
.fp-simulator-box__title svg { stroke: var(--c-gold); }

/* 日付入力グリッド（2カラム） */
.fp-sim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .fp-sim-grid { grid-template-columns: 1fr; }
    .fp-simulator-box { padding: 24px; }
}

.fp-sim-input label {
    display: flex;
    align-items: center;
    gap: .4em;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
}
.fp-sim-input label svg { stroke: var(--c-gold); flex-shrink: 0; }

.fp-sim-input input,
.fp-sim-input select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    font-family: var(--f-ja);
    font-size: 0.9rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.3s;
}

.fp-sim-input input:focus,
.fp-sim-input select:focus {
    outline: none;
    border-color: var(--c-gold);
}

.fp-sim-input select option { background: var(--c-navy); color: #fff; }
.fp-sim-input input::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }

/* 時刻入力グリッド */
.fp-sim-grid--time { margin-top: 16px; margin-bottom: 0; }

/* アラート表示 */
.fp-sim-alert {
    background: rgba(243, 156, 18, 0.12);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 16px;
    font-size: 0.82rem;
    line-height: 1.8;
    color: #f5c842;
}

/* --- オプション チェックボックス --- */
.fp-sim-options {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.fp-sim-options__title {
    display: flex;
    align-items: center;
    gap: .4em;
    font-size: .9rem;
    font-weight: 600;
    color: var(--c-gold);
    margin-bottom: 1rem;
}
.fp-sim-check {
    display: flex;
    align-items: center;
    gap: .6em;
    padding: .55rem .8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: .35rem;
}
.fp-sim-check:hover { background: rgba(255,255,255,.04); }
.fp-sim-check input[type="checkbox"] { display: none; }
.fp-sim-check__box {
    width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all .2s;
}
.fp-sim-check input:checked + .fp-sim-check__box {
    background: var(--c-gold);
    border-color: var(--c-gold);
}
.fp-sim-check input:checked + .fp-sim-check__box::after {
    content: '';
    position: absolute;
    top: 2px; left: 5px;
    width: 6px; height: 10px;
    border: solid var(--c-navy);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.fp-sim-check__label {
    font-size: .9rem;
    color: rgba(255,255,255,.85);
    flex: 1;
}
.fp-sim-check__price {
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-gold);
    white-space: nowrap;
}

/* --- 結果エリア --- */
.fp-sim-result {
    text-align: center;
    background: rgba(201,169,110,0.12);
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
    border: 1px solid var(--c-gold);
}
.fp-sim-result__breakdown {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .3rem 1rem;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-align: left;
}
.fp-sim-result__breakdown:empty { display: none; }
.fp-sim-result__breakdown:empty + .fp-sim-result__total { margin-top: 0; }
.fp-sim-result__breakdown span:nth-child(even) {
    text-align: right;
    color: rgba(255,255,255,.8);
    font-weight: 500;
}
.fp-sim-result__total { text-align: center; }

.fp-sim-result .label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.fp-sim-result .price {
    font-family: var(--f-en);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--c-gold);
}

.fp-sim-result .tax {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-left: 6px;
}

.fp-sim-action { text-align: center; }

/* --- 注意事項 --- */
.fp-price-notes {
    max-width: 720px;
    margin: 2.5rem auto 0;
    background: rgba(0,0,0,0.02);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 1.8rem 2rem;
}
.fp-price-notes__title {
    display: flex;
    align-items: center;
    gap: .4em;
    font-size: .95rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 1rem;
}
.fp-price-notes__title svg { stroke: var(--c-gold); }
.fp-price-notes__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fp-price-notes__list li {
    position: relative;
    padding: .45rem 0 .45rem 1.2rem;
    font-size: .82rem;
    color: var(--c-text);
    line-height: 1.7;
}
.fp-price-notes__list li::before {
    content: '※';
    position: absolute;
    left: 0;
    color: var(--c-gold);
    font-weight: 600;
}
.fp-price-notes__list li strong {
    color: var(--c-navy);
}
.fp-price-notes__list li.fp-price-notes__sub {
    padding-left: 2.2rem;
    font-size: .78rem;
    color: #999;
}
.fp-price-notes__list li.fp-price-notes__sub::before {
    content: '└';
    left: 1.2rem;
    color: #ccc;
}


/* -----------------------------------------
   11. REVIEWS
   ----------------------------------------- */
.fp-reviews { background: var(--c-bg); }

.fp-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .fp-reviews__grid { grid-template-columns: 1fr; }
}

.fp-review-card {
    background: var(--c-white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.fp-review-card:hover { box-shadow: var(--shadow-md); }

.fp-review-card__stars {
    color: var(--c-gold);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.fp-review-card__text {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--c-navy);
    margin-bottom: 20px;
}

.fp-review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fp-review-card__author .avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-navy);
    color: var(--c-gold);
    font-family: var(--f-en);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.fp-review-card__author .name {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--c-navy);
}

.fp-review-card__author .meta {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 2px;
}

.fp-reviews__more { text-align: center; margin-top: 40px; }


/* -----------------------------------------
   11.5 NEWS & STAFF BLOG
   ----------------------------------------- */
.fp-news-blog { background: var(--c-white); }

.fp-news-blog__dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 768px) {
    .fp-news-blog__dual { grid-template-columns: 1fr; gap: 48px; }
}

.fp-news-blog__header { margin-bottom: 28px; }

.fp-news-blog__header .en {
    display: block;
    font-family: var(--f-en);
    color: var(--c-gold);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    margin-bottom: 6px;
}

.fp-news-blog__header .ja {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-navy);
}

.fp-news-blog__empty {
    font-size: 0.88rem;
    color: #999;
    padding: 20px 0;
}

.fp-news-blog__more { margin-top: 20px; }

/* --- NEWS list --- */
.fp-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fp-news-list__item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.fp-news-list__item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    transition: background 0.2s;
    flex-wrap: wrap;
}

.fp-news-list__item a:hover { opacity: 0.7; }

.fp-news-list__item time {
    font-family: var(--f-en);
    font-size: 0.8rem;
    color: #999;
    flex-shrink: 0;
    min-width: 80px;
}

.fp-news-list__tag {
    display: inline-block;
    background: rgba(201,169,110,0.12);
    color: var(--c-gold);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 3px;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}

.fp-news-list__title {
    font-size: 0.9rem;
    color: var(--c-navy);
    font-weight: 500;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .fp-news-list__item a { flex-wrap: wrap; gap: 6px; }
    .fp-news-list__title { white-space: normal; width: 100%; }
}

/* --- BLOG cards --- */
.fp-blog-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fp-blog-card a {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fafaf8;
    transition: all 0.25s;
}

.fp-blog-card a:hover {
    border-color: rgba(201,169,110,0.3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.fp-blog-card__thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eee;
}

.fp-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-blog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-navy);
    color: rgba(255,255,255,0.15);
}

.fp-blog-card__placeholder svg { width: 32px; height: 32px; }

.fp-blog-card__body {
    flex: 1;
    min-width: 0;
}

.fp-blog-card__body time {
    display: block;
    font-family: var(--f-en);
    font-size: 0.72rem;
    color: #999;
    margin-bottom: 4px;
}

.fp-blog-card__body h3 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-navy);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* -----------------------------------------
   12. FAQ
   ----------------------------------------- */
.fp-faq { background: var(--c-white); }

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

.fp-faq__item { border-bottom: 1px solid rgba(0,0,0,0.08); }

.fp-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--f-ja);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-navy);
    transition: color 0.3s;
}

.fp-faq__q::-webkit-details-marker { display: none; }
.fp-faq__q:hover { color: var(--c-gold-hover); }

.fp-faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #999;
    transition: transform 0.3s var(--ease);
}

.fp-faq__item[open] .fp-faq__icon { transform: rotate(180deg); }

.fp-faq__a { padding: 0 0 20px; }
.fp-faq__a p { font-size: 0.9rem; line-height: 1.9; color: var(--c-text); }


/* -----------------------------------------
   13. ACCESS
   ----------------------------------------- */
.fp-access { background: var(--c-bg); }

.fp-access__card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .fp-access__card { flex-direction: column; }
    .fp-access__map { min-height: 280px; }
}

.fp-access__map { flex: 1.5; min-height: 400px; }
.fp-access__map iframe { width: 100%; height: 100%; }

.fp-access__info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fp-access__info dl { margin-bottom: 24px; }
.fp-access__info dt {
    color: var(--c-gold);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.fp-access__info dd {
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--c-navy);
    font-size: 0.95rem;
}

.fp-access__tel {
    color: var(--c-navy);
    font-family: var(--f-en);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.fp-access__tel:hover { color: var(--c-gold); }


/* -----------------------------------------
   14. FINAL CTA
   ----------------------------------------- */
.fp-cta {
    position: relative;
    background: var(--c-navy);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    overflow: hidden;
}

.fp-cta__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(201,169,110,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(201,169,110,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.fp-cta__content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.fp-cta__lead {
    font-family: var(--f-ja);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--c-gold);
    margin-bottom: 16px;
}

.fp-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.fp-cta__desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.fp-cta__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.fp-cta__note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 20px;
}


/* -----------------------------------------
   15. FLOATING BAR
   ----------------------------------------- */
.fp-float-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(13, 27, 42, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 14px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.08);
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.fp-float-bar--visible {
    transform: translateY(0);
    opacity: 1;
}

.fp-float-bar .info { display: flex; align-items: baseline; gap: 8px; }
.fp-float-bar .price {
    font-family: var(--f-en);
    color: var(--c-gold);
    font-size: 1.3rem;
    font-weight: 700;
}
.fp-float-bar .desc { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.fp-float-bar .btn {
    background: var(--c-gold);
    color: var(--c-navy);
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background 0.3s;
    white-space: nowrap;
}
.fp-float-bar .btn:hover { background: var(--c-gold-hover); }


/* -----------------------------------------
   16. ANIMATION UTILITIES
   ----------------------------------------- */
.js-scroll-fade,
.js-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.js-split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}


/* -----------------------------------------
   17. REDUCED MOTION
   ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fp-scroll-indicator__line { animation: none; opacity: 0.5; }
    .js-scroll-fade, .js-fade-up, .js-split-text .char {
        opacity: 1; transform: none;
    }
    .fp-float-bar { transform: translateY(0); opacity: 1; transition: none; }
}