/* ============================================================
   PhaseSpace LP — style.css
   ============================================================ */

/* ---------- Web Fonts ---------- */
@font-face {
    font-family: 'Shippori Gothic B2';
    src: url('/fonts/ShipporiGothicB2-OTF-Bold.otf') format('opentype'),
        url('/fonts/ShipporiGothicB2-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ---------- Anchor scroll offset (固定ヘッダー分の余白) ---------- */
#casting-results,
#service-pr,
#service-casting,
#service-meo {
    scroll-margin-top: 100px;
}

:root {
    --yellow: rgba(246, 255, 78, 1);
    --yellow2: #EFFF41;
    --yellow3: #F7FFA5;
    --black: #000000;
    --gray-bg: #ECECEC;
    --white: #ffffff;
    --font-body: 'Shippori Gothic B2', 'Hiragino Kaku Gothic ProN', sans-serif;
    --font-latin: 'Sora', sans-serif;
    --font-script: 'Square Peg', cursive;
    --max-w: 1248px;
    --max-x: 1328px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    font-size: 15px;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.u-pc {
    display: block;
}

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

.u-pc-inline {
    display: inline;
}

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


.u-sp {
    display: none;
}

.u-sp-600 {
    display: none;
}

@media (max-width: 768px) {
    .u-sp {
        display: block;
    }
}

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

    .u-sp-600 {
        display: block;
    }
}

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Utility ---------- */
.yellow-bg {
    background: var(--yellow);
}

.yellow-text {
    color: var(--yellow2);
}

.dark-bg {
    background: #111111;
    color: var(--white);
}

.gray-bg {
    background: var(--gray-bg);
}

.stripe-bg {
    background-color: #EFFF41;
    background-image: repeating-linear-gradient(-60deg,
            transparent,
            transparent 32px,
            rgba(255, 255, 255, 0.45) 32px,
            rgba(255, 255, 255, 0.45) 48px);
}

.dashed-border {
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    position: relative;
}

.dashed-border::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 0;
    border-top: 2px dashed #000000;
    pointer-events: none;
}

.dashed-border::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    height: 0;
    border-top: 2px dashed #000000;
    pointer-events: none;
}

/* ---------- Buttons ---------- */


.main-btn {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border: 2px solid var(--black);
    cursor: pointer;
    transition: background .2s, color .2s;
    position: relative;
}

.main-btn:hover {
    background: var(--gray-bg);
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border: 2px solid var(--black);
    cursor: pointer;
    transition: background .2s;
    position: relative;
}

.outline-btn:hover {
    background: var(--gray-bg);
}

.outline-btn-sm {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border: 1.5px solid var(--black);
    cursor: pointer;
    margin-top: 16px;
    position: relative;
    transition: background .2s, color .2s;
}

.main-btn::after,
.outline-btn::after,
.outline-btn-sm::after,
.insta-follow-btn::after,
.contact-btn-yellow::after,
.contact-btn-white::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 12px;
    background: url('/images/btn-arrow.png') center/contain no-repeat;
}

/* ---------- ANNOUNCE BAR ---------- */
.announce-bar {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.09em;
}

.announce-bar strong {
    color: var(--yellow);
}

.announce-label {
    color: var(--yellow);
    font-weight: 700;
    font-size: 18px;
}

.announce-divider {
    margin: 0 4px;
}

/* ---------- HERO ---------- */
.hero {
    padding: 50px 0;
    background: var(--white);
}

.hero-inner {
    max-width: var(--max-x);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    position: relative;
}

.hero-main-img-wrap {
    width: 100%;
}

.hero-main-img {
    width: 643px;
    height: 450px;
    display: block;
    object-fit: cover;
}

.hero-scroll {
    display: none;
}

.hero-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 25px;
    margin-top: -80px;
    justify-content: center;
}

.stat-badge {
    width: 142px;
    height: 142px;
    background: rgba(246, 255, 78, 1);
    border: none;
    border-radius: 71px;
    padding-top: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    box-sizing: border-box;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0;
}

.stat-num {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-num-val {
    font-family: var(--font-latin);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0;
    color: var(--black);
}

.stat-num-unit {
    font-family: var(--font-latin);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.36;
    letter-spacing: 0.04em;
    color: var(--black);
}

.stat-plus {
    font-size: 16px;
    font-weight: 700;
}

.hero-tag {
    width: 443px;
    height: 122px;
    display: flex;
    align-items: center;
    gap: 64px;
    background: url('/images/hero-tag-pc.png') center/cover no-repeat;
    aspect-ratio: 441/122;
    color: var(--black);
    padding: 14px 36px 14px 24px;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.hero-tag-dot {
    width: 14px;
    height: 14px;
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-tag-text {
    display: flex;
    flex-direction: column;
}

.hero-tag-sub {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.hero-tag-name {
    font-family: var(--font-latin);
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.09em;
}

.hero-tag-kana {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-align: center;
    color: var(--black);
}

.hero-headline {
    font-family: var(--font-body);
    position: relative;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.54;
    letter-spacing: 0.09em;
    margin-block: 26px 28px;
    position: relative;
}

.hero-headline::before {
    content: '';
    display: block;
    position: absolute;
    width: 114px;
    height: auto;
    aspect-ratio: 114 / 15;
    top: -10px;
    left: 25px;
    background: url('/images/hero-headline-sparkle.png') no-repeat left center / contain;
}

.hero-headline::after {
    content: '';
    display: block;
    position: absolute;
    width: 165px;
    height: auto;
    aspect-ratio: 162 / 7;
    bottom: 2px;
    right: 190px;
    background: url('/images/underline-yellow-wave.svg') no-repeat left center / 100% auto;
}

.hero-underline {
    display: none;
}

.hero-lead {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 2.05;
    letter-spacing: 0.04em;
    color: var(--black);
}

/* ---------- SECTION DIVIDER ---------- */
.section-divider {
    background: var(--white);
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-divider::before {
    content: '';
    display: block;
    flex: 1;
    height: 1px;
    background: var(--black);
}

.section-divider::after {
    content: '';
    display: block;
    width: 130px;
    height: 1px;
    background: var(--black);
    flex-shrink: 0;
}

.section-divider span {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.09em;
    white-space: nowrap;
}

/* ---------- SECTION TITLES ---------- */
.section-title {
    position: relative;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.09em;
    text-align: center;
    margin-bottom: 12px;
    width: fit-content;
    margin-inline: auto;
}

.strengths-section .section-title::after {
    content: '';
    display: block;
    position: absolute;
    width: 260px;
    margin-inline: auto;
    aspect-ratio: 164 / 9;
    margin-top: 12px;
    bottom: -10px;
    right: 7%;
    background: url('/images/underline-yellow-wave.svg') no-repeat center / 100% auto;
}

.section-sub {
    text-align: center;
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.script-label {
    font-family: var(--font-script);
    font-size: 48px;
    color: var(--black);
    line-height: 1;
}

.script-right {
    text-align: right;
    margin-top: -10px;
}

/* ---------- CASTING ---------- */
.casting-section {
    position: relative;
    overflow: visible;
    padding: 44px 0;
    margin-top: 60px;
}

.casting-script {
    font-family: var(--font-script);
    font-size: 60px;
    line-height: 1;
    position: absolute;
    color: var(--black);
    pointer-events: none;
}

.casting-script-left {
    top: -28px;
    left: 120px;
    transform: rotate(-10deg);
}

.casting-script-right {
    bottom: -32px;
    right: 260px;
    transform: rotate(10deg);
    z-index: 2;
}

.casting-subtitle {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-align: center;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: none;
}

.casting-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.casting-stat {
    background: var(--white);
    border-radius: 10px;
    width: 320px;
    height: 123px;
    padding: 20px 16px 16px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.cstat-label {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--black);
    margin-bottom: 2px;
}

.cstat-num {
    font-family: var(--font-latin);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.36;
    letter-spacing: 0.04em;
    margin-top: -10px;
}

.cstat-num .num-large {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0;
}

.casting-cta {
    text-align: center;
}

.casting-cta .outline-btn {
    width: 368px;
    height: 70px;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.09em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ---------- STRENGTHS ---------- */
.strengths-section {
    padding: 80px 0;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 68px;
}

.strength-card {
    background: var(--yellow);
    border: none;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 10px;
}

.strength-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    margin-bottom: 0;
}

.strength-icon img {
    height: 60px;
    width: auto;
}

.strength-card h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.strength-card p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--black);
    margin-bottom: 20px;
    flex: 1;
}

.strength-btn {
    display: inline-flex;
    align-items: center;
    width: 255px;
    height: 67px;
    padding: 20px 50px;
    background: var(--white);
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.09em;
    border: 2px solid var(--black);
    box-sizing: border-box;
    white-space: nowrap;
    cursor: pointer;
    justify-content: center;
    position: relative;
    transition: background .2s, color .2s;
}

.strength-btn::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 12px;
    background: url('/images/btn-arrow.png') center/contain no-repeat;
}

.strength-btn:hover {
    background: var(--gray-bg);
}

/* ---------- SHOPS ---------- */
.shops-section {
    padding: 0 0 100px;
}

.shops-bar {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px 24px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.09em;
    margin-bottom: 30px;
    margin-inline: auto;
}

.shops-bar strong {
    color: var(--yellow);
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.shop-logo-box {
    background: #fff;
    width: 100%;
    height: 100px;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-logo-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ---------- WHY ---------- */
.why-section {
    padding: 85px 0;
}

.why-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 400px 1px 1fr;
    gap: 0;
    align-items: start;
}

.why-left {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-inline: 30px;
}

.why-divider {
    width: 1px;
    background: var(--black);
    align-self: stretch;
}

.why-right {
    padding-left: 60px;
    padding-top: 40px;
}

.why-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.why-illust {
    width: 230px;
    height: 214px;
    object-fit: contain;
    margin: 0 auto 10px;
}

.why-box {
    background: #E6E6E6;
    border-radius: 0;
    padding: 17px 25px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-align: center;
}

.why-block {
    position: relative;
    border-bottom: 2px solid var(--black);
}

.why-block-b {
    border: none;
}

.why-first-p {
    text-indent: 30px;
}

.why-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.09em;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: absolute;
    left: -20px;
    top: -40px;
}

.why-marker::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 18px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid var(--yellow);
}

.why-block p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.why-mark-wrap {
    position: relative;
    display: inline;
}

.why-deco-svg {
    position: absolute;
    left: -32px;
    top: -24px;
    width: 28px;
    height: auto;
    pointer-events: none;
}

.why-block-b-header {
    display: flex;
    align-items: center;
    gap: 0;
}

.why-block-b-img {
    width: 164px;
    height: 186px;
    object-fit: contain;
    flex-shrink: 0;
}

.why-block-b h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.why-block-b p {
    margin-top: -24px;
}

mark {
    background: var(--yellow);
    padding: 0 2px;
    color: inherit;
}

/* ---------- INSTAGRAM ---------- */
.insta-section {
    background: var(--white);
}

.insta-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: flex-start;
}

/* ---- 左パネル（sticky固定） ---- */
.insta-left {
    width: 500px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 100px 56px 48px 40px;
    position: sticky;
    top: 60px;
    /* ヘッダーの高さ分 */
    align-self: flex-start;
}

.insta-left-heading {
    display: flex;
    flex-direction: column;
}

.insta-left-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
    padding-top: 20px;
}

.insta-underline {
    width: 100%;
    max-width: 402px;
    height: auto;
}

/* ---- 右パネル（ページスクロール） ---- */
.insta-right {
    flex: 1;
    padding: 100px 0;
    -ms-overflow-style: none;
    display: flex;
    flex-direction: column;
}

.insta-account {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(239, 255, 65, 1);
    background-image: repeating-linear-gradient(-60deg,
            transparent,
            transparent 32px,
            rgba(255, 255, 255, 0.45) 32px,
            rgba(255, 255, 255, 0.45) 48px);
    padding: 50px 87.5px 40px;
}

.insta-top-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.insta-avatar-wrap {
    width: 153px;
    height: 153px;
    box-sizing: border-box;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.instagram-gradient {
    background: linear-gradient(225deg, #c13584, #fd1d1d, #fcb045);
}

.insta-avatar-wrap::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #fff;
    border: 0.5px solid #e5e5e5;
}

.insta-icon {
    position: relative;
    z-index: 1;
    height: 64%;
    width: auto;
    max-width: 64%;
    display: block;
    margin: auto;
    transform: translateY(-3px);
    object-fit: cover;
}

.insta-meta {
    display: flex;
    flex-direction: column;
    gap: 21px;
    width: fit-content;
}

.insta-username {
    font-family: var(--font-latin);
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.09em;
    text-underline-offset: 4px;
    padding-bottom: 6px;
    width: fit-content;
    border-bottom: 2px solid var(--black);
}

.insta-circles {
    display: flex;
    gap: 16px;
    width: fit-content;
}

.insta-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: var(--white);
}

.circle-num {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: 0.04em;
}

.circle-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: 0.04em;
}

.insta-bio-box {
    position: relative;
    padding: 16px 20px;
    width: fit-content;
    margin-inline: auto;
}

.insta-bio-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border-top: 2px solid var(--black);
    border-left: 2px solid var(--black);
}

.insta-bio-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 22px;
    height: 22px;
    border-bottom: 2px solid var(--black);
    border-right: 2px solid var(--black);
}

.insta-bio-left {
    width: fit-content;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--black);
    text-align: center;
}

.insta-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
}

.insta-grid-post {
    width: 100%;
    aspect-ratio: 350 / 622;
    display: block;
    height: auto;
    object-fit: cover;
}

.insta-grid-link {
    display: block;
}

.insta-grid-link:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: -3px;
}

.insta-follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    font-size: 16px;
    padding: 18px 32px;
    border: 2px solid var(--black);
    margin-inline: auto;
    width: min(100%, 342px);
    position: relative;
    transition: background .2s, color .2s;
}

.insta-follow-btn:hover {
    background: var(--gray-bg);
}

/* ---------- FLOW ---------- */
.flow-section {
    padding: 60px 0 80px;
}

.flow-section .section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.09em;
    border-bottom: 2px solid var(--black);
    padding: 0 10px 10px;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 20px;
}

.flow-section .section-sub {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.78;
    letter-spacing: 0.06em;
    color: var(--black);
}

.flow-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 40px 0 50px;
    position: relative;
}

.flow-grid::before {
    content: '';
    position: absolute;
    top: 113px;
    left: 105px;
    width: 0;
    border-top: 2px dashed var(--black);
    z-index: 0;
}

.flow-grid.is-visible::before {
    animation: flow-line 3s ease forwards;
}

@keyframes flow-line {
    0%   { width: 0; }
    100% { width: calc(100% - 210px); }
}

.flow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.flow-script {
    font-family: var(--font-script);
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: -40px;
    position: relative;
    z-index: 1;
}

.flow-circle {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    gap: 12px;
}

.flow-step-num {
    font-family: var(--font-latin);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.06em;
    color: var(--black);
}

.flow-step-label {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0;
    background-image: linear-gradient(var(--yellow), var(--yellow));
    background-repeat: no-repeat;
    background-position: left bottom 2px;
    background-size: 100% 8px;
}

.flow-items {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.flow-item {
    background: var(--black);
    color: var(--white);
    padding: 8px 12px;
    width: 234px;
    height: 65px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.flow-item strong {
    display: block;
    color: var(--yellow);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.78;
    letter-spacing: 0.06em;
    margin-bottom: 0;
}

.flow-item span {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.78;
    letter-spacing: 0.06em;
    opacity: 1;
    margin-top: -5px;
}

.flow-bottom-wrap {
    padding: 30px 26px 20px;
    text-align: center;
    background: var(--white);
}

.flow-bottom {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.flow-mark {
    background: var(--yellow);
    padding: 2px 6px;
    font-weight: 700;
}

.flow-bottom-sub {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--black);
}

/* ---------- SERVICES ---------- */
.services-section {
    padding: 0 0 80px;
}

.services-header {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    margin-bottom: 60px;
}

.services-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.09em;
    color: var(--white);
}

.services-title .yellow-text {
    color: var(--yellow);
}

.service-item {
    display: grid;
    grid-template-columns: 514px 1fr;
    gap: 54px;
    align-items: start;
    padding-top: 50px;
}

.service-item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.service-item-rev {
    grid-template-columns: 1fr 514px;
}

.service-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.service-img-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.service-single-img {
    width: 514px;
    height: 380px;
    object-fit: cover;
}

.service-num {
    font-family: var(--font-latin);
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.09em;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--black);
    width: fit-content;
}

.service-text h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    width: fit-content;
    position: relative;
}

.service-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    bottom: -5px;
    aspect-ratio: 164 / 9;
    background: url('/images/underline-yellow-wave.svg') no-repeat center / 100% auto;
}

.service-item--pr .service-text h3::after {
    right: 5%;
    width: 230px;
}

.service-item--casting .service-text h3::after {
    left: 16%;
    width: 230px;
}

.service-item--meo .service-text h3::after {
    right: 3%;
    width: 210px;
}

.service-text p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--black);
    margin-bottom: 20px;
}

.service-text ul {
    list-style: none;
    padding: 20px 30px;
    background: var(--yellow);
    width: fit-content;
}

.service-text li {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: var(--black);
    padding-left: 16px;
    position: relative;
}

.service-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.8;
    font-size: 14px;
}

.service-images {
    position: relative;
}

.cashback-badge {
    position: absolute;
    bottom: -22px;
    right: 0;
    background: var(--black);
    color: var(--white);
    padding: 8px 8px 12px;
    text-align: center;
    width: max(60%, 300px);
}

.cashback-badge-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cashback-badge-today {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.47;
    letter-spacing: 0.09em;
}

.cashback-badge-sub {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.47;
    letter-spacing: 0;
}

.cashback-badge-num {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.47;
    letter-spacing: 0;
    text-align: center;
    color: var(--yellow);
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.cbn-lg {
    font-size: 45px;
    font-weight: 700;
    vertical-align: middle;
}

.cbn-md {
    font-size: 30px;
    font-weight: 700;
    vertical-align: middle;
}

.cbn-sm {
    font-size: 24px;
    font-weight: 700;
    vertical-align: middle;
}

.cashback-badge-note {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.47;
    letter-spacing: 0.04em;
    text-align: center;
    border-top: 1px dashed rgb(246, 255, 78);
    padding-top: 8px;
}

/* ---------- RESULTS ---------- */
.results-section {
    padding: 80px 0;
}

.results-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.09em;
    text-align: center;
    color: var(--white);
    margin-bottom: 12px;
}

.results-sub {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 40px;
}

.results-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    background: var(--white);
    border: none;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    padding: 30px;
    gap: 12px;
}

.result-card.result-card-lg {
    padding: 20px !important;
    align-items: center;
}

.result-card-img {
    width: calc(50% - 30px);
    flex-shrink: 0;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 6px;
}

picture.result-card-img {
    overflow: hidden;
}

picture.result-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.result-card-body {
    flex: 1;
}

.result-category {
    display: block;
    background: var(--yellow);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.09em;
    padding: 3px 24px;
    margin-bottom: 8px;
    text-align: center;
    width: fit-content;
    margin-inline: auto;
}

.result-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.09em;
    color: var(--black);
    margin-bottom: 16px;
    width: fit-content;
    margin-inline: auto;
}

.results-grid-top > .result-card--highlight .result-name {
    color: var(--yellow);
}

.sama {
    font-size: 14px;
    margin-left: 2px;
}

.result-stats {
    display: grid;
    grid-template-columns: 144px 144px;
    gap: 10px;
    width: fit-content;
    margin-inline: auto;
}

.result-stats>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #F5FCA8;
    padding: 10px 6px 4px;
    width: 144px;
    text-align: center;
}

.rstat-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.09em;
    color: var(--black);
}

.rstat-num {
    font-family: var(--font-latin);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0;
    color: var(--black);
}

.rstat-num small {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.36;
    letter-spacing: 0.04em;
    font-family: var(--font-body);
}

.results-grid-bot {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    align-items: stretch;
}

.result-card-sm {
    background: var(--white);
    border: none;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.rcard-sm-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4 / 5;
    flex-shrink: 0;
}

.rcard-sm-img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
}

.rcard-sm-tag {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.09em;
    padding: 3px 4px;
}

.rcard-sm-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.rcard-sm-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.09em;
    color: var(--black);
    text-align: center;
    min-height: calc(2 * 1.36em);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sama {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.09em;
}

.rcard-sm-kpi {
    background: #F5FCA8;
    padding: 8px 12px 4px;
    text-align: center;
}

.rcard-sm-kpi-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.09em;
    color: var(--black);
}

.rcard-sm-main {
    font-family: var(--font-latin);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0;
    color: var(--black);
}

.rcard-sm-unit {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.36;
    letter-spacing: 0.02em;
    font-family: var(--font-body);
}

.rcard-sm-subs {
    font-family: var(--font-latin);
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.04em;
    color: var(--black);
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.rcard-sm-subs>span {
    flex: 1;
    background: #F5FCA8;
    padding: 4px 2px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.rcard-sm-subs .sub-label {
    font-size: 12px;
}

.rcard-sm-subs .sub-val {
    font-size: 14px;
}

.results-note {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.09em;
    color: var(--white);
    text-align: center;
    margin-top: 8px;
}

/* ---------- INFLUENCERS ---------- */
.influencers-section {
    padding: 60px 0;
    background-color: var(--yellow);
}

.influencers-section .section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.09em;
}

.influencers-section .section-sub {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.inf-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: fit-content;
    margin: 0 auto;
}

.inf-note {
    display: block;
    text-align: right;
    font-family: "Shippori Gothic B2", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.36;
    letter-spacing: 0.09em;
}

.inf-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    justify-content: center;
    margin-bottom: 24px;
}

.inf-card {
    position: relative;
    width: 220px;
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 10px;
    padding: 33px 8px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.85);
}

.inf-tag {
    position: absolute;
    display: inline-block;
    background: var(--black);
    border: 1px solid var(--black);
    font-size: 14px;
    line-height: 1.36;
    letter-spacing: 0.09em;
    color: var(--yellow3);
    padding: 3px 14px;
    margin: 0;
    font-weight: 600;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.inf-avatar {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 8px;
    border: 2px solid #eee;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.inf-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inf-avatar-dark {
    background: #1a1a1a;
    border-color: #333;
}

.inf-avatar-text {
    color: var(--yellow);
    font-weight: 800;
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
}

.inf-avatar-text-sm {
    color: var(--black);
    font-weight: 800;
    font-size: 12px;
    text-align: center;
    line-height: 1.3;
}

.inf-name {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0.09em;
    margin-bottom: 4px;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inf-name-small {
    font-size: 14px;
}

.inf-handle {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0.09em;
    color: #666;
    margin-bottom: 8px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inf-followers {
    font-family: var(--font-latin);
    font-weight: 800;
    line-height: 1.36;
    letter-spacing: 0.06em;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
}

.inf-followers .inf-num {
    font-size: 30px;
}

.inf-followers .inf-man {
    font-size: 18px;
}

.inf-followers .inf-follower {
    font-size: 15px;
}

.inf-more {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
}

/* ---------- PHASE NIGHT ---------- */
.phasenight-section {
    padding: 0;
    overflow: hidden;
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)),
            url('/images/phasenight-background.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.phasenight-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-block: 120px 240px;
    display: grid;
    grid-template-columns: 498px 1fr;
    align-items: stretch;
    min-height: 600px;
}

.phasenight-left {
    overflow: hidden;
    width: 498px;
    height: 775px;
}

.phasenight-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phasenight-right {
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pn-badge {
    display: inline-flex;
    align-items: center;
    gap: 64px;
    background: url('/images/pn-badge-bg.png') center/cover no-repeat;
    color: var(--black);
    width: 443px;
    height: 122px;
    padding: 14px 36px 14px 24px;
    border: 1px solid transparent;
    align-self: flex-start;
    margin-bottom: 10px;
    box-sizing: border-box;
    margin-inline: auto;
}

.pn-badge-dot {
    width: 14px;
    height: 14px;
    background: var(--black);
    border-radius: 50%;
    flex-shrink: 0;
}

.pn-badge-text {
    display: flex;
    flex-direction: column;
}

.pn-badge-sub {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-align: center;
}

.pn-badge-name {
    font-family: var(--font-latin);
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.09em;
}

.pn-badge-kana {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-align: center;
}

.phasenight-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.5;
    letter-spacing: 0.09em;
    color: var(--white);
    margin: 0;
    text-align: center;
}

.pn-yellow {
    color: var(--yellow);
}

.pn-divider {
    width: 90%;
    height: 1px;
    background: var(--white);
    margin-inline: auto;
}

.pn-text-main {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--white);
    text-align: center;
}

.pn-text-sub {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.pn-text-sub strong {
    color: var(--yellow);
    font-weight: 700;
}

.phasenight-stats {
    display: flex;
    gap: 30px;
    margin-top: 24px;
    margin-inline: auto;
}

.pn-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 0.46px solid var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    flex-shrink: 0;
}

.pn-circle-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--white);
}

.pn-circle-num {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pn-num-lg {
    font-family: var(--font-latin);
    font-weight: 800;
    font-size: 30px;
    line-height: 1.36;
    letter-spacing: 0.04em;
    color: var(--white);
}

.pn-num-unit {
    font-family: var(--font-latin);
    font-weight: 800;
    font-size: 20px;
    line-height: 1.36;
    letter-spacing: 0.09em;
    color: var(--white);
}

.pn-num-sm {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--white);
}

.pn-num-mid {
    font-family: var(--font-latin);
    font-weight: 800;
    font-size: 20px;
    line-height: 1.36;
    letter-spacing: 0.09em;
    color: var(--white);
}

.pn-num-xl {
    font-family: var(--font-latin);
    font-weight: 800;
    font-size: 39px;
    line-height: 1.36;
    letter-spacing: 0.04em;
    color: var(--white);
}

/* ---------- CASHBACK SECTION ---------- */
.cashback-section {
    position: relative;
    z-index: 10;
    margin-top: -115px;
    margin-bottom: -445px;
    padding: 0 8px;
}

.cashback-box {
    position: relative;
    overflow: visible;
    width: 940px;
    height: 559px;
    max-width: 100%;
    margin: 0 auto;
    min-height: 0;
    padding-block: 30px 40px;
    padding-inline: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.cashback-visuals {
    position: absolute;
    inset: 0;
    overflow: visible;
    pointer-events: none;
    z-index: 0;
}

.cashback-visual {
    position: absolute;
    display: block;
    height: auto;
}

.cashback-visual-coins {
    left: 55px;
    top: 66px;
    width: 202px;
    height: 153px;
}

.cashback-visual-figure {
    left: 658px;
    top: -70px;
    width: 200px;
}

.cashback-box > :not(.cashback-visuals) {
    position: relative;
    z-index: 1;
}

.cashback-box.stripe-bg {
    background-color: #EFFF41;
}

.cashback-label {
    display: inline-flex;
    align-items: center;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.09em;
    padding: 0 38px;
    height: 32px;
    margin-bottom: 16px;
}

.cashback-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 14px;
}

.cashback-yen {
    position: relative;
    isolation: isolate;
    font-family: 'Sora', sans-serif;
    font-size: 84px;
    font-weight: 700;
    font-style: normal;
    line-height: 100%;
    letter-spacing: -0.01em;
    padding-bottom: 0;
}

.cashback-yen::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 20px;
    background: var(--white);
    z-index: 0;
    pointer-events: none;
}

.cashback-yen-value {
    position: relative;
    z-index: 1;
}

.cashback-text {
    font-family: 'Sora', sans-serif;
    font-size: 55px;
    font-weight: 600;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0.09em;
    margin-top: 13px;
}

.cashback-sub {
    position: relative;
    top: 10px;
    font-family: 'Shippori Gothic B2', sans-serif;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.04em;
    padding-block: 13px;
    padding-inline: 18px;
    border-block: 1px dashed var(--black);
}

.cashback-body-box {
    width: 100%;
    padding: 30px 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cashback-body {
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
    font-family: 'Shippori Gothic B2', sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
}

.cashback-box .main-btn {
    width: 350px;
    min-height: 60px;
    justify-content: center;
    padding-block: 20px;
    padding-inline: 28px 48px;
    font-family: "Shippori Gothic B2", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0.04em;
    text-align: center;
}

.cashback-note {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: var(--black);
    text-align: center;
    margin-top: 8px;
}

/* Interstitial CTAs use the same overlap rhythm as the final CTA. */
.cashback-section--inline {
    margin-top: -178px;
    margin-bottom: -266px;
}

.shops-section--cta-after {
    padding-bottom: 240px;
}

.why-section--cta-before {
    padding-top: 315px;
}

.flow-section--cta-after {
    padding-bottom: 0;
}

.services-section--cta-before {
    padding-top: 0;
}

.cashback-section--between {
    margin-top: 48px;
    margin-bottom: 64px;
}

/* ---------- CONTACT ---------- */
.contact-section {
    padding-top: 515px;
    padding-bottom: 60px;
}

.contact-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.contact-deco {
    position: absolute;
    pointer-events: none;
}

.contact-deco img {
    display: block;
}

.contact-deco-tr {
    top: 60px;
    right: 0;
}

.contact-deco-tl {
    top: 0px;
    left: 160px;
}

.contact-deco-br {
    bottom: -100px;
    right: 80px;
}

.contact-deco-bl {
    bottom: 20px;
    left: 40px;
}

.contact-title {
    position: relative;
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.09em;
    text-align: center;
    margin-bottom: 0;
    width: fit-content;
    margin-inline: auto;
}

.contact-title::after {
    content: '';
    display: block;
    position: absolute;
    width: 230px;
    margin-inline: auto;
    aspect-ratio: 164 / 9;
    margin-top: 12px;
    bottom: -5px;
    left: -55px;
    right: -100px;
    background: url('/images/underline-black-wave.svg') no-repeat center / 100% auto;
}

.contact-box {
    width: 808px;
    background: var(--white);
    border-radius: 20px;
    padding: 30px 80px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-align: center;
    margin-top: 30px;
}

.contact-btns {
    display: flex;
    gap: 64px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.contact-btn-yellow,
.contact-btn-white {
    width: 349px;
    height: 89px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 40px 30px 28px;
    border: 2px solid var(--black);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    transition: background .2s, color .2s;
}

.contact-btn-yellow {
    background: var(--yellow);
    color: var(--black);
}

.contact-btn-white {
    background: var(--white);
    color: var(--black);
}

.contact-btn-yellow:hover {
    background: var(--yellow3);
}

.contact-btn-white:hover {
    background: var(--gray-bg);
}

@media (min-width: 769px) {
    .main-btn:hover,
    .outline-btn:hover,
    .outline-btn-sm:hover,
    .strength-btn:hover,
    .insta-follow-btn:hover,
    .contact-btn-yellow:hover,
    .contact-btn-white:hover {
        background: var(--black);
        color: var(--white);
    }
}

.contact-info {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-align: center;
    color: var(--black);
    margin-top: 60px;
}

.contact-info-address {
    text-decoration: underline;
}

/* ---------- CASTING RESULTS ---------- */
.casting-results-section {
    padding: 80px 0 48px;
    position: relative;
    background-color: rgba(247, 255, 165, 1);
}

.casting-results-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.09em;
    margin-bottom: 32px;
}

.casting-results-stats {
    display: grid;
    grid-template-columns: repeat(3, 270px);
    gap: 40px;
    margin-bottom: 60px;
    width: fit-content;
    margin-inline: auto;
}

.cr-stat-box {
    background: rgba(255, 254, 228, 1);
    border-block: 2px solid var(--black);
    padding: 12px 16px 6px;
    text-align: center;
}

.casting-results-stats > .cr-stat-box {
    background: var(--yellow);
}

.cr-stat-label {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.cr-stat-num {
    font-family: var(--font-latin);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.36;
    letter-spacing: 0.04em;
    margin-top: -12px;
}

.cr-num-large {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.36;
}

.cr-stat-num-kobe {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.36;
    font-family: var(--font-latin);
    margin-top: -15px;

}

.casting-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 338px);
    grid-template-rows: auto;
    gap: 50px;
    margin-bottom: 32px;
    width: fit-content;
    margin-inline: auto;
    align-items: stretch;
}

.cr-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--black);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
}

.cr-card-img {
    width: 100%;
    height: 216px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.cr-card-body {
    padding: 12px 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.cr-card-name {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--black);
    text-align: center;
    min-height: calc(24px * 1.6 * 2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: auto;
}

.cr-card-name .sama {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.09em;
    vertical-align: text-bottom;
}

.cr-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 8px;
}

.cr-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.cr-item-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--black);
}

.cr-item-num {
    font-family: var(--font-latin);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: 0;
    color: var(--black);
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.cr-item-num-sm {
    font-size: 24px;
}

.cr-item-unit {
    font-family: var(--font-latin);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.36;
    letter-spacing: 0.09em;
    color: var(--black);
    text-decoration: underline;
    text-decoration-color: var(--yellow);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.cr-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.cr-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--black);
    display: block;
}

/* ============================================================
   RESPONSIVE 
   ============================================================ */
@media (max-width: 768px) {
    /* ============================================================
   responsive-a.css — Mobile rules (Header, Hero, Divider, Casting)
   Target: 375px · Breakpoint: max-width: 768px
   NOTE: No @media wrapper — imported inside a media query
   ============================================================ */

    .section-inner {
        padding-inline: 15px;
    }

    /* ---------- ANNOUNCE BAR ---------- */
    .announce-bar {
        font-size: 12px;
        padding: 6px 12px;
        letter-spacing: 0.09em;
        line-height: 1.6;
    }

    .announce-label {
        font-size: 12px;
    }

    /* ---------- HERO ---------- */
    .hero {
        padding: 0 0 40px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }

    .hero-images,
    .hero-content {
        display: contents;
    }

    .hero-main-img-wrap {
        order: 1;
        position: relative;
        overflow: hidden;
        margin-inline: -16px;
        width: 100vw;
    }

    .hero-main-img {
        display: none;
    }

    .hero-scroll {
        display: block;
        overflow: hidden;
        width: 100%;
    }

    .hero-scroll-track {
        display: flex;
        width: max-content;
        animation: hero-scroll 20s linear infinite;
    }

    .hero-scroll-track img {
        height: 54vw;
        min-height: 204px;
        max-height: 350px;
        width: auto;
        flex-shrink: 0;
        display: block;
    }

    @keyframes hero-scroll {
        from { transform: translateX(-25%); }
        to   { transform: translateX(-75%); }
    }

    /* Hero tag — overlay on bottom of FV image */
    .hero-tag {
        order: 2;
        width: 293px;
        max-width: calc(100% - 32px);
        height: auto;
        aspect-ratio: 293 / 92;
        gap: 24px;
        padding: 12px 20px;
        margin: -95px auto 0;
        position: relative;
        z-index: 2;
        border-radius: 2.77px;
        border-width: 1px;
        background: url('/images/hero-tag-sp.png') center/cover no-repeat;
    }

    .hero-tag-dot {
        width: 10px;
        height: 10px;
    }

    .hero-tag-sub {
        font-size: 12px;
    }

    .hero-tag-name {
        font-size: 28px;
        letter-spacing: 0.06em;
    }

    .hero-tag-kana {
        font-size: 11px;
    }

    /* Hero headline */
    .hero-headline {
        order: 3;
        font-size: 32px;
        line-height: 1.5;
        letter-spacing: 0.09em;
        margin-block: 0;
        width: min(500px, 100%);
        margin-inline: auto;
    }

    .hero-headline::before {
        content: '';
        display: block;
        width: 90px;
        height: 24px;
        margin-bottom: 8px;
        left: 7px;
        top: -15px;
        background: url('/images/hero-headline-sparkle.png') no-repeat left center / contain;
    }

    .hero-headline::after {
        content: '';
        display: block;
        width: 100px;
        height: 9px;
        right: inherit;
        left: 140px;
        bottom: -2px;
        margin-top: 8px;
        background: url('/images/underline-yellow-wave.svg') no-repeat left center / 100% auto;
    }

    /* Hero lead text */
    .hero-lead {
        order: 4;
        font-size: 15px;
        line-height: 1.8;
        letter-spacing: 0.06em;
        width: min(500px, 100%);
        margin-inline: auto;
    }

    /* Stat badges — 2×2 grid on mobile */
    .hero-stats {
        order: 5;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 30px;
        margin-top: 0;
        justify-items: center;
    }

    .stat-badge {
        width: 140px;
        height: 140px;
        border-radius: 50%;
    }

    .stat-label {
        font-size: 14px;
        line-height: 1.6;
        letter-spacing: 0.04em;
    }

    .stat-num-val {
        font-size: 40px;
        line-height: 1.36;
    }

    .stat-num-unit {
        font-size: 23px;
        line-height: 1.6;
        letter-spacing: 0.04em;
    }

    .stat-plus {
        font-size: 12px;
    }

    /* ---------- SECTION DIVIDER ---------- */
    .section-divider {
        padding: 0 0 30px;
        gap: 12px;
    }

    .section-divider::before {
        width: 30px;
    }

    .section-divider::after {
        width: 30px;
    }

    .section-divider span {
        font-size: 18px;
        line-height: 1.6;
        letter-spacing: 0.04em;
    }

    /* ---------- CASTING ---------- */
    .casting-section {
        padding: 40px 0;
        margin-top: 55px;
    }

    .casting-script {
        font-size: 34px;
    }

    .casting-script-left {
        top: -64px;
        left: 16px;
    }

    .casting-script-right {
        bottom: -20px;
        right: 16px;
    }

    .casting-subtitle {
        font-size: 22px;
        top: -16px;
    }

    .casting-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 26px;
        padding: 0 16px;
    }

    .casting-stat {
        width: 85%;
        max-width: 320px;
        height: auto;
        min-height: 96px;
        padding: 16px 0 8px;
    }

    .cstat-label {
        font-size: 16px;
        margin-bottom: 0;
    }

    .cstat-num {
        font-size: 26px;
    }

    .cstat-num .num-large {
        font-size: 38px;
    }

    /* Casting CTA button — full width on mobile */
    .casting-cta {
        padding: 0 16px;
    }

    .casting-cta .outline-btn {
        width: 85%;
        max-width: 292px;
        height: 72px;
        padding: 23px 40px;
        font-size: 16px;
        letter-spacing: 0.04em;
    }

    /* Button arrows — pull closer on mobile so they don't overflow */
    .main-btn::after,
    .outline-btn::after,
    .outline-btn-sm::after,
    .insta-follow-btn::after,
    .contact-btn-yellow::after,
    .contact-btn-white::after {
        right: -20px;
        width: 40px;
        height: 10px;
    }

    /* ---------- SECTION TITLES (shared) ---------- */
    .section-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .section-sub {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .script-label {
        font-size: 32px;
    }


    /* ============================================================
   responsive-b.css
   Sections: STRENGTHS, SHOPS, WHY
   Target: 375px mobile, breakpoint max-width: 768px
   NOTE: No @media wrapper — must be imported inside one
   ============================================================ */

    /* ---------- STRENGTHS ---------- */
    .strengths-section {
        padding: 40px 0;
    }

    .strengths-section .section-title {
        font-size: 28px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        margin-bottom: 0;
    }

    .strengths-section .section-title::after {
        width: 211px;
        left: 45%;
        right: auto;
        transform: translateX(-50%);
    }

    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 57px;
        margin-top: 50px;
    }

    .strength-card {
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
        padding: 30px 12.5px;
        border-radius: 0;
    }

    .strength-icon {
        top: -25px;
        right: 10px;
    }

    .strength-icon img {
        height: 60px;
    }

    .strength-card h3 {
        font-size: 22px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        margin-bottom: 8px;
    }

    .strength-card p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .strength-btn {
        width: 90%;
        max-width: 260px;
        height: 72px;
        padding: 23px 40px;
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 0.04em;
    }

    /* ---------- SHOPS ---------- */
    .shops-section {
        padding: 0 0 40px;
    }

    .shops-bar {
        font-size: 22px;
        padding: 15px 16px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        margin-bottom: 30px;
        margin-inline: -15px;
    }

    .shops-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .shop-logo-box {
        width: 100%;
        height: auto;
        aspect-ratio: 160 / 100
    }

    /* ---------- WHY ---------- */
    .why-section {
        padding: 70px 0;
    }

    .dashed-border::before {
        top: 16px;
    }

    .dashed-border::after {
        bottom: 16px;
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
        max-width: 500px;
        margin-inline: auto;
    }

    .why-left {
        width: 100%;
        padding-inline: 0;
        align-items: center;
        text-align: center;
    }

    .why-divider {
        display: none;
    }

    .why-right {
        padding-left: 0;
        padding-top: 0;
    }

    .why-title {
        font-size: 28px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        margin-bottom: 22px;
    }

    .why-illust {
        width: 60%;
        max-width: 250px;
        height: auto;
        margin: 0 auto 16px;
    }

    .why-box {
        width: 100%;
        font-size: 16px;
        padding: 18px 8px;
        line-height: 1.6;
        letter-spacing: 0.04em;
        margin-bottom: 8px;
    }

    /* Why blocks */
    .why-block {
        margin: 0;
        border-top: 1px solid var(--black);
        border-bottom: 1px solid var(--black);
        padding: 57px 0 30px;
    }

    .why-block-b {
        border: none;
        padding: 40px 0 0;
    }

    .why-marker {
        width: 42px;
        height: 42px;
        font-size: 28px;
        top: 25px;
        left: 0px;
    }

    .why-marker::after {
        bottom: -8px;
        left: 14px;
        border-left: 8px solid transparent;
        border-right: 5px solid transparent;
        border-top: 10px solid var(--yellow);
    }

    .why-first-p {
        text-indent: calc(35px);
    }

    .why-block p {
        font-size: 16px;
        line-height: 1.8;
        letter-spacing: 0.04em;
        margin-bottom: 30px;
    }

    .why-block-b p {
        margin-bottom: 0;
    }

    .why-block .why-second-p {
        margin-bottom: 0;
    }

    /* Why block B */
    .why-block-b-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 12px;
    }

    .why-block-b h3 {
        font-size: 28px;
        line-height: 1.6;
        letter-spacing: 0.08em;
    }

    .why-mark-wrap {
        display: inline;
    }

    .why-deco-svg {
        left: auto;
        right: -14px;
        top: -38px;
        width: 36px;
        transform: scaleX(-1) rotate(45deg);
    }

    .why-block-b-img {
        width: 55%;
        max-width: 250px;
        height: auto;
        align-self: center;
        margin-inline: auto;
    }


    /* ============================================================
   responsive-c.css — Instagram / Flow / Services (mobile)
   Target: 375px width, breakpoint max-width: 768px
   No @media wrapper — meant to be imported inside one
   ============================================================ */

    /* ---------- INSTAGRAM ---------- */
    .insta-inner {
        flex-direction: column;
        padding: 0 16px;
    }

    .insta-left {
        width: 100%;
        position: static;
        padding: 40px 16px 0;
        align-items: center;
    }

    .insta-left-heading {
        align-items: center;
        width: 100%;
        gap: 8px;
    }

    .insta-left-title {
        font-size: 28px;
        text-align: center;
        padding-top: 0;
    }

    .insta-underline {
        max-width: fit-content;
        flex-shrink: 0;
    }

    .insta-underline img {
        display: block;
        height: auto;
    }

    .insta-right {
        max-width: 500px;
        width: 100%;
        margin-inline: auto;
        padding: 20px 0 40px;
    }

    .insta-account {
        padding: 30px 20px 40px;
        gap: 30px;
    }

    .insta-top-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .insta-avatar-wrap {
        width: 120px;
        height: 120px;
    }

    .insta-meta {
        align-items: center;
        gap: 20px;
    }

    .insta-username {
        font-size: 20px;
        letter-spacing: 0.09em;
    }

    .insta-circles {
        gap: 14px;
        justify-content: center;
    }

    .insta-circle {
        width: 90px;
        height: 90px;
    }

    .circle-num {
        font-size: 22px;
    }

    .circle-label {
        font-size: 14px;
    }

    .insta-bio-box {
        padding: 6px 22px;
    }

    .insta-bio-box::before,
    .insta-bio-box::after {
        width: 29px;
        height: 29px;
    }

    .insta-bio-left {
        font-size: 16px;
        line-height: 1.8;
    }

    .insta-follow-btn {
        width: 85%;
        max-width: 240px;
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 0.04em;
        padding: 10px 50px;
        text-align: center;
    }

    .insta-follow-btn::after {
        right: -20px;
        width: 40px;
        height: 10px;
    }

    /* ---------- FLOW ---------- */
    .flow-section {
        padding: 40px 0 60px;
    }

    .flow-section .section-title {
        font-size: 28px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        padding: 0 6px 6px;
    }

    .flow-section .section-sub {
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 0.04em;
        padding: 0 16px;
        margin-bottom: 40px;
    }

    .flow-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin: 24px 0 30px;
        padding: 0 16px;
    }

    /* Vertical dashed line through all steps */
    .flow-grid::before {
        display: block;
        top: 0;
        bottom: auto;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-top: none;
        border-left: 2px dashed var(--black);
        z-index: 0;
    }

    .flow-grid.is-visible::before {
        animation: flow-line-vertical 3s ease forwards;
    }

    @keyframes flow-line-vertical {
        0%   { height: 0; }
        100% { height: 100%; }
    }

    .flow-step {
        position: relative;
        width: 100%;
        max-width: 320px;
    }

    .flow-script {
        font-size: 36px;
        margin-bottom: -45px;
    }

    .flow-circle {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
        gap: 8px;
    }

    .flow-step-num {
        font-size: 16px;
    }

    .flow-step-label {
        font-size: 20px;
    }

    .flow-items {
        gap: 10px;
        padding-bottom: 70px;
    }

    :last-of-type:last-of-type>.flow-items {
        padding-bottom: 0;
    }

    .flow-item {
        width: 100%;
        max-width: 240px;
        height: auto;
        min-height: 55px;
        padding: 4px 8px;
        border-radius: 3px;
    }

    .flow-item strong {
        font-size: 15px;
    }

    .flow-item span {
        font-size: 14px;
        margin-top: 0;
    }

    .flow-bottom-wrap {
        padding: 16px;
    }

    .flow-bottom {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .flow-mark {
        width: fit-content;
        margin-inline: auto;
        display: block;
        padding: 1px 4px;
        margin-top: 6px;
    }

    .flow-bottom-sub {
        font-size: 16px;
    }

    /* ---------- SERVICES ---------- */
    .services-section {
        padding: 0 0 40px;
    }

    .services-header {
        padding: 10px 16px;
        margin-bottom: 20px;
    }

    .services-title {
        font-size: 28px;
        line-height: 1.6;
        letter-spacing: 0.08em;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 60px;
        max-width: 500px;
        margin-inline: auto;
    }

    .service-item:first-of-type {
        padding-top: 0;
    }

    .service-item-rev {
        grid-template-columns: 1fr;
    }

    .service-images,
    .service-text,
    .service-images picture {
        display: contents;
    }

    .service-num {
        order: 1;
        font-size: 26px;
        margin-bottom: 0;
        margin-inline: auto;
    }

    .service-text h3 {
        order: 2;
        font-size: 26px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        margin-inline: auto;
        margin-bottom: 0;
        text-align: center;
    }

    /* .service-text h3::after,
    .service-item--pr .service-text h3::after,
    .service-item--casting .service-text h3::after,
    .service-item--meo .service-text h3::after {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: auto;
    } */

    .service-item--pr .service-text h3::after {
        width: 182px;
        left: 2%
    }

    .service-item--casting .service-text h3::after {
        width: 171px;
        right: 18%;
        left: inherit;
        bottom: 38px;
    }

    .service-item--meo .service-text h3::after {
        width: 171px;
        left: 10%;
    }

    .service-single-img {
        order: 3;
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 514 / 380;
        margin-top: 14px;
        margin-inline: auto;
        border: solid 2px var(--black);
    }

    .service-text p {
        order: 5;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 0;
        margin-top: 4px;
    }

    .service-text ul {
        display: flex;
        flex-direction: column;
        order: 6;
        padding: 20px 20px;
        margin-top: 4px;
        gap: 6px;
        width: 100%;
    }

    .service-text li {
        font-size: 15px;
        line-height: 1.8;
    }

    .cashback-badge {
        order: 4;
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: -60px;
        margin-inline: auto;
        z-index: 2;
        padding: 4px 12px 8px;
    }

    .cashback-badge-top-row {
        flex-wrap: wrap;
        gap: 4px;
    }

    .cashback-badge-today {
        font-size: 12px;
    }

    .cashback-badge-sub {
        font-size: 14px;
    }

    .cashback-badge-num {
        margin-top: -20px;
    }

    .cbn-lg {
        font-size: 45px;
    }

    .cbn-md {
        font-size: 30px;
    }

    .cbn-sm {
        font-size: 24px;
    }

    .cashback-badge-note {
        font-size: 13px;
        padding-top: 6px;
    }


    /* ============================================================
   responsive-d.css — Results, Casting Results, Influencers (mobile)
   Target: 375px width, breakpoint max-width: 768px
   No @media wrapper — meant to be imported inside one
   ============================================================ */

    /* ---------- RESULTS ---------- */
    .results-section {
        padding: 40px 0;
    }

    .results-title {
        font-size: 26px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        margin-bottom: 10px;
    }

    .results-sub {
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 0.04em;
        margin-bottom: 30px;
    }

    /* Top grid: 2-column -> 1-column stacked */
    .results-grid-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-inline: 12.5px;
    }

    /* Large result cards: horizontal -> vertical layout */
    .result-card {
        flex-direction: column;
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
        padding: 20px 25px;
        gap: 16px;
    }

    .result-card-img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        border-radius: 6px;
    }

    .result-card-body {
        width: 100%;
    }

    .result-category {
        font-size: 12px;
        padding: 3px 24px;
        margin-bottom: 10px;
    }

    .result-name {
        font-size: 20px;
        margin-bottom: 16px;
        text-align: center;
    }

    .sama {
        font-size: 16px;
    }

    /* Stat grid inside large cards: fluid widths */
    .result-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .result-stats>div {
        width: 100%;
        padding: 8px 4px 4px;
    }

    .rstat-label {
        font-size: 12px;
        line-height: 120%;
    }

    .rstat-num {
        font-size: 30px;
    }

    .rstat-num small {
        font-size: 18px;
    }

    /* Bottom grid: 4-column -> 1-column */
    .results-grid-bot {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 20px;
        padding-inline: 12.5px;
    }

    .result-card-sm {
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
        padding: 20px 25px;
        gap: 12px;
        border-radius: 10px;
    }

    .rcard-sm-img-wrap {
        border-top-left-radius: 0;
    }

    .rcard-sm-img {
        height: 100%;
        aspect-ratio: auto;
    }

    .rcard-sm-tag {
        font-size: 12px;
        padding: 3px 4px;
    }

    .rcard-sm-name {
        font-size: 18px;
        letter-spacing: 0.09em;
    }

    .rcard-sm-name .sama {
        font-size: 14px;
    }

    .rcard-sm-kpi {
        padding: 8px 6px 4px;
    }

    .rcard-sm-kpi-label {
        font-size: 12px;
    }

    .rcard-sm-main {
        font-size: 30px;
    }

    .rcard-sm-unit {
        font-size: 18px;
    }

    .rcard-sm-subs {
        gap: 14px;
        flex-direction: row;
    }

    .rcard-sm-subs>span {
        padding: 4px 2px;
    }

    .rcard-sm-subs .sub-label {
        font-size: 12px;
    }

    .rcard-sm-subs .sub-val {
        font-size: 14px;
    }

    .results-note {
        max-width: 500px;
        font-size: 10px;
        line-height: 1.36;
        padding: 0 12.5px;
        text-align: left;
        margin-inline: auto;
    }

    /* ---------- CASTING RESULTS ---------- */
    .casting-results-section {
        padding: 40px 0;
    }

    .casting-results-title {
        font-size: 28px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        margin-bottom: 30px;
        padding: 0;
    }

    /* Stats row: 3-column fixed -> full-width stacked */
    .casting-results-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
        width: 100%;
        max-width: 500px;
    }

    .cr-stat-box {
        padding: 14px 16px 6px;
    }

    .cr-stat-label {
        font-size: 16px;
    }

    .cr-stat-num {
        font-size: 24px;
        margin-top: 0;
    }

    .cr-stat-box--total-followers .cr-stat-num {
        margin-top: -10px;
    }

    .cr-num-large {
        font-size: 40px;
    }

    .cr-stat-num-kobe {
        font-size: 36px;
    }

    /* Cards grid: 3-column fixed -> horizontal scroll */
    .casting-results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 92%;
        max-width: 500px;
        margin-inline: auto;
        margin-bottom: 0;
    }

    .cr-card {
        width: 100%;
        border-radius: 20px;
    }

    .cr-card-img {
        height: 160px;
        aspect-ratio: 310 / 160;
    }

    .cr-card-body {
        padding: 8px 32px 30px;
        gap: 10px;
    }

    .cr-card-name {
        font-size: 20px;
        min-height: auto;
        display: flex;
        align-items: flex-end;
        gap: 7px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cr-card-name .sama {
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 0.04em;
    }

    .cr-card--second .cr-card-name,
    .cr-card--third .cr-card-name {
        font-size: 20px;
    }

    .cr-card-stats {
        gap: 8px;
    }

    .cr-item-label {
        font-size: 12px;
    }

    .cr-item-num {
        font-size: 30px;
    }

    .cr-item-num-sm {
        font-size: 20px;
    }

    .cr-item-unit {
        font-size: 16px;
    }

    .cr-dots {
        gap: 6px;
        bottom: -15px;
    }

    .cr-dot {
        width: 6px;
        height: 6px;
    }

    /* ---------- INFLUENCERS ---------- */
    .influencers-section {
        padding: 40px 0;
    }

    .influencers-section .section-title {
        width: 100%;
        font-size: 28px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        margin-inline: auto;
        margin-bottom: 0;
    }

    .influencers-section small {
        display: block;
        margin-left: 0;
        font-size: 12px;
        color: var(--black);
        text-align: right;
    }

    .influencers-section .section-sub {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
        color: var(--black);
    }

    /* Flex wrap -> 1-column grid */
    .inf-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
        max-width: 500px;
        margin-inline: auto;
    }

    .inf-card {
        width: 100%;
        height: 140px;
        padding: 16px 17px 9px;
        border-radius: 10px;
        box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.85);
        display: grid;
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto auto;
        justify-content: center;
        column-gap: 10px;
        row-gap: 0;
        align-items: center;
        text-align: left;
    }

    .inf-title-wrap {
        margin-bottom: 20px;
    }

    .inf-avatar {
        grid-column: 1;
        grid-row: 1 / -1;
    }

    .inf-name,
    .inf-handle,
    .inf-followers {
        grid-column: 2;
    }

    .inf-tag {
        font-size: 12px;
        padding: 4px 14px;
        top: 0;
        right: 0;
        left: auto;
        border-top-left-radius: 0;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 10px;
    }

    .inf-avatar {
        width: 100px;
        height: 100px;
        margin: 0;
        flex-shrink: 0;
    }

    .inf-avatar-text {
        font-size: 10px;
    }

    .inf-avatar-text-sm {
        font-size: 9px;
    }

    .inf-name {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 0.09em;
        min-height: auto;
        margin-block: 15px 0;
    }

    .inf-name-small {
        font-size: 14px;
    }

    .inf-handle {
        font-size: 12px;
        letter-spacing: 0.09em;
        margin-bottom: 1px;
        min-height: auto;
        word-break: break-all;
    }

    .inf-followers {
        letter-spacing: 0.02em;
        gap: 1px;
    }

    .inf-followers .inf-num {
        font-size: 30px;
    }

    .inf-followers .inf-man {
        font-size: 18px;
    }

    .inf-followers .inf-follower {
        font-size: 15px;
    }

    .inf-more {
        font-size: 18px;
        margin-bottom: 34px;
    }

    /* ============================================================
   responsive-e.css
   Responsive rules for: PhaseNight, Cashback, Contact, Footer
   Target: 375px mobile, breakpoint max-width: 768px
   NOTE: These rules should be placed INSIDE a
         @media (max-width: 768px) { ... } wrapper in the main
         responsive stylesheet. No @media wrapper is included here.
   ============================================================ */

    /* ---------- PHASE NIGHT ---------- */
    .phasenight-inner {
        grid-template-columns: 1fr;
        padding-block: 60px 270px;
        gap: 0;
        min-height: auto;
    }

    .phasenight-left {
        width: 100%;
        height: auto;
        max-height: inherit;
        padding-inline: 20px;
        order: 2;
    }

    .phasenight-main-img {
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
        height: 100%;
        object-fit: cover;
    }

    .phasenight-right {
        padding-left: 0;
        padding: 0 20px 0;
        gap: 16px;
        width: 100%;
        order: 1;
        max-width: 500px;
        margin-inline: auto;
    }

    .pn-divider {
        width: 100%;
    }

    .pn-badge {
        width: 293px;
        max-width: calc(100% - 32px);
        height: auto;
        aspect-ratio: 293 / 92;
        padding: 12px 20px;
        gap: 24px;
        background: url('/images/pn-badge-bg-sp.png') center/cover no-repeat;
        border-radius: 2.77px;
        border-width: 1px;
        margin-bottom: 0;
    }

    .pn-badge-sub {
        font-size: 12px;
    }

    .pn-badge-name {
        font-size: 28px;
    }

    .pn-badge-kana {
        font-size: 12px;
    }

    .phasenight-title {
        font-size: 22px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        margin-bottom: 4px;
    }

    .pn-text-main {
        font-size: 16px;
        line-height: 1.8;
        text-align: left;
        margin-block: -8px;
    }

    .pn-text-main br {
        display: none;
    }

    .pn-text-sub {
        font-size: 16px;
        line-height: 1.8;
        margin-top: 4px;
    }

    .phasenight-stats {
        justify-content: center;
        gap: 5px;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .pn-circle {
        width: 105px;
        height: 105px;
        gap: 2px;
    }

    .pn-circle-label {
        font-size: 12px;
    }

    .pn-num-lg {
        font-size: 24px;
    }

    .pn-num-unit {
        font-size: 12px;
    }

    .pn-num-mid {
        font-size: 14px;
    }

    .pn-num-xl {
        font-size: 30px;
    }

    /* ---------- CASHBACK SECTION ---------- */
    .cashback-section {
        margin-top: -220px;
        margin-bottom: -400px;
        padding-top: 95px;
        padding-inline: 20px;
    }

    .cashback-section--inline {
        margin-top: 0;
        margin-bottom: -290px;
    }

    .shops-section--cta-after {
        padding-bottom: 60px;
    }

    .why-section--cta-before {
        padding-top: 320px;
    }

    .flow-section--cta-after {
        padding-bottom: 0;
    }

    .services-section--cta-before {
        padding-top: 0;
    }

    .cashback-section--between {
        margin-top: 0;
        margin-bottom: 48px;
    }

    .cashback-box {
        width: 100%;
        height: auto;
        max-width: 500px;
        margin-inline: auto;
        min-height: 0;
        padding: 24px 0 30px;
    }

    .cashback-visual-coins {
        left: 2px;
        top: -49px;
        width: 118.588234px;
        height: 90px;
    }

    .cashback-visual-figure {
        left: auto;
        right: 20px;
        top: -95px;
        width: 100px;
        height: 163.184052px;
    }

    .cashback-box .main-btn {
        width: min(302px, calc(100% - 36px));
        padding: 23px 38px 23px 22px;
        font-family: 'Shippori Gothic B2', sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 0.04em;
        text-align: center;
    }

    .cashback-title {
        display: flex;
        flex-direction: column;
        margin-inline: 70px;
        margin-bottom: 0;
    }

    .cashback-label {
        font-family: 'Shippori Gothic B2', sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 18px;
        line-height: 1.8;
        letter-spacing: 0.09em;
        height: 36px;
        margin-bottom: 4px;
        padding-inline: 10.5px;
    }

    .cashback-yen {
        font-size: 52px;
        letter-spacing: 0.03em;
    }

    .cashback-yen::after {
        height: 16px;
    }

    .cashback-text {
        font-size: 30px;
        margin-top: 2px;
        margin-bottom: 10px;
    }

    .cashback-section--final .cashback-text {
        margin-bottom: 5px;
    }

    .cashback-sub {
        font-size: 18px;
        line-height: 1.5;
        padding-block: 6px;
    }

    .cashback-body-box {
        padding-top: 0;
        padding-inline: 0;
        margin-top: 9px;
    }

    .cashback-body {
        width: calc(100% + 40px);
        max-width: 340px;
        white-space: normal;
        font-size: 14px;
        line-height: 1.8;
        letter-spacing: 0.02em;
        margin-top: 16px;
        margin-bottom: 20px;
    }

    .cashback-note {
        font-family: 'Shippori Gothic B2', sans-serif;
        font-size: 10px;
        line-height: 1.8;
        letter-spacing: 0.04em;
        margin-top: 6px;
    }

    .main-btn {
        font-size: 16px;
        padding: 23px 28px;
        width: 100%;
        max-width: 254px;
        justify-content: center;
    }

    /* ---------- CONTACT ---------- */
    .contact-section {
        padding-top: clamp(502.375px, 609.125px - 13.9vw, 557px);
        padding-bottom: clamp(72.5px, 214.2px - 18.45vw, 145px);
    }

    .contact-inner {
        padding: 0 20px;
    }

    .contact-title {
        font-size: 28px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        width: 100%;
        text-align: left;
        margin-inline: auto;
        width: fit-content;
    }

    .contact-title::after {
        width: 230px;
        left: 120px;
        right: auto;
        transform: translateX(-50%);
    }

    .contact-box {
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
        padding: 20px 0;
        font-size: 16px;
        line-height: 1.6;
        margin-top: 20px;
        border-radius: 20px;
    }

    .contact-btns {
        flex-direction: column;
        gap: 22px;
        margin-top: 24px;
        width: 100%;
    }

    .contact-btn-yellow,
    .contact-btn-white {
        width: 85%;
        max-width: 300px;
        height: auto;
        min-height: 64px;
        padding: 23px 20px;
        font-size: 16px;
    }

    .contact-info {
        font-size: 14px;
        line-height: 1.8;
        margin-top: 24px;
    }

    .contact-info-address {
        word-break: break-all;
    }

    /* Contact deco images — reposition / scale for mobile */
    .contact-deco-tl {
        top: -120px;
        right: 0;
        transform: scale(0.75);
        left: inherit;
    }

    .contact-deco-tr {
        top: -150px;
        left: -10px;
        right: inherit;
        transform: scale(0.65);
        z-index: 9999;
    }

    .contact-deco-bl {
        bottom: -150px;
        right: -10px;
        transform: scale(0.7);
        left: inherit;
        transform-origin: inherit;
    }

    .contact-deco-br {
        bottom: -200px;
        left: -10px;
        transform: scale(0.67);
        right: inherit;
        transform-origin: inherit;
    }

}

/* ============================================================
   RESPONSIVE — intermediate widths (769px–1440px)
   Scoped with min-width so the existing mobile presentation is
   preserved while fixed desktop dimensions become fluid.
   ============================================================ */
@media (max-width: 1024px) {
    .cashback-body-box {
        padding-inline: 0;
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .cashback-body-break {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .why-inner {
        margin-top: 25px;
    }
}

@media (min-width: 769px) and (max-width: 1440px) {

    .section-inner,
    .why-inner,
    .insta-inner,
    .contact-inner {
        padding-inline: clamp(24px, 3vw, 48px);
    }

    .hero-inner {
        gap: clamp(30px, 3.75vw, 54px);
        padding-inline: clamp(24px, 3vw, 48px);
    }

    .hero-images,
    .hero-content,
    .why-right,
    .service-images,
    .service-text,
    .result-card-body,
    .phasenight-right {
        min-width: 0;
    }

    .phasenight-title {
        font-size: clamp(22px, 10px + 1.6vw, 36px);
    }

    .pn-text-main {
        font-size: clamp(16px, 13.7px + 0.3vw, 18px);
    }

    .hero-main-img {
        width: 100%;
        height: auto;
        aspect-ratio: 643 / 450;
    }

    .hero-stats {
        gap: clamp(8px, 1.5vw, 25px);
    }

    .stat-badge {
        width: clamp(96px, 10vw, 142px);
        height: clamp(96px, 10vw, 142px);
        aspect-ratio: 1;
    }

    .stat-label {
        font-size: clamp(10px, 0.9vw, 14px);
    }

    .stat-num-val {
        font-size: clamp(30px, 3vw, 40px);
    }

    .stat-num-unit {
        font-size: clamp(18px, 1.8vw, 24px);
    }

    .stat-plus {
        font-size: clamp(12px, calc(7px + 0.6vw), 16px);
    }

    .hero-tag {
        width: 100%;
        max-width: 443px;
        gap: clamp(28px, 4.4vw, 64px);
    }

    .hero-headline {
        font-size: clamp(40px, 3.65vw, 52px);
    }

    .hero-headline::before {
        left: clamp(0px, calc(-29px + 3.73vw), 25px);
    }

    .hero-headline::after {
        width: clamp(130px, 13vw, 165px);
        right: clamp(70px, 17vw, 210px);
    }

    .strengths-section .section-title::after {
        width: 255px;
        right: 9%;
    }

    .casting-script {
        font-size: 48px;
    }

    .casting-script-left {
        left: clamp(40px, 4.2vw, 60px);
    }

    .casting-script-right {
        right: clamp(70px, 8.4vw, 120px);
    }

    .casting-stats {
        padding-inline: clamp(24px, 4vw, 60px);
    }

    .casting-stat {
        flex: 1 1 240px;
        width: auto;
        max-width: 320px;
        min-width: 0;
    }

    .strength-card h3 {
        font-size: clamp(20px, calc(11px + 1.19vw), 28px);
    }

    .strength-card p {
        font-size: clamp(12px, calc(7px + 0.6vw), 16px);
    }

    .strength-btn,
    .casting-cta .outline-btn {
        max-width: 100%;
    }

    .shops-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .shop-logo-box {
        width: 100%;
    }

    .why-inner {
        grid-template-columns: minmax(300px, 350px) 1px minmax(0, 1fr);
    }

    .why-left {
        width: 100%;
    }

    .why-title {
        font-size: clamp(24px, calc(14px + 0.85vw), 30px);
    }

    .why-box {
        padding: 17px clamp(10px, calc(-7px + 2.24vw), 25px);
        width: min(600px, 100%);
    }

    .why-marker {
        width: clamp(42px, calc(33px + 1.19vw), 50px);
        height: clamp(42px, calc(33px + 1.19vw), 50px);
        font-size: clamp(28px, calc(19px + 1.19vw), 36px);
    }

    .why-block p {
        font-size: clamp(14px, calc(11px + 0.3vw), 16px);
    }

    .why-block-b h3 {
        font-size: clamp(24px, calc(17px + 0.89vw), 30px);
    }

    .why-block-b-img {
        width: clamp(120px, calc(70px + 6.56vw), 164px);
    }

    .why-right {
        padding-left: clamp(32px, 3vw, 40px);
    }

    .insta-left {
        width: clamp(380px, 33vw, 420px);
        padding: 80px 40px 40px 30px;
    }

    .insta-right {
        min-width: 0;
    }

    .insta-account {
        padding: 40px clamp(30px, 3.5vw, 50px) 30px;
    }

    .insta-top-row {
        gap: clamp(24px, 2.8vw, 40px);
        justify-content: center;
    }

    .insta-avatar-wrap {
        width: clamp(120px, 10.7vw, 153px);
        height: clamp(120px, 10.7vw, 153px);
    }

    .flow-circle {
        width: clamp(160px, 14.6vw, 210px);
        height: clamp(160px, 14.6vw, 210px);
    }

    .flow-step-label {
        font-size: clamp(18px, calc(11px + 0.89vw), 24px);
    }

    .flow-grid::before {
        top: clamp(88px, 7.85vw, 113px);
        left: clamp(80px, 7.3vw, 105px);
    }

    .flow-grid.is-visible::before {
        animation: flow-line-mid 3s ease forwards;
    }

    @keyframes flow-line-mid {
        0%   { width: 0; }
        100% { width: calc(100% - 2 * clamp(80px, 7.3vw, 105px)); }
    }

    .flow-item {
        width: min(100%, 234px);
    }

    .service-item,
    .service-item-rev {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .service-single-img {
        width: 100%;
        height: auto;
        aspect-ratio: 514 / 380;
    }

    .service-text h3::after,
    .service-item--pr .service-text h3::after,
    .service-item--casting .service-text h3::after,
    .service-item--meo .service-text h3::after {
        width: 200px;
        left: 0;
        right: auto;
    }

    .service-item--pr .service-text h3::after {
        width: 175px;
        right: 30px;
        left: inherit;
    }

    .service-item--casting .service-text h3::after {
        width: 175px;
        left: 75px;
    }

    .service-item--meo .service-text h3::after {
        width: 165px;
        right: 15px;
        left: inherit;
    }

    .service-text h3 {
        font-size: clamp(24px, calc(10px + 0.8vw), 30px);
    }

    .service-text p {
        font-size: clamp(14px, calc(12px + 0.3vw), 16px);
    }

    .service-text li {
        font-size: clamp(14px, calc(8px + 0.6vw), 18px);
    }

    .service-text ul {
        padding: 20px clamp(20px, calc(5px + 1.49vw), 30px);
    }

    .result-card-img {
        width: calc(50% - 20px);
    }

    .result-stats {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .result-stats>div {
        width: 100%;
        min-width: 0;
    }

    .result-name {
        font-size: clamp(16px, calc(10px + 0.6vw), 20px);
    }

    .sama {
        font-size: clamp(12px, calc(9px + 0.3vw), 14px);
    }

    .rstat-num {
        font-size: clamp(26px, calc(15px + 1.19vw), 34px);
    }

    .rstat-num small {
        font-size: clamp(16px, calc(10px + 0.6vw), 20px);
    }

    .rcard-sm-subs {
        flex-direction: column;
        gap: 4px;
    }

    .result-card-body {
        display: flex;
        flex-direction: column;
    }

    .result-card-body .result-name {
        margin-block: auto;
        text-align: center;
    }

    .result-card-sm {
        height: 100%;
    }

    .rcard-sm-name {
        margin-block: 0;
        text-align: center;
    }

    .inf-card {
        width: min(220px, calc(20% - 16px));
        min-width: 0;
    }

    .phasenight-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        padding-inline: clamp(24px, 3vw, 48px);
    }

    .phasenight-left {
        width: 100%;
        height: auto;
        aspect-ratio: 498 / 775;
    }

    .phasenight-right {
        padding-left: clamp(30px, 3vw, 40px);
    }

    .pn-badge {
        width: 100%;
        max-width: 443px;
        gap: clamp(28px, 4vw, 64px);
    }

    .phasenight-stats {
        gap: clamp(12px, 2vw, 30px);
    }

    .pn-circle {
        width: clamp(145px, 12.5vw, 180px);
        height: clamp(145px, 12.5vw, 180px);
    }

    .cashback-box {
        padding: 30px 0 40px;
    }

    .contact-deco-tl {
        left: clamp(40px, 8vw, 115px);
    }

    .contact-deco-br {
        right: clamp(20px, 4vw, 58px);
    }

    .contact-title::after {
        left: 54%;
        right: auto;
        transform: translateX(-50%);
    }

    .contact-box {
        width: min(100%, 808px);
        padding: 30px clamp(40px, 3.5vw, 50px);
    }

    .contact-btns {
        gap: clamp(28px, 4.45vw, 64px);
    }

    .contact-btn-yellow,
    .contact-btn-white {
        width: min(349px, calc(50vw - 76px));
    }

    .casting-results-stats,
    .casting-results-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .casting-results-stats {
        gap: clamp(20px, 2.8vw, 40px);
    }

    .casting-results-grid {
        gap: clamp(24px, 3.5vw, 50px);
    }

    .cr-stat-box,
    .cr-card,
    .cr-card-body {
        min-width: 0;
    }

    .cr-card-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cr-card-name {
        font-size: clamp(18px, calc(11px + 0.89vw), 24px);
    }

    .cr-card-name .sama {
        font-size: clamp(14px, calc(8px + 0.6vw), 18px);
    }

    .cr-item-label {
        font-size: clamp(12px, calc(9px + 0.3vw), 14px);
    }
}

/* ============================================================
   RESPONSIVE — tablet (769px–1023px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1023px) {
    .announce-bar,
    .announce-label {
        font-size: 15px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hero-images {
        width: min(100%, 640px);
        margin-inline: auto;
    }

    .hero-content {
        width: fit-content;
        margin-inline: auto;
    }

    .hero-stats {
        margin-top: -64px;
    }

    .stat-badge {
        width: clamp(110px, 15vw, 142px);
        height: clamp(110px, 15vw, 142px);
    }

    .hero-tag {
        max-width: 400px;
        height: auto;
        min-height: 110px;
        gap: 30px;
    }

    .hero-headline::after {
        width: 160px;
        right: 140px;
    }

    .casting-script {
        font-size: 36px;
    }

    .casting-script-left {
        left: 24px;
    }

    .casting-script-right {
        right: 40px;
    }

    .casting-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .casting-stat {
        flex: 1 1 calc(33.333% - 14px);
        min-width: 0;
    }

    .casting-cta .outline-btn {
        width: min(100%, 368px);
    }

    .strengths-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .strength-card--meo {
        grid-column: 1 / -1;
        width: calc(50% - 15px);
        justify-self: center;
    }

    .strengths-section .section-title::after {
        width: 250px;
        right: 9%;
    }

    .strength-btn {
        width: min(100%, 255px);
        padding-inline: 32px;
    }

    .shops-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .why-left {
        max-width: 600px;
        margin-inline: auto;
    }

    .why-divider {
        display: none;
    }

    .why-right {
        width: 100%;
        max-width: 600px;
        margin-inline: auto;
        padding-top: 0;
        padding-left: 0;
    }

    .why-illust {
        width: clamp(180px, 25vw, 230px);
        height: auto;
    }

    .why-block-b-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-block: 24px 12px;
    }

    .why-block-b-img {
        width: clamp(140px, 18vw, 164px);
        height: auto;
        align-self: center;
    }

    .why-block-b p {
        margin-top: 0;
    }

    .why-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 54px;
    }

    .why-left {
        width: 100%;
        max-width: 600px;
        margin-inline: auto;
    }

    .why-divider {
        display: none;
    }

    .insta-inner {
        max-width: 700px;
        flex-direction: column;
    }

    .insta-left {
        width: 100%;
        position: static;
        padding: 48px 20px 32px;
    }

    .insta-left-heading {
        text-align: center;
    }

    .insta-underline {
        text-align: center;
        margin-inline: auto;
        width: fit-content;
    }

    .insta-right {
        width: 100%;
        padding: 0 0 48px;
    }

    .insta-account {
        padding: 36px clamp(30px, 8vw, 72px);
    }

    .flow-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px 24px;
    }

    .flow-grid::before {
        display: none;
    }

    .flow-circle {
        width: 160px;
        height: 160px;
    }

    .flow-step-label {
        font-size: clamp(18px, calc(11px + 0.89vw), 24px);
    }

    .flow-item {
        width: min(100%, 280px);
    }

    .service-item,
    .service-item-rev {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-text {
        max-width: 500px;
        margin-inline: auto;
    }

    .service-item-rev .service-text {
        order: 2;
    }

    .service-item-rev .service-images {
        order: 1;
    }

    .service-single-img {
        max-width: 500px;
        margin-inline: auto;
    }

    .cashback-badge {
        transform: translateX(-50%);
        left: 50%;
        max-width: 500px;
    }

    .service-text h3::after,
    .service-item--pr .service-text h3::after,
    .service-item--casting .service-text h3::after,
    .service-item--meo .service-text h3::after {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: auto;
    }

    .service-item--pr .service-text h3::after {
        width: 180px;
        right: 30px;
        left: inherit;
    }

    
    .service-item--casting .service-text h3::after {
        width: 150px;
        left: 80px;
    }

    
    .service-item--meo .service-text h3::after {
        width: 165px;
        right: 20px;
        left: inherit;
    }

    .results-title {
        font-size: clamp(22px, calc(5.95px + 2.09vw), 36px);
    }

    .results-sub {
        font-size: clamp(18px, calc(11px + 0.89vw), 24px);
    }

    .results-grid-top {
        grid-template-columns: 1fr;
    }

    .result-card-lg .result-name {
        font-size: clamp(18px, calc(12px + 0.7vw), 22px);
    }

    .results-grid-bot {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .result-card-img {
        width: calc(50% - 35px);
    }

    .inf-grid {
        gap: 20px 16px;
    }

    .inf-card {
        width: calc(33.333% - 11px);
    }

    .phasenight-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-block: 80px 220px;
    }

    .phasenight-left {
        max-width: 500px;
        margin-inline: auto;
    }

    .phasenight-right {
        padding-left: 0;
    }

    .pn-badge {
        max-width: 443px;
    }

    .pn-circle {
        width: clamp(150px, 20vw, 180px);
        height: clamp(150px, 20vw, 180px);
    }

    .cashback-section {
        margin-top: -180px;
        margin-bottom: -385px;
    }

    .cashback-section--inline {
        margin-top: -180px;
        margin-bottom: -315px;
    }

    .shops-section--cta-after {
        padding-bottom: 240px;
    }

    .why-section--cta-before {
        padding-top: 315px;
    }

    .flow-section--cta-after {
        padding-bottom: 0;
    }

    .services-section--cta-before {
        padding-top: 0;
    }

    .cashback-section--between {
        margin-top: 48px;
        margin-bottom: 56px;
    }

    .cashback-box {
        padding: 30px 0 40px;
    }

    .contact-section {
        padding-top: 435px;
    }

    .contact-deco-tl {
        left: 20px;
        top: 20px;
        transform: scale(0.7);
    }

    .contact-deco-tr {
        transform: scale(0.7);
    }

    .contact-deco-bl {
        transform: scale(0.7);
        bottom: -20px;
        left: 0;
    }

    .contact-deco-br {
        right: 20px;
        bottom: -200px;
        transform: scale(0.7);
    }

    .contact-title::after {
        width: 220px;
    }

    .contact-box {
        padding: 30px 24px;
    }

    .contact-btns {
        gap: 20px;
    }

    .casting-results-title {
        font-size: clamp(22px, calc(5.95px + 2.09vw), 36px);
    }

    .casting-results-stats {
        gap: 20px;
    }

    .cr-stat-label {
        font-size: clamp(16px, calc(10px + 0.6vw), 20px);
    }

    .cr-stat-num {
        font-size: clamp(18px, calc(11px + 0.89vw), 24px);
    }

    .cr-num-large,
    .cr-stat-num-kobe {
        font-size: clamp(35px, calc(22.4px + 1.64vw), 46px);
    }

    .influencers-section .section-title {
        font-size: clamp(22px, calc(5.95px + 2.09vw), 36px);
    }

    .influencers-section .section-sub {
        font-size: clamp(18px, calc(11px + 0.89vw), 24px);
    }

    .casting-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .casting-results-grid .cr-card--third {
        grid-column: 1 / -1;
        width: calc(50% - 15px);
        justify-self: center;
    }

    .main-btn::after,
    .outline-btn::after,
    .outline-btn-sm::after,
    .insta-follow-btn::after,
    .contact-btn-yellow::after,
    .contact-btn-white::after,
    .strength-btn::after {
        right: -20px;
        width: 40px;
    }
}

@media (min-width: 1024px) and (max-width: 1100px) {
    .inf-grid {
        gap: 20px 16px;
    }

    .inf-card {
        width: calc(33.333% - 11px);
    }
}

/* ---------- WHY: tablet only ---------- */
@media (min-width: 769px) and (max-width: 1023px) {}

/* ---------- FOOTER (service/media 専用オリジナルフッター) ---------- */
.media-footer {
    padding: 30px 0;
    text-align: center;
}

.media-footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.media-footer-logo {
    font-family: "Sora", var(--font-latin);
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.09em;
    text-align: center;
    color: var(--yellow);
    margin-bottom: 4px;
}

.media-footer-tagline {
    font-family: "Shippori Gothic B2", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0.04em;
    text-align: center;
    color: var(--white);
    margin-bottom: 16px;
}

.media-footer-copy {
    font-family: "Shippori Gothic B2", sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 180%;
    letter-spacing: 0.04em;
    color: var(--white);
}

@media (max-width: 768px) {
    .media-footer {
        padding: 30px 0;
    }

    .media-footer-inner {
        padding: 0 20px;
    }

    .media-footer-logo {
        font-size: 26px;
        margin-bottom: 4px;
    }

    .media-footer-tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .media-footer-copy {
        font-size: 10px;
    }
}

/* ---------- Cashback CTA — tablet image scaling ---------- */
@media (min-width: 769px) and (max-width: 1024px) {
    .cashback-section {
        overflow-x: clip;
    }

    .cashback-visual-coins {
        left: 10px;
        top: clamp(46px, 6.45vw, 66px);
        width: clamp(132px, 19.75vw, 202px);
        height: auto;
    }

    .cashback-visual-figure {
        left: auto;
        right: 10px;
        top: clamp(-70px, -6.8vw, -52px);
        width: clamp(130px, 19.55vw, 200px);
        height: auto;
    }
}

/* ---------- Floating Cashback CTA ---------- */
.floating-cta {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
    width: 288px;
    background: #EFFF41;
    border: 2px solid var(--black);
    padding: 22px 20px 18px;
    text-align: center;
    box-shadow: 6px 6px 0 var(--black);
}

.floating-cta.is-hidden {
    display: none !important;
}

.floating-cta-close {
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 1;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 2px solid var(--black);
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.floating-cta-close:hover,
.floating-cta-close:focus-visible {
    background: var(--black);
    color: var(--white);
}

.floating-cta-label {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    margin-bottom: 10px;
}

.floating-cta-title {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 8px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.floating-cta-yen {
    font-family: var(--font-latin);
    font-size: 32px;
    font-weight: 600;
}

.floating-cta-text {
    font-family: var(--font-latin);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.floating-cta-sub {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
    padding-top: 10px;
    margin-bottom: 14px;
    border-top: 1px dashed var(--black);
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--white);
    color: var(--black);
    font-family: "Shippori Gothic B2", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 13px 8px;
    border: 2px solid var(--black);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.floating-cta-btn-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.floating-cta-btn:hover {
    background: var(--black);
    color: var(--white);
}

.floating-cta-btn:hover .floating-cta-btn-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .floating-cta {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        border: none;
        border-top: 2px solid var(--black);
        padding: 10px 14px;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    }

    .floating-cta-close {
        top: 4px;
        right: 4px;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .floating-cta-info {
        flex: 1 1 auto;
        min-width: 0;
        text-align: left;
        padding-right: 30px;
    }

    .floating-cta-label {
        display: none;
    }

    .floating-cta-title {
        justify-content: flex-start;
        flex-wrap: nowrap;
        column-gap: 5px;
        margin-bottom: 2px;
    }

    .floating-cta-yen {
        font-size: 19px;
    }

    .floating-cta-text {
        font-size: 11px;
    }

    .floating-cta-sub {
        padding-top: 0;
        margin-bottom: 0;
        border-top: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 10px;
    }

    .floating-cta-btn {
        flex: 0 0 auto;
        padding: 11px 14px;
        font-size: 12px;
        white-space: nowrap;
    }

    .floating-cta-btn-arrow {
        display: none;
    }
}
