@charset "UTF-8";

/* ===================================
   リセット
=================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ===================================
   共通
=================================== */

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    font-family: "Zen Kaku Gothic New", sans-serif;

    color: #333;
    background-color: #f2f2f2;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

input,
textarea,
select,
button {
    font: inherit;
}


/* ===================================
   共通レイアウト
=================================== */

.container {
    width: min(100% - 32px, 1200px);
    margin-inline: auto;
}

.page {
    width: 100%;
    min-height: 100vh;
    margin-inline: auto;
    padding-top: var(--header-height, 80px);
    background-color: #fff;
    overflow-x: hidden;
}

.lp-body .js-reveal {
    opacity: 0;
    filter: blur(5px);
    transition-duration: 0.72s;
    transition-property: opacity, transform, filter, clip-path;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.lp-body .js-reveal--rise {
    transform: translate3d(0, 22px, 0);
}

.lp-body .js-reveal--fade {
    clip-path: inset(0 0 12% 0 round 8px);
}

.lp-body .js-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
}

.lp-body .js-reveal--rise.is-visible {
    transform: translate3d(0, 0, 0);
}

.lp-body .js-reveal--fade.is-visible {
    clip-path: inset(0 0 0 0 round 0);
}

button,
a[href] {
    cursor: pointer;
}

.group-links__url,
.site-footer__links a,
.legal-header__back {
    display: inline-block;
}

@media (hover: hover) and (pointer: fine) {

    button,
    a[href] {
        transition-duration: 0.24s;
        transition-property: translate, background-color, border-color, color, opacity;
        transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    }

    button:not(:disabled):hover,
    a[href]:hover {
        translate: 0 -3px;
    }

    button:not(:disabled):active,
    a[href]:active {
        translate: 0 -1px;
        transition-duration: 0.12s;
    }

    .fixed-cta__button:hover {
        translate: 0 -5px;
    }

}


/* ===================================
   ヘッダー
=================================== */

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 100%;
    height: var(--header-height, 80px);
    overflow: hidden;
    background-image: linear-gradient(12.9deg, #012872 18.11%, #19458d 71.87%);
    background-size: 180% 180%;
    transform: translateX(-50%);
    animation:
        header-slide-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) both,
        header-gradient-shift 8s ease-in-out 0.8s infinite alternate;
}

.site-header__inner {
    position: relative;
    width: 402px;
    height: 90px;
    transform: scale(var(--page-scale, 1));
    transform-origin: top left;
}

.site-header__logo {
    position: absolute;
    top: 12px;
    left: 15px;
    display: block;
    width: 96px;
    height: 66px;
}

.site-header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    filter: brightness(0) invert(1) contrast(1.15);
    animation: logo-settle 0.78s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header__opening {
    position: absolute;
    top: 12px;
    left: 112px;
    width: 276px;
    height: 66px;
}

.site-header__date {
    position: absolute;
    top: 0;
    left: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 24px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14.7px;
    font-weight: 700;
    line-height: 1;
    animation: header-pop 0.58s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header__date-number {
    font-size: 16.7px;
}

.site-header__copy-row {
    position: absolute;
    top: 31px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    height: 35px;
}

.site-header__copy {
    color: #fcf005;
    font-size: 33.8px;
    font-weight: 900;
    letter-spacing: -1.15px;
    line-height: 1;
    text-shadow: 0 0 0 rgba(252, 240, 5, 0);
    white-space: nowrap;
    animation:
        header-copy-in 0.68s 0.36s cubic-bezier(0.22, 1, 0.36, 1) both,
        header-copy-glow 2.8s 1.35s ease-in-out infinite;
}

.site-header__copy span {
    margin-left: 4px;
    letter-spacing: 0;
}

.site-header__deco {
    flex: 0 0 16.4px;
    width: 16.4px;
    height: 33px;
    object-fit: contain;
    transform-origin: center center;
}

.site-header__deco--left {
    animation:
        deco-left-in 0.58s 0.44s cubic-bezier(0.22, 1, 0.36, 1) both,
        deco-wave-left 2.6s 1.45s ease-in-out infinite;
}

.site-header__deco--right {
    animation:
        deco-right-in 0.58s 0.44s cubic-bezier(0.22, 1, 0.36, 1) both,
        deco-wave-right 2.6s 1.45s ease-in-out infinite;
}



/* ===================================
   TOP
=================================== */

.top {
    position: relative;
    height: calc(690px * var(--page-scale, 1));
    overflow: hidden;
}

.top__inner {
    position: relative;
    width: 402px;
    height: 690px;
    overflow: hidden;
    transform: scale(var(--page-scale, 1));
    transform-origin: top left;
}

.top__bg {
    position: absolute;
    inset: 0;
    height: 761px;
    overflow: hidden;
    background-image: url("../img/top/main-visual.jpg");
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    transform-origin: center top;
    animation: hero-bg-drift 12s ease-in-out infinite alternate;
}

.top__venue {
    position: absolute;
    top: 24.5px;
    left: 18px;
    color: #000;
    font-size: 20.66px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 38.99px;
    white-space: nowrap;
    animation: hero-rise-in 0.68s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.top__venue::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 292px;
    height: 2px;
    background-color: #000;
}

.top__title {
    position: absolute;
    inset: 0;
}

.top__subtitle {
    position: absolute;
    top: 78px;
    left: 16px;
    color: #012770;
    font-size: 33.77px;
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1;
    white-space: nowrap;
    animation: hero-rise-in 0.68s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.top__heading {
    position: absolute;
    top: 113px;
    left: 13px;
    color: #012770;
    font-size: 49.83px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.12;
    white-space: nowrap;
    animation: hero-rise-in 0.72s 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.top__heading span {
    font-family: "Science Gothic", "Zen Kaku Gothic New", sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0;
    font-variation-settings: "CTRS" 0, "wdth" 100;
}

.top__lead {
    position: absolute;
    top: 188px;
    left: 18px;
    color: #000;
    font-size: 14.31px;
    font-weight: 700;
    letter-spacing: 0.29px;
    line-height: 22px;
    text-shadow: 0 0 50px #fff;
    white-space: nowrap;
    animation: hero-rise-in 0.68s 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.top__lead span {
    color: #012770;
    font-size: 19.31px;
    font-weight: 700;
    background-image: linear-gradient(transparent 56%, #fcf005 56%);
    background-size: 0 100%;
    background-repeat: no-repeat;
    animation: marker-draw 0.7s 0.96s ease-out both;
}

.top__shuttle-badge {
    position: absolute;
    top: 177px;
    left: 267px;
    width: 119px;
    height: 119px;
    object-fit: contain;
    transform-origin: center center;
    animation:
        badge-soft-in 0.7s 0.62s cubic-bezier(0.22, 1, 0.36, 1) both,
        badge-float 4.2s 1.35s ease-in-out infinite;
}

.top__features {
    position: absolute;
    top: 341px;
    left: 13px;
    width: 376px;
    height: 147px;
    object-fit: contain;
    animation: hero-card-in 0.72s 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.top__reservation {
    position: absolute;
    top: 519px;
    left: 50%;
    width: 200px;
    height: 24px;
    object-fit: contain;
    transform: translateX(-50%);
    animation: reservation-in 0.62s 0.88s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.top__price {
    position: absolute;
    top: 550px;
    left: 18px;
    width: 368px;
    height: 88px;
    object-fit: contain;
    animation:
        hero-card-in 0.72s 0.98s cubic-bezier(0.22, 1, 0.36, 1) both,
        price-glow 3.4s 1.8s ease-in-out infinite;
}



/* ===================================
   お知らせ
=================================== */

.news {
    position: relative;
    height: calc(220px * var(--page-scale, 1));
    overflow: hidden;
    background-color: #f6f9fd;
}

.news__inner {
    position: relative;
    width: 402px;
    height: 220px;
    padding: 28px 24px 0;
    transform: scale(var(--page-scale, 1));
    transform-origin: top left;
}

.news__head {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.news__label {
    color: rgba(1, 39, 112, 0.35);
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    line-height: 20px;
}

.news__title {
    position: relative;
    margin-top: 1px;
    color: #012770;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.48px;
    line-height: 34px;
}

.news__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(1, 39, 112, 0.22);
    border-radius: 999px;
    color: #012770;
    background-color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.24px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(1, 39, 112, 0.08);
}

.news__head.is-visible .news__more {
    animation: news-more-in 0.56s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.news__more::after {
    content: ">";
    margin-left: 7px;
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    line-height: 1;
}

.news__list {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.news-item {
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 12px 28px rgba(1, 39, 112, 0.09);
}

.news-item.is-visible {
    animation: news-card-pop 0.64s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.news-item__link {
    position: relative;
    display: block;
    min-height: 82px;
    padding: 16px 42px 15px 17px;
    color: inherit;
    text-decoration: none;
}

.news-item__link::after {
    content: ">";
    position: absolute;
    top: 50%;
    right: 18px;
    color: #012770;
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%);
}

.news-item.is-visible .news-item__link::after {
    animation: news-arrow-nudge 1.4s 0.62s ease-in-out 2;
}

.news-item time {
    color: #012770;
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.26px;
    line-height: 18px;
}

.news-item h3 {
    margin-top: 5px;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.32px;
    line-height: 1.5;
}



/* ===================================
   Kパーキングについて
=================================== */

.about {
    position: relative;
    height: calc(1124px * var(--page-scale, 1));
    overflow: hidden;
    background-color: #f6f9fd;
}

.about__inner {
    position: relative;
    width: 402px;
    height: 1124px;
    overflow: hidden;
    transform: scale(var(--page-scale, 1));
    transform-origin: top left;
}

.about__car {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 39px;
    height: 29px;
    animation: car-cruise 4.8s ease-in-out infinite;
}

.about__label {
    position: absolute;
    top: 71px;
    left: 0;
    width: 100%;
    color: rgba(1, 39, 112, 0.3);
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    line-height: 20px;
    text-align: center;
}

.about__title {
    position: absolute;
    top: 96px;
    left: 0;
    width: 100%;
    color: #012770;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.6px;
    line-height: 45px;
    text-align: center;
}

.about__lead {
    position: absolute;
    top: 160px;
    left: 18px;
    width: 368px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 24px;
}

.about__features {
    position: absolute;
    top: 273px;
    left: 18px;
    width: 366px;
}

.about-feature {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 116px;
}

.about-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 355px;
    height: 1px;
    background-color: rgba(1, 39, 112, 0.14);
    transform: translateX(-50%);
}

.about-feature__icon {
    position: relative;
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 10px 24px rgba(1, 39, 112, 0.08);
}

.about-feature.is-visible .about-feature__icon {
    animation: icon-pop 0.52s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-feature__icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    object-fit: contain;
    transform: translate(-50%, -50%);
}

.about-feature__icon--line img {
    width: 37px;
    height: 35px;
}

.about-feature__icon--shuttle img,
.about-feature__icon--qr img {
    width: 39px;
    height: 39px;
}

.about-feature__text {
    width: 288px;
}

.about-feature__text h3 {
    color: #012770;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 29px;
}

.about-feature__text p {
    margin-top: 0;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
}

.about__phone {
    position: absolute;
    top: 747px;
    left: 50%;
    width: 237px;
    height: 377px;
    border-radius: 42px 42px 0 0;
    object-fit: cover;
    animation: phone-breathe 4.8s ease-in-out infinite;
}



/* ===================================
   ご利用の流れ
=================================== */

.flow {
    position: relative;
    height: calc(856px * var(--page-scale, 1));
    overflow: hidden;
    background-color: #f6f9fd;
}

.flow__inner {
    position: relative;
    width: 402px;
    height: 856px;
    overflow: hidden;
    transform: scale(var(--page-scale, 1));
    transform-origin: top left;
}

.flow__heading {
    position: absolute;
    inset: 0;
}

.flow__guard {
    position: absolute;
    top: 40px;
    left: 18px;
    width: 89px;
    height: 73px;
}

.flow__title {
    position: absolute;
    top: 71px;
    left: 111px;
    z-index: 1;
    color: #012770;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.6px;
    line-height: 45px;
    white-space: nowrap;
}

.flow__title::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 7px;
    left: -3px;
    width: calc(100% + 6px);
    height: 14px;
    background-color: #fcf005;
}

.flow__steps {
    position: absolute;
    top: 142px;
    left: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    width: 374px;
}

.flow-step {
    position: relative;
    display: flex;
    align-items: center;
    width: 368px;
    height: 92px;
    padding: 0 0 0 24px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 10px 24px rgba(1, 39, 112, 0.08);
}

.flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: -17px;
    left: 50%;
    width: 34px;
    height: 17px;
    background-color: #012770;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    opacity: 1;
    transform: translateX(-50%);
    transition: opacity 0.25s ease 0.2s;
}

.flow-step.js-reveal:not(.is-visible):not(:last-child)::after {
    opacity: 0;
}

.flow-step.is-visible:not(:last-child)::after {
    opacity: 1;
}

.flow-step--large {
    width: 374px;
    height: 113px;
    padding-left: 27px;
}

.flow-step__number {
    position: relative;
    display: block;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    background-image: linear-gradient(12.9deg, #012872 18.11%, #19458d 71.87%);
}

.flow-step.is-visible .flow-step__number {
    animation: number-pop 0.48s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.flow-step__number span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 42px;
    height: 42px;
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 25px;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
    letter-spacing: 0;
    line-height: 42px;
    text-align: center;
    transform: translateY(-1px);
}

.flow-step__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 230px;
    margin-left: 25px;
    text-align: left;
}

.flow-step__text h3 {
    color: #012770;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 28px;
}

.flow-step__text p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 24px;
}

.flow-step__icon {
    position: absolute;
    top: 11px;
    left: 341.5px;
    width: 35px;
    height: 35px;
    object-fit: contain;
    transform: translateX(-50%);
}

.flow-step--large .flow-step__icon {
    left: 344.5px;
}

.flow-step__icon--line {
    width: 32px;
    height: 31px;
    opacity: 0.35;
}

.flow-step__icon--card {
    width: 35px;
    height: 25px;
}

.flow-step__icon--qr {
    width: 39px;
    height: 39px;
}

.flow-step__icon--phone {
    width: 19px;
    height: 36px;
}

.flow-step__icon--shuttle {
    width: 35px;
    height: 21px;
}

.flow-step__icon--return {
    width: 30px;
    height: 30px;
}



/* ===================================
   料金プラン
=================================== */

.price {
    position: relative;
    height: calc(688px * var(--page-scale, 1));
    overflow: visible;
    background-color: #fff;
}

.price__inner {
    position: relative;
    width: 402px;
    height: 688px;
    overflow: visible;
    transform: scale(var(--page-scale, 1));
    transform-origin: top left;
}

.price__people {
    position: absolute;
    z-index: 2;
    top: -34px;
    left: 28px;
    width: 78px;
    height: 98px;
    pointer-events: none;
    animation: people-float 4.6s ease-in-out infinite;
}

.price__person {
    position: absolute;
    display: block;
}

.price__person--woman {
    top: 12px;
    left: 0;
    width: 35px;
    height: 86px;
}

.price__person--man {
    top: 0;
    left: 40px;
    width: 38px;
    height: 96px;
}

.price__label {
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    color: rgba(1, 39, 112, 0.3);
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    line-height: 20px;
    text-align: center;
}

.price__title {
    position: absolute;
    top: 81px;
    left: 0;
    width: 100%;
    color: #012770;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.6px;
    line-height: 45px;
    text-align: center;
}

.price__card {
    position: absolute;
    height: auto;
    object-fit: contain;
}

.price__early {
    position: absolute;
    top: 120px;
    left: 15.5px;
    width: 371px;
    height: 329px;
}

.price__card--early {
    top: 0;
    left: 0;
    width: 371px;
}

.price__badge {
    position: absolute;
    top: 3px;
    left: -16px;
    width: 108px;
    height: auto;
    object-fit: contain;
    transform-origin: 50% 55%;
    animation: badge-wiggle 3.6s ease-in-out infinite;
}

.price__card--normal {
    top: 470px;
    left: 15.5px;
    width: 371px;
}



/* ===================================
   無料送迎
=================================== */

.shuttle {
    position: relative;
    height: calc(1368px * var(--page-scale, 1));
    overflow: visible;
    background-color: #f6f9fd;
}

.shuttle__inner {
    position: relative;
    width: 402px;
    height: 1368px;
    overflow: visible;
    transform: scale(var(--page-scale, 1));
    transform-origin: top left;
}

.shuttle__free-badge {
    position: absolute;
    z-index: 3;
    top: -46px;
    left: 10px;
    width: 118px;
    height: auto;
    object-fit: contain;
    transform-origin: center center;
    animation: badge-wiggle 3.8s ease-in-out infinite;
}

.shuttle__boundary {
    position: absolute;
    z-index: 2;
    top: -62px;
    right: -14px;
    width: 224px;
    height: auto;
    object-fit: contain;
    animation: boundary-float-right 5.4s ease-in-out infinite;
}

.shuttle__title {
    position: absolute;
    top: 52px;
    left: 15px;
    color: #012770;
}

.shuttle__title h2 {
    position: relative;
    width: 185px;
    font-weight: 900;
    line-height: 1;
}

.shuttle__title h2::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 23px;
    left: 0;
    width: 185px;
    height: 24px;
    background-color: #fcf005;
}

.shuttle__title-main,
.shuttle__title-sub {
    display: flex;
    justify-content: space-between;
    width: 185px;
}

.shuttle__title-main {
    font-size: 43px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 64px;
    white-space: nowrap;
}

.shuttle__title-sub {
    margin-top: -7px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 47px;
    white-space: nowrap;
}

.shuttle__lead {
    position: absolute;
    top: 174px;
    left: 18px;
    width: 368px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 24px;
}

.shuttle__lead span {
    color: #012770;
    font-weight: 700;
}

.shuttle__cards {
    position: absolute;
    top: 282px;
    left: 15.5px;
    width: 371px;
}

.shuttle__card {
    position: absolute;
    left: 0;
    width: 371px;
    height: auto;
    object-fit: contain;
}

.shuttle__card--outbound {
    top: 0;
}

.shuttle__card--return {
    top: 299px;
}

.shuttle__card--notice {
    top: 509px;
}

.shuttle__caution {
    position: absolute;
    top: 970px;
    left: 18px;
    width: 368px;
    color: #000;
}

.shuttle__caution h3 {
    margin-bottom: 20px;
    color: #012770;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1.45;
}

.shuttle__caution p {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 22px;
}

.shuttle__caution p + p {
    margin-top: 16px;
}

.shuttle__caution span {
    color: #012770;
}



/* ===================================
   アクセス
=================================== */



.access {
    position: relative;
    height: calc(1410px * var(--page-scale, 1));
    overflow: visible;
    background-color: #fff;
}

.access__inner {
    position: relative;
    width: 402px;
    height: 1410px;
    overflow: visible;
    transform: scale(var(--page-scale, 1));
    transform-origin: top left;
}

.access__boundary {
    position: absolute;
    z-index: 1;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.access__boundary--family {
    top: 34px;
    left: 28px;
    width: 76px;
    animation: boundary-float-left 5.2s ease-in-out infinite;
}

.access__boundary--road {
    top: -42px;
    right: -12px;
    width: 196px;
    animation: boundary-float-right 5.8s ease-in-out infinite;
}

.access__head {
    position: absolute;
    z-index: 2;
    top: 70px;
    left: 0;
    width: 100%;
    color: #012770;
    text-align: center;
}

.access__label {
    font-family: "Antonio", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    line-height: 39px;
    color: rgba(1, 39, 112, 0.3);
}

.access__heading {
    margin-top: -8px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.6px;
    line-height: 45px;
}

.access__map {
    position: absolute;
    top: 185px;
    left: 18px;
    width: 366px;
    height: 248px;
    overflow: hidden;
    background-color: #e6edf4;
}

.access__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.access__place {
    position: absolute;
    top: 460px;
    left: 18px;
    width: 368px;
    height: 138px;
    color: #012770;
}

.access__place-pin {
    position: absolute;
    top: -1px;
    left: 0;
    width: 24px;
    height: 35px;
}

.access__place-body {
    position: absolute;
    top: -5px;
    left: 32px;
    width: 318px;
}

.access__place h3 {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.6px;
    line-height: 45px;
}

.access__place p {
    margin-top: -2px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 27px;
}

.access__address-line {
    display: block;
    width: 331px;
    height: 1px;
    margin-top: 15px;
    object-fit: fill;
}

.access__place address {
    margin-top: 14px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 24px;
}

.access__map-cta {
    position: absolute;
    top: 620px;
    left: 17px;
    display: block;
    width: 368px;
    height: 93px;
    overflow: visible;
    transform-origin: center center;
    animation: cta-pulse 1.8s ease-in-out infinite;
}

.access__map-cta img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.access__landmark {
    position: absolute;
    top: 755px;
    left: 50%;
    min-width: 170px;
    color: #012770;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 28px;
    text-align: center;
    transform: translateX(-50%);
    white-space: nowrap;
}

.access__landmark::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 11px;
    background-color: #fcf005;
}

.access__landmark span {
    font-size: 25px;
    letter-spacing: 0.5px;
}

.access__guide {
    position: absolute;
    top: 800px;
    left: 18px;
    width: 369px;
    height: 270px;
    object-fit: cover;
}

.access__guide-caption {
    position: absolute;
    top: 1085px;
    left: 18px;
    width: 368px;
    color: #012770;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 24px;
}

.access__signs {
    position: absolute;
    top: 1142px;
    left: 18px;
    width: 368px;
    height: auto;
    object-fit: contain;
}



/* ===================================
   FAQ
=================================== */



.faq {
    position: relative;
    height: calc(var(--faq-height, 640px) * var(--page-scale, 1));
    overflow: hidden;
    background-color: #eff2f8;
    transition: height 0.25s ease;
}

.faq__inner {
    position: relative;
    width: 402px;
    min-height: 640px;
    padding: 48px 17px 34px;
    transform: scale(var(--page-scale, 1));
    transform-origin: top left;
}

.faq__head {
    color: #012770;
    text-align: center;
}

.faq__label {
    color: rgba(1, 39, 112, 0.3);
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    line-height: 39px;
}

.faq__heading {
    margin-top: -8px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.6px;
    line-height: 45px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.faq-item {
    overflow: hidden;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 10px 24px rgba(1, 39, 112, 0.08);
}

.faq-item__button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 92px;
    padding: 0 31px 0 23px;
    color: #012770;
    text-align: left;
    cursor: pointer;
}

.faq-item__mark {
    position: relative;
    display: block;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
}

.faq-item__mark img {
    width: 42px;
    height: 42px;
}

.faq-item__mark span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 42px;
    color: #fff;
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.52px;
    line-height: 34px;
    text-align: center;
}

.faq-item__question {
    width: 216px;
    margin-left: 18px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    line-height: 24px;
}

.faq-item__chevron {
    flex: 0 0 16px;
    width: 16px;
    height: 7px;
    margin-left: auto;
    transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.faq-item.is-open .faq-item__answer {
    grid-template-rows: 1fr;
}

.faq-item__answer-inner {
    overflow: hidden;
    position: relative;
    padding: 0 31px 0 83px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 23px;
}

.faq-item__answer-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 83px;
    width: 247px;
    height: 1px;
    border-top: 1px dashed rgba(1, 39, 112, 0.35);
    opacity: 0;
}

.faq-item.is-open .faq-item__answer-inner {
    padding-top: 17px;
    padding-bottom: 32px;
}

.faq-item.is-open .faq-item__answer-inner::before {
    opacity: 1;
}



/* ===================================
   CTA
=================================== */

.fixed-cta {
    position: fixed;
    z-index: 90;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 50%;
    width: 100%;
    max-width: 100%;
    height: calc(88px * var(--page-scale, 1));
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate(-50%, 18px);
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-body.is-fixed-cta-visible .fixed-cta {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.fixed-cta__stage {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 402px;
    height: 88px;
    transform: scale(var(--page-scale, 1));
    transform-origin: bottom left;
}

.fixed-cta__button {
    position: absolute;
    top: 0;
    left: 18px;
    width: 368px;
    height: 88px;
    pointer-events: auto;
    transform-origin: center center;
    animation: cta-pulse 1.8s ease-in-out infinite;
}

.fixed-cta__button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes cta-pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.035);
    }
}

@keyframes header-slide-in {
    from {
        transform: translate(-50%, -100%);
    }

    to {
        transform: translate(-50%, 0);
    }
}

@keyframes header-gradient-shift {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 100% 50%;
    }
}

@keyframes logo-settle {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes header-pop {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes header-copy-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes header-copy-glow {
    0%,
    100% {
        text-shadow: 0 0 0 rgba(252, 240, 5, 0);
    }

    50% {
        text-shadow: 0 0 12px rgba(252, 240, 5, 0.42);
    }
}

@keyframes deco-left-in {
    from {
        opacity: 0;
        transform: translateX(10px) rotate(8deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes deco-right-in {
    from {
        opacity: 0;
        transform: translateX(-10px) rotate(-8deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes deco-wave-left {
    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-7deg);
    }
}

@keyframes deco-wave-right {
    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(7deg);
    }
}

@keyframes hero-bg-drift {
    from {
        transform: scale(1) translateY(0);
    }

    to {
        transform: scale(1.025) translateY(-8px);
    }
}

@keyframes hero-rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marker-draw {
    from {
        background-size: 0 100%;
    }

    to {
        background-size: 100% 100%;
    }
}

@keyframes badge-soft-in {
    from {
        opacity: 0;
        transform: scale(0.82) rotate(-6deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes badge-float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-7px) rotate(1.5deg);
    }
}

@keyframes hero-card-in {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes reservation-in {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes price-glow {
    0%,
    100% {
        filter: drop-shadow(0 0 0 rgba(252, 240, 5, 0));
    }

    50% {
        filter: drop-shadow(0 8px 14px rgba(252, 240, 5, 0.24));
    }
}

@keyframes news-more-in {
    from {
        opacity: 0;
        transform: translateX(10px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes news-card-pop {
    from {
        transform: translateY(12px) scale(0.98);
        box-shadow: 0 8px 18px rgba(1, 39, 112, 0.06);
    }

    to {
        transform: translateY(0) scale(1);
        box-shadow: 0 12px 28px rgba(1, 39, 112, 0.09);
    }
}

@keyframes news-arrow-nudge {
    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(3px);
    }
}

@keyframes car-cruise {
    0%,
    100% {
        transform: translateX(-50%);
    }

    50% {
        transform: translateX(calc(-50% + 7px));
    }
}

@keyframes icon-pop {
    from {
        transform: scale(0.86);
    }

    to {
        transform: scale(1);
    }
}

@keyframes phone-breathe {
    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -6px);
    }
}

@keyframes number-pop {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1);
    }
}

@keyframes people-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes badge-wiggle {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

@keyframes boundary-float-left {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(5px, -5px) rotate(1.5deg);
    }
}

@keyframes boundary-float-right {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-6px, -6px) rotate(-1.5deg);
    }
}

@keyframes watermark-breathe {
    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.28;
        transform: scale(1.035);
    }
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    button,
    a[href] {
        translate: none !important;
        transition: none !important;
    }

    .lp-body .js-reveal {
        opacity: 1;
        filter: none;
        clip-path: none;
        transition: none !important;
    }

    .lp-body .js-reveal--rise {
        transform: translate3d(0, 0, 0);
    }

    .top__lead span {
        background-size: 100% 100%;
    }

    .site-header,
    .site-header__logo img,
    .site-header__date,
    .site-header__copy,
    .site-header__deco,
    .top__bg,
    .top__venue,
    .top__subtitle,
    .top__heading,
    .top__lead,
    .top__lead span,
    .top__shuttle-badge,
    .top__features,
    .top__reservation,
    .top__price,
    .news__more,
    .news-item,
    .news-item__link::after,
    .about__car,
    .about-feature__icon,
    .about__phone,
    .flow-step__number,
    .price__people,
    .price__badge,
    .shuttle__free-badge,
    .shuttle__boundary,
    .access__boundary,
    .site-footer__watermark,
    .fixed-cta__button,
    .access__map-cta {
        animation: none !important;
        transition: none !important;
    }

    .about__car,
    .about__phone {
        transform: translateX(-50%);
    }

    .flow-step:not(:last-child)::after {
        opacity: 1;
    }

}



/* ===================================
   グループリンク
=================================== */

.group-links {
    position: relative;
    height: calc(720px * var(--page-scale, 1));
    overflow: hidden;
    background-color: #f5f7fb;
}

.group-links__inner {
    position: relative;
    width: 402px;
    height: 720px;
    padding: 34px 28px 0;
    transform: scale(var(--page-scale, 1));
    transform-origin: top left;
}

.group-links__label {
    color: rgba(1, 39, 112, 0.42);
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    line-height: 20px;
    text-align: center;
}

.group-links h2 {
    margin-top: 2px;
    color: #012770;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.44px;
    line-height: 1.35;
    text-align: center;
}

.group-links__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 22px;
}

.group-links__item {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(1, 39, 112, 0.14);
}

.group-links__item h3 {
    color: #012770;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.28px;
    line-height: 20px;
}

.group-links__row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 12px;
    margin-top: 7px;
    align-items: start;
}

.group-links__banner {
    display: block;
    width: 150px;
    height: 50px;
}

.group-links__banner img {
    width: 150px;
    height: 50px;
    border: 1px solid rgba(1, 39, 112, 0.12);
    background-color: #fff;
    object-fit: contain;
    box-shadow: 0 8px 20px rgba(1, 39, 112, 0.08);
}

.group-links__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #012770;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22px;
    line-height: 1.5;
}

.group-links__url {
    color: #0b57a4;
    font-weight: 700;
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.group-links__text p {
    color: #4a5a6a;
}



/* ===================================
   フッター
=================================== */



.site-footer {
    position: relative;
    height: calc(260px * var(--page-scale, 1));
    overflow: hidden;
    background-color: #012770;
}

.site-footer__inner {
    position: relative;
    width: 402px;
    height: 260px;
    padding: 0 22px;
    color: #fff;
    transform: scale(var(--page-scale, 1));
    transform-origin: top left;
}

.site-footer__watermark {
    position: absolute;
    top: -8px;
    right: -58px;
    width: 215px;
    height: auto;
    opacity: 0.24;
    filter: brightness(0) invert(1);
    pointer-events: none;
    animation: watermark-breathe 5s ease-in-out infinite;
}

.site-footer__brand {
    position: absolute;
    top: 43px;
    left: 22px;
    z-index: 1;
    color: #fff;
}

.site-footer__brand-main {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 42px;
    white-space: nowrap;
}

.site-footer__brand-main span {
    font-family: "Science Gothic", "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
}

.site-footer__brand-sub {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 9px;
    font-family: "Science Gothic", "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 18px;
    white-space: nowrap;
}

.site-footer__brand-sub::before,
.site-footer__brand-sub::after {
    content: "";
    width: 16px;
    height: 1px;
    background-color: #fff;
}

.site-footer__links {
    position: absolute;
    z-index: 1;
    top: 140px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.24px;
    line-height: 20px;
    text-align: center;
}

.site-footer__links a {
    color: inherit;
}

.site-footer__line {
    position: absolute;
    top: 173px;
    left: 34px;
    width: 334px;
    height: 2px;
    background-color: #fcf005;
}

.site-footer__copyright {
    position: absolute;
    top: 196px;
    left: 0;
    width: 100%;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.26px;
    line-height: 20px;
    text-align: center;
}



/* ===================================
   法務ページ
=================================== */

.legal-page {
    width: 100%;
    min-height: 100vh;
    color: #1f2933;
    background-color: #eff2f8;
}

.legal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 36px, 760px);
    margin-inline: auto;
    padding: 22px 0 18px;
}

.legal-header__logo {
    display: block;
    width: 62px;
}

.legal-header__back {
    color: #012770;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.26px;
}

.legal-main {
    width: min(100% - 36px, 760px);
    margin-inline: auto;
    padding: 34px 18px 72px;
    border-radius: 10px 10px 0 0;
    background-color: #fff;
}

.legal-main__label {
    color: rgba(1, 39, 112, 0.3);
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.36px;
    line-height: 28px;
    text-align: center;
}

.legal-main h1 {
    margin-top: 2px;
    color: #012770;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.45;
    text-align: center;
}

.legal-main p,
.legal-main li {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.15px;
    line-height: 1.85;
}

.legal-main > p {
    margin-top: 28px;
}

.legal-main__updated {
    margin-top: 42px;
    color: #5d6b7a;
    font-size: 13px;
    text-align: right;
}

.legal-section {
    margin-top: 34px;
}

.legal-section h2 {
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(1, 39, 112, 0.28);
    color: #012770;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.36px;
    line-height: 1.55;
}

.legal-section ol {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    padding-left: 1.4em;
    list-style: decimal;
}

.legal-section__sublist {
    list-style: none;
    padding-left: 0.4em;
}

.legal-section strong {
    color: #012770;
    font-weight: 900;
}



/* ===================================
   お知らせページ
=================================== */

.news-page {
    background:
        linear-gradient(180deg, rgba(246, 249, 253, 0.96), rgba(239, 242, 248, 1)),
        #eff2f8;
}

.news-main {
    padding-top: 38px;
}

.news-archive {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 34px;
}

.news-archive__item {
    border: 1px solid rgba(1, 39, 112, 0.1);
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 12px 28px rgba(1, 39, 112, 0.07);
}

.news-archive__item a {
    position: relative;
    display: block;
    padding: 18px 48px 18px 18px;
    color: inherit;
    text-decoration: none;
}

.news-archive__item a::after {
    content: ">";
    position: absolute;
    top: 50%;
    right: 20px;
    color: #012770;
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%);
}

.news-archive__item time,
.news-detail__date {
    display: block;
    color: #012770;
    font-family: "Antonio", "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28px;
    line-height: 20px;
}

.news-archive__item h2 {
    margin-top: 6px;
    color: #111827;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.34px;
    line-height: 1.55;
}

.news-main h1 {
    font-weight: 700;
}

.news-detail__date {
    margin-top: 28px;
    text-align: center;
}

.news-detail h1 {
    margin-top: 8px;
}

.news-detail__body {
    margin-top: 32px;
}

.news-detail__body p + p {
    margin-top: 18px;
}

.news-detail__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 38px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background-image: linear-gradient(12.9deg, #012872 18.11%, #19458d 71.87%);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.28px;
    line-height: 1;
    text-decoration: none;
}



/* ===================================
   PC（1024px以上）
=================================== */

@media screen and (min-width: 1024px) {

    body.lp-body {
        position: relative;
        background-color: #eef2f6;
    }

    body.lp-body::before {
        position: fixed;
        z-index: -2;
        inset: 0;
        content: "";
        background: url("../img/bg/desktop-parking-bg.jpg") center center / cover no-repeat;
    }

    body.lp-body::after {
        position: fixed;
        z-index: -1;
        inset: 0;
        content: "";
        background: rgba(255, 255, 255, 0.55);
        -webkit-backdrop-filter: blur(3px) saturate(1.08);
        backdrop-filter: blur(3px) saturate(1.08);
    }

    .page {
        position: relative;
        max-width: 402px;
        border-inline: 1px solid rgba(255, 255, 255, 0.62);
        box-shadow: 0 20px 60px rgba(1, 39, 112, 0.18);
    }

    .site-header {
        max-width: 402px;
        border-inline: 1px solid rgba(255, 255, 255, 0.62);
        box-shadow: 0 16px 44px rgba(1, 39, 112, 0.16);
    }

    .site-footer {
        height: calc(260px * var(--page-scale, 1));
    }

    .site-footer__inner {
        height: 260px;
    }

    .fixed-cta {
        right: 20px;
        bottom: 28px;
        left: auto;
        width: min(368px, calc((100vw - 402px) / 2 - 32px));
        min-width: 260px;
        max-width: 368px;
        height: 88px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .lp-body.is-fixed-cta-visible .fixed-cta {
        transform: none;
    }

    .fixed-cta__stage {
        position: relative;
        width: 100%;
        height: 100%;
        transform: none;
    }

    .fixed-cta__button {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        filter: drop-shadow(0 14px 24px rgba(1, 39, 112, 0.22));
    }

}
