/* ===== Reset & Base ===== */

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family:
        "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック",
        "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: 500;
    background: #f0fafa;
    color: #4d4d4d;
    overflow-x: hidden;
}

.fv,
.section01,
.section02,
.section03,
.section04,
.section05,
.section06,
.section07,
.section08 {
    max-width: 900px;
    margin: 0 auto;
}

/* ===== FV ===== */

.fv {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.fv__title {
    margin: 0;
    font-size: 0;
    line-height: 0;
}

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

/* ===== FV Buttons ===== */

.fv__buttons {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(12px, 3vw, 20px) clamp(12px, 3vw, 20px);
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2.5vw, 14px);
    background: #f0fafa;
}

.fv__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 3vw, 16px);
    padding: clamp(14px, 3.5vw, 18px) clamp(20px, 5vw, 30px);
    border-radius: 60px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.25s ease;
    animation: fvBtnFadeIn 0.6s ease both;
}

.fv__btn:nth-child(1) {
    animation-delay: 0.3s;
}

.fv__btn:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes fvBtnFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fv__btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.fv__btn:active {
    transform: translateY(0) scale(0.98);
}

/* LINE button */

.fv__btn-line {
    background: linear-gradient(135deg, #06c755 0%, #05b74e 50%, #06c755 100%);
    background-size: 200% 200%;
    animation:
        fvBtnFadeIn 0.6s ease both,
        btnGradient 3s ease infinite;
    animation-delay: 0.3s, 0s;
    box-shadow:
        0 4px 15px rgba(6, 199, 85, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.fv__btn-line:hover {
    box-shadow:
        0 8px 25px rgba(6, 199, 85, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Mail button */

.fv__btn-mail {
    background: linear-gradient(135deg, #f18d9e 0%, #e87790 50%, #f18d9e 100%);
    background-size: 200% 200%;
    animation:
        fvBtnFadeIn 0.6s ease both,
        btnGradient 3s ease infinite;
    animation-delay: 0.5s, 0s;
    box-shadow:
        0 4px 15px rgba(241, 141, 158, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.fv__btn-mail:hover {
    box-shadow:
        0 8px 25px rgba(241, 141, 158, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Shine sweep */

.fv__btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-20deg);
    pointer-events: none;
}

.fv__btn-line .fv__btn-shine {
    animation: fvShine 3.5s 1s ease-in-out infinite;
}

.fv__btn-mail .fv__btn-shine {
    animation: fvShine 3.5s 2s ease-in-out infinite;
}

@keyframes fvShine {
    0%,
    65%,
    100% {
        left: -100%;
    }
    80% {
        left: 150%;
    }
}

/* Icon */

.fv__btn-icon {
    width: clamp(28px, 8vw, 42px);
    height: clamp(28px, 8vw, 42px);
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
}

.fv__btn-icon--mail {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: clamp(4px, 1vw, 6px);
}

/* Text - centered */

.fv__btn-main {
    font-size: clamp(1.1rem, 4.5vw, 1.6rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    text-align: center;
}

/* Arrow */

.fv__btn-arrow {
    width: clamp(14px, 3.5vw, 20px);
    height: clamp(14px, 3.5vw, 20px);
    flex-shrink: 0;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.fv__btn-arrow svg {
    width: 100%;
    height: 100%;
}

/* ===== Fixed LINE Button ===== */

.btn-fixed {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 100;
    width: 92%;
    max-width: 520px;
    background: linear-gradient(135deg, #06c755 0%, #04b34c 50%, #06c755 100%);
    background-size: 200% 200%;
    border-radius: 60px;
    padding: clamp(10px, 2.5vw, 14px) clamp(16px, 4vw, 28px);
    text-decoration: none;
    display: block;
    box-shadow:
        0 6px 20px rgba(6, 199, 85, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
        transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.25s ease,
        opacity 0.3s ease,
        visibility 0.3s ease;
    overflow: hidden;
    animation:
        btnPulse 2.5s ease-in-out infinite,
        btnGradient 3s ease infinite;
}

.btn-fixed:hover {
    transform: translateX(-50%) translateY(-2px) scale(1.03);
    box-shadow:
        0 10px 30px rgba(6, 199, 85, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-fixed:active {
    transform: translateX(-50%) translateY(0) scale(0.98);
}

@keyframes btnPulse {
    0%,
    100% {
        box-shadow:
            0 6px 20px rgba(6, 199, 85, 0.4),
            0 2px 6px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow:
            0 6px 30px rgba(6, 199, 85, 0.6),
            0 2px 10px rgba(0, 0, 0, 0.2);
    }
}

@keyframes btnGradient {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Shine effect */

.btn-fixed__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transform: skewX(-20deg);
    animation: btnShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btnShine {
    0%,
    70%,
    100% {
        left: -100%;
    }
    85% {
        left: 150%;
    }
}

.btn-fixed__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2.5vw, 14px);
    position: relative;
    z-index: 1;
}

.btn-fixed__svg {
    width: clamp(32px, 9vw, 48px);
    height: clamp(32px, 9vw, 48px);
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.btn-fixed__text {
    color: #fff;
    font-size: clamp(1.25rem, 5.5vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.btn-fixed__free {
    background: #fff;
    color: #06c755;
    font-size: clamp(0.7rem, 2.8vw, 1rem);
    font-weight: 900;
    padding: clamp(3px, 0.6vw, 5px) clamp(8px, 2vw, 14px);
    border-radius: 5px;
    line-height: 1.2;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-fixed__arrow {
    width: clamp(16px, 4vw, 24px);
    height: clamp(16px, 4vw, 24px);
    flex-shrink: 0;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.btn-fixed__arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes arrowBounce {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}

.btn-fixed.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

/* Entry animation */

.btn-fixed.is-entering {
    animation: btnSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes btnSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===== Section01 ===== */

.section01 {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    text-align: center;
    padding-bottom: 0;
}

.section01__bg {
    width: 100%;
}

.section01__bg picture {
    width: 100%;
    display: block;
}

.section01__bg img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

.section01__inner {
    position: relative;
    z-index: 1;
    padding: clamp(1.5rem, 5vw, 2.5rem) 0 clamp(2rem, 6vw, 3rem);
}

.section01__subttl {
    font-size: clamp(1.125rem, 4vw, 2.25rem);
    color: #3ebfbd;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.section01__subttl img {
    width: clamp(3.5rem, 10.5vw, 6rem);
    height: auto;
    vertical-align: middle;
    margin: 0 0.3em;
}

.section01__ttl {
    margin-bottom: 5px;
}

.section01__ttl-before,
.section01__ttl-after {
    width: 30px;
    height: auto;
    vertical-align: middle;
}

.section01__ttl img:not(.section01__ttl-before):not(.section01__ttl-after) {
    height: auto;
    max-width: 80%;
    vertical-align: middle;
}

.section01__lead span {
    position: relative;
    color: #f1a9b5;
}

.section01__lead {
    position: relative;
    display: inline-block;
    font-size: clamp(1rem, 3.8vw, 2.125rem);
    font-weight: 700;
    line-height: 1.5;
    margin: 4vh 0 10vh;
}

.section01__lead-before {
    position: absolute;
    top: 50%;
    left: -6.5vw;
    transform: translateY(-50%);
    width: clamp(3rem, 10vw, 6rem);
    height: auto;
    z-index: -1;
}

.section01__lead-after {
    position: absolute;
    top: 50%;
    right: -7.5vw;
    transform: translateY(-50%);
    width: clamp(2.5rem, 8.8vw, 5rem);
    height: auto;
    z-index: -1;
}

.section01__list {
    list-style: none;
    text-align: left;
    border: 1px solid #ebbec9;
    border-radius: 1vw;
    padding: 2vw;
    margin: 0 2.22vw 2vw;
    background-color: #fff;
}

.section01__list li {
    font-size: clamp(1rem, 4vw, 2.25rem);
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px dashed #f8bbd0;
}

.section01__list li:last-child {
    border-bottom: none;
}

.section01__list li img {
    width: clamp(1.25rem, 3.5vw, 2rem);
    height: auto;
    vertical-align: middle;
    margin-right: 1rem;
}

.section01__list li span {
    color: #f1a9b5;
    font-weight: 700;
}

@media (max-width: 900px) {
    .section01__lead {
        margin: 1vh 0 4vh;
    }
    .section01__list {
        padding: 2vw 5vw 2vw 6vw;
        margin: 0 2.22vw 2vw;
    }
    .section01__list li {
        font-size: clamp(0.9rem, 3.5vw, 2rem);
        line-height: 1;
    }
}

/* ===== Section02 & Section03 ===== */

.section02,
.section03,
.section04,
.section06,
.section07,
.section08 {
    width: 100%;
}

.section02 img,
.section04 img,
.section06 img,
.section07__title,
.section07__title img,
.section08 img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Section06 Header --- */

.section06__header {
    text-align: center;
    padding: clamp(2rem, 6vw, 3.5rem) 1rem clamp(1rem, 3vw, 1.5rem);
}

.section06__header-en {
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #62cbc9;
    margin-bottom: 10px;
}

.section06__header-heading {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    font-weight: 800;
    color: #4d4d4d;
    line-height: 1.6;
}

.section06__header-brand {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-style: italic;
    font-weight: 800;
    background: linear-gradient(135deg, #f18d9e, #e07388);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.15em;
}

.section06__header-em {
    background: linear-gradient(transparent 60%, rgba(241, 141, 158, 0.3) 60%);
    padding: 0 4px;
}

.section06__header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f18d9e, #62cbc9);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* --- Section03 Header --- */

.section03__header {
    text-align: center;
    padding: clamp(2rem, 6vw, 3.5rem) 1rem clamp(1rem, 3vw, 2rem);
}

.section03__en {
    display: inline-block;
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #62cbc9;
    background: linear-gradient(
        135deg,
        rgba(98, 203, 201, 0.12),
        rgba(241, 141, 158, 0.12)
    );
    padding: 4px 18px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section03__heading {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    font-weight: 800;
    color: #4d4d4d;
    line-height: 1.6;
    margin-top: 8px;
}

.section03__heading-sub {
    display: block;
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    font-weight: 600;
    color: #888;
    margin-bottom: 2px;
}

.section03__heading-em {
    background: linear-gradient(transparent 60%, rgba(241, 141, 158, 0.3) 60%);
    padding: 0 4px;
}

.section03__heading-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f18d9e, #62cbc9);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* --- Section03 Feature Cards --- */

.section03__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 2.5vw, 20px);
    padding: 0 clamp(10px, 3vw, 24px) clamp(1.5rem, 4vw, 2.5rem);
}

.section03__feature {
    background: #fff;
    border-radius: 16px;
    padding: clamp(1.2rem, 4vw, 2rem) clamp(0.6rem, 2vw, 1.2rem);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section03__feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f18d9e, #ebbec9);
    border-radius: 16px 16px 0 0;
}

.section03__feature:nth-child(2)::before {
    background: linear-gradient(90deg, #62cbc9, #8edbd9);
}

.section03__feature:nth-child(3)::before {
    background: linear-gradient(90deg, #b8a9d4, #d4c5f0);
}

.section03__feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.section03__feature-icon {
    width: clamp(48px, 12vw, 64px);
    height: clamp(48px, 12vw, 64px);
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #fff0f3, #fce4ec);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f18d9e;
}

.section03__feature-icon--mint {
    background: linear-gradient(135deg, #e8f8f5, #d1f2ef);
    color: #62cbc9;
}

.section03__feature-icon--purple {
    background: linear-gradient(135deg, #f3eef8, #e8dff0);
    color: #b8a9d4;
}

.section03__feature-icon svg {
    width: 55%;
    height: 55%;
}

.section03__feature-title {
    font-size: clamp(0.85rem, 3vw, 1.05rem);
    font-weight: 700;
    color: #4d4d4d;
    margin-bottom: 8px;
}

.section03__feature-text {
    font-size: clamp(0.72rem, 2.5vw, 0.88rem);
    line-height: 1.7;
    color: #777;
}

.section03__feature-text strong {
    color: #f18d9e;
    font-weight: 700;
}

.section03__feature:nth-child(2) .section03__feature-text strong {
    color: #62cbc9;
}

.section03__feature:nth-child(3) .section03__feature-text strong {
    color: #b8a9d4;
}

@media (max-width: 600px) {
    .section03__features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 16px 24px;
    }
    .section03__feature {
        text-align: left;
        padding: 16px 20px;
    }
    .section03__feature-icon {
        display: none;
    }
    .section03__feature-title {
        margin-bottom: 6px;
        font-size: 0.95rem;
    }
    .section03__feature-text {
        font-size: 0.82rem;
    }
    .section03__feature-text br {
        display: none;
    }
}

/* ===== Section05 ===== */

.section05 {
    width: 100%;
}

/* --- Section05 Hero --- */

.section05__hero {
    text-align: center;
    padding: clamp(2rem, 6vw, 3.5rem) 1rem clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(180deg, #f0fafa 0%, #fff 100%);
}

.section05__hero-deco {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.section05__hero-deco span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: s05DotBounce 1.4s ease-in-out infinite;
}

.section05__hero-deco span:nth-child(1) {
    background: #f18d9e;
    animation-delay: 0s;
}

.section05__hero-deco span:nth-child(2) {
    background: #62cbc9;
    animation-delay: 0.2s;
}

.section05__hero-deco span:nth-child(3) {
    background: #b8a9d4;
    animation-delay: 0.4s;
}

@keyframes s05DotBounce {
    0%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
}

.section05__hero-en {
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #62cbc9;
    margin-bottom: 10px;
}

.section05__hero-heading {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    font-weight: 800;
    color: #4d4d4d;
    line-height: 1.6;
}

.section05__hero-brand {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-style: italic;
    font-weight: 800;
    background: linear-gradient(135deg, #f18d9e, #e07388);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.15em;
}

.section05__hero-em {
    background: linear-gradient(transparent 60%, rgba(98, 203, 201, 0.3) 60%);
    padding: 0 4px;
}

.section05__hero-lead {
    font-size: clamp(0.8rem, 3vw, 0.95rem);
    color: #888;
    line-height: 1.8;
    margin-top: 12px;
}

.section05__hero-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f18d9e, #62cbc9);
    border-radius: 2px;
    margin: 18px auto 0;
}

/* --- Section05 Images --- */

.section05__images {
    width: 100%;
}

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

/* ===== Section07 ===== */

.section07__title {
    margin: 0;
    font-size: 0;
    line-height: 0;
}

.section07__card {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section07__card-text {
    padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 4.56vw, 50px)
        clamp(14rem, 12vw, 5rem);
    box-sizing: border-box;
    font-size: clamp(1rem, 3.9vw, 2.1875rem);
    line-height: 2;
    text-align: left;
    color: #3ebfbd;
    font-feature-settings: "palt" 1;
}

.section07__card-pink {
    font-weight: bold;
}

.section07__card2 {
    position: relative;
    width: 100%;
}

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

.section07__card-text2 {
    position: absolute;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    padding: 0 clamp(1.5rem, 5.56vw, 50px);
    box-sizing: border-box;
    font-size: clamp(0.9rem, 3.5vw, 2rem);
    line-height: 1.8;
    text-align: left;
    color: #444;
    font-feature-settings: "palt" 1;
}

.section07__step {
    width: 100%;
    box-sizing: border-box;
}

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

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

.last-cta {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff7f9;
}

/* --- Last CTA Hero --- */

.last-cta__hero {
    text-align: center;
    padding: clamp(40px, 10vw, 64px) clamp(16px, 4vw, 32px)
        clamp(16px, 4vw, 24px);
    position: relative;
    overflow: hidden;
}

/* Floating dots deco */

.last-cta__deco {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: clamp(16px, 4vw, 24px);
}

.last-cta__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.last-cta__dot:nth-child(1) {
    background: #f8b4c8;
    animation-delay: 0s;
}

.last-cta__dot:nth-child(2) {
    background: #a8dbd9;
    animation-delay: 0.15s;
}

.last-cta__dot:nth-child(3) {
    background: #f7d794;
    animation-delay: 0.3s;
}

@keyframes dotBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.last-cta__lead {
    font-size: clamp(0.85rem, 3.3vw, 1.15rem);
    font-weight: 600;
    color: #999;
    line-height: 1.8;
    margin-bottom: clamp(18px, 4.5vw, 28px);
}

.last-cta__lead span {
    color: #f1a9b5;
    font-weight: 700;
    background: linear-gradient(transparent 60%, rgba(241, 169, 181, 0.15) 60%);
    padding: 0 2px;
}

/* Card */

.last-cta__card {
    background: #fff;
    border-radius: clamp(16px, 4vw, 24px);
    padding: clamp(24px, 6vw, 40px) clamp(16px, 4vw, 28px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(241, 169, 181, 0.15);
    max-width: 500px;
    margin: 0 auto;
}

.last-cta__heading {
    font-size: clamp(1.3rem, 5.5vw, 2.2rem);
    font-weight: 900;
    background: linear-gradient(135deg, #f1a9b5, #e8879a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.last-cta__divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f1a9b5, #a8dbd9);
    border-radius: 2px;
    margin: clamp(12px, 3vw, 18px) auto;
}

.last-cta__sub {
    font-size: clamp(0.7rem, 2.8vw, 0.95rem);
    color: #aaa;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

/* --- Button wrap --- */

.last-cta__btn-wrap {
    position: relative;
    padding: 0 clamp(16px, 4vw, 30px) clamp(16px, 4vw, 24px);
}

/* Override absolute positioning for cta-line-btn inside btn-wrap */

.last-cta__btn-wrap .cta-line-btn {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
}

.last-cta__btn-wrap .cta-line-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

/* --- CTA LINE Button --- */

.cta-line-btn {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    max-width: 500px;
    background: linear-gradient(135deg, #06c755 0%, #04b34c 50%, #06c755 100%);
    background-size: 200% 200%;
    border-radius: 60px;
    padding: clamp(12px, 3vw, 16px) clamp(18px, 4.5vw, 28px);
    text-decoration: none;
    display: block;
    overflow: hidden;
    box-shadow:
        0 6px 24px rgba(6, 199, 85, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition:
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
    animation:
        btnGradient 3s ease infinite,
        btnPulse 2.5s ease-in-out infinite;
}

.cta-line-btn:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.03);
    box-shadow:
        0 10px 35px rgba(6, 199, 85, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-line-btn:active {
    transform: translateX(-50%) scale(0.98);
}

.cta-line-btn__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transform: skewX(-20deg);
    animation: btnShine 3s ease-in-out infinite;
    pointer-events: none;
}

.cta-line-btn__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2.5vw, 14px);
    position: relative;
    z-index: 1;
}

.cta-line-btn__icon {
    width: clamp(32px, 9vw, 48px);
    height: clamp(32px, 9vw, 48px);
    flex-shrink: 0;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

.cta-line-btn__text {
    color: #fff;
    font-size: clamp(1.2rem, 5.2vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.03em;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

.cta-line-btn__free {
    background: #fff;
    color: #06c755;
    font-size: clamp(0.7rem, 2.8vw, 1.05rem);
    font-weight: 900;
    padding: clamp(2px, 0.5vw, 4px) clamp(8px, 2vw, 14px);
    border-radius: 5px;
    line-height: 1.3;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-line-btn__arrow {
    width: clamp(16px, 4vw, 24px);
    height: clamp(16px, 4vw, 24px);
    flex-shrink: 0;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.cta-line-btn__arrow svg {
    width: 100%;
    height: 100%;
}

/* --- Mail Divider --- */

.cta-mail-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1.5vw, 10px);
    padding: clamp(28px, 6vw, 44px) clamp(16px, 4vw, 30px)
        clamp(10px, 2.5vw, 16px);
}

.cta-mail-divider__line {
    flex: 1;
    max-width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ccc);
}

.cta-mail-divider__line:last-child {
    background: linear-gradient(90deg, #ccc, transparent);
}

.cta-mail-divider__icon {
    width: clamp(18px, 4.5vw, 26px);
    height: clamp(18px, 4.5vw, 26px);
    color: #999;
    flex-shrink: 0;
}

.cta-mail-divider__icon svg {
    width: 100%;
    height: 100%;
}

.cta-mail-divider__text {
    font-size: clamp(0.8rem, 3.2vw, 1.1rem);
    font-weight: 600;
    color: #888;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.cta-mail-divider__arrow {
    font-size: clamp(0.5rem, 1.5vw, 0.7rem);
    color: #aaa;
    animation: arrowDown 1.5s ease-in-out infinite;
}

@keyframes arrowDown {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(3px);
        opacity: 1;
    }
}

.last-cta__form {
    padding: 0 20px 50px;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ===== Footer ===== */

.footer {
    background-color: #62cbc9;
    color: #fff;
}

.footer__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 10px;
    text-align: center;
}

.footer__address {
    font-family:
        "Yu Gothic Medium",
        "游ゴシック Medium",
        Yu Gothic,
        "游ゴシック",
        sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
}

.footer__links {
    font-family:
        "Yu Gothic UI Light",
        "Yu Gothic Light",
        Yu Gothic,
        "游ゴシック",
        sans-serif;
    font-weight: 300;
    font-size: 12px;
}

.footer__links a {
    color: #fff;
    text-decoration: none;
}

.footer__links a:hover {
    text-decoration: underline;
}

.footer__copyright {
    font-family:
        "Yu Gothic UI Light",
        "Yu Gothic Light",
        Yu Gothic,
        "游ゴシック",
        sans-serif;
    font-weight: 300;
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 0;
}

/* ===== Sec Guarantee (最低時給保証) ===== */

.sec-guarantee {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sec-guarantee.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sec-guarantee img {
    width: 100%;
    height: auto;
    display: block;
}
