:root {
    --primary: #1ab2d8;
    --primary-dark: #0e8eac;
    --primary-light: #e8f8fc;
    --accent: #1a3a6e;
    --text: #333;
    --text-light: #fff;
    --step-line: #b0e0ef;
    --reserve: #20AEE5;
    --reserve-dark: #1b93c2;
    --min: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

* { box-sizing: border-box; }

.site-content .mainvisulal-wrap {
    height: 0;
}
.site-content .mainvisulal-wrap .catch-wrap {
    display: none;
}
.site-content .mainvisulal-wrap .mainVisual {
    display: none;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 15px;
}

/* ─── Hero Banner ─── */
.hero-banner {
    background: var(--reserve);
    height: 600px;
    display: flex;
    align-items: center;
    padding-top: 48px;
    position: relative;
    overflow: hidden;
}
.hero-wrap {
    display: flex;
    justify-content: center;
    gap: 4rem;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: -40px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
}
.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.hero-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}
.hero-icon-circle {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-icon-circle .center-icon {
    font-size: 70px;
    color: #fff;
}
.hero-icon-circle .sub-icon {
    position: absolute;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #fff;
}
.hero-icon-circle .sub-icon.top-left  { top: 14px; left: 14px; }
.hero-icon-circle .sub-icon.top-right { top: 14px; right: 14px; }
.hero-icon-circle .sub-icon.bot-left  { bottom: 14px; left: 14px; }
.hero-icon-circle .sub-icon.bot-right { bottom: 14px; right: 14px; }

.hero-title {
    font-family: var(--min);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    width: fit-content;
}
.hero-desc {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    width: fit-content;
}
.hero-note {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin-bottom: 0;
    width: fit-content;
}
.hero-text-wrap {
    width: fit-content;
}
/* ─── Steps Section ─── */
.steps-section {
    padding: 60px 0 80px;
    background: #fff;
}
.steps-lead-wrap {
    width: fit-content;
    margin: 0 auto 6rem;
}
.steps-lead-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1rem;
}
.steps-lead-sub {
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* Step Item */
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-bottom: 5rem;
}
.step-item:last-child { padding-bottom: 0; }

/* Vertical line between steps */
.step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 0;
    width: 1px;
    background: var(--reserve);
    opacity: 0.5;
    margin-top: 10px;
    margin-bottom: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--reserve);
    color: #fff;
    border-radius: 50%;
    font-family: var(--min);
    font-size: 30px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-icon-box {
    font-size: 4rem;
    color: var(--reserve);
    display: flex;
    justify-content: center;
    opacity: .5;
    position: relative;
    width: 4rem;
    height: 4rem;
    margin-left: 1.5rem;
    margin-right: 1rem;
}
.step-icon-box .fas, .step-icon-box .far {
    position: absolute;
    top: -12px;
}

.step-content { flex: 1; }
.step-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1rem;
}
.step-body {
    line-height: 1.8;
}
.step-body ul {
    margin: 0;
}
.step-body ul li { margin-bottom: .25rem; }

.step-body-flex {
    display: flex;
    justify-content: space-between;
}
.step-last-message {
    display: flex;
    justify-content: center;
    margin-top: 6rem;
    font-family: var(--min);
    font-size: 2rem;
    font-weight: 700;
    color: #20aee5;
}
/* Reservation Button */
.btn-yoyaku {
    background: var(--reserve);
    width: 240px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 18px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    transition: background 0.2s;
}
.btn-yoyaku:hover { background: var(--reserve-dark); color: #fff; }

/* QR block */
.qr-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.qr-label {
    font-size: .8rem;
    opacity: .75;
}


/* ─── SP adjustments ─── */
@media (max-width: 767px) {
    .hero-wrap {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-text-wrap {
        margin: auto;
    }
    .hero-icon-wrap {
        margin: auto;
    }
    .hero-banner { padding: 30px 0 40px; }
    .hero-title { font-size: 2.4rem; }
    .hero-desc { font-size: 1rem; }
    .hero-note { font-size: 0.9rem; }
    .hero-icon-circle { width: 150px; height: 150px; }
    .hero-icon-circle .center-icon { font-size: 54px; }
    .hero-icon-circle .sub-icon { width: 42px; height: 42px; font-size: 17px; }
    .steps-lead-title { font-size: 2rem; }
    .steps-lead-sub { font-size: 1rem; }
    .step-title {
        font-size: 1.2rem;
        padding-top: .25rem;
    }
    .step-item {
        padding-bottom: 3rem;
    }
    .qr-block {display: none;}
    .step-icon-box {
        font-size: 2.5rem;
        width: 2.5rem;
        height: 2.5rem;
        margin: 0;
    }
    .step-icon-box .fas, .step-icon-box .far {
        top: 0;
    }
    .step-last-message {
        font-size: 1.5rem;
    }
    .btn-yoyaku {
        margin-top: 0;
        width: 200px;
    }
}
