/*
 * YORUAI unified stylesheet
 * home-page / howto-page / legacy-index-page are isolated by html classes.
 */

/* ===== TOP PAGE ===== */
html.home-page {
    --pink: #F06AA6;
    --pink-dark: #D94C8D;
    --pink-soft: #FFF3F8;
    --pink-soft-2: #F9DCE9;
    --ink: #1B121B;
    --text: #5F5360;
    --muted: #8C7E89;
    --line: #F0E4EA;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(92, 22, 60, .14);
    --night: #09040D;
    --night-2: #160817;
    --gold: #D8B56A;
    --gold-soft: #F1D99E;
}

html.home-page * {
    box-sizing: border-box
}

html.home-page {
    scroll-behavior: smooth
}

html.home-page body {
    font-feature-settings: "palt";
    letter-spacing: .03em;
    margin: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--ink);
    background: #FFFCFD;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

html.home-page img {
    display: block;
    max-width: 100%;
    height: auto
}

html.home-page a {
    color: inherit
}

html.home-page .container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto
}

html.home-page .section {
    padding: 96px 0
}

html.home-page .section-soft {
    background: linear-gradient(180deg, #FFFCFD 0%, var(--pink-soft) 100%)
}

html.home-page .center {
    text-align: center
}

html.home-page .eyebrow {
    display: inline-block;
    color: var(--pink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 12px
}

html.home-page .section-title {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.32;
    letter-spacing: -.03em
}

html.home-page .section-lead {
    margin: 20px auto 0;
    max-width: 780px;
    color: var(--text);
    font-size: 17px;
    line-height: 2
}

html.home-page .header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(9, 4, 13, .94);
    border-bottom: 1px solid rgba(240, 106, 166, .16);
    backdrop-filter: blur(18px)
}

html.home-page .header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

html.home-page .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: .04em
}

html.home-page .logo img {
    max-height: 24px;
    width: auto;
    object-fit: contain
}

html.home-page .nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #F4EAF0;
    font-size: 14px;
    font-weight: 700
}

html.home-page .nav a {
    text-decoration: none
}

html.home-page .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(240, 106, 166, .30)
}

html.home-page .hero {
    overflow: hidden;
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at 82% 15%, rgba(240, 106, 166, .30), transparent 27%),
        radial-gradient(circle at 18% 86%, rgba(216, 181, 106, .14), transparent 30%),
        linear-gradient(135deg, var(--night) 0%, #130713 55%, #09040D 100%)
}

html.home-page .hero::before {
    content: "";
    position: absolute;
    inset: auto -7% -26% auto;
    width: min(720px, 58vw);
    aspect-ratio: 1;
    background: url("../image/yoruai-mark.png") center/cover no-repeat;
    opacity: .10;
    filter: saturate(1.15);
    pointer-events: none
}

html.home-page .hero-inner {
    position: relative;
    z-index: 2;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0 84px
}

html.home-page .hero-inner.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

html.home-page .hero-center .hero-content {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

html.home-page .hero-center .hero-copy {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

html.home-page .hero-center .hero-points,
html.home-page .hero-center .hero-actions {
    justify-content: center;
}

html.home-page .hero-center .hero-points {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 28px;
}

html.home-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(240, 106, 166, .28);
    color: #F7B7D4;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 26px rgba(40, 20, 30, .06);
    margin-bottom: 24px
}

html.home-page .hero h1 {
    margin: 0;
    font-size: clamp(40px, 5.6vw, 68px);
    line-height: 1.16;
    letter-spacing: -.05em;
    font-weight: 900
}

html.home-page .hero h1 .pink {
    color: var(--pink)
}

html.home-page .hero-copy {
    margin: 28px 0 0;
    color: #E7DCE4;
    font-size: 18px;
    line-height: 2;
    max-width: 700px
}

html.home-page .hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px
}

html.home-page .point-pill {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(240, 106, 166, .22);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    color: #F2E7ED
}

html.home-page .hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap
}

html.home-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    transition: .2s ease
}

html.home-page .btn-primary {
    color: #fff;
    background: var(--pink);
    box-shadow: 0 12px 30px rgba(240, 106, 166, .30)
}

html.home-page .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--pink-dark)
}

html.home-page .btn-ghost {
    color: #F8EFF4;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .20)
}

html.home-page .hero-note {
    margin-top: 14px;
    font-size: 12px;
    color: #BDAFBA
}

html.home-page .visual-card {
    position: relative;
    background: rgba(255, 255, 255, .07);
    padding: 16px;
    border-radius: 30px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .36);
    border: 1px solid rgba(240, 106, 166, .22)
}

html.home-page .visual-card::after {
    content: "自撮り1枚から作成";
    position: absolute;
    top: 28px;
    left: -18px;
    padding: 10px 16px;
    background: var(--pink);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(240, 106, 166, .26)
}

html.home-page .visual-card img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 4/5;
    object-fit: cover;
    background: #f6f6f6
}

html.home-page .visual-caption {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 800;
    color: #D8CCD4
}

html.home-page .visual-caption span:last-child {
    text-align: right;
    color: var(--pink)
}

html.home-page .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 50px
}

html.home-page .problem {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .04)
}

html.home-page .problem-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--pink);
    font-weight: 900;
    margin-bottom: 16px
}

html.home-page .problem h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.5
}

html.home-page .problem p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

html.home-page .work-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

html.home-page .work-card {
    background: #fff;
    border: 1px solid #F0D7E3;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .04);
}

html.home-page .work-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--pink-soft-2);
    color: var(--pink-dark);
    font-size: 12px;
    font-weight: 900;
}

html.home-page .work-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.5;
}

html.home-page .work-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.9;
}

html.home-page .manifesto {
    background: linear-gradient(135deg, var(--night) 0%, #190919 100%);
    color: #fff
}

html.home-page .manifesto .section-title {
    color: #fff
}

html.home-page .manifesto .section-lead {
    color: #d7d7d7
}

html.home-page .manifesto .highlight {
    color: #F6A6C9
}

html.home-page .manifesto-box {
    margin: 48px auto 0;
    max-width: 900px;
    border: 1px solid rgba(240, 106, 166, .18);
    background: rgba(255, 255, 255, .045);
    border-radius: 28px;
    padding: 36px;
    text-align: left
}

html.home-page .manifesto-box p {
    margin: 0;
    font-size: 18px;
    line-height: 2.15;
    color: #eee
}

html.home-page .feature-grid {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
}

html.home-page .feature {
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 32px;
    background: #fff
}

html.home-page .feature-num {
    font-size: 13px;
    font-weight: 900;
    color: var(--pink);
    letter-spacing: .1em
}

html.home-page .feature h3 {
    margin: 10px 0 12px;
    font-size: 22px;
    line-height: 1.5
}

html.home-page .feature p {
    margin: 0;
    color: #666;
    font-size: 15px
}

html.home-page .ba-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
    margin-top: 48px
}

html.home-page .ba-card {
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .05)
}

html.home-page .ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #eee
}

html.home-page .ba-images img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #f5f5f5
}

html.home-page .ba-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    padding: 10px;
    color: #888
}

html.home-page .ba-labels span:last-child {
    color: var(--pink)
}

html.home-page .ba-copy {
    padding: 0 20px 22px;
    color: #666;
    font-size: 13px;
    text-align: center
}

html.home-page .menu-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

html.home-page .menu-item {
    padding: 20px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    font-size: 16px;
    font-weight: 800
}

html.home-page .menu-item small {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 11px;
    font-weight: 500
}

html.home-page .price-wrap {
    max-width: 1120px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

html.home-page .price-card {
    border-radius: 28px;
    border: 1px solid #EBD7E1;
    background: #fff;
    padding: 34px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .05)
}

html.home-page .price-card.main {
    border: 2px solid var(--pink);
    position: relative
}

html.home-page .price-card.main::before {
    content: "一番お得";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: var(--pink);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em
}

html.home-page .price-title {
    font-weight: 900;
    font-size: 17px
}

html.home-page .price-value {
    margin: 14px 0;
    font-size: 42px;
    font-weight: 900;
    line-height: 1
}

html.home-page .price-value small {
    font-size: 13px;
    font-weight: 700;
    color: #777
}

html.home-page .price-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: #555;
    font-size: 14px
}

html.home-page .price-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee
}

html.home-page .price-list li:last-child {
    border-bottom: 0
}

html.home-page .free-banner {
    margin: 22px auto 0;
    max-width: 900px;
    background: linear-gradient(135deg, #E95099 0%, #9C2D70 58%, #D8B56A 125%);
    color: #fff;
    border-radius: 22px;
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 16px 34px rgba(240, 106, 166, .24)
}

html.home-page .free-banner strong {
    display: block;
    font-size: 26px;
    margin-bottom: 4px
}

html.home-page .flow {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

html.home-page .flow-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center
}

html.home-page .flow-step {
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--pink);
    color: #fff;
    font-weight: 900
}

html.home-page .flow-item h3 {
    margin: 0 0 8px;
    font-size: 16px
}

html.home-page .flow-item p {
    margin: 0;
    font-size: 13px;
    color: #777
}

html.home-page .store-box {
    margin-top: 48px;
    background: #fff;
    border: 1px solid #F0D7E3;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .04)
}

@media screen and (max-width: 768px) {
    html.home-page .store-box {
        padding: 36px 15px;
    }
}

html.home-page .store-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

html.home-page .store-item {
    border-radius: 18px;
    background: var(--pink-soft);
    padding: 20px;
    font-size: 14px;
    font-weight: 800;
    color: #555
}

html.home-page .faq-list {
    max-width: 900px;
    margin: 48px auto 0;
    display: grid;
    gap: 14px
}

html.home-page details {
    border: 1px solid #eee;
    border-radius: 18px;
    background: #fff;
    padding: 0 22px
}

html.home-page summary {
    cursor: pointer;
    list-style: none;
    font-weight: 900;
    padding: 20px 34px 20px 0;
    position: relative
}

html.home-page summary::-webkit-details-marker {
    display: none
}

html.home-page summary::after {
    content: "+";
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pink);
    font-size: 24px;
    font-weight: 500
}

html.home-page details[open] summary::after {
    content: "−"
}

html.home-page .faq-answer {
    color: #666;
    font-size: 14px;
    padding: 0 0 20px
}

html.home-page .final-cta {
    padding: 96px 0;
    background: radial-gradient(circle at 15% 20%, rgba(240, 106, 166, .35), transparent 28%), linear-gradient(135deg, #160817 0%, #4A1238 100%);
    color: #fff;
    text-align: center
}

html.home-page .final-cta h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.3;
    letter-spacing: -.03em
}

html.home-page .final-cta p {
    margin: 20px auto 30px;
    max-width: 680px;
    font-size: 17px;
    line-height: 1.9
}

html.home-page .final-cta .btn {
    background: #fff;
    color: var(--pink-dark);
    box-shadow: 0 14px 34px rgba(73, 18, 51, .22)
}

html.home-page .footer {
    padding: 44px 0 100px;
    background: #08030C;
    color: #B9AAB4;
    font-size: 12px;
    border-top: 1px solid rgba(240, 106, 166, .12)
}

html.home-page .footer-logo {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .04em;
    margin-bottom: 10px
}

html.home-page .footer a {
    color: #ddd;
    text-decoration: none
}

html.home-page .footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap
}

html.home-page .mobile-cta {
    display: none;
    position: fixed;
    z-index: 80;
    left: 10px;
    right: 10px;
    bottom: 5px;
    min-height: 58px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}


html.home-page .brand-cover {
    background: #09040D;
    border-bottom: 1px solid rgba(240, 106, 166, .12)
}

html.home-page .brand-cover picture {
    display: block
}

html.home-page .brand-cover img {
    width: 100%;
    height: auto;
    display: block
}

@media (max-width:900px) {
    html.home-page .nav a:not(.header-cta) {
        display: none
    }

    html.home-page .hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 64px 0
    }

    html.home-page .hero-copy {
        font-size: 16px
    }

    html.home-page .problem-grid {
        grid-template-columns: 1fr 1fr
    }

    html.home-page .ba-grid {
        grid-template-columns: 1fr
    }

    html.home-page .menu-grid {
        grid-template-columns: 1fr 1fr
    }

    html.home-page .flow {
        grid-template-columns: 1fr 1fr
    }

    html.home-page .store-grid {
        grid-template-columns: 1fr
    }

    html.home-page .price-wrap {
        grid-template-columns: 1fr;
        max-width: 620px;
    }
}

@media (max-width:640px) {
    html.home-page .logo img {
        max-height: 24px
    }

    html.home-page .container {
        width: min(100% - 28px, 1120px)
    }

    html.home-page .section {
        padding: 70px 0
    }

    html.home-page .header-inner {
        min-height: 64px
    }

    html.home-page .logo {
        font-size: 17px
    }

    html.home-page .header-cta {
        padding: 0 15px;
        font-size: 12px
    }

    html.home-page .hero-inner {
        padding: 46px 0 62px
    }

    html.home-page .hero h1 {
        font-size: 40px
    }

    html.home-page .hero-copy {
        font-size: 15px;
        line-height: 1.9
    }

    html.home-page .hero-actions {
        display: grid;
        grid-template-columns: 1fr
    }

    html.home-page .btn {
        width: 100%;
        min-height: 60px
    }

    html.home-page .visual-card::after {
        left: 12px
    }

    html.home-page .problem-grid,
    html.home-page .feature-grid,
    html.home-page .price-wrap,
    html.home-page .flow,
    html.home-page .work-grid {
        grid-template-columns: 1fr
    }

    html.home-page .menu-grid {
        grid-template-columns: 1fr 1fr
    }

    html.home-page .manifesto-box {
        padding: 28px 22px
    }

    html.home-page .manifesto-box p {
        font-size: 16px
    }

    html.home-page .price-value {
        font-size: 38px
    }

    html.home-page .mobile-cta {
        display: flex
    }

    html.home-page .footer {
        padding-bottom: 100px
    }
}



html.home-page .mobile-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(5px + env(safe-area-inset-bottom));
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    background:
        linear-gradient(135deg, #ff2d6f 0%, #ff0055 55%, #d90045 100%);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 20px;
   
    overflow: hidden;
    isolation: isolate;
    animation: ctaFloat 2.8s ease-in-out infinite;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

html.home-page .mobile-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -80%;
    width: 50%;
    height: 200%;

   

    transform: rotate(20deg);
    animation: ctaShine 3.5s ease-in-out infinite;
    z-index: -1;
}

html.home-page .mobile-cta:active {
    transform: scale(.97);
}

html.home-page .mobile-cta-icon {
    flex: 0 0 auto;

    display: grid;
    place-items: center;

    width: 46px;
    height: 46px;

    border-radius: 14px;
    background: #06c755;

    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: -.02em;



}

html.home-page .mobile-cta-text {
    min-width: 0;
    flex: 1;

    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

html.home-page .mobile-cta-text strong {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .01em;
}

html.home-page .mobile-cta-text small {
    margin-top: 2px;
    font-size: 11px;
    font-weight: 600;
    opacity: .82;
}

html.home-page .mobile-cta-arrow {
    flex: 0 0 auto;

    display: grid;
    place-items: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;
    background: rgba(255, 255, 255, .16);

    font-size: 19px;
    font-weight: 700;

    animation: ctaArrow 1.5s ease-in-out infinite;
}

@keyframes ctaFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes ctaShine {

    0%,
    55% {
        left: -80%;
    }

    75%,
    100% {
        left: 140%;
    }
}

@keyframes ctaArrow {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

@media (min-width: 769px) {
    html.home-page .mobile-cta {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    html.home-page .mobile-cta,
    html.home-page .mobile-cta::before,
    html.home-page .mobile-cta-arrow {
        animation: none;
    }
}





/* ===== User Voice ===== */
html.home-page .voice-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(240, 106, 166, .10), transparent 24%),
        radial-gradient(circle at 88% 78%, rgba(216, 181, 106, .10), transparent 24%),
        #FFFCFD;
}

html.home-page .voice-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

html.home-page .voice-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px;
    border: 1px solid #F0DDE7;
    border-radius: 26px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 42px rgba(92, 22, 60, .07);
}

html.home-page .voice-card.featured {
    border-color: rgba(240, 106, 166, .55);
    box-shadow: 0 20px 50px rgba(240, 106, 166, .14);
    transform: translateY(-8px);
}

html.home-page .voice-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

html.home-page .voice-number {
    color: var(--pink-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
}

html.home-page .voice-tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--pink-soft);
    color: var(--pink-dark);
    font-size: 10px;
    font-weight: 900;
}

html.home-page .voice-stars {
    margin-top: 18px;
    color: #D8B56A;
    font-size: 17px;
    letter-spacing: .12em;
}

html.home-page .voice-card h3 {
    margin: 14px 0 0;
    font-size: 20px;
    line-height: 1.55;
    letter-spacing: -.02em;
}

html.home-page .voice-card p {
    margin: 14px 0 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.9;
}

html.home-page .voice-profile {
    margin-top: auto;
    padding-top: 22px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

html.home-page .voice-disclaimer {
    margin: 20px auto 0;
    max-width: 900px;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

@media (max-width:900px) {
    html.home-page .voice-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }

    html.home-page .voice-card.featured {
        transform: none;
    }
}

@media (max-width:640px) {
    html.home-page .voice-grid {
        margin-top: 34px;
    }

    html.home-page .voice-card {
        padding: 24px 22px;
        border-radius: 22px;
    }

    html.home-page .voice-card h3 {
        font-size: 18px;
    }
}




/* ===== GENERATION PLATFORM ===== */
html.home-page .platform-section {
    position: relative;
    overflow: hidden;
    padding: 104px 0 112px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 8%, rgba(120, 91, 255, .28), transparent 28%),
        radial-gradient(circle at 10% 88%, rgba(240, 106, 166, .17), transparent 28%),
        linear-gradient(145deg, #090b18 0%, #11152b 58%, #0a0d1c 100%);
}

html.home-page .platform-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .72), transparent 82%);
    pointer-events: none;
}

html.home-page .platform-section .container {
    position: relative;
    z-index: 1
}

html.home-page .platform-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 17px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .075);
    color: #d9d9ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

html.home-page .platform-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8e7bff;
    box-shadow: 0 0 16px rgba(142, 123, 255, .9);
}

html.home-page .platform-section .section-title {
    color: #fff
}

html.home-page .platform-section .section-lead {
    color: #b8bed3
}

html.home-page .platform-stat {
    max-width: 760px;
    margin: 46px auto 42px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    border: 1px solid rgba(142, 123, 255, .30);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(107, 86, 255, .15), rgba(255, 255, 255, .055));
    box-shadow: 0 16px 50px rgba(0, 0, 0, .25);
}

html.home-page .platform-stat-number {
    flex: 0 0 auto;
    font-size: 46px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.055em;
    color: #fff;
}

html.home-page .platform-stat-number span {
    font-size: .62em;
    color: #9586ff;
    margin: 0 3px
}

html.home-page .platform-stat-number small {
    font-size: .32em;
    margin-left: 4px;
    letter-spacing: .02em;
    color: #c9cee0
}

html.home-page .platform-stat-copy {
    display: grid;
    gap: 3px
}

html.home-page .platform-stat-copy strong {
    font-size: 18px;
    line-height: 1.4;
    color: #fff
}

html.home-page .platform-stat-copy span {
    font-size: 13px;
    color: #aeb5cb
}

html.home-page .platform-screen-wrap {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(165, 153, 255, .30);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .46), 0 0 0 7px rgba(133, 114, 255, .055);
}

html.home-page .platform-screen-bar {
    height: 46px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: #12162a;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

html.home-page .platform-screen-bar>span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

html.home-page .platform-screen-label {
    margin-left: 10px;
    color: #7f87a2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

html.home-page .platform-screen-wrap img {
    width: 100%;
    height: auto;
    display: block
}

html.home-page .platform-feature-heading {
    margin-top: 66px
}

html.home-page .platform-feature-heading .eyebrow {
    color: #9c8eff
}

html.home-page .platform-feature-heading h3 {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.35;
    letter-spacing: -.025em;
}

html.home-page .platform-ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}

html.home-page .platform-ai-card {
    position: relative;
    min-height: 250px;
    padding: 28px 26px 26px;
    border: 1px solid rgba(255, 255, 255, .105);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .035));
    box-shadow: 0 15px 45px rgba(0, 0, 0, .20);
}

html.home-page .platform-ai-no {
    position: absolute;
    top: 22px;
    right: 23px;
    color: rgba(255, 255, 255, .22);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .09em;
}

html.home-page .platform-ai-icon {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    border-radius: 8px;
    background: rgba(115, 91, 255, .18);
    border: 1px solid rgba(145, 127, 255, .25);
    color: #b9adff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}

html.home-page .platform-ai-card h4 {
    margin: 22px 0 10px;
    font-size: 20px;
    line-height: 1.45;
}

html.home-page .platform-ai-card p {
    margin: 0;
    color: #aeb5c9;
    font-size: 14px;
    line-height: 1.9;
}

html.home-page .platform-note {
    margin: 26px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #9ea6bd;
    font-size: 13px;
    text-align: center;
}

html.home-page .platform-note strong {
    color: #eceefa
}

html.home-page .pc-only {
    display: block
}

@media (max-width:900px) {
    html.home-page .platform-section {
        padding: 88px 0 94px
    }

    html.home-page .platform-ai-grid {
        grid-template-columns: 1fr
    }

    html.home-page .platform-ai-card {
        min-height: auto
    }

    html.home-page .platform-screen-wrap {
        border-radius: 22px
    }
}

@media (max-width:640px) {
    html.home-page .platform-section {
        padding: 72px 0 78px
    }

    html.home-page .platform-section .section-title {
        font-size: 31px
    }

    html.home-page .platform-section .section-lead {
        font-size: 14px;
        line-height: 1.85
    }

    html.home-page .pc-only {
        display: none
    }

    html.home-page .platform-stat {
        margin: 34px auto 30px;
        padding: 18px 17px;
        gap: 16px;
        align-items: center;
        justify-content: flex-start;
    }

    html.home-page .platform-stat-number {
        font-size: 38px
    }

    html.home-page .platform-stat-copy strong {
        font-size: 15px
    }

    html.home-page .platform-stat-copy span {
        font-size: 11px;
        line-height: 1.55
    }

    html.home-page .platform-screen-wrap {
        margin-left: 0px;
        margin-right: 0px;
        border-radius: 17px;
        box-shadow: 0 22px 54px rgba(0, 0, 0, .42), 0 0 0 5px rgba(133, 114, 255, .045);
    }

    html.home-page .platform-screen-bar {
        height: 34px;
        padding: 0 11px
    }

    html.home-page .platform-screen-bar>span {
        width: 7px;
        height: 7px
    }

    html.home-page .platform-screen-label {
        font-size: 7px;
        margin-left: 5px
    }

    html.home-page .platform-feature-heading {
        margin-top: 48px
    }

    html.home-page .platform-ai-grid {
        gap: 12px;
        margin-top: 24px
    }

    html.home-page .platform-ai-card {
        padding: 23px 20px 22px;
        border-radius: 18px
    }

    html.home-page .platform-ai-card h4 {
        font-size: 18px;
        margin-top: 18px
    }

    html.home-page .platform-ai-card p {
        font-size: 13px;
        line-height: 1.8
    }

    html.home-page .platform-note {
        display: grid;
        gap: 3px;
        margin-top: 22px;
        font-size: 12px
    }
}

/* ===== HOWTO PAGE ===== */
html.howto-page {
    --blue: #F06AA6;
    --blue-dark: #D94C8D;
    --blue-soft: #FFF3F8;
    --blue-soft-2: #F9DCE9;
    --ink: #1B121B;
    --text: #5F5360;
    --muted: #8C7E89;
    --line: #F0E4EA;
    --white: #fff;
    --green: #06C755;
    --shadow: 0 18px 50px rgba(92, 22, 60, .14);
    --night: #09040D;
    --gold: #D8B56A;
}

html.howto-page * {
    box-sizing: border-box
}

html.howto-page {
    scroll-behavior: smooth
}

html.howto-page body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--ink);
    background: #FFFCFD;
    line-height: 1.85;
    letter-spacing: .03em;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
}

html.howto-page a {
    color: inherit
}

html.howto-page img {
    display: block;
    max-width: 100%;
    height: auto
}

html.howto-page .container {
    width: min(1040px, calc(100% - 40px));
    margin: 0 auto;
}

html.howto-page .header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(9, 4, 13, .94);
    border-bottom: 1px solid rgba(240, 106, 166, .16);
    backdrop-filter: blur(16px);
}

html.howto-page .header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

html.howto-page .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

html.howto-page .logo img {
    max-height: 24px;
    width: auto;
    object-fit: contain;
}

html.howto-page .nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 800;
    color: #F4EAF0;
}

html.howto-page .nav a {
    text-decoration: none
}

html.howto-page .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--green);
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(6, 199, 85, .20);
}

html.howto-page .hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(240, 106, 166, .30), transparent 28%),
        radial-gradient(circle at 10% 85%, rgba(216, 181, 106, .14), transparent 30%),
        linear-gradient(135deg, #09040D 0%, #1A0919 100%);
}

html.howto-page .hero::after {
    content: "";
    position: absolute;
    inset: auto -5% -55% auto;
    width: min(620px, 60vw);
    aspect-ratio: 1;
    background: url("../image/yoruai-mark.png") center/cover no-repeat;
    opacity: .09;
    pointer-events: none
}

html.howto-page .hero-inner {
    position: relative;
    z-index: 1;
    padding: 92px 0 84px;
    text-align: center;
}

html.howto-page .hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(240, 106, 166, .25);
    color: #F7B7D4;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

html.howto-page .hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.2;
    letter-spacing: -.05em;
}

html.howto-page .hero h1 span {
    color: var(--blue)
}

html.howto-page .hero-lead {
    max-width: 760px;
    margin: 26px auto 0;
    color: #E7DCE4;
    font-size: 18px;
    line-height: 2;
}

html.howto-page .hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

html.howto-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    transition: .2s ease;
}

html.howto-page .btn-line {
    background: var(--green);
    color: #fff;
    box-shadow: 0 12px 28px rgba(6, 199, 85, .22);
}

html.howto-page .btn-line:hover {
    transform: translateY(-2px)
}

html.howto-page .section {
    padding: 92px 0;
}

html.howto-page .section-soft {
    background: linear-gradient(180deg, #FFFCFD 0%, var(--blue-soft) 100%);
}

html.howto-page .center {
    text-align: center
}

html.howto-page .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
}

html.howto-page .section-title {
    margin: 0;
    font-size: clamp(30px, 4.8vw, 48px);
    line-height: 1.35;
    letter-spacing: -.04em;
}

html.howto-page .section-lead {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--text);
    font-size: 16px;
    line-height: 2;
}

html.howto-page .step-list {
    display: grid;
    gap: 24px;
    max-width: 860px;
    margin: 54px auto 0;
}

html.howto-page .step-card {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 26px;
    align-items: start;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .04);
}

html.howto-page .step-number {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #F06AA6 0%, #B52E73 100%);
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(240, 106, 166, .24);
}

html.howto-page .step-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.5;
}

html.howto-page .step-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

html.howto-page .example-box {
    margin-top: 20px;
    padding: 20px;
    border-radius: 18px;
    background: var(--blue-soft);
    border: 1px solid #F0D7E3;
}

html.howto-page .example-title {
    margin-bottom: 12px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 900;
}

html.howto-page .example-list {
    display: grid;
    gap: 8px;
}

html.howto-page .example-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff;
    color: #555;
    font-size: 14px;
    font-weight: 700;
}

html.howto-page .example-item::before {
    content: "「";
    color: var(--blue-dark);
    font-weight: 900;
}

html.howto-page .example-item::after {
    content: "」";
    color: var(--blue-dark);
    font-weight: 900;
}

html.howto-page .line-demo {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f2fff7;
    border: 1px solid #ccefd9;
    color: #178844;
    font-size: 14px;
    font-weight: 900;
}

html.howto-page .credit-section {
    background: linear-gradient(135deg, #09040D 0%, #190919 100%);
    color: #fff;
}

html.howto-page .credit-section .section-title {
    color: #fff
}

html.howto-page .credit-section .section-lead {
    color: #d6d6d6
}

html.howto-page .credit-grid {
    max-width: 900px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

html.howto-page .credit-card {
    padding: 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
}

html.howto-page .credit-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

html.howto-page .credit-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

html.howto-page .credit-card p {
    margin: 0;
    color: #ddd;
    font-size: 14px;
}

html.howto-page .command-box {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

html.howto-page .command {
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 900;
}

html.howto-page .balance-sample {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 800;
}

html.howto-page .summary-wrap {
    max-width: 920px;
    margin: 50px auto 0;
    padding: 36px;
    border: 1px solid #F0D7E3;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

html.howto-page .summary-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    align-items: stretch;
}

html.howto-page .summary-item {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: 18px;
    background: var(--blue-soft);
    color: #555;
    text-align: center;
    font-size: 13px;
    font-weight: 900;
}

html.howto-page .summary-num {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
}

html.howto-page .no-app {
    margin-top: 28px;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ecfbf2 0%, #f7fffa 100%);
    border: 1px solid #ccefd9;
    color: #27663d;
    text-align: center;
    font-weight: 900;
}

html.howto-page .final-cta {
    padding: 92px 0;
    background: radial-gradient(circle at 15% 20%, rgba(240, 106, 166, .35), transparent 28%), linear-gradient(135deg, #160817 0%, #4A1238 100%);
    color: #fff;
    text-align: center;
}

html.howto-page .final-cta h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.35;
    letter-spacing: -.04em;
}

html.howto-page .final-cta p {
    max-width: 680px;
    margin: 20px auto 30px;
    font-size: 16px;
    line-height: 1.9;
}

html.howto-page .final-cta .btn {
    background: #fff;
    color: #218349;
    box-shadow: 0 14px 34px rgba(73, 18, 51, .22);
}

html.howto-page .footer {
    padding: 44px 0 90px;
    background: #08030C;
    color: #B9AAB4;
    font-size: 12px;
}

html.howto-page .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

html.howto-page .footer-logo {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}

html.howto-page .footer a {
    color: #ddd;
    text-decoration: none;
}

html.howto-page .mobile-cta {
    display: none;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 80;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(6, 199, 85, .28);
}

@media (max-width:900px) {
    html.howto-page .nav a:not(.header-cta) {
        display: none
    }

    html.howto-page .summary-flow {
        grid-template-columns: 1fr
    }
}

@media (max-width:700px) {
    html.howto-page .container {
        width: min(100% - 28px, 1040px)
    }

    html.howto-page .section {
        padding: 70px 0
    }

    html.howto-page .header-inner {
        min-height: 64px
    }

    html.howto-page .logo img {
        max-height: 20px
    }

    html.howto-page .header-cta {
        font-size: 12px;
        padding: 0 15px
    }

    html.howto-page .hero-inner {
        padding: 62px 0
    }

    html.howto-page .hero-lead {
        font-size: 15px
    }

    html.howto-page .step-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 20px;
    }

    html.howto-page .step-number {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        font-size: 21px;
    }

    html.howto-page .step-card h2 {
        font-size: 20px
    }

    html.howto-page .credit-grid {
        grid-template-columns: 1fr
    }

    html.howto-page .summary-wrap {
        padding: 22px 18px
    }

    html.howto-page .btn {
        width: 100%
    }

    html.howto-page .mobile-cta {
        display: flex
    }

    html.howto-page .footer {
        padding-bottom: 100px
    }
}


/* ===== LEGACY INDEX PAGE ===== */
html.legacy-index-page {
    --pink: #F06AA6;
    --pink-dark: #D94C8D;
    --pink-soft: #FFF3F8;
    --pink-soft-2: #F9DCE9;
    --ink: #262626;
    --text: #4a4a4a;
    --muted: #7d7d7d;
    --line: #eeeeee;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(47, 91, 110, .10);
}

html.legacy-index-page * {
    box-sizing: border-box
}

html.legacy-index-page {
    scroll-behavior: smooth
}

html.legacy-index-page body {
    font-feature-settings: "palt";
    letter-spacing: .03em;
    margin: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

html.legacy-index-page img {
    display: block;
    max-width: 100%;
    height: auto
}

html.legacy-index-page a {
    color: inherit
}

html.legacy-index-page .container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto
}

html.legacy-index-page .section {
    padding: 96px 0
}

html.legacy-index-page .section-soft {
    background: linear-gradient(180deg, #fff 0%, var(--pink-soft) 100%)
}

html.legacy-index-page .center {
    text-align: center
}

html.legacy-index-page .eyebrow {
    display: inline-block;
    color: var(--pink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 12px
}

html.legacy-index-page .section-title {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.32;
    letter-spacing: -.03em
}

html.legacy-index-page .section-lead {
    margin: 20px auto 0;
    max-width: 780px;
    color: var(--text);
    font-size: 17px;
    line-height: 2
}

html.legacy-index-page .header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    backdrop-filter: blur(16px)
}

html.legacy-index-page .header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

html.legacy-index-page .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: .04em
}

html.legacy-index-page .logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain
}

html.legacy-index-page .nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #555;
    font-size: 14px;
    font-weight: 700
}

html.legacy-index-page .nav a {
    text-decoration: none
}

html.legacy-index-page .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(240, 106, 166, .26)
}

html.legacy-index-page .hero {
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at 82% 15%, rgba(142, 207, 230, .24), transparent 26%),
        radial-gradient(circle at 20% 85%, rgba(142, 207, 230, .12), transparent 27%),
        linear-gradient(180deg, #fff 0%, #f7fcfe 100%)
}

html.legacy-index-page .hero-inner {
    position: relative;
    z-index: 2;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0 84px
}

html.legacy-index-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--pink-soft-2);
    color: var(--pink-dark);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 26px rgba(40, 20, 30, .06);
    margin-bottom: 24px
}

html.legacy-index-page .hero h1 {
    margin: 0;
    font-size: clamp(40px, 5.6vw, 68px);
    line-height: 1.16;
    letter-spacing: -.05em;
    font-weight: 900
}

html.legacy-index-page .hero h1 .pink {
    color: var(--pink)
}

html.legacy-index-page .hero-copy {
    margin: 28px 0 0;
    color: var(--text);
    font-size: 18px;
    line-height: 2;
    max-width: 700px
}

html.legacy-index-page .hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px
}

html.legacy-index-page .point-pill {
    background: #fff;
    border: 1px solid #F0D7E3;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    color: #555
}

html.legacy-index-page .hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap
}

html.legacy-index-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    transition: .2s ease
}

html.legacy-index-page .btn-primary {
    color: #fff;
    background: var(--pink);
    box-shadow: 0 12px 30px rgba(240, 106, 166, .30)
}

html.legacy-index-page .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--pink-dark)
}

html.legacy-index-page .btn-ghost {
    color: #444;
    background: #fff;
    border: 1px solid #EBD5DF
}

html.legacy-index-page .hero-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--muted)
}

html.legacy-index-page .visual-card {
    position: relative;
    background: #fff;
    padding: 16px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(142, 207, 230, .20)
}

html.legacy-index-page .visual-card::after {
    content: "自撮り1枚から作成";
    position: absolute;
    top: 28px;
    left: -18px;
    padding: 10px 16px;
    background: var(--pink);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(240, 106, 166, .26)
}

html.legacy-index-page .visual-card img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 4/5;
    object-fit: cover;
    background: #f6f6f6
}

html.legacy-index-page .visual-caption {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 800;
    color: #777
}

html.legacy-index-page .visual-caption span:last-child {
    text-align: right;
    color: var(--pink)
}

html.legacy-index-page .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 50px
}

html.legacy-index-page .problem {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .04)
}

html.legacy-index-page .problem-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--pink);
    font-weight: 900;
    margin-bottom: 16px
}

html.legacy-index-page .problem h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.5
}

html.legacy-index-page .problem p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

html.legacy-index-page .manifesto {
    background: #222;
    color: #fff
}

html.legacy-index-page .manifesto .section-title {
    color: #fff
}

html.legacy-index-page .manifesto .section-lead {
    color: #d7d7d7
}

html.legacy-index-page .manifesto .highlight {
    color: #F6A6C9
}

html.legacy-index-page .manifesto-box {
    margin: 48px auto 0;
    max-width: 900px;
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .05);
    border-radius: 28px;
    padding: 36px;
    text-align: left
}

html.legacy-index-page .manifesto-box p {
    margin: 0;
    font-size: 18px;
    line-height: 2.15;
    color: #eee
}

html.legacy-index-page .feature-grid {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
}

html.legacy-index-page .feature {
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 32px;
    background: #fff
}

html.legacy-index-page .feature-num {
    font-size: 13px;
    font-weight: 900;
    color: var(--pink);
    letter-spacing: .1em
}

html.legacy-index-page .feature h3 {
    margin: 10px 0 12px;
    font-size: 22px;
    line-height: 1.5
}

html.legacy-index-page .feature p {
    margin: 0;
    color: #666;
    font-size: 15px
}

html.legacy-index-page .ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px
}

html.legacy-index-page .ba-card {
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .05)
}

html.legacy-index-page .ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #eee
}

html.legacy-index-page .ba-images img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #f5f5f5
}

html.legacy-index-page .ba-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    padding: 10px;
    color: #888
}

html.legacy-index-page .ba-labels span:last-child {
    color: var(--pink)
}

html.legacy-index-page .ba-copy {
    padding: 0 20px 22px;
    color: #666;
    font-size: 13px;
    text-align: center
}

html.legacy-index-page .menu-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

html.legacy-index-page .menu-item {
    padding: 20px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    font-weight: 800
}

html.legacy-index-page .menu-item small {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 11px;
    font-weight: 500
}

html.legacy-index-page .price-wrap {
    max-width: 900px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

html.legacy-index-page .price-card {
    border-radius: 28px;
    border: 1px solid #EBD7E1;
    background: #fff;
    padding: 34px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .05)
}

html.legacy-index-page .price-card.main {
    border: 2px solid var(--pink);
    position: relative
}

html.legacy-index-page .price-card.main::before {
    content: "おすすめ";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: var(--pink);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em
}

html.legacy-index-page .price-title {
    font-weight: 900;
    font-size: 17px
}

html.legacy-index-page .price-value {
    margin: 14px 0;
    font-size: 42px;
    font-weight: 900;
    line-height: 1
}

html.legacy-index-page .price-value small {
    font-size: 13px;
    font-weight: 700;
    color: #777
}

html.legacy-index-page .price-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: #555;
    font-size: 14px
}

html.legacy-index-page .price-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee
}

html.legacy-index-page .price-list li:last-child {
    border-bottom: 0
}

html.legacy-index-page .free-banner {
    margin: 22px auto 0;
    max-width: 900px;
    background: linear-gradient(135deg, var(--pink) 0%, #D8B56A 100%);
    color: #fff;
    border-radius: 22px;
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 16px 34px rgba(240, 106, 166, .24)
}

html.legacy-index-page .free-banner strong {
    display: block;
    font-size: 26px;
    margin-bottom: 4px
}

html.legacy-index-page .flow {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

html.legacy-index-page .flow-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center
}

html.legacy-index-page .flow-step {
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--pink);
    color: #fff;
    font-weight: 900
}

html.legacy-index-page .flow-item h3 {
    margin: 0 0 8px;
    font-size: 16px
}

html.legacy-index-page .flow-item p {
    margin: 0;
    font-size: 13px;
    color: #777
}

html.legacy-index-page .store-box {
    margin-top: 48px;
    background: #fff;
    border: 1px solid #F0D7E3;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .04)
}

html.legacy-index-page .store-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

html.legacy-index-page .store-item {
    border-radius: 18px;
    background: var(--pink-soft);
    padding: 20px;
    font-size: 14px;
    font-weight: 800;
    color: #555
}

html.legacy-index-page .faq-list {
    max-width: 900px;
    margin: 48px auto 0;
    display: grid;
    gap: 14px
}

html.legacy-index-page details {
    border: 1px solid #eee;
    border-radius: 18px;
    background: #fff;
    padding: 0 22px
}

html.legacy-index-page summary {
    cursor: pointer;
    list-style: none;
    font-weight: 900;
    padding: 20px 34px 20px 0;
    position: relative
}

html.legacy-index-page summary::-webkit-details-marker {
    display: none
}

html.legacy-index-page summary::after {
    content: "+";
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pink);
    font-size: 24px;
    font-weight: 500
}

html.legacy-index-page details[open] summary::after {
    content: "−"
}

html.legacy-index-page .faq-answer {
    color: #666;
    font-size: 14px;
    padding: 0 0 20px
}

html.legacy-index-page .final-cta {
    padding: 96px 0;
    background: linear-gradient(135deg, #B72F75 0%, #6A164C 100%);
    color: #fff;
    text-align: center
}

html.legacy-index-page .final-cta h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.3;
    letter-spacing: -.03em
}

html.legacy-index-page .final-cta p {
    margin: 20px auto 30px;
    max-width: 680px;
    font-size: 17px;
    line-height: 1.9
}

html.legacy-index-page .final-cta .btn {
    background: #fff;
    color: var(--pink-dark);
    box-shadow: 0 14px 34px rgba(73, 18, 51, .22)
}

html.legacy-index-page .footer {
    padding: 44px 0 100px;
    background: #222;
    color: #aaa;
    font-size: 12px
}

html.legacy-index-page .footer-logo {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .04em;
    margin-bottom: 10px
}

html.legacy-index-page .footer a {
    color: #ddd;
    text-decoration: none
}

html.legacy-index-page .footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap
}

html.legacy-index-page .mobile-cta {
    display: none;
    position: fixed;
    z-index: 80;
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 58px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(73, 18, 51, .30)
}

@media (max-width:900px) {
    html.legacy-index-page .nav a:not(.header-cta) {
        display: none
    }

    html.legacy-index-page .hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 64px 0
    }

    html.legacy-index-page .hero-copy {
        font-size: 16px
    }

    html.legacy-index-page .problem-grid {
        grid-template-columns: 1fr 1fr
    }

    html.legacy-index-page .ba-grid {
        grid-template-columns: 1fr
    }

    html.legacy-index-page .menu-grid {
        grid-template-columns: 1fr 1fr
    }

    html.legacy-index-page .flow {
        grid-template-columns: 1fr 1fr
    }

    html.legacy-index-page .store-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:640px) {
    html.legacy-index-page .logo img {
        max-height: 59px
    }

    html.legacy-index-page .container {
        width: min(100% - 28px, 1120px)
    }

    html.legacy-index-page .section {
        padding: 70px 0
    }

    html.legacy-index-page .header-inner {
        min-height: 64px
    }

    html.legacy-index-page .logo {
        font-size: 17px
    }

    html.legacy-index-page .header-cta {
        padding: 0 15px;
        font-size: 12px
    }

    html.legacy-index-page .hero-inner {
        padding: 46px 0 62px
    }

    html.legacy-index-page .hero h1 {
        font-size: 40px
    }

    html.legacy-index-page .hero-copy {
        font-size: 15px;
        line-height: 1.9
    }

    html.legacy-index-page .hero-actions {
        display: grid;
        grid-template-columns: 1fr
    }

    html.legacy-index-page .btn {
        width: 100%;
        min-height: 60px
    }

    html.legacy-index-page .visual-card::after {
        left: 12px
    }

    html.legacy-index-page .problem-grid,
    html.legacy-index-page .feature-grid,
    html.legacy-index-page .price-wrap,
    html.legacy-index-page .flow {
        grid-template-columns: 1fr
    }

    html.legacy-index-page .menu-grid {
        grid-template-columns: 1fr 1fr
    }

    html.legacy-index-page .manifesto-box {
        padding: 28px 22px
    }

    html.legacy-index-page .manifesto-box p {
        font-size: 16px
    }

    html.legacy-index-page .price-value {
        font-size: 38px
    }

    html.legacy-index-page .mobile-cta {
        display: flex
    }

    html.legacy-index-page .footer {
        padding-bottom: 100px
    }
}



.pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: inline;
    }
}