.top-lead{font-size:1.35rem;line-height:1.9;color:var(--color-text-gray);margin:0 0 1.8rem}.top-actions{display:flex;gap:.8rem;flex-wrap:wrap}.consumer-button{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:.75rem 1.25rem;border:1px solid #036ec0;border-radius:999px;font-weight:700;transition:.25s ease}.consumer-button--blue{background:#036ec0;color:#fff}.consumer-button--outline{color:#036ec0;background:#fff}.consumer-button:hover{transform:translateY(-2px);opacity:.82}.consumer-intro__inner,.consumer-section,.consumer-page__body{width:min(100% - 40px,var(--container));margin-inline:auto}.consumer-intro__inner{padding:4rem 0 5rem}.consumer-intro__inner h2{font-size:clamp(2.5rem,5vw,5rem);line-height:1.35;margin:.6rem 0 1.2rem}.consumer-intro__inner>p:last-child{max-width:620px;font-size:1.55rem;line-height:2}.consumer-kicker,.consumer-section__heading>p,.guide-feature .consumer-kicker{font-size:1.1rem;letter-spacing:.14em;font-weight:700;color:#036ec0}.consumer-section{padding:6rem 0}.consumer-section__heading{margin-bottom:2.5rem}.consumer-section__heading h2{font-size:clamp(3rem,6vw,6.2rem);line-height:1.1;color:#036ec0;margin:.4rem 0}.consumer-section__heading span{font-size:1.4rem;color:var(--color-text-gray)}.stay-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:2rem}.stay-card{display:block;border:4px solid #036ec0;border-radius:18px;overflow:hidden;background:#fff}.stay-card__image{height:220px}.stay-card__image img{width:100%;height:100%;object-fit:cover;display:block}.stay-card__body{padding:1.6rem}.stay-card__area{font-size:1.1rem;color:#036ec0;letter-spacing:.1em}.stay-card h2,.stay-card h3{font-size:2rem;line-height:1.35;margin:.6rem 0}.stay-card p{font-size:1.3rem;line-height:1.8}.stay-card__type{font-size:1.1rem!important;font-weight:700;color:#666}.text-link{display:inline-block;margin-top:1.2rem;color:#036ec0;font-weight:700}.consumer-section--local{background:#f3f8fc;max-width:none;padding-left:max(20px,calc((100% - var(--container))/2));padding-right:max(20px,calc((100% - var(--container))/2))}.guide-feature{max-width:820px;padding:3.5rem;background:#fff url('../img/about.webp') right center/45% auto no-repeat;border-radius:18px}.guide-feature>div{max-width:460px}.guide-feature h3{font-size:clamp(2.5rem,5vw,4.4rem);line-height:1.35;margin:.7rem 0 1rem}.guide-feature p{font-size:1.4rem;line-height:1.9}.shooting-grid{display:flex;align-items:center;gap:3rem;justify-content:space-between;max-width:820px}.shooting-grid p{font-size:1.55rem;line-height:2;max-width:560px}.journal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}.journal-grid article{min-height:220px;padding:2rem;border-top:3px solid #036ec0;background:#f7f7f7}.journal-grid h3,.journal-grid h2{font-size:1.8rem;line-height:1.5;margin:1.3rem 0}.work-together{margin-top:1rem}.consumer-page{padding-bottom:6rem}.consumer-page__hero{padding:8rem 20px 5rem;background:#f3f8fc}.consumer-page__hero>*{width:min(100% - 40px,var(--container));margin-inline:auto}.consumer-page__hero h1{font-size:clamp(4rem,9vw,8rem);line-height:1.1;color:#036ec0;margin:.5rem auto 1rem}.consumer-page__hero p:last-child{font-size:1.6rem}.consumer-page__body{padding-top:4rem}.stay-detail{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}.stay-detail__image{aspect-ratio:4/3;overflow:hidden;border-radius:18px}.stay-detail__image img{width:100%;height:100%;object-fit:cover}.stay-detail h2{font-size:3rem;margin:.5rem 0 1rem}.stay-detail>div:last-child>p{font-size:1.5rem;line-height:1.9}.stay-detail dl{margin:2rem 0}.stay-detail dt{font-weight:700;color:#036ec0;margin-top:1rem}.stay-detail dd{margin-left:0;line-height:1.8}.service-list{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;max-width:760px;margin-bottom:2rem}.service-list p{margin:0;padding:1.3rem;border-bottom:1px solid #ddd;font-size:1.5rem}.guide-list{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}.guide-list article{padding:2rem;background:#f3f8fc}.guide-list h2{font-size:2rem;line-height:1.5}.guide-list p{line-height:1.8}.journal-grid--page article{min-height:260px}@media(max-width:768px){.main-visual__catchcopy{display:block}.top-h1{font-size:2.5rem;line-height:1.45}.top-lead{font-size:1.2rem}.stay-card,.stay-detail{grid-template-columns:1fr}.shooting-grid{display:block}.shooting-grid .consumer-button{margin-top:1.4rem}.journal-grid,.guide-list{grid-template-columns:1fr}.stay-grid{grid-template-columns:1fr}.consumer-section{padding:4rem 0}.consumer-intro__inner{padding:3rem 0 4rem}.guide-feature{padding:2rem;background-image:none}.consumer-page__hero{padding:5rem 20px 3.5rem}.service-list{grid-template-columns:1fr}}

/* Gentle motion: the existing waves should feel alive, never distracting. */
.about-wave__top img,
.about-wave__bottom img,
.about-wave__footer img {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.about-wave__top img {
    animation: haco-wave-drift 16s ease-in-out infinite;
}

.about-wave__bottom img {
    animation: haco-wave-drift-reverse 19s ease-in-out infinite;
}

.about-wave__footer img {
    animation: haco-wave-drift 22s ease-in-out infinite;
}

@keyframes haco-wave-drift {
    0%, 100% { transform: translate3d(-18px, 0, 0) rotate(0deg); }
    50% { transform: translate3d(18px, 3px, 0) rotate(.35deg); }
}

@keyframes haco-wave-drift-reverse {
    0%, 100% { transform: translate3d(18px, 0, 0) rotate(0deg); }
    50% { transform: translate3d(-18px, -3px, 0) rotate(-.35deg); }
}

@media (prefers-reduced-motion: reduce) {
    .about-wave__top img,
    .about-wave__bottom img,
    .about-wave__footer img {
        animation: none;
    }
}

/* The blue START shape also breathes very gently, like a large tide. */
.work-together {
    background-size: 102% 102%;
    animation: haco-blob-breathe 18s ease-in-out infinite;
}

.work-together__button img {
    animation:
        workTogetherButtonRotate 15s linear infinite,
        haco-button-float 7s ease-in-out infinite;
}

.work-together__img2 img {
    animation-delay: -4s, -2.3s;
}

.work-together__img3 img {
    animation-delay: -8s, -4.6s;
}

@keyframes haco-blob-breathe {
    0%, 100% {
        background-position: 50% 50%;
        background-size: 102% 102%;
    }
    50% {
        background-position: 51.5% 49%;
        background-size: 105% 104%;
    }
}

@keyframes haco-button-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -8px; }
}

@media (prefers-reduced-motion: reduce) {
    .work-together,
    .work-together__button img {
        animation: none;
    }
}

/* Keep the KV copy as intentional lines instead of flex-shrinking each word. */
.main-visual__catchcopy {
    display: block;
    width: min(760px, calc(100% - 40px));
}

.main-visual__catchcopy .top-h1 {
    max-width: 760px;
    margin: 0 0 1.4rem;
    white-space: nowrap;
}

.main-visual__catchcopy .top-lead {
    max-width: 650px;
}

.main-visual__catchcopy .top-actions {
    margin-top: 1.2rem;
}

@media (max-width: 768px) {
    .main-visual__catchcopy {
        width: calc(100% - 30px);
        top: 24px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .main-visual__catchcopy .top-h1 {
        max-width: none;
        white-space: normal;
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }
}

/* Front page 2026: connect each destination with space and a gentle route. */
.front-page {
    --front-blue: #5797eb;
    --front-deep-blue: #1768ad;
    --front-ink: #20252a;
    --front-paper: #fdfbf6;
    background:
        radial-gradient(ellipse at 13% 74%, rgba(255, 255, 255, .32) 0%, rgba(255, 255, 255, 0) 24%),
        radial-gradient(ellipse at 88% 84%, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 20%),
        linear-gradient(
            180deg,
            #fdfbf6 0%,
            #fdfbf6 62%,
            #eef6f8 68%,
            #c7ddec 75%,
            #75a8cc 83%,
            #356f9d 91%,
            #174d78 100%
        );
    color: var(--front-ink);
    overflow: clip;
}

.front-page .about-wave__inner {
    background: linear-gradient(180deg, #2d8bd3 0%, #287ec2 52%, #1768ad 100%);
    margin-top: -1px;
}

/* Soften the long shoreline on the right so it does not read as a divider. */
.front-page .main-visual__bg::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 57.5%;
    top: 26.5%;
    width: 22%;
    height: 5.5%;
    background: radial-gradient(
        ellipse at center,
        rgba(253, 251, 246, .76) 0%,
        rgba(253, 251, 246, .6) 48%,
        rgba(253, 251, 246, .2) 76%,
        rgba(253, 251, 246, 0) 100%
    );
    pointer-events: none;
}

.front-page .consumer-intro__inner {
    padding-top: 3.5rem;
    padding-bottom: 6.5rem;
}

.front-page .consumer-route-copy {
    margin: 0 0 3.75rem;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 700;
    letter-spacing: .04em;
}

.front-page .consumer-intro .consumer-kicker {
    color: rgba(255, 255, 255, .7);
}

.front-page .consumer-intro__inner h2,
.front-page .consumer-intro__inner > p:last-child {
    color: #fff;
}

.front-page .consumer-section {
    position: relative;
    width: min(100% - 48px, var(--container));
    padding: clamp(7rem, 10vw, 11rem) 0;
    background: transparent;
}

.front-page .consumer-section + .consumer-section::before {
    content: "";
    display: block;
    width: min(94%, 1040px);
    height: 42px;
    margin: -2rem auto clamp(4rem, 7vw, 7rem);
    border-top: 1px solid rgba(87, 151, 235, .42);
    border-radius: 50% 50% 0 0;
    transform: rotate(-1deg);
    display: none;
}

.front-page .consumer-section__heading {
    margin-bottom: clamp(4rem, 7vw, 7rem);
}

.front-page .consumer-section__heading > p {
    color: var(--front-blue);
}

.front-page .consumer-section__heading h2 {
    color: var(--front-deep-blue);
}

/* The seven stays read as individual destinations, not product cards. */
.front-page .stay-grid {
    gap: clamp(5rem, 8vw, 9rem) clamp(3rem, 7vw, 7rem);
}

.front-page .stay-card {
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.front-page .stay-card:nth-child(even) {
    transform: translateY(5rem);
}

.front-page .stay-card__image {
    height: clamp(260px, 32vw, 390px);
    overflow: hidden;
    border-radius: 18px;
}

.front-page .stay-card:nth-child(even) .stay-card__image {
    border-radius: 18px;
}

.front-page .stay-card__image img {
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.front-page .stay-card:hover .stay-card__image img {
    transform: scale(1.025);
}

.front-page .stay-card__body {
    padding: 2rem .4rem 0;
}

.front-page .stay-card__area {
    color: var(--front-blue);
}

.front-page .stay-card h3 {
    font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.front-page .stay-card__actions {
    border-top-color: rgba(87, 151, 235, .32);
}

.front-page .stay-card__reserve,
.front-page .text-link {
    color: var(--front-deep-blue);
}

/* A local guide laid over the page, with no enclosing panel. */
.front-page .consumer-section--local {
    max-width: var(--container);
    padding-left: 0;
    padding-right: 0;
}

.front-page .guide-feature {
    max-width: 780px;
    min-height: 0;
    padding: 0;
    background: none;
    border-radius: 0;
}

.front-page .guide-feature > div {
    max-width: 780px;
}

/* Shooting and journal retain their content but lose the hard section blocks. */
.front-page .shooting-grid {
    max-width: 940px;
    align-items: flex-end;
}

.front-page .journal-grid {
    gap: clamp(2rem, 4vw, 4.5rem);
}

.front-page .journal-grid article {
    min-height: 190px;
    padding: 2rem 0 2.5rem;
    border-top: 1px solid rgba(87, 151, 235, .5);
    background: transparent;
}

.front-page .journal-grid article:nth-child(2) {
    transform: translateY(2.5rem);
}

.front-page .journal-grid article > p {
    color: var(--front-blue);
    letter-spacing: .12em;
}

.front-page .consumer-section--journal .consumer-section__heading > p,
.front-page .consumer-section--journal .journal-grid article > p {
    color: rgba(255, 255, 255, .72);
}

.front-page .consumer-section--journal .consumer-section__heading h2,
.front-page .consumer-section--journal .consumer-section__heading span,
.front-page .consumer-section--journal .journal-grid h3,
.front-page .consumer-section--journal .text-link {
    color: #fff;
}

.front-page .consumer-section--journal .journal-grid article {
    border-top-color: rgba(255, 255, 255, .34);
}

.front-page .consumer-contact-strip {
    position: relative;
    margin: 4rem 0 0;
    padding: 7rem 0 2rem;
    aspect-ratio: auto;
    overflow: hidden;
    background: transparent;
    animation: none;
}

/* One broad tide replaces the old floating blob and the second scalloped wave. */
.front-page .consumer-contact-strip::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 165px;
    background: url('../img/wave_start.svg') center top / 100% 100% no-repeat;
    pointer-events: none;
    display: none;
}

.front-page .consumer-contact-strip .work-together__inner {
    z-index: 2;
    padding-top: 11rem;
    padding-bottom: 11rem;
}

body.home .about-wave__footer {
    display: none;
}

body.home .site-footer {
    background: linear-gradient(180deg, #365f82 0%, #174d78 100%);
}

/* Existing hacobune waves become slow ocean currents, not section dividers. */
.front-page .consumer-section > :not(.ocean-current) {
    position: relative;
    z-index: 2;
}

.front-page .ocean-current {
    position: absolute;
    z-index: 0;
    inset: 0 auto 0 50%;
    width: 100vw;
    transform: translateX(-50%);
    pointer-events: none;
}

.front-page .ocean-current__wave {
    position: absolute;
    left: -9%;
    width: 118%;
    height: clamp(90px, 10vw, 150px);
    background: currentColor;
    opacity: .045;
    filter: blur(2px);
    mix-blend-mode: soft-light;
    will-change: transform;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    animation: haco-current-flow 22s ease-in-out infinite;
}

.front-page .ocean-current__wave--top {
    top: 12%;
    -webkit-mask-image: url('../img/wave_top.svg'), linear-gradient(to bottom, transparent 0%, #000 20%, #000 62%, transparent 100%);
    mask-image: url('../img/wave_top.svg'), linear-gradient(to bottom, transparent 0%, #000 20%, #000 62%, transparent 100%);
}

.front-page .ocean-current__wave--bottom {
    top: 68%;
    opacity: .028;
    -webkit-mask-image: url('../img/wave_footer.svg'), linear-gradient(to bottom, transparent 0%, #000 22%, #000 64%, transparent 100%);
    mask-image: url('../img/wave_footer.svg'), linear-gradient(to bottom, transparent 0%, #000 22%, #000 64%, transparent 100%);
    animation-name: haco-current-flow-reverse;
    animation-duration: 27s;
}

.front-page .ocean-current--local {
    color: #3d8bc7;
}

.front-page .ocean-current--local .ocean-current__wave--top {
    top: 18%;
}

.front-page .ocean-current--local .ocean-current__wave--bottom {
    top: 72%;
    -webkit-mask-image: url('../img/wave_intro_bottom.svg'), linear-gradient(to bottom, transparent 0%, #000 18%, #000 62%, transparent 100%);
    mask-image: url('../img/wave_intro_bottom.svg'), linear-gradient(to bottom, transparent 0%, #000 18%, #000 62%, transparent 100%);
}

.front-page .ocean-current--shooting {
    color: rgba(255, 255, 255, .9);
}

.front-page .ocean-current--shooting .ocean-current__wave--top {
    top: 25%;
    opacity: .045;
    animation-duration: 25s;
}

.front-page .ocean-current--shooting .ocean-current__wave--bottom {
    top: 73%;
    height: clamp(120px, 16vw, 230px);
    opacity: .03;
    -webkit-mask-image: url('../img/wave_bottom.svg'), linear-gradient(to bottom, transparent 0%, #000 20%, #000 66%, transparent 100%);
    mask-image: url('../img/wave_bottom.svg'), linear-gradient(to bottom, transparent 0%, #000 20%, #000 66%, transparent 100%);
}

.front-page .ocean-current--journal {
    color: #fff;
}

.front-page .ocean-current--journal .ocean-current__wave--top {
    top: 14%;
    opacity: .04;
}

.front-page .ocean-current--journal .ocean-current__wave--bottom {
    top: 66%;
    opacity: .028;
}

@keyframes haco-current-flow {
    0%, 100% { transform: translate3d(-1.8%, 0, 0) scaleX(1.015); }
    50% { transform: translate3d(1.8%, 7px, 0) scaleX(.985); }
}

@keyframes haco-current-flow-reverse {
    0%, 100% { transform: translate3d(2%, 5px, 0) scaleX(.985); }
    50% { transform: translate3d(-2%, -5px, 0) scaleX(1.02); }
}

/* A faint moving deep-sea shadow gives START its own identity without a hard block. */
.front-page .consumer-contact-strip::before {
    display: block;
    opacity: .04;
    mix-blend-mode: soft-light;
    animation: haco-contact-tide 24s ease-in-out infinite;
}

.front-page .consumer-contact-strip::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 2% -7% -12%;
    background: rgba(255, 255, 255, .07);
    pointer-events: none;
    will-change: transform;
    -webkit-mask-image: url('../img/work-together.svg'), linear-gradient(to bottom, transparent 0%, #000 16%, #000 68%, transparent 100%);
    mask-image: url('../img/work-together.svg'), linear-gradient(to bottom, transparent 0%, #000 16%, #000 68%, transparent 100%);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 108% 108%;
    mask-size: 108% 108%;
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    animation: haco-deep-shadow 26s ease-in-out infinite;
}

@keyframes haco-contact-tide {
    0%, 100% { transform: translate3d(-1.5%, 0, 0) scaleX(1.04); }
    50% { transform: translate3d(1.5%, 7px, 0) scaleX(.98); }
}

@keyframes haco-deep-shadow {
    0%, 100% { transform: translate3d(-1.2%, 0, 0) rotate(-.25deg) scale(1.01); }
    50% { transform: translate3d(1.5%, -10px, 0) rotate(.35deg) scale(1.035); }
}

.front-page .work-together__img1 img {
    animation-delay: 0s, -.7s;
}

.front-page .work-together__img2 img {
    animation-delay: -4s, -2.8s;
}

.front-page .work-together__img3 img {
    animation-delay: -8s, -5.1s;
}

@media (max-width: 768px) {
    .front-page .main-visual {
        padding-top: 315px;
    }

    .front-page .main-visual__catchcopy {
        top: 96px;
    }

    .front-page .consumer-intro__inner {
        padding-bottom: 4.5rem;
    }

    .front-page .consumer-route-copy {
        margin-bottom: 2.5rem;
    }

    .front-page .consumer-section {
        width: min(100% - 36px, var(--container));
        padding: 6rem 0;
    }

    .front-page .consumer-section + .consumer-section::before {
        height: 24px;
        margin-bottom: 3.5rem;
    }

    .front-page .consumer-section__heading {
        margin-bottom: 3.5rem;
    }

    .front-page .stay-grid {
        gap: 5.5rem;
    }

    .front-page .stay-card:nth-child(even),
    .front-page .journal-grid article:nth-child(2) {
        transform: none;
    }

    .front-page .stay-card__image {
        height: min(72vw, 340px);
        border-radius: 14px;
    }

    .front-page .guide-feature {
        min-height: 0;
        padding: 0;
        background-image: none;
    }

    .front-page .journal-grid {
        gap: 1.5rem;
    }

    .front-page .consumer-contact-strip {
        margin-top: 2rem;
        padding: 5rem 0 4rem;
    }

    .front-page .consumer-contact-strip::before {
        top: 0;
        height: 82px;
    }

    .front-page .ocean-current__wave {
        height: 74px;
        opacity: .035;
    }

    .front-page .ocean-current__wave--bottom {
        display: none;
    }

    .front-page .consumer-contact-strip::after {
        inset: 8% -28% -4%;
        opacity: .7;
    }

    .front-page .consumer-contact-strip .work-together__inner {
        padding: 4.5rem 20px 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .front-page .ocean-current__wave,
    .front-page .consumer-contact-strip::before,
    .front-page .consumer-contact-strip::after {
        animation: none;
    }
}
