@charset "UTF-8";

:root {
    --ocean: #53B6C6;
    --ocean-dark: #0F3A57;
    --ocean-mid: #58bcdd;
    --ocean-light: #A3F2FF;
    --sea-foam: #BBE7FF;

    --bg-top: #F5FBFF;
    --bg-mid: #EAF6FF;
    --warm-white: #FFFFFF;

    --text: #0B1F2A;
    --text-sub: #355768;

    --border: rgba(83, 182, 198, .22);
    --shadow-sm: 0 2px 10px rgba(15, 58, 87, .06);
    --shadow-md: 0 10px 28px rgba(15, 58, 87, .10);
    --shadow-lg: 0 26px 70px rgba(15, 58, 87, .16);

    --radius: 20px;
    --radius-sm: 14px;
    --max: 1100px;

    --cta-primary: linear-gradient(135deg, #0F3A57 0%, #1F6D86 55%, #53B6C6 100%);
    --cta-secondary-bg: rgba(255, 255, 255, .96);
    --cta-secondary-text: #0F3A57;

    --accent-yellow: #FFD93D;
    --accent-yellow-dark: #E6C237;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, var(--bg-top) 0%, #fff 28%, #fff 100%);
    line-height: 1.95;
    font-weight: 400;
    font-size: 17px;
}

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

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

h1,
h2,
h3 {
    line-height: 1.35;
    font-weight: 700;
    margin: 0;
}

p {
    margin: 0;
    color: var(--text-sub);
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

.pconly {
    display: inline;
}

.sponly {
    display: none;
}

/* ACCESSIBILITY */
.skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    background: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    outline: 3px solid rgba(187, 231, 255, .95);
    outline-offset: 3px;
    z-index: 9999;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(187, 231, 255, .95);
    outline-offset: 3px;
    border-radius: 12px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    user-select: none;
    transition: transform .12s ease, box-shadow .15s ease, background .15s ease, filter .15s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: none;
}

.btn.primary {
    background: var(--accent-yellow);
    color: var(--ocean-dark);
    box-shadow: 0 10px 25px rgba(255, 217, 61, 0.4);
}

.btn.primary:hover {
    filter: brightness(1.03);
}

.btn.sm {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 12px;
}

/* HEADER */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(245, 251, 255, .92);
    backdrop-filter: blur(12px) saturate(160%);
    border-bottom: 1px solid rgba(83, 182, 198, .16);
    transition: box-shadow .25s ease;
}

#site-header.scrolled {
    box-shadow: 0 10px 30px rgba(15, 58, 87, .10);
}

.head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.brand-mark img {
    width: 80%;
}

.brand-text {
    min-width: 0;
}

.brand-text .name {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .03em;
    color: #6F824F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-text .sub {
    font-size: 10px;
    color: var(--text-sub);
    letter-spacing: .02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    font-size: 14px;
    color: var(--text-sub);
    padding: 10px 12px;
    border-radius: 12px;
    transition: background .15s ease, color .15s ease;
    letter-spacing: .02em;
}

.site-nav a:hover {
    background: rgba(187, 231, 255, .85);
    color: var(--sea-foam);
}

.head-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.menu-toggle {
    display: none;
    position: relative;
    z-index: 1200;
    width: 52px;
    height: 52px;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    background: none;
    border: none;
}

.menu-toggle span {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: var(--cta-secondary-text);
    border-radius: 999px;
    transform: translateX(-50%);
    transition: transform .25s ease, opacity .25s ease, top .25s ease;
}

.menu-toggle span:nth-child(1) {
    top: 17px;
}

.menu-toggle span:nth-child(2) {
    top: 25px;
}

.menu-toggle span:nth-child(3) {
    top: 33px;
}

.menu-toggle.is-open span:nth-child(1) {
    top: 25px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    top: 25px;
    transform: translateX(-50%) rotate(-45deg);
}

/* HERO */
.hero {
    position: relative;
    min-height: 92svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/fv-img01.jpg') no-repeat center / cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .26) 0%, rgba(0, 0, 0, .12) 36%, rgba(0, 0, 0, .04) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .12) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 56px 0 40px;
}

.hero .wrap {
    display: flex;
    flex-direction: column;
    min-height: calc(82svh - 72px);
}

.hero-content {
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: .06em;
    color: #fff;
    border: 1px solid rgba(187, 231, 255, .35);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sea-foam);
    box-shadow: 0 0 0 6px rgba(187, 231, 255, .18);
}

.hero h1 {
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: .01em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .30);
    line-height: 1.28;
}

.hero h1 em {
    font-style: normal;
    color: var(--sea-foam);
}

.hero-desc {
    color: rgba(255, 255, 255, .94);
    font-size: 18px;
    line-height: 2.05;
    margin: 0 0 24px;
    max-width: 58ch;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .34);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

.hero-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #222;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(187, 231, 255, .36);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.hero-actions {
    margin-top: auto;
    padding-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1040px;
    width: 100%;
}

.hero-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 108px;
    padding: 20px 24px;
    border-radius: 22px;
    border: 1px solid rgba(83, 182, 198, .22);
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
    box-shadow: 0 18px 46px rgba(15, 58, 87, .14);
}

.hero-action-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

.hero-action-btn:active {
    transform: translateY(0);
}

.hero-action-btn.primary {
    background: var(--accent-yellow);
    color: var(--ocean-dark);
    border-bottom: 8px solid var(--accent-yellow-dark);
    box-shadow: 0 14px 34px rgba(255, 217, 61, 0.35);
}

.hero-action-btn.secondary {
    background: rgba(255, 255, 255, .92);
    color: var(--cta-secondary-text);
    border: 1px solid rgba(187, 231, 255, .75);
    box-shadow: 0 16px 40px rgba(15, 58, 87, .12);
    border-bottom: 8px solid rgba(187, 231, 255);
}

.hero-action-text b {
    display: block;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: .01em;
    line-height: 1.2;
}

.hero-action-text span {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.5;
    opacity: .96;
}

.hero-action-btn.secondary .hero-action-text b {
    color: #0e3550;
}

.hero-action-btn.secondary .hero-action-text span {
    color: #28506d;
}

/* SECTION COMMON */
section {
    padding: 82px 0;
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ocean-mid);
    font-weight: 700;
    margin-bottom: 12px;
}

.sec-label::before {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ocean-light), var(--sea-foam));
}

.sec-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 900;
    letter-spacing: .01em;
    margin: 0 0 14px;
    color: #222;
}

.sec-title-white {
    color: #fff;
}

.sec-title-narrow {
    max-width: 24ch;
}

.sec-desc {
    font-size: 17px;
    line-height: 2.05;
    margin: 0 0 44px;
    color: var(--text-sub);
}

.sec-desc-no-margin {
    margin-bottom: 0;
}

/* NUMBERS */
.numbers-strip {
    background: linear-gradient(135deg, var(--ocean) 0%, #0d2b3d 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.numbers-strip::before {
    content: '';
    position: absolute;
    inset: -40px -40px auto -40px;
    height: 240px;
    background:
        radial-gradient(520px 240px at 20% 20%, rgba(187, 231, 255, .20), transparent 60%),
        radial-gradient(520px 240px at 80% 10%, rgba(83, 182, 198, .18), transparent 62%);
    pointer-events: none;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
}

.number-item {
    text-align: center;
    padding: 22px 18px;
    border-right: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.number-item:last-child {
    border-right: none;
}

.number-item .num {
    font-family: 'Noto Serif JP', serif;
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -.01em;
}

.number-item .unit {
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
}

.unit-years,
.unit-days {
    font-size: 18px;
}

.number-item .label {
    font-size: 12px;
    color: rgba(255, 255, 255, .62);
    margin-top: 10px;
    letter-spacing: .05em;
}

/* FEATURES */

section#features .sec-label {
    color: var(--bg-top);
}

p.sec-desc.mar30px {
    margin-bottom: 30px;
}


.features {
    background: url(../img/feature-main_bg.jpg) no-repeat center;
    background-size: cover;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    background: #fff;
    border: 1px solid rgba(83, 182, 198, .22);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-num {
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--ocean-mid);
    margin-bottom: 14px;
    font-weight: 700;
}

.feature-card h3 {
    font-size: 20px;
    margin: 0 0 10px;
    color: var(--text);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-sub);
    line-height: 2;
}

.feature-card.featured {
    background: linear-gradient(135deg, var(--ocean) 0%, #0d2b3d 100%);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.feature-card.featured .feature-num {
    color: rgba(255, 255, 255, .80);
}

.feature-card.featured h3 {
    color: #fff;
}

.feature-card.featured p {
    color: rgba(255, 255, 255, .78);
}






/* COMMON LARGE BUTTONS */
.btn-group {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
}

.btn-container {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-base {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 22px 30px;
    font-size: 22px;
    font-weight: 900;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-yellow {
    background: var(--accent-yellow);
    color: var(--ocean-dark);
    border-bottom: 6px solid var(--accent-yellow-dark);
    box-shadow: 0 10px 25px rgba(255, 217, 61, 0.4);
}

.btn-yellow:hover {
    transform: translateY(2px);
    border-bottom-width: 4px;
    box-shadow: 0 6px 15px rgba(255, 217, 61, 0.3);
}

.btn-yellow:active {
    transform: translateY(6px);
    border-bottom-width: 0;
    box-shadow: none;
}

.btn-white-blue {
    background: #fff;
    color: var(--ocean-dark);
    border: 3px solid var(--ocean);
    border-bottom: 6px solid var(--ocean);
    box-shadow: 0 10px 20px rgba(15, 58, 87, 0.08);
}

.btn-white-blue:hover {
    background: var(--bg-top);
    transform: translateY(2px);
    border-bottom-width: 4px;
}

.btn-white-blue:active {
    transform: translateY(6px);
    border-bottom-width: 0;
    box-shadow: none;
}

.btn-base span::after {
    content: "▶";
    margin-left: 12px;
    font-size: 18px;
    vertical-align: middle;
}

/* ENVIRONMENT */
.view-section {
    background: linear-gradient(135deg, var(--ocean) 0%, #BBE7FF 100%);
    position: relative;
    overflow: hidden;
}

.view-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(187, 231, 255, .16) 0%, transparent 55%),
        radial-gradient(ellipse 60% 80% at 12% 90%, rgba(83, 182, 198, .14) 0%, transparent 60%);
    pointer-events: none;
}

.view-section .sec-label {
    color: rgba(255, 255, 255, .78);
}

.view-section .sec-title {
    color: #fff;
}

.view-section .sec-desc {
    color: rgba(255, 255, 255, .78);
}



.view-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.view-card {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 6;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    position: relative;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}



.view-card .vc-img {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(83, 182, 198, .35), rgba(15, 58, 87, .75));
}

.vc-img-01 {
    background: url('../img/vc-body_img01.jpg') no-repeat center / cover !important;
}

.vc-img-02 {
    background: url('../img/vc-body_img02.jpg') no-repeat center / cover !important;
}

.vc-img-03 {
    background: url('../img/vc-body_img03.jpg') no-repeat center / cover !important;
}

.view-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(11, 31, 42, .60) 100%);
}

.view-card .vc-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 22px 20px;
}

.view-card .vc-label {
    font-size: 10px;
    letter-spacing: .12em;
    color: rgba(187, 231, 255, .92);
    margin-bottom: 8px;
    font-weight: 700;
}

.view-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.view-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, .78);
    margin: 0;
    line-height: 1.85;
}

/* CARE */
.care-section {
    background: #fff;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.care-card {
    background: #fff;
    border: 1px solid rgba(83, 182, 198, .22);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 18px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.care-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.care-card .care-ico {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}

.care-card .care-ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.care-card .care-body h3 {
    font-size: 19px;
    margin: 0 0 10px;
    color: var(--text-sub);
    font-weight: 900;
}

.care-card .care-body p {
    font-size: 15px;
    color: var(--text-sub);
    line-height: 2;
}

.care-card.accent {
    background: linear-gradient(135deg, var(--ocean) 0%, #0d2b3d 100%);
    border-color: transparent;
    grid-column: 1 / -1;
    box-shadow: var(--shadow-lg);
}

.care-card.accent .care-body h3 {
    color: #fff;
}

.care-card.accent .care-body p {
    color: rgba(255, 255, 255, .80);
}

.note-box {
    margin-top: 18px;
    padding: 18px 20px;
    background: rgba(187, 231, 255, .35);
    border: 1px solid rgba(83, 182, 198, .22);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.95;
}

.note-box-light {
    background: rgba(255, 255, 255, .60);
    border-color: rgba(83, 182, 198, .20);
}

.price-note-strong {
    color: var(--text-sub);
}

.price-note-link {
    color: var(--ocean-mid);
    font-weight: 900;
}

/* MEAL */
.meal-section {
    background: linear-gradient(180deg, var(--bg-mid) 0%, #fff 70%);
}

.meal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: end;
}

.meal-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    grid-template-rows: 1fr 1fr;
    align-items: stretch;
}

.meal-img-wrap {
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(187, 231, 255, .35);
    border: 1px solid rgba(83, 182, 198, .18);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.meal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meal-img-wrap.tall {
    grid-row: 1 / 3;
    aspect-ratio: auto;
    min-height: 340px;
}

.meal-points {
    display: grid;
    gap: 14px;
    margin: 22px 0 0;
}

.meal-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(83, 182, 198, .22);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.meal-point .mp-body b {
    display: block;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 4px;
    color: var(--ocean);
}

.meal-point .mp-body span {
    font-size: 15px;
    color: var(--text-sub);
}

/* PRICE */
.price-section {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        url('../img/mv_02.jpg');
    background-size: cover;
}

.price-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.price-card {
    background: #fff;
    border: 1px solid rgba(83, 182, 198, .22);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
}

.price-card.featured {
    background: linear-gradient(135deg, var(--ocean) 0%, #0d2b3d 100%);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.price-card .pc-label {
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--ocean-mid);
    margin-bottom: 10px;
    font-weight: 800;
}

.price-card.featured .pc-label {
    color: rgba(255, 255, 255, .80);
}

.price-card h3 {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 6px;
    color: var(--ocean);
}

.price-card.featured h3 {
    color: #fff;
}

.price-note {
    font-size: 13px;
    margin: 0 0 18px;
    color: var(--text-sub);
}

.price-card.featured .price-note {
    color: rgba(255, 255, 255, .70);
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.price-amount .from {
    font-size: 12px;
    color: rgba(53, 87, 104, .85);
}

.price-amount .num {
    font-family: 'Noto Serif JP', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: var(--ocean);
}

.price-card.featured .price-amount .num {
    color: var(--warm-white);
}

.price-amount .unit {
    font-size: 14px;
    color: rgba(53, 87, 104, .95);
    font-weight: 700;
}

.price-amount .to {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    color: var(--ocean);
    font-weight: 700;
}

.price-card.featured .price-amount .to {
    color: var(--sea-foam);
}

.price-from-white,
.price-unit-white {
    color: rgba(255, 255, 255, .76) !important;
}

.price-disclaimer {
    font-size: 11px;
    color: rgba(53, 87, 104, .85);
    margin: 0 0 16px;
    line-height: 1.8;
}

.price-card.featured .price-disclaimer {
    color: rgba(255, 255, 255, .55);
}

/* FLOW */




.flow-section {
    background: url(../img/mv_process_img.jpg) no-repeat;
    background-size: cover;
}

section#flow .wrap {
    margin-right: 50px;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.flow-step {
    text-align: left;
    padding: 18px 16px;
    background: rgba(255, 255, 255, .90);
    border: 1px solid rgba(83, 182, 198, .22);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.flow-step .fs-num {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(187, 231, 255, .55);
    border: 1px solid rgba(83, 182, 198, .20);
    display: grid;
    place-items: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--ocean);
    margin-bottom: 12px;
}

.flow-step h3 {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 10px;
    color: var(--ocean);
}

.flow-step p {
    font-size: 15px;
    color: var(--text-sub);
    line-height: 1.95;
}

/* FAQ */
.faq-section {
    background: #fff;
    margin-top: 80px;
}

.faq-section-tight {
    padding-top: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

details {
    background: #fff;
    border: 1px solid rgba(83, 182, 198, .22);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
    font-weight: 900;
    color: var(--ocean);
    background: linear-gradient(180deg, rgba(187, 231, 255, .28), rgba(255, 255, 255, .0));
}

summary::-webkit-details-marker {
    display: none;
}

summary .sq {
    flex: 1;
}

summary .schev {
    flex: 0 0 auto;
    color: var(--ocean-light);
    transition: transform .2s ease;
}

details[open] summary .schev {
    transform: rotate(180deg);
}

.faq-ans {
    padding: 0 18px 18px;
    font-size: 15px;
    color: var(--text-sub);
    line-height: 2;
}

.faq-ans p {
    margin: 0 0 8px;
}

.faq-ans p:last-child {
    margin: 0;
}

.faq-link {
    color: var(--ocean-mid);
    font-weight: 900;
}

/* CONTACT */
.contact-section {
    background: linear-gradient(135deg, var(--ocean) 0%, #0d2b3d 100%);
    position: relative;
    overflow: hidden;
    overflow-x: clip;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(187, 231, 255, .14) 0%, transparent 60%);
    pointer-events: none;
}

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

.contact-section .sec-label {
    color: rgba(255, 255, 255, .78);
}

.contact-section .sec-title {
    color: #fff;
}

.contact-section .sec-desc {
    color: rgba(255, 255, 255, .78);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.contact-layout>* {
    min-width: 0;
}

.contact-card,
.tel-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    padding: 30px 26px;
    backdrop-filter: blur(10px);
}

.contact-card h3,
.tel-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px;
}

.contact-card .cc-desc,
.tel-card .tc-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .76);
    margin: 0 0 22px;
    line-height: 2;
}

.contact-cta-card {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
        linear-gradient(135deg, rgba(120, 220, 255, .20), rgba(255, 255, 255, .10));
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, .14),
        inset 0 1px 0 rgba(255, 255, 255, .12);
}

.contact-cta-inner {
    width: 100%;
    min-width: 0;
    padding: 32px 28px;
}

.contact-cta-card h3 {
    font-size: 32px;
    margin-bottom: 14px;
}

.contact-cta-card .cc-desc {
    line-height: 1.9;
    color: rgba(255, 255, 255, .85);
}

.contact-cta-label {
    font-size: 12px;
    letter-spacing: .18em;
    font-weight: 800;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 12px;
}

.btn-group.contact-cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 24px 0 0;
    gap: 16px;
    flex-direction: column;
}

.btn-group.contact-cta .btn-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.btn-group.contact-cta .btn-base {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-group.contact-cta .btn-base span {
    display: block;
    width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: 15px;
}

.contact-cta-note {
    margin-top: 22px;
    padding: 16px 18px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
}

.tel-number {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
    transition: transform .12s ease, background .15s ease;
}

.tel-number:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .96);
}

.tel-ico {
    font-size: 30px;
    flex: 0 0 auto;
}

.tel-body .free {
    display: block;
    font-size: 11px;
    color: var(--cta-secondary-text);
    letter-spacing: .06em;
    margin-bottom: 2px;
    font-weight: 700;
}

.tel-body .num {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--cta-secondary-text);
    letter-spacing: .03em;
    line-height: 1.1;
}

.tel-body .hours {
    display: block;
    font-size: 12px;
    color: var(--cta-secondary-text);
    margin-top: 4px;
}

.checklist {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, .80);
    line-height: 1.85;
}

.check-item::before {
    content: '✓';
    color: var(--sea-foam);
    font-weight: 900;
    margin-top: 1px;
}

.contact-access {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.contact-access .ca-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .60);
    letter-spacing: .08em;
    margin-bottom: 8px;
    font-weight: 800;
}

.contact-access p {
    font-size: 13px;
    color: rgba(255, 255, 255, .80);
    line-height: 1.85;
}

.contact-access-link {
    color: var(--sea-foam);
    font-weight: 900;
}

/* FOOTER */
footer {
    background: rgba(245, 251, 255, .92);
    padding: 46px 0 10px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: start;
    margin-bottom: 32px;
}

.foot-brand .name {
    font-size: 16px;
    font-weight: 700;
    color: #6F824F;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.foot-brand .sub {
    font-size: 12px;
    color: #444;
    margin-bottom: 14px;
}

.foot-brand .assoc {
    font-size: 11px;
    color: #444;
    line-height: 1.9;
}

.foot-nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 8px 28px;
}

.foot-nav a {
    font-size: 13px;
    color: #444;
    transition: color .15s ease;
}

.foot-nav a:hover {
    color: var(--ocean);
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 18px;
}

.foot-bottom .copy {
    font-size: 12px;
    color: #222;
    text-align: center;
}

/* STICKY CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: rgba(245, 251, 255, .92);
    border-top: 1px solid rgba(83, 182, 198, .22);
    backdrop-filter: blur(12px) saturate(160%);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}

.sticky-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 10px;
    border-radius: 14px;
    font-weight: 900;
    letter-spacing: .02em;
    border: 1px solid rgba(83, 182, 198, .22);
    box-shadow: var(--shadow-sm);
}

.sticky-btn.primary {
    background: var(--cta-primary);
    color: #fff;
    border-color: rgba(255, 255, 255, .14);
}

.sticky-btn.secondary {
    background: #fff;
    color: var(--ocean);
}

/* ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .55s ease, transform .55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .head {
        gap: 12px;
    }

    .head-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        background: rgba(18, 78, 98, .96);
        border: 1px solid rgba(255, 255, 255, .12);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        z-index: 1100;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        display: block;
        padding: 14px 16px;
        color: #fff;
        font-weight: 700;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .brand {
        min-width: 0;
        flex: 1 1 auto;
    }

    .brand-text .sub {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero .wrap {
        min-height: auto;
    }

    .hero-inner {
        padding: 56px 0 32px;
    }

    .hero-actions {
        gap: 18px;
    }

    .hero-action-text b {
        font-size: 22px;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features {
        background: #F5FBFF;
    }


    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .room-layout {
        grid-template-columns: 1fr;
    }

    .room-specs {
        grid-template-columns: 1fr;
    }

    .view-grid {
        grid-template-columns: 1fr;
    }

    .view-card {
        aspect-ratio: 16/9;
    }

    .view-card h3 {
        font-size: 22px;
        color: #fff;
    }

    .view-card p {
        font-size: 16px;
        color: #fff;
    }


    .view-card::after {
        background: linear-gradient(0deg, transparent 2%, rgba(11, 31, 42, .80) 100%);
    }


    .care-grid {
        grid-template-columns: 1fr;
    }

    .care-card {
        flex-direction: column;
    }

    .care-card.accent {
        grid-column: auto;
    }

    .meal-layout {
        grid-template-columns: 1fr;
    }

    .price-layout {
        grid-template-columns: 1fr;
    }

    .flow-steps {
        grid-template-columns: 1fr 1fr;
    }

    .faq-section {
        margin-top: 0;
    }


    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-cta-card h3 {
        font-size: 22px;
    }

    .foot-grid {
        grid-template-columns: 1fr;
    }

    .foot-nav {
        grid-template-columns: repeat(2, auto);
    }

    .sticky-cta {
        display: block;
        padding: 0;
    }

    .sticky-inner {
        gap: 0;
    }

    .sticky-btn {
        border-radius: 0;
    }

    section {
        padding: 64px 0;
    }
}

@media (max-width: 640px) {
    .pconly {
        display: none;
    }

    .sponly {
        display: inline;
    }

    body {
        font-size: 16.5px;
    }

    .hero {
        min-height: auto;
        padding-top: 64px;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, .14) 46%, rgba(0, 0, 0, .18) 100%);
    }

    .hero-bg {
        background: url('../img/fv-img01_sp.jpg') no-repeat center / cover;
    }

    .hero-inner {
        padding: 34px 0 24px;
    }

    .hero .wrap {
        min-height: auto;
    }

    .hero-content {
        max-width: none;
    }

    .hero-eyebrow {
        font-size: 11px;
        gap: 8px;
        padding: 7px 12px;
        margin-bottom: 16px;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.28;
        margin-bottom: 14px;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 18px;
    }

    .hero-desc br {
        display: none;
    }

    .hero-desc br.sponly {
        display: inline;
    }

    .hero-badges {
        gap: 8px;
    }

    .hero-badge-item {
        font-size: 14px;
        padding: 9px 12px;
        line-height: 1.45;
    }

    .hero-actions {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 80px;
    }

    .hero-action-btn {
        min-height: 92px;
        padding: 16px 18px;
        border-radius: 18px;
    }

    .hero-action-text b {
        font-size: 17px;
    }

    .hero-action-text span {
        margin-top: 5px;
        font-size: 12px;
    }

    .sec-title {
        font-size: 22px !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .flow-section {
        background: #fff;
    }
    
    section#flow .wrap {
        margin-right: 0;
    }


    p.sec-desc.mar30px {
        margin-bottom: 10px;
    }

    .flow-steps {
        grid-template-columns: 1fr;
    }

    .btn-base {
        font-size: 18px;
    }

    .brand-text .name {
        font-size: 14px;
    }

    .contact-section .wrap {
        width: min(100% - 24px, 1200px);
    }

    .contact-cta-inner {
        padding: 0;
    }

    .contact-cta-card h3 {
        font-size: 28px;
        line-height: 1.4;
    }

    .contact-cta-card .cc-desc {
        font-size: 14px;
        line-height: 1.8;
    }

    .btn-group.contact-cta {
        margin-top: 20px;
        gap: 12px;
    }

    .btn-group.contact-cta .btn-container {
        min-width: 0;
        max-width: none;
    }

    .btn-group.contact-cta .btn-base {
        min-height: 72px;
        padding: 14px 12px;
        border-radius: 16px;
    }

    .contact-cta-note {
        margin-top: 16px;
        padding: 0;
        font-size: 13px;
        line-height: 1.8;
    }

    .tel-number {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}














/* ========================================
   ROOM SECTION
======================================== */
.room-section {
    position: relative;
    background: #eef5f8;
    padding: 34px 0 92px;
    overflow: hidden;
}

.room-section .wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========================================
   HEAD
======================================== */
.room-head {
    margin-bottom: 34px;
}

.room-head-main {
    max-width: 980px;
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #61bdd0;
    font-weight: 700;
    margin-bottom: 18px;
}

.sec-label::before {
    content: "";
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: #9cdbe7;
}

.sec-title {
    margin: 0 0 20px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #1d2636;
}

.sec-desc {
    margin: 0;
    font-size: 18px;
    line-height: 2;
    font-weight: 700;
    color: #5a6d7d;
}

/* ========================================
   MAIN LAYOUT
======================================== */
.room-main {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) 280px;
    gap: 40px;
    align-items:stretch;
}

/* ========================================
   VISUAL
======================================== */
.room-visual {
    position: relative;
    min-width: 0;
    height:100%;
}

.room-visual .main-img {
    width: 100%;
    height:100%;
    min-height:640px;
    border-radius: 34px;
    overflow: hidden;
    background: url(../img/mv_01.jpg) no-repeat center center / cover;
    border: 1px solid rgba(133, 187, 202, 0.18);
    box-shadow: 0 10px 26px rgba(39, 70, 95, 0.07);
}

/* ========================================
   CIRCLE BADGE
======================================== */
.hero-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 5;
    pointer-events: none;
}

.hero-badge-inner {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: linear-gradient(135deg, #59c2d3 0%, #1b6a83 58%, #124e67 100%);
    color: #fff;
    box-shadow: 0 18px 40px rgba(18, 80, 106, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-badge-top {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    line-height: 1;
}

.hero-badge-num {
    font-size: 74px;
    line-height: 0.88;
    letter-spacing: -0.04em;
    font-weight: 400;
    color: #dff8ff;
    font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.hero-badge-unit {
    font-size: 24px;
    line-height: 1.05;
    font-weight: 800;
    padding-bottom: 10px;
    color: #ffffff;
}

.hero-badge-sub {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
    letter-spacing: 0.02em;
}

/* ========================================
   SPECS
======================================== */
.room-specs {
    display: grid;
    grid-template-rows:repeat(4,1fr);
    gap:22px;
    height:100%;
}

.room-spec-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
    padding: 28px 26px;
    background: #ffffff;
    border: 1px solid #d9e9ee;
    border-radius: 24px;
    box-shadow: 0 6px 16px rgba(34, 64, 88, 0.05);
}

.room-spec-item .rsi-label {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.5;
    color: #3e4a57;
    font-weight: 700;
}

.room-spec-item .rsi-val {
    font-size: 29px;
    line-height: 1.28;
    color: #57bfd0;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.room-spec-item .rsi-sub {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #5d7180;
    font-weight: 700;
}


.room-spec-item.spec-feature .rsi-val {
    font-size: 36px;
    line-height: 1.12;
}

/* ========================================
   TABLET
======================================== */
@media (max-width: 1100px) {
    .room-section {
        padding: 34px 0 78px;
    }

    .room-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .room-visual .main-img {
        height: 560px;
    }

    .hero-badge {
        top: 24px;
        right: 24px;
    }

    .hero-badge-inner {
        width: 170px;
        height: 170px;
    }

    .hero-badge-num {
        font-size: 66px;
    }

    .hero-badge-unit {
        font-size: 21px;
        padding-bottom: 8px;
    }

    .room-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

/* ========================================
   MOBILE
======================================== */
@media (max-width: 767px) {
    .room-section {
        padding: 26px 0 62px;
    }

    .room-section .wrap {
        padding: 0 18px;
    }

    .room-head {
        margin-bottom: 24px;
    }

    .sec-label {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .sec-label::before {
        width: 30px;
    }

    .sec-title {
        font-size: clamp(32px, 10vw, 46px);
        line-height: 1.35;
        margin-bottom: 16px;
    }

    .sec-desc {
        font-size: 15px;
        line-height: 1.9;
    }

    .room-main {
        gap: 18px;
    }

    .room-visual .main-img {
        height: 200px;
        min-height: 200px;
        border-radius: 24px;
    }

    .hero-badge {
        top: 14px;
        right: 14px;
    }

    .hero-badge-inner {
        width: 112px;
        height: 112px;
    }

    .hero-badge-num {
        font-size: 42px;
    }

    .hero-badge-unit {
        font-size: 14px;
        padding-bottom: 5px;
    }

    .hero-badge-sub {
        margin-top: 5px;
        font-size: 9px;
        line-height: 1.35;
    }

    .room-specs {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .room-spec-item {
        min-height: auto;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .room-spec-item .rsi-label {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .room-spec-item .rsi-val {
        font-size: 28px;
    }

    .room-spec-item.spec-feature .rsi-val {
        font-size: 34px;
    }

}














