:root {
    --pink: #dc426a;
    --pink-dark: #a7173d;
    --pink-light: #faeef2;
    --text-dark: #333333;
    --text-gray: #666666;
}

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

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family:
        "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
        "Yu Gothic", Meiryo, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: #ffffff;
}

.inner {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* =========================================
     Hero
  ========================================= */
.hero {
    max-width: 896px;
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1200 / 650;
    background: var(--pink) url(img/mv.jpg);
    margin: 0 auto;
    height: 550px;
}

.hero-bg {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 200%;
    height: 230px;
    white-space: nowrap;
    font-size: 0;
    animation: hero-bg-scroll 24s linear infinite;
}

.hero-bg-tile {
    display: inline-block;
    vertical-align: bottom;
    width: 50%;
    height: 230px;
    background-image: url(img/mv_town.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

@keyframes hero-bg-scroll {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

.hero-car {
    position: absolute;
    bottom: 3%;
    right: 60px;
    width: 250px;
    z-index: 2;
    pointer-events: none;
}

.hero-car img {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================================
     CTA Button
  ========================================= */
.cta {
    text-align: center;
    padding: 48px 24px;
}

.cta-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    max-width: 896px;
    margin: 0 auto;
}

.cta-inner {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 432px;
    min-width: 0;
}

.cta-group .cta-inner {
    flex: 1 1 0;
}

.cta-label {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: var(--pink-light);
    color: var(--pink);
    border: 2px solid var(--pink);
    font-size: 14px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 999px;
    margin-bottom: -10px;
    top: 10px;
    white-space: nowrap;
}

.cta-button {
    display: block;
    position: relative;
    z-index: 1;
    background: var(--pink);
    border: 2px solid var(--pink);
    border-radius: 16px;
    box-shadow: 0 6px 0 var(--pink-dark);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    padding: 28px 24px 20px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.2s ease;
}

.cta-button:hover {
    background: #fff;
    color: var(--pink);
}

.cta-button span {
    padding: 0 0 0 40px;
    background: url(img/ico_mail_w.png) 0 0.2em no-repeat;
}
.cta-button:hover span {
    padding: 0 0 0 40px;
    background: url(img/ico_mail.png) 0 0.2em no-repeat;
}

.cta-button-register span,
.cta-button-register:hover span {
    padding: 0;
    background: none;
}

/* =========================================
     Worry Section
  ========================================= */
.worry {
    background: var(--pink-light);
    padding: 48px 0 0;
}

.worry h2 {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
}

.worry h2 .accent {
    color: var(--pink);
}

.worry-list {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.worry-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.worry-bubble {
    position: relative;
    flex: 1;
    width: 100%;
    background: #ffffff;
    border: 2px solid var(--pink);
    border-radius: 16px;
    padding: 14px 12px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 28px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.worry-bubble::before {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 16px 12px 0 12px;
    border-style: solid;
    border-color: var(--pink) transparent transparent transparent;
}

.worry-bubble::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 14px 10px 0 10px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.worry-icon {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
     Solution heading
  ========================================= */
.solution-heading {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px 32px;
}

.solution-heading .brand {
    margin: 0 8px;
    display: inline-block;
}

/* =========================================
     Points
  ========================================= */
.points {
    width: 706px;
    padding: 0 0 16px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    border: 2px solid var(--pink);
    border-radius: 16px;
    padding: 24px 32px 24px 88px;
    margin: 0 auto;
    box-sizing: border-box;
}

.point-badge {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--pink);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.point-badge .label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.point-badge .num {
    font-size: 46px;
    font-weight: 700;
}

.point-body {
    flex: 1;
}

.point-body h3 {
    color: var(--pink);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

.point-body p {
    font-size: 14px;
    color: var(--text-gray);
}

.point-icon {
    flex-shrink: 0;
    width: 128px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon svg {
    width: 100%;
    height: 100%;
}

.point-icon .stroke {
    stroke: var(--pink);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.point-icon .fill {
    fill: var(--pink);
}

/* =========================================
     Map Section
  ========================================= */
.area {
    padding: 48px 24px 0;
}

.area-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    text-align: center;
}

.area-heading .accent {
    color: var(--pink);
}

.area-map {
    background: var(--pink-light);
    border-radius: 8px;
    padding: 24px 50px;
    margin: 0 auto 32px;
    width: 756px;
    box-sizing: border-box;
}

.area-map-legend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: bold;
}

.area-map-legend .swatch {
    width: 18px;
    height: 18px;
    background: var(--pink);
    border-radius: 4px;
    display: inline-block;
}

.area-map-figure {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    color: var(--pink);
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}

.area-list-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.area-list-title .dot {
    width: 14px;
    height: 14px;
    background: var(--pink);
    border-radius: 50%;
    display: inline-block;
}

.area-table {
    width: 100%;
    border-collapse: collapse;
}

.area-table tr {
    border-bottom: 1px solid #e6e6e6;
}

.area-table tr:first-child {
    border-top: 1px solid #e6e6e6;
}

.area-table th,
.area-table td {
    text-align: left;
    padding: 16px 8px;
    font-size: 15px;
    font-weight: normal;
    vertical-align: middle;
}

.area-table th {
    font-weight: bold;
    width: 90px;
    white-space: nowrap;
}

.area-table .pref {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    border-left: 1px dashed #d9d9d9;
}

.area-table .pref span {
    padding: 2px 10px;
    border-right: 1px solid #d9d9d9;
    font-size: 16px;
}

.area-table .note {
    color: var(--text-gray);
    font-size: 16px;
    margin-left: 4px;
}

footer {
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
}
.pc_none {
    display: none;
}

/* =========================================
     Responsive: 768px
  ========================================= */
@media screen and (max-width: 768px) {
    .hero {
        aspect-ratio: 750 / 900;
    }
    .hero {
        background: var(--pink);
        margin: 0 auto;
        height: 454px;
    }
    .hero-bg {
        bottom: 30px;
        left: 0;
        width: 1240px; /* ← 100% から変更 */
        height: 159px;
        white-space: nowrap;
        font-size: 0;
        animation: hero-bg-scroll 12s linear infinite;
    }
    .pc_none {
        display: block;
        text-align: center;
        padding: 20px 0 0 0;
    }
    .pc_none img {
        margin: 0 auto;
    }

    .hero-bg-tile {
        width: 620px;
        height: 159px;
        background-image: url(img/mv_town_sp.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    .hero-car {
        right: 30px;
        width: 180px;
    }
    .inner {
        padding: 0;
    }

    .cta {
        padding: 32px 16px;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .cta-button {
        font-size: 16px;
        padding: 20px 16px 16px;
        border-radius: 12px;
    }

    .cta-label {
        font-size: 11px;
        padding: 6px 14px;
    }

    .worry {
        padding: 32px 0;
    }

    .worry h2 {
        font-size: 19px;
        margin-bottom: 28px;
    }

    .worry-list {
        flex-direction: column;
        gap: 45px;
        padding: 0 25%;
    }

    .worry-bubble {
        font-size: 13px;
        min-height: auto;
        margin-bottom: 45px;
    }

    .worry-icon {
        width: 72px;
        height: 72px;
        font-size: 30px;
    }

    .solution-heading {
        font-size: 18px;
        flex-direction: column;
        padding: 32px 16px 24px;
    }

    .solution-heading .brand {
        font-size: 22px;
    }

    .points {
        width: 100%;
        padding: 0 16px 8px;
        gap: 30px;
    }

    .point {
        width: 90%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 40px 20px 24px 20px;
        margin: 0 auto;
    }

    .point-badge {
        width: 56px;
        height: 56px;
        left: calc(50% - 28px);
        top: -20px;
        transform: none;
    }

    .point-badge .label {
        font-size: 8px;
    }

    .point-badge .num {
        font-size: 18px;
    }
    .point-body {
        width: 100%;
        text-align: center;
    }

    .point-body h3 {
        font-size: 16px;
    }

    .point-body p {
        font-size: 13px;
    }

    .point-icon {
        align-self: center;
    }

    .area {
        padding: 32px 16px 0;
    }

    .area-heading {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .area-map {
        padding: 16px;
        width: 100%;
    }

    .area-map-figure {
        min-height: 180px;
        font-size: 14px;
    }

    .area-table th,
    .area-table td {
        font-size: 13px;
        padding: 12px 4px;
        display: block;
        width: 100%;
    }

    .area-table th {
        padding-bottom: 4px;
    }
    .area-table .note,
    .area-table .pref span {
        font-size: 14px;
    }
}
