/* Landing (Top) page */

/* ====================== LANDING HEADER ====================== */
.landing-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 16px 0 16px;
    border-bottom: none;
    background: #FFFFFF;
    position: static;
    top: auto;
}
.landing-header-title {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 1px;
    text-align: center;
    color: #09947B;
    margin: 0;
}
.landing-header-sub {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    text-align: center;
    color: #333333;
    margin: 0;
}

/* ====================== LANDING LAYOUT ====================== */
.landing {
    padding: 0px 16px;
    background: #FFFFFF;
}
.landing .page-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ====================== LANDING CARD (SERVICE CARD) ====================== */
.landing-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0px 0px 16px 0px #0000001A;
    margin-top: 24px;
}

.landing .service-card {
    padding: 24px 16px;
    border: none;
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
}
.landing .service-card:hover { background: #FFFFFF; }

/* Card title: サービス説明 */
.landing .service-card .card-title {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #09947B;
    margin: 0;
}

/* ====================== FEATURE ROWS ====================== */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
    padding: 0;
}
.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* Icon */
.feat-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feat-icon svg,
.feat-icon img {
    width: 40px;
    height: 40px;
    display: block;
}

/* Text group */
.feat-text {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    flex: 1;
    min-width: 0;
}
.feat-title {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #333333;
    margin-bottom: 4px;
}
.feat-desc {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #333333;
}

/* ====================== TARGET SECTION ====================== */
.target-section {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 0;
    padding: 0;
}
.target-label {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1px;
    color: #333333;
    white-space: nowrap;
}
.target-val {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #333333;
}

/* ====================== CONSENT CARD ====================== */
.consent-card {
    margin-top: 24px;
    padding: 16px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.consent-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
    padding: 0 0 16px 0;
}
/* Custom checkbox */
.consent-row input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
    background: #FFFFFF;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
    position: relative;
}
.consent-row input[type="checkbox"]:checked {
    background: #09947B;
    border-color: #09947B;
}
.consent-row input[type="checkbox"]:checked::after {
    content: '✓';
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.consent-label {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0px;
    display: flex;
    align-items: center;
    position: relative;
    top: 1px;
}
.consent-privacy {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #09947B;
}
.consent-agree {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #333333;
}

/* ====================== CTA BUTTON ====================== */
.btn-start {
    background: #09947B;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    height: 48px;
    padding: 0 16px;
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.15s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-arrow-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.btn-start:hover { background: #07806a; }
.btn-start:active { transform: scale(0.99); }
.btn-start:disabled {
    background: #BDBDBD;
    cursor: not-allowed;
    box-shadow: none;
}




/* ====================== FOOTER ====================== */
.landing-footer {
    margin-top: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}
.footer-copy {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #454444;
}
