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

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    color: #111;
    background: #f6f6f6;
    overflow-x: clip;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.roppo-hero {
    position: relative;
    margin: 16px;
    border-radius: 28px;
    overflow: hidden;
    min-height: calc(100vh - 32px);
    min-height: calc(100svh - 32px);
    color: #fff;
}

.roppo-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0b0b0b;
}

#roppo-mesh {
    width: 100%;
    height: 100%;
    display: block;
}

.roppo-noise {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.roppo-nav {
    position: fixed;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: min(1480px, calc(100vw - 8vw));
    transition: width 0.35s ease, top 0.35s ease;
}

.roppo-nav.is-stuck {
    top: 16px;
    width: min(1200px, calc(100vw - 64px));
}

.roppo-nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-radius 0.35s ease, padding 0.35s ease;
}

.roppo-nav.is-stuck .roppo-nav-inner {
    padding: 8px 10px 8px 22px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 14px 44px rgba(17, 17, 17, 0.14);
}

.roppo-nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.roppo-logo {
    display: grid;
    align-items: center;
}

.roppo-logo img {
    grid-area: 1 / 1;
    height: 32px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.roppo-logo-dark { opacity: 0; }
.roppo-logo-light { opacity: 1; }

.roppo-nav.is-stuck .roppo-logo img {
    height: 26px;
}

.roppo-nav.is-stuck .roppo-logo-dark { opacity: 1; }
.roppo-nav.is-stuck .roppo-logo-light { opacity: 0; pointer-events: none; }

.roppo-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.roppo-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    padding: 8px 4px;
    border-radius: 999px;
    white-space: nowrap;
    opacity: 0.72;
    transition: background 0.2s, color 0.2s, opacity 0.2s, padding 0.2s;
}

.roppo-links a:hover,
.roppo-links a.is-active {
    opacity: 1;
    background: transparent;
    color: #fff;
}

.roppo-nav.is-stuck .roppo-links {
    gap: 4px;
}

.roppo-nav.is-stuck .roppo-links a {
    color: #6b7280;
    opacity: 1;
    padding: 8px 11px;
}

.roppo-nav.is-stuck .roppo-links a:hover,
.roppo-nav.is-stuck .roppo-links a.is-active {
    background: #111;
    color: #fff;
}

.roppo-nav-end {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.roppo-social {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    transition: color 0.3s ease;
}

.roppo-nav.is-stuck .roppo-social { color: #111; }

.roppo-social a {
    display: flex;
    opacity: 0.88;
    transition: opacity 0.2s;
}

.roppo-social a:hover { opacity: 1; }

.roppo-lang {
    display: flex;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.roppo-nav.is-stuck .roppo-lang {
    border-color: #e5e7eb;
}

.roppo-lang button {
    background: transparent;
    color: #fff;
    border: 0;
    padding: 8px 13px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    opacity: 0.55;
}

.roppo-lang button.is-active {
    background: #fff;
    color: #111;
    opacity: 1;
}

.roppo-nav.is-stuck .roppo-lang button { color: #111; }

.roppo-nav.is-stuck .roppo-lang button.is-active {
    background: #111;
    color: #fff;
}

.roppo-btn.roppo-btn-nav {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.roppo-btn.roppo-btn-nav:hover {
    background: #fff;
    color: #111;
    transform: none;
}

.roppo-nav.is-stuck .roppo-btn.roppo-btn-nav {
    background: #f3f4f6;
    color: #111;
    border-color: transparent;
}

.roppo-nav.is-stuck .roppo-btn.roppo-btn-nav:hover {
    background: #111;
    color: #fff;
}

.roppo-menu {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.roppo-menu span {
    display: block;
    height: 2px;
    width: 22px;
    background: #fff;
}

.roppo-nav.is-stuck .roppo-menu span { background: #111; }

.roppo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 14px;
    background: #111;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: transform 0.25s, background 0.25s;
}

.roppo-btn:hover { transform: translateY(-2px); background: #000; }

.roppo-btn-line {
    background: #fff;
    color: #111;
    border: 1.5px solid #111;
    margin-top: 28px;
}

.roppo-btn-line:hover { background: #111; color: #fff; }

.roppo-btn-light {
    background: #fff;
    color: #111;
}

.roppo-btn-light:hover { background: #f2f2f2; }

.roppo-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
}

.roppo-btn-ghost:hover { background: #fff; color: #111; }

.roppo-stage {
    position: relative;
    z-index: 10;
    padding: 0 4.5vw;
}

.roppo-stage-inner {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 64px;
    align-items: end;
    padding-top: 18vh;
    padding-bottom: 80px;
}

.roppo-eyebrow {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0.85;
}

.roppo-headline {
    font-size: clamp(3.4rem, 7vw, 6.6rem);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -0.04em;
    max-width: 14ch;
}

.roppo-headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(36px);
    margin-right: 0.22em;
}

html:not(.js) .roppo-headline .word {
    opacity: 1;
    transform: none;
}

.roppo-headline .is-thin {
    font-weight: 300;
    letter-spacing: -0.02em;
}

.roppo-headline .is-regular {
    font-weight: 400;
}

.roppo-headline .is-strong {
    font-weight: 700;
    letter-spacing: -0.05em;
}

.roppo-lead {
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    line-height: 1.55;
    max-width: 34ch;
    margin-bottom: 40px;
    opacity: 0.94;
}

.roppo-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.roppo-chips {
    display: flex;
    gap: 10px;
}

.roppo-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.35);
    font-weight: 600;
    font-size: 1rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.roppo-marquee {
    width: 100%;
    overflow: hidden;
    padding-bottom: 56px;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.roppo-track {
    display: inline-flex;
    align-items: center;
    gap: 72px;
    animation: roppoMarquee 32s linear infinite;
}

.roppo-track span {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.78;
}

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

.roppo-page {
    color: #111;
}

.roppo-page section[id] {
    scroll-margin-top: 100px;
}

.roppo-spot {
    padding: 88px 0 64px;
    overflow: visible;
}

.roppo-spot-inner,
.roppo-spot-stage {
    width: min(1400px, calc(100% - 8vw));
    margin-left: 5vw;
}

.roppo-spot-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 36px;
}

.roppo-spot-title {
    font-size: clamp(1.7rem, 2.2vw, 2.15rem);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.03em;
    max-width: 720px;
}

.roppo-spot-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.roppo-spot-title.is-in .roppo-spot-word { opacity: 1; transform: none; }
.roppo-spot-word.is-mute { color: rgba(17, 17, 17, 0.38); }

.roppo-spot-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-top: 4px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.07);
    color: #111;
    font-weight: 700;
    font-size: 0.88rem;
}

.roppo-spot-btn svg { transition: transform 0.25s ease; }
.roppo-spot-btn:hover { background: rgba(17, 17, 17, 0.12); }
.roppo-spot-btn:hover svg { transform: translate(3px, -3px); }
.roppo-spot-btn.is-tiny { padding: 8px 12px; font-size: 0.78rem; margin-top: 16px; }

.roppo-spot-stage { position: relative; overflow: visible; }

.roppo-swiper {
    overflow: visible !important;
}

.roppo-swiper .swiper-slide {
    height: 450px;
    overflow: visible;
    perspective: 900px;
}

.roppo-slide-face,
.roppo-slide-face .roppo-tile,
.roppo-slide-face .roppo-case,
.roppo-slide-face .roppo-post {
    height: 100%;
    width: 100%;
}

.roppo-slide-face {
    transform-origin: 50% 0;
    will-change: transform, opacity;
}

.roppo-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-radius: 15px;
    padding: 40px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.roppo-slide-face:hover .roppo-tile {
    transform: translateY(-6px);
}

.roppo-tile-display {
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.95;
    color: #e11d74;
}

.roppo-tile-display.is-white { color: #fff; font-size: 2.6rem; }

.roppo-tile-sub {
    margin-top: 10px;
    font-size: 1.05rem;
    font-weight: 700;
}

.roppo-tile-lines {
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.35;
}

.roppo-tile-lines .is-mute,
.roppo-tile-quote.is-soft { color: rgba(17, 17, 17, 0.38); }

.roppo-tile-lines.is-on-dark .is-mute { color: rgba(255, 255, 255, 0.45); }

.roppo-tile.is-frame {
    padding: 10px;
    background: linear-gradient(160deg, #ffb347, #ff3690 55%, #7c3aed);
}

.roppo-tile.is-frame .roppo-tile-inner {
    background: #fff;
    border-radius: 10px;
    height: 100%;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.roppo-tile.is-photo {
    color: #fff;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45)),
        radial-gradient(circle at 30% 20%, rgba(255, 160, 80, 0.55), transparent 42%),
        radial-gradient(circle at 80% 70%, rgba(40, 20, 10, 0.9), transparent 50%),
        #3a2a22;
}

.roppo-tile-brand {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.roppo-tile-brand.is-light { color: #fff; }

.roppo-tile-quote {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    color: #fff;
}

.roppo-tile-quote.is-soft { color: rgba(255, 255, 255, 0.72); }

.roppo-tile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
}

.roppo-tile-btn:hover { background: rgba(255, 255, 255, 0.24); }

.roppo-tile.is-mist {
    background: rgba(0, 0, 0, 0.06);
    padding: 40px 32px 28px;
}

.roppo-tile.is-mist:hover { background: rgba(0, 0, 0, 0.08); }

.roppo-tile-badge {
    position: absolute;
    top: 20px;
    right: 18px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.07);
    font-size: 0.72rem;
    font-weight: 700;
}

.roppo-tile-badge.is-accent {
    background: #e11d74;
    color: #fff;
}

.roppo-tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 22px;
}

.roppo-tile-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.roppo-tile-body {
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(17, 17, 17, 0.62);
}

.roppo-tile-meter p {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgba(17, 17, 17, 0.5);
}

.roppo-meter {
    margin-bottom: 12px;
}

.roppo-meter span {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.roppo-meter i {
    display: block;
    height: 8px;
    border-radius: 99px;
    background: linear-gradient(90deg, #ff7c2a, #ff3690 60%, #7c3aed);
    width: 100%;
}

.roppo-meter.is-dim span { color: rgba(17, 17, 17, 0.45); }
.roppo-meter.is-dim i {
    width: 62%;
    background: rgba(17, 17, 17, 0.18);
}

.roppo-tile.is-dark {
    background: #111;
    color: #fff;
}

.roppo-tile.is-caption {
    padding: 10px;
    background: transparent;
}

.roppo-tile-stage {
    flex: 1;
    border-radius: 12px;
}

.roppo-tile-stage.is-app {
    background:
        radial-gradient(circle at 30% 20%, #7dd3fc, transparent 40%),
        radial-gradient(circle at 80% 70%, #1e1b4b, transparent 52%),
        #312e81;
}

.roppo-tile-cap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    margin-top: 10px;
    border-radius: 12px;
    padding: 18px 20px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.roppo-tile.is-plain {
    background: rgba(0, 0, 0, 0.06);
    padding: 40px 28px 0;
}

.roppo-tile.is-plain:hover { background: rgba(0, 0, 0, 0.08); }

.roppo-tile-shot {
    height: 150px;
    margin: 18px -8px 0;
    border-radius: 12px 12px 0 0;
    background:
        radial-gradient(circle at 30% 40%, #ff7c2a, transparent 50%),
        radial-gradient(circle at 80% 70%, #c026d3, transparent 46%),
        #1a1020;
    mask-image: linear-gradient(to bottom, transparent 0, #000 28%);
}

.roppo-strip-prev,
.roppo-strip-next {
    position: absolute;
    top: 201px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.roppo-strip-prev { left: -18px; }
.roppo-strip-next { right: -8px; }
.roppo-strip-prev:hover,
.roppo-strip-next:hover { background: #111; color: #fff; }
.roppo-strip-prev.swiper-button-disabled { opacity: 0; pointer-events: none; }

.roppo-strip-dots.swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 28px;
    left: auto !important;
    width: 100%;
}

.roppo-strip-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d0d0d0;
    opacity: 1;
}

.roppo-strip-dots .swiper-pagination-bullet-active { background: #111; }

.roppo-works {
    padding: 40px 0 100px;
    overflow: visible;
}

.roppo-works-head,
.roppo-works-stage {
    width: min(1400px, calc(100% - 8vw));
    margin-left: 5vw;
}

.roppo-works-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 40px;
}

.roppo-ribbons {
    position: relative;
    width: 100%;
    height: 168px;
    margin: 56px 0 64px;
    overflow: hidden;
}

.roppo-ribbon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 124%;
    overflow: hidden;
    padding: 20px 0;
}

.roppo-ribbon.is-dark {
    background: #111;
    color: #fff;
    z-index: 2;
    transform: translate(-50%, -50%) rotate(1.1deg) translateY(-28px);
}

.roppo-ribbon.is-tint {
    background: #f4f4f4;
    z-index: 1;
    transform: translate(-50%, -50%) rotate(-1.1deg) translateY(28px);
}

.roppo-ribbon-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: roppoRibbon 40s linear infinite;
}

.roppo-ribbon.is-tint .roppo-ribbon-track {
    animation-name: roppoRibbonRev;
}

.roppo-ribbon-loop {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.roppo-ribbon-item,
.roppo-ribbon-dot {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    padding: 0 28px;
}

.roppo-ribbon-dot {
    font-weight: 400;
    opacity: 0.7;
    padding: 0 4px;
}

.roppo-ribbon.is-tint .roppo-ribbon-item,
.roppo-ribbon.is-tint .roppo-ribbon-dot {
    background: linear-gradient(90deg, #ff7a1a, #e11d74, #7c4dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

.roppo-works-title {
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.045em;
    max-width: 720px;
}

.roppo-works-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.roppo-works-word span {
    display: inline-block;
    transform: translateY(108%);
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.roppo-works-title.is-in .roppo-works-word span { transform: none; }

.roppo-works-aside {
    max-width: 340px;
    flex-shrink: 0;
}

.roppo-works-aside p {
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(17, 17, 17, 0.62);
    margin-bottom: 20px;
}

.roppo-works-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.roppo-works-cta:hover { background: #000; }

.roppo-works-stage { position: relative; overflow: visible; }

.roppo-works-swiper { overflow: visible !important; }

.roppo-works-swiper .swiper-slide {
    height: 600px;
    overflow: visible;
    perspective: 900px;
}

.roppo-works-stage .roppo-strip-prev,
.roppo-works-stage .roppo-strip-next { top: 276px; }

.roppo-case {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 24px;
    height: 100%;
    border-radius: 25px;
    padding: 60px;
    color: #fff;
    overflow: hidden;
}

.roppo-case::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 12%, #000 100%);
    opacity: 0.72;
    transition: opacity 0.35s ease;
}

.roppo-case:hover::after { opacity: 0.88; }

.roppo-case > * { position: relative; z-index: 1; }

.roppo-case h3 {
    font-size: clamp(1.7rem, 2.2vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.2;
    max-width: 16ch;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.roppo-case-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 2;
    padding: 9px 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.28);
    font-size: 0.8rem;
    font-weight: 700;
}

.roppo-case-badge.is-solid {
    background: #fff;
    color: #111;
    border-radius: 999px;
}

.roppo-case.is-warm {
    background:
        radial-gradient(circle at 30% 20%, #ff8a4c, transparent 42%),
        radial-gradient(circle at 80% 80%, #7c2d12, transparent 48%),
        #c2410c;
}

.roppo-case.is-violet {
    background:
        radial-gradient(circle at 70% 20%, #e9d5ff, transparent 40%),
        radial-gradient(circle at 20% 80%, #4c1d95, transparent 50%),
        #6d28d9;
}

.roppo-case.is-pink {
    background:
        radial-gradient(circle at 20% 30%, #f9a8d4, transparent 42%),
        radial-gradient(circle at 80% 70%, #831843, transparent 50%),
        #db2777;
}

.roppo-case-display {
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.roppo-case-kicker {
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0.7;
    margin-top: -12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.roppo-case-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    color: #111;
    font-weight: 700;
    font-size: 0.85rem;
}

.roppo-works-swiper .roppo-case {
    justify-content: flex-end;
    gap: 0;
    padding: 52px 48px 48px;
}

.roppo-works-swiper .roppo-case-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.roppo-works-swiper .roppo-case h3 {
    max-width: 11ch;
    min-height: 2.1em;
    font-size: clamp(2.8rem, 4.8vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.02;
    -webkit-line-clamp: 2;
}

.roppo-works-swiper .roppo-case-copy p {
    margin: 0;
    max-width: 20ch;
    min-height: 2.8em;
    font-size: clamp(1.2rem, 1.7vw, 1.4rem);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.035em;
    color: rgba(255, 255, 255, 0.86);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.roppo-works-swiper .roppo-case-badge {
    top: 36px;
    right: 36px;
    padding: 10px 14px;
    font-size: 0.88rem;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    border-radius: 10px;
}

.roppo-works-swiper .roppo-case-btn {
    margin-top: 4px;
    padding: 12px 18px;
    font-size: 0.9rem;
}

.roppo-meter.is-on-dark span { color: #fff; }
.roppo-meter.is-on-dark.is-dim span { color: rgba(255, 255, 255, 0.55); }
.roppo-meter.is-on-dark.is-dim i { background: rgba(255, 255, 255, 0.28); }
.roppo-case-meter p {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.55);
}

.roppo-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4.5vw;
}

.roppo-notes {
    padding: 100px 0 56px;
    overflow: hidden;
}

.roppo-notes-bar {
    width: min(1180px, calc(100% - 10vw));
    margin: 0 auto 44px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
}

.roppo-notes-title {
    font-size: clamp(2.2rem, 3.4vw, 3.15rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.roppo-notes-title span {
    display: block;
}

.roppo-notes-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 14px 20px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.roppo-notes-cta:hover { background: #000; }
.roppo-notes-cta svg { transition: transform 0.25s ease; }
.roppo-notes-cta:hover svg { transform: translate(2px, -2px); }

.roppo-notes-stage {
    --notes-gutter: max(5vw, calc((100vw - min(1180px, 90vw)) / 2));
    width: calc(100vw - var(--notes-gutter));
    margin-left: var(--notes-gutter);
    position: relative;
    overflow: visible;
}

.roppo-notes-swiper {
    overflow: visible !important;
}

.roppo-notes-swiper .swiper-slide {
    height: 248px;
    overflow: hidden;
    perspective: 900px;
}

.roppo-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    height: 248px;
    min-height: 248px;
    max-height: 248px;
    overflow: hidden;
    color: #111;
}

.roppo-post-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6px 4px 4px 0;
}

.roppo-post-shot {
    position: relative;
    overflow: hidden;
    min-height: 0;
    height: 100%;
    border-radius: 22px;
}

.roppo-post-shot::before,
.roppo-post-shot::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.roppo-post-shot.is-seo {
    background: linear-gradient(160deg, #d7ecff 0%, #7eb7f2 55%, #3b6fd4 100%);
}
.roppo-post-shot.is-seo::before {
    width: 160px; height: 160px; right: -20px; top: -30px;
    background: rgba(255,255,255,.45);
}
.roppo-post-shot.is-seo::after {
    width: 90px; height: 140px; left: 18px; bottom: -20px;
    border-radius: 18px;
    background: rgba(255,255,255,.35);
}

.roppo-post-shot.is-soft {
    background: linear-gradient(160deg, #2a1030 0%, #111 50%, #1a0c12 100%);
}
.roppo-post-shot.is-soft::before {
    width: 180px; height: 180px; right: -40px; top: 20%;
    background: rgba(192, 38, 211, 0.55);
}
.roppo-post-shot.is-soft::after {
    width: 120px; height: 120px; left: 10%; bottom: -20px;
    background: rgba(255, 124, 42, 0.45);
}

.roppo-post-shot.is-local {
    background: linear-gradient(160deg, #ffe4d6 0%, #ff7c2a 45%, #e11d74 100%);
}
.roppo-post-shot.is-local::before {
    width: 140px; height: 140px; right: 12%; top: 18%;
    background: rgba(255,255,255,.4);
}
.roppo-post-shot.is-local::after {
    width: 70px; height: 70px; left: 16%; bottom: 18%;
    background: #111;
    opacity: 0.2;
}

.roppo-post-shot.is-host {
    background: linear-gradient(160deg, #ece7ff 0%, #7c4dff 50%, #2563eb 100%);
}
.roppo-post-shot.is-host::before {
    width: 200px; height: 80px; right: -30px; top: 28%;
    border-radius: 16px;
    background: rgba(255,255,255,.28);
}
.roppo-post-shot.is-host::after {
    width: 200px; height: 80px; right: -10px; top: 52%;
    border-radius: 16px;
    background: rgba(255,255,255,.18);
}

.roppo-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
}

.roppo-post-tags span {
    padding: 5px 10px;
    border-radius: 8px;
    background: #eef1f4;
    color: #6b7280;
    font-size: 0.72rem;
    font-weight: 600;
}

.roppo-post h3 {
    font-size: 1.28rem;
    line-height: 1.32;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.roppo-post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9aa3ad;
    font-size: 0.84rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.roppo-notes-stage .roppo-strip-prev,
.roppo-notes-stage .roppo-strip-next {
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.roppo-notes-stage .roppo-strip-next {
    right: 28px;
}

.roppo-block {
    padding: 120px 0;
}

.roppo-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #666;
}

.roppo-h2 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.04em;
    max-width: 12ch;
}

.roppo-h2-wide { max-width: 16ch; }

.roppo-body {
    font-size: 1.2rem;
    line-height: 1.65;
    color: #444;
    max-width: 42ch;
}

.roppo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
}

.roppo-flow {
    padding: 120px 0;
}

.roppo-flow .roppo-h2 {
    margin-bottom: 56px;
}

.roppo-flow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.roppo-flow-steps article {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px 44px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.roppo-flow-steps .roppo-num {
    color: #e11d74;
    margin-bottom: 36px;
}

.roppo-flow-steps h3 {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.roppo-flow-steps p {
    font-size: 1.02rem;
    line-height: 1.6;
    color: #555;
}

.roppo-num {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 28px;
}

.roppo-faq-block {
    padding: 100px 0 80px;
}

.roppo-faq-layout {
    width: min(1320px, calc(100% - 8vw));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 0.75fr;
    gap: 56px;
    align-items: start;
    overflow: visible;
}

.roppo-faq-title {
    font-size: clamp(3.4rem, 7vw, 5.8rem);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.055em;
    max-width: 12ch;
    margin-bottom: 22px;
}

.roppo-faq-line {
    display: block;
}

.roppo-faq-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.roppo-faq-word span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.roppo-faq-title.is-in .roppo-faq-word span { transform: none; }

.roppo-faq-lead {
    font-size: 1.18rem;
    line-height: 1.6;
    color: #5b6168;
    max-width: 44ch;
    margin-bottom: 36px;
}

.roppo-faq details {
    background: #e8eaee;
    border-radius: 18px;
    margin-bottom: 14px;
    padding: 0;
    border: 0;
}

.roppo-faq details[open] {
    background: #e2e4e9;
}

.roppo-faq summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    cursor: pointer;
    list-style: none;
    color: #111;
}

.roppo-faq summary::-webkit-details-marker { display: none; }

.roppo-faq-ico {
    display: inline-flex;
    flex-shrink: 0;
}

.roppo-faq-ico svg {
    width: 26px;
    height: 26px;
}

.roppo-faq details p {
    margin: 0;
    padding: 0 22px 22px 62px;
    font-size: 1.08rem;
    line-height: 1.6;
    color: #3f454c;
    max-width: none;
}

.roppo-faq-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.roppo-faq-chips > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #e8eaee;
    font-size: 0.95rem;
    font-weight: 700;
}

.roppo-faq-panel {
    position: sticky;
    top: 96px;
    padding: 32px 28px 28px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, #ff7a1a 0%, #e11d74 48%, #7c4dff 100%);
}

.roppo-faq-panel h3 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-bottom: 10px;
}

.roppo-faq-panel p {
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
}

.roppo-faq-panel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-weight: 700;
    font-size: 0.95rem;
}

.roppo-faq-panel-btn:hover { background: #f4f4f4; }

.roppo-seo {
    padding: 48px 0 24px;
}

.roppo-seo .roppo-wrap {
    max-width: 920px;
}

.roppo-seo-title {
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

.roppo-seo-clip {
    position: relative;
    max-height: 8.6em;
    overflow: hidden;
}

.roppo-seo.is-open .roppo-seo-clip {
    max-height: none;
    overflow: visible;
}

.roppo-seo-clip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4.2em;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 90%);
    pointer-events: none;
}

.roppo-seo.is-open .roppo-seo-clip::after {
    display: none;
}

.roppo-seo-body p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #3f454c;
    margin-bottom: 18px;
}

.roppo-seo-toggle {
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: none;
    color: #111;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
}

.roppo-seo-toggle:hover { color: #e11d74; }

.roppo-page-faq {
    background: #f4f4f4;
    padding: 88px 0 40px;
}

.roppo-page-faq .roppo-h2 {
    max-width: 18ch;
    margin-bottom: 36px;
}

.roppo-inner .roppo-seo {
    background: #fff;
    padding: 88px 0 96px;
}

.roppo-inner .roppo-seo .roppo-wrap {
    max-width: 1280px;
}

.roppo-inner .roppo-seo .roppo-h2 {
    max-width: none;
    margin-bottom: 36px;
}

.roppo-inner .roppo-seo-clip {
    max-height: 22em;
}

.roppo-inner .roppo-seo-body p {
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: none;
}

.roppo-inner .roppo-seo-clip::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 90%);
}

.roppo-band {
    margin: 16px;
    border-radius: 28px;
    background: #111;
    color: #fff;
    padding: 36px 0;
}

.roppo-band-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.roppo-band .roppo-h2 {
    max-width: none;
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}

.roppo-band .roppo-body {
    color: rgba(255,255,255,0.78);
    margin: 10px 0 0;
    font-size: 1.05rem;
}

.roppo-band-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.roppo-footer {
    position: relative;
    overflow: hidden;
    padding: 96px 0 56px;
    color: #333;
}

.roppo-footer .roppo-wrap {
    max-width: 1680px;
    padding: 0 4vw;
}

.roppo-footer-top {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.9fr 1.25fr;
    gap: 56px;
    margin-bottom: 72px;
}

.roppo-footer-logo img {
    height: 42px;
    width: auto;
}

.roppo-footer-brand p {
    margin-top: 20px;
    max-width: 32ch;
    font-size: 1.08rem;
    line-height: 1.55;
    color: #6b7280;
}

.roppo-footer h3 {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #9ca3af;
    margin-bottom: 22px;
}

.roppo-footer-top a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: #111;
    font-weight: 600;
    font-size: 1.12rem;
}

.roppo-footer-top a svg {
    margin-left: auto;
    color: #9ca3af;
    width: 14px;
    height: 14px;
}

.roppo-footer-reach a,
.roppo-footer-reach p {
    justify-content: flex-start;
    font-weight: 500;
    color: #374151;
    font-size: 1.05rem;
}

.roppo-footer-reach a svg,
.roppo-footer-reach p svg {
    margin-left: 0;
    flex-shrink: 0;
    color: #111;
    width: 18px;
    height: 18px;
}

.roppo-footer-reach p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    line-height: 1.45;
}

.roppo-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    position: relative;
    min-height: 160px;
}

.roppo-footer-mail {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111;
}

.roppo-footer-mail::before {
    content: "";
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: currentColor;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/></svg>") center / contain no-repeat;
}

.roppo-legal {
    margin-top: 16px;
    font-size: 1rem;
    color: #9ca3af;
    border: 0;
    padding: 0;
}

.roppo-footer-social {
    display: flex;
    gap: 18px;
    margin-top: 22px;
}

.roppo-footer-social a {
    color: #111;
}

.roppo-footer-social svg {
    width: 22px;
    height: 22px;
}

.roppo-footer-mark {
    font-size: clamp(5.5rem, 14vw, 11rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.8;
    color: #eceff3;
    user-select: none;
    pointer-events: none;
}

.roppo-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 20px;
}

.roppo-footer-legal a {
    font-size: 0.92rem;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: -0.02em;
}

.roppo-footer-legal a:hover {
    color: #111;
}

.roppo-totop {
    position: fixed;
    z-index: 40;
    left: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.28s ease, transform 0.28s ease, background 0.2s ease;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.22);
}

.roppo-totop.is-on {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.roppo-totop:hover {
    background: #2a2a2a;
}

.roppo-dock {
    position: fixed;
    z-index: 42;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.roppo-dock-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.roppo-dock-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 12px 14px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 14px 36px rgba(17, 17, 17, 0.12);
    transform: translateY(8px) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.roppo-dock.is-open .roppo-dock-item {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.roppo-dock.is-open .roppo-dock-item:nth-child(1) { transition-delay: 0.04s; }
.roppo-dock.is-open .roppo-dock-item:nth-child(2) { transition-delay: 0.08s; }
.roppo-dock.is-open .roppo-dock-item:nth-child(3) { transition-delay: 0.12s; }

.roppo-dock-ico {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #111;
}

.roppo-dock-item.is-wa .roppo-dock-ico { background: #128c7e; }
.roppo-dock-item.is-call .roppo-dock-ico { background: #111; }
.roppo-dock-item.is-mail .roppo-dock-ico { background: #e11d74; }

.roppo-dock-fab {
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 22px;
    background: #111;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.28);
}

.roppo-dock-fab-plus {
    position: relative;
    width: 18px;
    height: 18px;
}

.roppo-dock-fab-plus::before,
.roppo-dock-fab-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.22s ease;
}

.roppo-dock-fab-plus::before {
    width: 18px;
    height: 2px;
}

.roppo-dock-fab-plus::after {
    width: 2px;
    height: 18px;
}

.roppo-dock.is-open .roppo-dock-fab-plus::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.roppo-dock.is-open .roppo-dock-fab-plus::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.roppo-cookie {
    position: fixed;
    z-index: 48;
    left: 22px;
    bottom: 88px;
    width: min(420px, calc(100vw - 108px));
    padding: 28px 32px;
    border-radius: 28px;
    background: #111;
    color: #fff;
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.28);
}

.roppo-cookie-kicker {
    margin: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9ca3af;
}

.roppo-cookie-text {
    margin: 0 0 22px;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.4;
}

.roppo-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 22px;
}

.roppo-cookie-more {
    color: #d1d5db;
    font-weight: 600;
    font-size: 0.95rem;
}

.roppo-cookie-more:hover {
    color: #fff;
}

.roppo-cookie .roppo-btn {
    background: #fff;
    color: #111;
}

.roppo-cookie .roppo-btn:hover {
    background: #f4f4f5;
}

@media (max-width: 720px) {
    .roppo-cookie {
        left: 14px;
        right: 14px;
        bottom: 92px;
        width: auto;
        padding: 24px 22px;
    }
}

.roppo-legal-body {
    max-width: 42rem;
    padding: 0 0 96px;
}

.roppo-legal-body p {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.55;
    margin: 0 0 1.1em;
    color: #222;
}

@media (max-width: 1100px) {
    .roppo-links,
    .roppo-social { display: none; }

    .roppo-links.is-open {
        display: flex;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        transform: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 14px 40px rgba(17, 17, 17, 0.12);
        z-index: 30;
    }

    .roppo-links.is-open a {
        color: #6b7280;
        padding: 12px 16px;
    }

    .roppo-menu { display: flex; }
    .roppo-stage-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 12vh;
    }
    .roppo-headline { max-width: none; }
    .roppo-split,
    .roppo-flow-steps,
    .roppo-faq-layout {
        grid-template-columns: 1fr;
    }
    .roppo-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }
    .roppo-footer-bottom { flex-direction: column; align-items: flex-start; min-height: 0; }
    .roppo-footer-mark { font-size: clamp(4.2rem, 16vw, 7rem); }
    .roppo-notes-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
    .roppo-band-row { flex-direction: column; align-items: flex-start; gap: 20px; }
    .roppo-h2 { max-width: none; }
    .roppo-faq-title { max-width: none; }
    .roppo-block { padding: 80px 0; }
}

@media (max-width: 640px) {
    .roppo-hero { margin: 8px; border-radius: 22px; min-height: calc(100vh - 16px); min-height: calc(100svh - 16px); }
    .roppo-nav { top: 16px; width: calc(100vw - 24px); }
    .roppo-nav.is-stuck { top: 10px; width: calc(100vw - 16px); }
    .roppo-btn-nav span { display: none; }
    .roppo-btn-nav { padding: 14px; }
    .roppo-lead { font-size: 1.15rem; }
    .roppo-band { margin: 8px; padding: 36px 0; }
    .roppo-band-row { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 1100px) {
    .roppo-spot-bar,
    .roppo-works-head { flex-direction: column; gap: 16px; align-items: flex-start; }
    .roppo-strip-prev,
    .roppo-strip-next { display: none; }
    .roppo-svc-also-nav .roppo-strip-prev,
    .roppo-svc-also-nav .roppo-strip-next { display: flex; }
    .roppo-works-swiper .swiper-slide { height: 420px; }
    .roppo-case { padding: 36px; }
    .roppo-ribbons { height: 148px; margin: 40px 0 48px; }
    .roppo-ribbon.is-dark { transform: translate(-50%, -50%) rotate(1.1deg) translateY(-24px); }
    .roppo-ribbon.is-tint { transform: translate(-50%, -50%) rotate(-1.1deg) translateY(24px); }
}

.roppo-inner .roppo-nav {
    top: 16px;
    width: min(1200px, calc(100vw - 64px));
}

.roppo-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #666;
    margin-bottom: 28px;
}

.roppo-mast {
    padding: 200px 0 56px;
}

.roppo-inner .roppo-mast.is-thin {
    padding: 140px 0 0;
}

.roppo-mast-title {
    font-size: clamp(3.4rem, 7vw, 6.4rem);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -0.045em;
    max-width: 14ch;
}

.roppo-mast-title span {
    display: block;
}

.roppo-mast-title .is-mute {
    color: rgba(17, 17, 17, 0.38);
}

.roppo-mast-lead {
    margin-top: 32px;
    font-size: 1.3rem;
    line-height: 1.55;
    max-width: 34ch;
    color: #3f3f3f;
}

.roppo-offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 24px 0 80px;
}

.roppo-offer article,
.roppo-offer a {
    min-height: 340px;
    padding: 48px 44px;
    border-radius: 28px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
    color: inherit;
    transition: transform 0.25s ease;
}

.roppo-offer a:hover { transform: translateY(-4px); }

.roppo-offer article.is-dark,
.roppo-offer a.is-dark {
    background: #111;
    color: #fff;
}

.roppo-offer article.is-tint,
.roppo-offer a.is-tint {
    background: linear-gradient(160deg, #2a1030 0%, #111 55%, #1a0c12 100%);
    color: #fff;
}

.roppo-offer h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.roppo-offer-ico {
    display: flex;
    width: 128px;
    height: 128px;
    margin-bottom: 20px;
}

.roppo-offer-ico svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.roppo-offer-ico.is-web { animation: roppoIcoFloat 4.2s ease-in-out infinite; }
.roppo-offer-ico.is-code { animation: roppoIcoPulse 3.4s ease-in-out infinite; }
.roppo-offer-ico.is-seo { animation: roppoIcoFloat 3.8s ease-in-out infinite; }
.roppo-offer-ico.is-stack { animation: roppoIcoFloat 4.6s ease-in-out infinite .2s; }
.roppo-offer-ico.is-phone { animation: roppoIcoTilt 3.6s ease-in-out infinite; }
.roppo-offer-ico.is-host { animation: roppoIcoFloat 4s ease-in-out infinite .15s; }
.roppo-offer-ico.is-crm { animation: roppoIcoPulse 4.4s ease-in-out infinite; }
.roppo-offer-ico.is-ai { animation: roppoIcoFloat 3.2s ease-in-out infinite; }
.roppo-offer-ico.is-shop { animation: roppoIcoTilt 3.8s ease-in-out infinite; }
.roppo-offer-ico.is-ads { animation: roppoIcoPulse 3.6s ease-in-out infinite; }

.roppo-ico-bar { animation: roppoIcoGrow 2.8s ease-in-out infinite; transform-origin: 20px 45px; }
.roppo-ico-slash { animation: roppoIcoBlink 2.2s ease-in-out infinite; }
.roppo-ico-dot { animation: roppoIcoPulse 2.4s ease-in-out infinite; transform-origin: 38px 36px; }
.roppo-ico-handle { animation: roppoIcoSweep 3s ease-in-out infinite; transform-origin: 52px 52px; }
.roppo-ico-layer:nth-child(1) { animation: roppoIcoLift 3.2s ease-in-out infinite; }
.roppo-ico-layer:nth-child(2) { animation: roppoIcoLift 3.2s ease-in-out infinite .15s; }
.roppo-ico-layer:nth-child(3) { animation: roppoIcoLift 3.2s ease-in-out infinite .3s; }
.roppo-ico-screen { animation: roppoIcoGlow 2.6s ease-in-out infinite; }
.roppo-ico-led { animation: roppoIcoBlink 1.6s ease-in-out infinite; }
.roppo-ico-led:nth-of-type(2) { animation-delay: .2s; }
.roppo-ico-led:nth-of-type(3) { animation-delay: .4s; }
.roppo-ico-orbit { animation: roppoIcoSpin 8s linear infinite; transform-origin: 44px 44px; }
.roppo-ico-spark { animation: roppoIcoBlink 1.8s ease-in-out infinite; }

@keyframes roppoIcoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes roppoIcoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}
@keyframes roppoIcoTilt {
    0%, 100% { transform: rotate(-4deg); }
    50% { transform: rotate(4deg); }
}
@keyframes roppoIcoSpin {
    to { transform: rotate(360deg); }
}
@keyframes roppoIcoBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}
@keyframes roppoIcoGrow {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.18); }
}
@keyframes roppoIcoSweep {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(8deg); }
}
@keyframes roppoIcoLift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
@keyframes roppoIcoGlow {
    0%, 100% { opacity: 0.28; }
    50% { opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
    .roppo-offer-ico,
    .roppo-offer-ico * { animation: none !important; }
}

.roppo-offer p {
    font-size: 1.15rem;
    line-height: 1.55;
    max-width: 28ch;
    color: #555;
}

.roppo-offer article.is-dark p,
.roppo-offer article.is-tint p,
.roppo-offer a.is-dark p,
.roppo-offer a.is-tint p {
    color: rgba(255, 255, 255, 0.7);
}

.roppo-worklist {
    display: grid;
    gap: 24px;
    padding: 24px 0 24px;
}

.roppo-worklist .roppo-case {
    height: 460px;
    min-height: 460px;
    max-height: 460px;
    border-radius: 32px;
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.roppo-worklist a.roppo-case:hover { transform: translateY(-4px); }

.roppo-worklist .roppo-case > div {
    min-height: 0;
    overflow: hidden;
}

.roppo-worklist h2 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.05;
    max-width: 14ch;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.roppo-worklist p {
    font-size: 1.2rem;
    max-width: 28ch;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.roppo-reach {
    display: grid;
    gap: 18px;
    padding: 24px 0 80px;
}

.roppo-reach a,
.roppo-reach .roppo-reach-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border-radius: 28px;
    padding: 40px 44px;
}

.roppo-reach strong {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #888;
}

.roppo-reach span {
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -0.03em;
}

.roppo-write {
    padding: 8px 0 48px;
}

.roppo-write-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 56px 80px;
    align-items: start;
}

.roppo-write-copy .roppo-h2 {
    margin: 0 0 18px;
}

.roppo-write-copy .roppo-body {
    margin: 0;
    max-width: 28rem;
}

.roppo-contact-form {
    display: grid;
    gap: 22px;
    padding: 40px 44px;
    background: #fff;
    border-radius: 32px;
}

.roppo-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.roppo-contact-form label {
    display: grid;
    gap: 10px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.roppo-contact-form .is-hp {
    position: absolute;
    left: -9999px;
}

.roppo-contact-form input,
.roppo-contact-form textarea {
    font: inherit;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #111;
    padding: 16px 18px;
    border: 0;
    border-radius: 16px;
    background: #f4f4f5;
}

.roppo-contact-form input:focus,
.roppo-contact-form textarea:focus {
    outline: 2px solid #111;
    outline-offset: 2px;
    background: #fff;
}

.roppo-contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.roppo-contact-form .roppo-btn {
    justify-self: start;
    margin-top: 6px;
}

.roppo-form-ok,
.roppo-form-err {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.roppo-form-ok { color: #15803d; }
.roppo-form-err { color: #be123c; }

.roppo-notes-page {
    display: grid;
    gap: 22px;
    padding: 24px 0 24px;
}

.roppo-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 28px 0 88px;
}

.roppo-pager a {
    min-width: 52px;
    height: 52px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #fff;
    color: #111;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
}

.roppo-pager a.is-on {
    background: #111;
    color: #fff;
}

.roppo-pager a:hover {
    background: #111;
    color: #fff;
}

.roppo-pager-dir {
    color: #111;
}

.roppo-pager-gap {
    min-width: 24px;
    text-align: center;
    color: #9ca3af;
    font-weight: 600;
}

.roppo-note-card {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr;
    height: 320px;
    min-height: 320px;
    max-height: 320px;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.roppo-note-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.roppo-note-copy,
.roppo-note-card > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 44px 40px;
    min-height: 0;
    overflow: hidden;
}

.roppo-note-copy h2,
.roppo-note-card h2,
.roppo-note-card h3 {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.08;
    max-width: 14ch;
    margin: 10px 0 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.roppo-note-copy p {
    font-size: 1.08rem;
    line-height: 1.55;
    color: #555;
    max-width: 36ch;
    margin-top: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.roppo-note-copy .roppo-kicker { margin-bottom: 0; }

.roppo-note-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.roppo-note-art {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.roppo-note-art.has-photo::before,
.roppo-note-art.has-photo::after,
.roppo-post-shot.has-photo::before,
.roppo-post-shot.has-photo::after {
    display: none;
}

.roppo-note-art.has-photo img,
.roppo-post-shot.has-photo img,
.roppo-entry-art.has-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    border-radius: inherit;
}

.roppo-note-card .roppo-note-art {
    min-height: 0;
    height: 100%;
}

.roppo-note-art::before,
.roppo-note-art::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.roppo-note-art.is-seo {
    background: linear-gradient(160deg, #d7ecff 0%, #7eb7f2 55%, #3b6fd4 100%);
}
.roppo-note-art.is-seo::before {
    width: 240px; height: 240px; right: -40px; top: -50px;
    background: rgba(255,255,255,.4);
}
.roppo-note-art.is-seo::after {
    width: 140px; height: 220px; left: 12%; bottom: -40px;
    border-radius: 24px;
    background: rgba(255,255,255,.28);
}

.roppo-note-art.is-soft {
    background: linear-gradient(160deg, #2a1030 0%, #111 50%, #1a0c12 100%);
}
.roppo-note-art.is-soft::before {
    width: 280px; height: 280px; right: -60px; top: 10%;
    background: rgba(192, 38, 211, 0.5);
}
.roppo-note-art.is-soft::after {
    width: 180px; height: 180px; left: 8%; bottom: -30px;
    background: rgba(255, 124, 42, 0.42);
}

.roppo-note-art.is-local {
    background: linear-gradient(160deg, #ffe4d6 0%, #ff7c2a 45%, #e11d74 100%);
}
.roppo-note-art.is-local::before {
    width: 220px; height: 220px; right: 10%; top: 16%;
    background: rgba(255,255,255,.35);
}
.roppo-note-art.is-local::after {
    width: 90px; height: 90px; left: 14%; bottom: 16%;
    background: #111;
    opacity: 0.18;
}

.roppo-note-art.is-host {
    background: linear-gradient(160deg, #ece7ff 0%, #7c4dff 50%, #2563eb 100%);
}
.roppo-note-art.is-host::before {
    width: 260px; height: 100px; right: -40px; top: 28%;
    border-radius: 20px;
    background: rgba(255,255,255,.28);
}
.roppo-note-art.is-host::after {
    width: 260px; height: 100px; right: -16px; top: 52%;
    border-radius: 20px;
    background: rgba(255,255,255,.16);
}

.roppo-entry-page .roppo-mast-title {
    max-width: 18ch;
}

.roppo-entry-cover {
    position: relative;
    margin: 40px 0 0;
    border-radius: 28px;
    overflow: hidden;
    background: #ececec;
    aspect-ratio: 2.35 / 1;
}

.roppo-entry-cover img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.roppo-entry {
    padding: 48px 0 88px;
}

.roppo-entry-body {
    max-width: none;
}

.roppo-entry-body p,
.roppo-entry-body li {
    font-size: 1.28rem;
    line-height: 1.72;
    color: #2f2f2f;
}

.roppo-entry-body p {
    margin-bottom: 1.35em;
}

.roppo-entry-body h2 {
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin: 1.6em 0 0.55em;
}

.roppo-entry-body h3 {
    font-size: clamp(1.45rem, 2.2vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 1.4em 0 0.45em;
}

.roppo-entry-body ul,
.roppo-entry-body ol {
    margin: 0 0 1.4em;
    padding-left: 1.2em;
}

.roppo-entry-body li {
    margin-bottom: 0.55em;
}

.roppo-entry-body a {
    color: #111;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.roppo-entry-body img,
.roppo-entry-body figure {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 22px;
    margin: 1.6em 0;
}

.roppo-entry-body blockquote {
    margin: 1.6em 0;
    padding: 8px 0 8px 22px;
    border-left: 3px solid #111;
    font-size: 1.35rem;
    line-height: 1.55;
    color: #111;
}

.roppo-entry-page .roppo-entry-art {
    display: none;
}

.roppo-svc-mast {
    position: relative;
    padding: 188px 0 96px;
    margin: 0 0 24px;
    color: #fff;
    background:
        radial-gradient(ellipse 70% 55% at 88% 12%, rgba(225, 29, 116, 0.42), transparent 58%),
        radial-gradient(ellipse 55% 50% at 8% 88%, rgba(255, 124, 42, 0.32), transparent 52%),
        #111;
    overflow: hidden;
}

.roppo-svc-mast .roppo-back {
    color: rgba(255, 255, 255, 0.62);
}

.roppo-svc-mast .roppo-btn-line {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.roppo-svc-mast .roppo-btn-line:hover {
    background: #fff;
    color: #111;
}

.roppo-svc-mast .roppo-svc-actions .roppo-btn:not(.roppo-btn-line) {
    background: #fff;
    color: #111;
}

.roppo-svc-mast .roppo-svc-actions .roppo-btn:not(.roppo-btn-line):hover {
    background: #f2f2f2;
}

.roppo-svc-mast-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.roppo-svc-proof {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 4px 0 28px;
}

.roppo-svc-faces {
    display: flex;
    flex-shrink: 0;
}

.roppo-svc-faces span {
    width: 54px;
    height: 54px;
    margin-left: -14px;
    border-radius: 50%;
    border: 3px solid #111;
    display: block;
}

.roppo-svc-faces span:first-child { margin-left: 0; }
.roppo-svc-faces .is-s { background: linear-gradient(145deg, #ffb14a, #e11d48); }
.roppo-svc-faces .is-a { background: linear-gradient(145deg, #8b5cf6, #4c1d95); }
.roppo-svc-faces .is-c { background: linear-gradient(145deg, #fb7185, #9d174d); }

.roppo-svc-proof p {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.7);
    max-width: 28ch;
}

.roppo-svc-title {
    font-size: clamp(3.2rem, 6.4vw, 5.8rem);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.05em;
    max-width: 11ch;
    color: #fff;
}

.roppo-svc-word {
    display: inline-block;
    overflow: visible;
    vertical-align: bottom;
}

.roppo-svc-word span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    color: #fff;
}

.roppo-svc-title.is-in .roppo-svc-word span { transform: none; }

.roppo-svc-mast .roppo-mast-lead {
    max-width: 36ch;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.72);
}

.roppo-svc-stage {
    position: relative;
    min-height: 440px;
}

.roppo-svc-reel {
    position: relative;
    height: 440px;
    overflow: hidden;
    border-radius: 32px;
}

.roppo-svc-reel-track {
    position: relative;
    height: 100%;
}

.roppo-svc-shot {
    min-height: 280px;
    height: auto;
    border-radius: 28px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    padding: 32px 32px 36px;
    color: #111;
    background: #fff;
}

.roppo-svc-shot-n {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #8a8a8a;
}

.roppo-svc-shot h3 {
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin: 0;
}

.roppo-svc-shot p {
    font-size: 1.05rem;
    line-height: 1.55;
    color: #4a4a4a;
    margin: 0;
    max-width: 32ch;
}

.roppo-svc-shot.is-live {
    position: absolute;
    inset: 0;
    min-height: 0;
    height: 100%;
    padding: 20px 20px 22px;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    animation: roppoSvcC1 16s ease-in-out infinite;
}

.roppo-svc-shot.is-live:nth-child(1) { animation-name: roppoSvcC1; }
.roppo-svc-shot.is-live:nth-child(2) { animation-name: roppoSvcC2; }
.roppo-svc-shot.is-live:nth-child(3) { animation-name: roppoSvcC3; }
.roppo-svc-shot.is-live:nth-child(4) { animation-name: roppoSvcC4; }

@keyframes roppoSvcC1 {
    0%, 22% { opacity: 1; }
    25%, 97% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes roppoSvcC2 {
    0%, 22% { opacity: 0; }
    25%, 47% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
@keyframes roppoSvcC3 {
    0%, 47% { opacity: 0; }
    50%, 72% { opacity: 1; }
    75%, 100% { opacity: 0; }
}
@keyframes roppoSvcC4 {
    0%, 72% { opacity: 0; }
    75%, 97% { opacity: 1; }
    100% { opacity: 0; }
}

.roppo-web-live {
    position: relative;
    flex: 1;
    min-height: 176px;
    border-radius: 20px;
    background: #f2f2f2;
    padding: 16px;
    overflow: hidden;
}

.roppo-web-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.roppo-web-bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4d4d4;
}

.roppo-web-bar em {
    margin-left: 8px;
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6a6a6a;
}

.roppo-web-nav {
    display: flex;
    gap: 18px;
    margin-bottom: 16px;
}

.roppo-web-nav b {
    position: relative;
    font-size: 0.86rem;
    font-weight: 600;
    color: #9a9a9a;
}

.roppo-web-nav b::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background: #111;
    transform: scaleX(0);
    transform-origin: left;
}

.roppo-web-live.is-menu .roppo-web-nav b:nth-child(1) { animation: roppoWebNav 4.8s 0s infinite; }
.roppo-web-live.is-menu .roppo-web-nav b:nth-child(2) { animation: roppoWebNav 4.8s 1.6s infinite; }
.roppo-web-live.is-menu .roppo-web-nav b:nth-child(3) { animation: roppoWebNav 4.8s 3.2s infinite; }
.roppo-web-live.is-menu .roppo-web-nav b:nth-child(1)::after { animation: roppoWebLine 4.8s 0s infinite; }
.roppo-web-live.is-menu .roppo-web-nav b:nth-child(2)::after { animation: roppoWebLine 4.8s 1.6s infinite; }
.roppo-web-live.is-menu .roppo-web-nav b:nth-child(3)::after { animation: roppoWebLine 4.8s 3.2s infinite; }

@keyframes roppoWebNav {
    0%, 28%, 100% { color: #9a9a9a; }
    8%, 22% { color: #111; }
}

@keyframes roppoWebLine {
    0%, 28%, 100% { transform: scaleX(0); }
    8%, 22% { transform: scaleX(1); }
}

.roppo-web-map {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.roppo-web-map li {
    font-size: 0.92rem;
    font-weight: 600;
    color: #111;
    padding: 8px 12px;
    border-radius: 10px;
    background: #fff;
    transform: translateX(-12px);
    opacity: 0;
}

.roppo-web-live.is-menu .roppo-web-map li:nth-child(1) { animation: roppoWebMap 4.8s 0.15s infinite; }
.roppo-web-live.is-menu .roppo-web-map li:nth-child(2) { animation: roppoWebMap 4.8s 1.75s infinite; padding-left: 22px; }
.roppo-web-live.is-menu .roppo-web-map li:nth-child(3) { animation: roppoWebMap 4.8s 3.35s infinite; padding-left: 22px; }

@keyframes roppoWebMap {
    0% { opacity: 0; transform: translateX(-12px); }
    10%, 30% { opacity: 1; transform: none; }
    42%, 100% { opacity: 0.35; transform: none; }
}

.roppo-web-live.is-phone {
    display: grid;
    grid-template-columns: 1fr 102px;
    gap: 14px;
    align-items: stretch;
}

.roppo-web-wide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 18px 16px;
    border-radius: 14px;
    background: #fff;
    align-self: start;
    animation: roppoWebWide 5.4s infinite;
}

.roppo-web-wide b {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.roppo-web-hand {
    position: relative;
    border-radius: 22px;
    background: #111;
    color: #fff;
    padding: 22px 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: roppoWebHand 5.4s infinite;
}

.roppo-web-notch {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 28px;
    height: 5px;
    margin-left: -14px;
    border-radius: 99px;
    background: #333;
}

.roppo-web-hand b {
    font-size: 0.62rem;
    font-weight: 600;
    text-align: center;
    padding: 8px 4px;
    border-radius: 8px;
    background: #fff;
    color: #111;
}

@keyframes roppoWebWide {
    0%, 18% { transform: none; opacity: 1; }
    38%, 100% { transform: scale(0.96); opacity: 0.72; }
}

@keyframes roppoWebHand {
    0%, 12% { transform: translateY(18px); opacity: 0.35; }
    32%, 100% { transform: none; opacity: 1; }
}

.roppo-web-live.is-seo ol {
    margin: 0;
    padding: 8px 4px 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.roppo-web-live.is-seo li {
    color: #111;
    opacity: 0;
    transform: translateY(10px);
}

.roppo-web-live.is-seo li:nth-child(1) {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    animation: roppoWebSeo 5.2s 0s infinite;
}

.roppo-web-live.is-seo li:nth-child(2) {
    font-size: 1.05rem;
    font-weight: 600;
    animation: roppoWebSeo 5.2s 0.7s infinite;
}

.roppo-web-live.is-seo li:nth-child(3) {
    font-size: 0.88rem;
    font-weight: 500;
    color: #555;
    animation: roppoWebSeo 5.2s 1.4s infinite;
}

@keyframes roppoWebSeo {
    0% { opacity: 0; transform: translateY(10px); }
    12%, 62% { opacity: 1; transform: none; }
    78%, 100% { opacity: 0; transform: none; }
}

.roppo-web-live.is-go ul {
    margin: 0;
    padding: 6px 2px 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.roppo-web-live.is-go li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
}

.roppo-web-live.is-go i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #cfcfcf;
    background: transparent;
    flex-shrink: 0;
    position: relative;
}

.roppo-web-live.is-go i::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) scale(0);
}

.roppo-web-live.is-go li:nth-child(1) i { animation: roppoWebTick 5.4s 0.1s infinite; }
.roppo-web-live.is-go li:nth-child(2) i { animation: roppoWebTick 5.4s 1.1s infinite; }
.roppo-web-live.is-go li:nth-child(3) i { animation: roppoWebTick 5.4s 2.1s infinite; }
.roppo-web-live.is-go li:nth-child(1) i::after { animation: roppoWebMark 5.4s 0.1s infinite; }
.roppo-web-live.is-go li:nth-child(2) i::after { animation: roppoWebMark 5.4s 1.1s infinite; }
.roppo-web-live.is-go li:nth-child(3) i::after { animation: roppoWebMark 5.4s 2.1s infinite; }

@keyframes roppoWebTick {
    0%, 8% { border-color: #cfcfcf; background: transparent; }
    18%, 72% { border-color: #111; background: #111; }
    86%, 100% { border-color: #cfcfcf; background: transparent; }
}

@keyframes roppoWebMark {
    0%, 12% { transform: rotate(45deg) scale(0); }
    22%, 72% { transform: rotate(45deg) scale(1); }
    86%, 100% { transform: rotate(45deg) scale(0); }
}

@media (prefers-reduced-motion: reduce) {
    .roppo-svc-shot.is-live {
        animation: none;
        opacity: 0;
    }
    .roppo-svc-shot.is-live:first-child { opacity: 1; }
    .roppo-svc-word span { transform: none; }
    .roppo-web-live.is-menu .roppo-web-nav b,
    .roppo-web-live.is-menu .roppo-web-nav b::after,
    .roppo-web-live.is-menu .roppo-web-map li,
    .roppo-web-wide,
    .roppo-web-hand,
    .roppo-web-live.is-seo li,
    .roppo-web-live.is-go i,
    .roppo-web-live.is-go i::after {
        animation: none;
    }
    .roppo-web-nav b { color: #111; }
    .roppo-web-nav b::after { transform: scaleX(1); }
    .roppo-web-map li { opacity: 1; transform: none; }
    .roppo-web-live.is-seo li { opacity: 1; transform: none; }
    .roppo-web-live.is-go i { border-color: #111; background: #111; }
    .roppo-web-live.is-go i::after { transform: rotate(45deg) scale(1); }
    .roppo-web-live.is-cal .roppo-live-cal i,
    .roppo-web-live.is-rows li,
    .roppo-web-live.is-crm li,
    .roppo-web-live.is-flow b,
    .roppo-web-live.is-pair span,
    .roppo-web-live.is-local b,
    .roppo-live-q,
    .roppo-live-hit {
        animation: none;
    }
    .roppo-web-live.is-rows li,
    .roppo-web-live.is-crm li,
    .roppo-web-live.is-local b { opacity: 1; transform: none; }
    .roppo-web-live.is-flow b { color: #111; }
}

.roppo-web-live.is-cal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.roppo-live-kicker {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6a6a6a;
}

.roppo-live-cal {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.roppo-live-cal i {
    height: 28px;
    border-radius: 8px;
    background: #fff;
}

.roppo-web-live.is-cal .roppo-live-cal i:nth-child(4),
.roppo-web-live.is-cal .roppo-live-cal i:nth-child(11) {
    animation: roppoLiveFill 3.8s infinite;
}

@keyframes roppoLiveFill {
    0%, 18% { background: #fff; }
    28%, 58% { background: #111; }
    72%, 100% { background: #fff; }
}

.roppo-web-live.is-rows ul,
.roppo-web-live.is-crm ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.roppo-web-live.is-rows li,
.roppo-web-live.is-crm li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
}

.roppo-web-live.is-rows li:nth-child(1),
.roppo-web-live.is-crm li:nth-child(1) { animation: roppoWebSeo 4.8s 0s infinite; }
.roppo-web-live.is-rows li:nth-child(2),
.roppo-web-live.is-crm li:nth-child(2) { animation: roppoWebSeo 4.8s 0.55s infinite; }
.roppo-web-live.is-rows li:nth-child(3),
.roppo-web-live.is-crm li:nth-child(3) { animation: roppoWebSeo 4.8s 1.1s infinite; }

.roppo-live-num { color: #6a6a6a; font-variant-numeric: tabular-nums; }

.roppo-web-live.is-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.roppo-web-live.is-flow b {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 14px 8px;
    border-radius: 14px;
    background: #fff;
    color: #9a9a9a;
}

.roppo-web-live.is-flow b:nth-child(1) { animation: roppoWebNav 4.5s 0s infinite; }
.roppo-web-live.is-flow b:nth-child(2) { animation: roppoWebNav 4.5s 1.5s infinite; }
.roppo-web-live.is-flow b:nth-child(3) { animation: roppoWebNav 4.5s 3s infinite; }

.roppo-web-live.is-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
}

.roppo-web-live.is-pair span {
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    min-height: 120px;
}

.roppo-web-live.is-pair span:nth-child(1) { animation: roppoWebHand 4.4s infinite; }
.roppo-web-live.is-pair span:nth-child(2) { animation: roppoWebHand 4.4s 0.6s infinite; }

.roppo-web-live.is-local {
    display: grid;
    gap: 10px;
}

.roppo-web-live.is-local b {
    display: block;
    padding: 16px 18px;
    border-radius: 16px;
    background: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-10px);
}

.roppo-web-live.is-local b:nth-of-type(1) { animation: roppoWebMap 4.6s 0.1s infinite; }
.roppo-web-live.is-local b:nth-of-type(2) { animation: roppoWebMap 4.6s 1.6s infinite; }
.roppo-web-live.is-local em {
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6a6a6a;
}

.roppo-web-live.is-search {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.roppo-live-q {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    animation: roppoLiveType 4.8s steps(18) infinite;
}

@keyframes roppoLiveType {
    0% { max-width: 0; opacity: 1; }
    35%, 70% { max-width: 100%; opacity: 1; }
    82%, 100% { max-width: 100%; opacity: 0.4; }
}

.roppo-live-hit {
    padding: 12px 14px;
    border-radius: 14px;
    background: #111;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    animation: roppoWebSeo 4.8s 1.1s infinite;
}

.roppo-svc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.roppo-svc-actions .roppo-btn-line {
    margin-top: 0;
}

.roppo-svc-path {
    background: #fff;
    padding: 88px 0 100px;
    margin: 0;
}

.roppo-svc-path-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.82fr) 1.18fr;
    gap: 56px 88px;
    align-items: start;
    overflow: visible;
}

.roppo-svc-path-rail {
    position: sticky;
    top: 120px;
}

.roppo-svc-path-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #111;
    margin: 0 0 28px;
}

.roppo-svc-path-word {
    display: block;
    overflow: hidden;
}

.roppo-svc-path-word span {
    display: inline-block;
    color: #111;
    transform: translateY(112%);
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.roppo-svc-path-title.is-in .roppo-svc-path-word span {
    transform: none;
}

.roppo-svc-path-lead {
    font-size: 1.12rem;
    line-height: 1.65;
    color: #4a4a4a;
    max-width: 28ch;
    margin: 0 0 28px;
}

.roppo-svc-path-list {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.roppo-svc-path-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.roppo-svc-path-n {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #111;
    display: grid;
    place-items: center;
    font-size: 0.92rem;
    font-weight: 700;
    flex-shrink: 0;
}

.roppo-svc-path-n.is-done {
    background: #e11d48;
    color: #fff;
}

.roppo-svc-path-n.is-done svg {
    display: block;
}

.roppo-svc-path-head h3 {
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0;
    color: #111;
}

.roppo-svc-path-shot {
    position: relative;
    min-height: 0;
    height: auto;
    border-radius: 24px;
    overflow: visible;
    margin-bottom: 18px;
    padding: 22px 24px;
    background: #f3f3f3;
    color: #111;
}

.roppo-path-doc,
.roppo-path-tree,
.roppo-path-go {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.roppo-path-doc li,
.roppo-path-tree li,
.roppo-path-go li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.roppo-path-doc li {
    counter-increment: pathdoc;
}

.roppo-path-doc {
    counter-reset: pathdoc;
}

.roppo-path-doc li::before {
    content: counter(pathdoc, decimal-leading-zero);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #8a8a8a;
    width: 1.8em;
    flex-shrink: 0;
}

.roppo-path-kicker {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6a6a6a;
}

.roppo-path-tree li:nth-child(2),
.roppo-path-tree li:nth-child(3) {
    margin-left: 18px;
}

.roppo-path-type-xl,
.roppo-path-type-md,
.roppo-path-type-sm {
    margin: 0;
    color: #111;
}

.roppo-path-type-xl {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.1;
    margin-bottom: 10px;
}

.roppo-path-type-md {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.roppo-path-type-sm {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
}

.roppo-path-go i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #111;
    flex-shrink: 0;
    position: relative;
}

.roppo-path-go i::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.roppo-svc-path.is-color .roppo-svc-path-shot.is-a {
    background: linear-gradient(155deg, #ffd7a8 0%, #f97316 48%, #9f1239 100%);
}

.roppo-svc-path.is-color .roppo-svc-path-shot.is-b {
    background: linear-gradient(155deg, #5b21b6 0%, #4c1d95 42%, #1e1b4b 100%);
}

.roppo-svc-path.is-color .roppo-svc-path-shot.is-c {
    background: linear-gradient(155deg, #fb7185 0%, #e11d48 48%, #9d174d 100%);
    color: #fff;
}

.roppo-svc-path.is-color .roppo-svc-path-shot.is-d {
    background: linear-gradient(155deg, #374151 0%, #111827 55%, #020617 100%);
}

.roppo-svc-path.is-color .is-a .roppo-path-doc li::before {
    color: #c2410c;
}

.roppo-svc-path.is-color .is-b .roppo-path-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.roppo-svc-path.is-color .is-c .roppo-path-type-xl,
.roppo-svc-path.is-color .is-c .roppo-path-type-md {
    color: #fff;
}

.roppo-svc-path.is-color .is-c .roppo-path-type-sm {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.roppo-svc-path.is-color .is-b .roppo-path-type-xl,
.roppo-svc-path.is-color .is-b .roppo-path-type-md {
    color: #fff;
}

.roppo-svc-path.is-color .is-b .roppo-path-type-sm {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.roppo-svc-path.is-color .is-b .roppo-path-go li,
.roppo-svc-path.is-color .is-c .roppo-path-go li {
    background: rgba(255, 255, 255, 0.94);
    color: #111;
}

.roppo-svc-path.is-color .is-d .roppo-path-go li {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.roppo-svc-path.is-color .is-d .roppo-path-go i {
    background: #fff;
}

.roppo-svc-path.is-color .is-d .roppo-path-go i::after {
    border-color: #111;
}

.roppo-svc-path-list > article > p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #4a4a4a;
    max-width: 46ch;
    margin: 0;
}

.roppo-svc-block {
    padding: 48px 0 88px;
}

.roppo-svc-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 40px;
}

.roppo-svc-feats article {
    background: #fff;
    border-radius: 28px;
    padding: 44px 40px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}

.roppo-svc-feats h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.roppo-svc-feats p {
    font-size: 1.15rem;
    line-height: 1.55;
    color: #4a4a4a;
    max-width: 28ch;
}

.roppo-svc-prose {
    max-width: 46ch;
}

.roppo-svc-prose p {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #2f2f2f;
    margin-bottom: 28px;
}

.roppo-svc-price-lead {
    margin-top: 20px;
    font-size: 1.25rem;
    line-height: 1.55;
    max-width: 40ch;
    color: #3f3f3f;
}

.roppo-svc-price {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
    margin-top: 48px;
}

.roppo-svc-pack {
    background: #fff;
    border-radius: 28px;
    padding: 44px 36px;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roppo-svc-pack.is-dark {
    background: #111;
    color: #fff;
}

.roppo-svc-pack.is-tint {
    background: linear-gradient(160deg, #2a1030 0%, #111 55%, #1a0c12 100%);
    color: #fff;
}

.roppo-svc-pack h3 {
    font-size: clamp(1.7rem, 2.4vw, 2.3rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.roppo-svc-sum {
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    font-weight: 500;
    letter-spacing: -0.03em;
}

.roppo-svc-pack ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.roppo-svc-pack li {
    font-size: 1.05rem;
    line-height: 1.4;
    color: inherit;
    opacity: 0.78;
}

.roppo-svc-pack .roppo-btn {
    align-self: flex-start;
    margin-top: auto;
}

.roppo-svc-notes {
    display: grid;
    gap: 22px;
    margin-top: 40px;
}

.roppo-svc-also-block {
    padding: 48px 0 88px;
}

.roppo-svc-also-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.roppo-svc-also-bar .roppo-h2 {
    margin: 0;
}

.roppo-svc-also-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.roppo-svc-also-nav .roppo-strip-prev,
.roppo-svc-also-nav .roppo-strip-next {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    display: flex;
}

.roppo-svc-also-nav .roppo-strip-prev.is-off,
.roppo-svc-also-nav .roppo-strip-next.is-off {
    opacity: 0.28;
    pointer-events: none;
}

.roppo-svc-also {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-inline: max(4.5vw, calc((100vw - 1280px) / 2 + 4.5vw));
    padding-bottom: 8px;
}

.roppo-svc-also::-webkit-scrollbar {
    display: none;
}

.roppo-svc-also-link {
    flex: 0 0 min(78vw, 420px);
    min-height: 280px;
    padding: 44px 40px;
    border-radius: 28px;
    background: #fff;
    display: flex;
    align-items: flex-end;
    color: inherit;
    scroll-snap-align: start;
}

.roppo-svc-also-link.is-dark {
    background: #111;
    color: #fff;
}

.roppo-svc-also-link.is-tint {
    background: linear-gradient(160deg, #2a1030 0%, #111 55%, #1a0c12 100%);
    color: #fff;
}

.roppo-svc-also-link h3 {
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.roppo-case.roppo-entry-art {
    height: auto;
    min-height: 560px;
    padding: 0;
}

.roppo-case-mast.is-snipe {
    background:
        radial-gradient(ellipse 70% 55% at 88% 12%, rgba(14, 165, 233, 0.38), transparent 58%),
        radial-gradient(ellipse 55% 50% at 8% 88%, rgba(16, 185, 129, 0.28), transparent 52%),
        #111;
}

.roppo-case-mast.is-lotus {
    background:
        radial-gradient(ellipse 70% 55% at 88% 12%, rgba(34, 197, 94, 0.36), transparent 58%),
        radial-gradient(ellipse 55% 50% at 8% 88%, rgba(245, 158, 11, 0.32), transparent 52%),
        #111;
}

.roppo-case-mast.is-ivf {
    background:
        radial-gradient(ellipse 70% 55% at 88% 12%, rgba(244, 114, 182, 0.32), transparent 58%),
        radial-gradient(ellipse 55% 50% at 8% 88%, rgba(45, 212, 191, 0.3), transparent 52%),
        #111;
}

.roppo-case-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 28px;
}

.roppo-case-chips span {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.86);
}

.roppo-case-title {
    font-size: clamp(3.1rem, 7vw, 6rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.96;
    max-width: 14ch;
    margin: 0 0 22px;
}

.roppo-case-mast .roppo-mast-lead {
    max-width: 34ch;
    font-size: 1.28rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 32px;
}

.roppo-case-board {
    background: #fff;
    color: #111;
    border-radius: 32px;
    min-height: 460px;
    padding: 18px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
}

.roppo-case-board-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px 18px;
    color: #6b6b6b;
    font-size: 0.82rem;
    font-weight: 600;
}

.roppo-case-board-bar i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e5e5;
    display: block;
}

.roppo-case-board-bar i:first-child { background: #fb7185; }
.roppo-case-board-bar i:nth-child(2) { background: #fbbf24; }
.roppo-case-board-bar i:nth-child(3) { background: #34d399; }

.roppo-case-board-bar em {
    margin-left: 8px;
    font-style: normal;
    letter-spacing: -0.03em;
}

.roppo-case-board ol {
    list-style: none;
    display: grid;
    gap: 10px;
}

.roppo-case-board li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    min-height: 78px;
    padding: 18px 22px;
    border-radius: 20px;
    background: #f4f4f4;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.roppo-case-board li b {
    font-weight: 500;
    color: #9a9a9a;
    font-size: 1rem;
}

.roppo-case-mast.is-snipe .roppo-case-board li:first-child { background: #ecfeff; }
.roppo-case-mast.is-lotus .roppo-case-board li:first-child { background: #ecfdf5; }
.roppo-case-mast.is-ivf .roppo-case-board li:first-child { background: #fdf2f8; }

.roppo-case-story {
    padding: 24px 0 8px;
}

.roppo-case-block {
    display: grid;
    grid-template-columns: minmax(88px, 0.22fr) 1fr;
    gap: 48px;
    align-items: start;
    padding: 72px 0;
    border-top: 1px solid #e6e6e6;
}

.roppo-case-n {
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    font-weight: 500;
    letter-spacing: -0.07em;
    line-height: 0.9;
    color: #111;
}

.roppo-case-block h2 {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1.05;
    margin: 0 0 22px;
    max-width: 16ch;
}

.roppo-case-block p {
    font-size: 1.28rem;
    line-height: 1.65;
    color: #3d3d3d;
    max-width: 46ch;
}

.roppo-case-did {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 12px 0 96px;
}

.roppo-case-did article {
    min-height: 320px;
    padding: 40px 36px;
    border-radius: 28px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.roppo-case-did h3 {
    font-size: 1.85rem;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.roppo-case-did p {
    font-size: 1.05rem;
    line-height: 1.55;
    color: #4a4a4a;
    max-width: 28ch;
}

.roppo-case-did.is-snipe article:nth-child(1) {
    background: linear-gradient(165deg, #0e7490 0%, #111 70%);
    color: #fff;
}
.roppo-case-did.is-snipe article:nth-child(2) {
    background: linear-gradient(165deg, #d1fae5 0%, #fff 55%);
}
.roppo-case-did.is-lotus article:nth-child(1) {
    background: linear-gradient(165deg, #15803d 0%, #111 72%);
    color: #fff;
}
.roppo-case-did.is-lotus article:nth-child(2) {
    background: linear-gradient(165deg, #fef3c7 0%, #fff 58%);
}
.roppo-case-did.is-ivf article:nth-child(1) {
    background: linear-gradient(165deg, #9d174d 0%, #111 72%);
    color: #fff;
}
.roppo-case-did.is-ivf article:nth-child(2) {
    background: linear-gradient(165deg, #ccfbf1 0%, #fff 58%);
}

.roppo-case-did article:nth-child(1) p {
    color: rgba(255, 255, 255, 0.78);
}

.roppo-case-more {
    padding: 8px 0 72px;
}

.roppo-case-more .roppo-h2 {
    padding-inline: max(4.5vw, calc((100vw - 1280px) / 2 + 4.5vw));
    margin-bottom: 28px;
}

@media (max-width: 1100px) {
    .roppo-case-did {
        grid-template-columns: 1fr;
    }
    .roppo-case-did article {
        min-height: 240px;
    }
    .roppo-case-block {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 48px 0;
    }
}

@media (max-width: 640px) {
    .roppo-case-board {
        min-height: 0;
    }
    .roppo-case-board li {
        min-height: 64px;
        font-size: 1.12rem;
    }
}

.roppo-inner .roppo-faq-block {
    padding-top: 12px;
}

.roppo-inner .roppo-flow {
    padding-top: 24px;
}

@media (max-width: 1100px) {
    .roppo-offer {
        grid-template-columns: 1fr;
    }
    .roppo-write-grid,
    .roppo-contact-row {
        grid-template-columns: 1fr;
    }
    .roppo-contact-form {
        padding: 28px 22px;
    }
    .roppo-offer article,
    .roppo-offer a,
    .roppo-reach a {
        min-height: 0;
        padding: 36px 28px;
    }
    .roppo-worklist .roppo-case {
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        padding: 36px 28px;
    }
    .roppo-note-card {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 1fr) 148px;
        height: 420px;
        min-height: 420px;
        max-height: 420px;
    }
    .roppo-post {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 1fr) 148px;
        height: 400px;
        min-height: 400px;
        max-height: 400px;
    }
    .roppo-notes-swiper .swiper-slide {
        height: 400px;
    }
    .roppo-note-copy,
    .roppo-note-card > div:first-child {
        padding: 28px 24px 20px;
        gap: 12px;
    }
    .roppo-entry {
        padding: 28px 0 64px;
    }
    .roppo-entry-body {
        max-width: none;
    }
    .roppo-entry-cover {
        margin-top: 28px;
        border-radius: 20px;
        aspect-ratio: 2.35 / 1;
    }
    .roppo-note-card .roppo-note-art,
    .roppo-post .roppo-post-shot {
        min-height: 148px;
        height: 148px;
    }
    .roppo-svc-mast-grid,
    .roppo-svc-feats,
    .roppo-svc-price,
    .roppo-svc-path-grid {
        grid-template-columns: 1fr;
    }
    .roppo-svc-path-rail {
        position: relative;
        top: auto;
    }
    .roppo-svc-path-shot { padding: 16px 16px; }
    .roppo-svc-stage { min-height: 0; }
    .roppo-svc-reel { height: 340px; }
    .roppo-svc-shot { min-height: 220px; }
    .roppo-web-live { min-height: 140px; padding: 12px; }
    .roppo-web-live.is-phone { grid-template-columns: 1fr 78px; gap: 8px; }
    .roppo-svc-pack { min-height: 0; }
    .roppo-svc-price { grid-template-columns: 1fr 1fr; }
    .roppo-svc-also-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .roppo-inner .roppo-nav {
        top: 10px;
        width: calc(100vw - 20px);
    }
    .roppo-mast { padding-top: 128px; }
}

.roppo-rise {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--d, 0s);
}

.roppo-rise.is-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .roppo-rise {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.roppo-about-intro {
    padding: 24px 0 96px;
}

.roppo-about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 48px 56px;
    align-items: start;
}

.roppo-about-intro-copy .roppo-h2 {
    max-width: 14ch;
    margin-bottom: 28px;
}

.roppo-about-intro-copy .roppo-body {
    max-width: 48ch;
    margin-bottom: 18px;
}

.roppo-about-places {
    display: grid;
    gap: 16px;
}

.roppo-about-place {
    padding: 36px 32px;
    border-radius: 28px;
    background: #111;
    color: #fff;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.roppo-about-place.is-alt {
    background: #e11d74;
}

.roppo-about-place strong {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.roppo-about-place p {
    font-size: 1.15rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    max-width: 28ch;
}

.roppo-about-path,
.roppo-about-offer,
.roppo-about-live,
.roppo-about-split {
    padding: 40px 0 112px;
}

.roppo-about-head {
    margin-bottom: 48px;
}

.roppo-about-head .roppo-h2 {
    max-width: 16ch;
    margin-top: 12px;
}

.roppo-about-head .roppo-body {
    margin-top: 20px;
    max-width: 46ch;
}

.roppo-about-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.roppo-about-step {
    min-height: 320px;
    padding: 32px 28px 36px;
    border-radius: 28px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 1px 0 rgba(17, 17, 17, 0.04);
}

.roppo-about-step span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #e11d74;
}

.roppo-about-step h3 {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.roppo-about-step p {
    margin-top: auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.roppo-about-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.roppo-about-card {
    min-height: 280px;
    padding: 36px 32px;
    border-radius: 28px;
    background: #fff;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.roppo-about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(17, 17, 17, 0.08);
}

.roppo-about-card strong {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e11d74;
}

.roppo-about-card h3 {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.roppo-about-card p {
    margin-top: auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.roppo-about-live-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.roppo-about-live-card {
    height: 340px;
    min-height: 340px;
    max-height: 340px;
    padding: 36px 32px;
    border-radius: 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #111;
    overflow: hidden;
    transition: transform 0.35s ease;
}

.roppo-about-live-card:hover {
    transform: translateY(-6px);
}

.roppo-about-live-card.is-snipe {
    background:
        radial-gradient(ellipse 70% 55% at 88% 12%, rgba(14, 165, 233, 0.38), transparent 58%),
        radial-gradient(ellipse 55% 50% at 8% 88%, rgba(16, 185, 129, 0.28), transparent 52%),
        #111;
}

.roppo-about-live-card.is-lotus {
    background:
        radial-gradient(ellipse 70% 55% at 88% 12%, rgba(34, 197, 94, 0.36), transparent 58%),
        radial-gradient(ellipse 55% 50% at 8% 88%, rgba(245, 158, 11, 0.32), transparent 52%),
        #111;
}

.roppo-about-live-card.is-ivf {
    background:
        radial-gradient(ellipse 70% 55% at 88% 12%, rgba(244, 114, 182, 0.32), transparent 58%),
        radial-gradient(ellipse 55% 50% at 8% 88%, rgba(45, 212, 191, 0.3), transparent 52%),
        #111;
}

.roppo-about-live-card span {
    align-self: flex-start;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.roppo-about-live-card h3 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.roppo-about-live-card p {
    margin-top: auto;
    font-size: 1.1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    max-width: 26ch;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.roppo-about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.roppo-about-do,
.roppo-about-dont {
    padding: 48px 44px;
    border-radius: 32px;
    min-height: 420px;
}

.roppo-about-do {
    background: #fff;
}

.roppo-about-dont {
    background: #111;
    color: #fff;
}

.roppo-about-do .roppo-h2,
.roppo-about-dont .roppo-h2 {
    max-width: 10ch;
    margin-bottom: 32px;
}

.roppo-about-do ul,
.roppo-about-dont ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
}

.roppo-about-do li,
.roppo-about-dont li {
    font-size: 1.12rem;
    line-height: 1.55;
    padding-left: 28px;
    position: relative;
    max-width: 42ch;
}

.roppo-about-do li::before,
.roppo-about-dont li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.roppo-about-do li::before {
    background: #e11d74;
}

.roppo-about-dont li::before {
    background: rgba(255, 255, 255, 0.45);
}

.roppo-about-dont li {
    color: rgba(255, 255, 255, 0.82);
}

.roppo-about-reach {
    padding: 0 0 80px;
}

.roppo-about-reach-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
    gap: 40px;
    align-items: center;
    padding: 56px 52px;
    border-radius: 36px;
    background: #fff;
}

.roppo-about-reach-card .roppo-h2 {
    max-width: 16ch;
    margin: 12px 0 18px;
}

.roppo-about-reach-card .roppo-body {
    max-width: 40ch;
}

.roppo-about-reach-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.roppo-about-reach-links a:not(.roppo-btn) {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #111;
}

.roppo-about-reach-links a:not(.roppo-btn):hover {
    color: #e11d74;
}

.roppo-about-reach-links .roppo-btn {
    margin-top: 8px;
}

@media (max-width: 1100px) {
    .roppo-about-intro-grid,
    .roppo-about-reach-card,
    .roppo-about-split-grid {
        grid-template-columns: 1fr;
    }
    .roppo-about-steps,
    .roppo-about-live-grid {
        grid-template-columns: 1fr 1fr;
    }
    .roppo-about-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .roppo-about-steps,
    .roppo-about-cards,
    .roppo-about-live-grid {
        grid-template-columns: 1fr;
    }
    .roppo-about-step,
    .roppo-about-card,
    .roppo-about-live-card {
        min-height: 0;
    }
    .roppo-about-do,
    .roppo-about-dont,
    .roppo-about-reach-card {
        padding: 32px 24px;
    }
    .roppo-about-intro {
        padding-bottom: 48px;
    }
    .roppo-about-path,
    .roppo-about-offer,
    .roppo-about-live,
    .roppo-about-split {
        padding-bottom: 64px;
    }
}

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

img,
video,
iframe {
    max-width: 100%;
}

.roppo-page img,
.roppo-notes img,
.roppo-spot img {
    height: auto;
}

.roppo-logo img,
.roppo-footer-logo img {
    max-width: none;
}

.roppo-wrap,
.roppo-stage-inner,
.roppo-nav-inner,
.roppo-footer-top > * {
    min-width: 0;
}

@media (max-width: 1100px) {
    .roppo-nav-inner {
        gap: 12px;
    }
    .roppo-links.is-open a {
        font-size: 1.08rem;
        padding: 14px 18px;
        border-radius: 18px;
        font-weight: 600;
    }
    .roppo-links.is-open a.is-active,
    .roppo-links.is-open a:hover {
        background: #111;
        color: #fff;
    }
    .roppo-mast {
        padding: 168px 0 48px;
    }
    .roppo-mast-title,
    .roppo-case-title,
    .roppo-svc-title {
        max-width: none;
        font-size: clamp(2.7rem, 8.5vw, 5.4rem);
    }
    .roppo-mast-lead {
        max-width: 44ch;
        font-size: 1.22rem;
    }
    .roppo-h2 {
        font-size: clamp(2.15rem, 6.4vw, 4.2rem);
    }
    .roppo-chips {
        flex-wrap: wrap;
    }
    .roppo-notes-stage {
        width: 100%;
        margin-left: 0;
        padding-left: 4.5vw;
    }
    .roppo-footer-mail {
        font-size: clamp(1.35rem, 5vw, 2.2rem);
        overflow-wrap: anywhere;
    }
    .roppo-svc-feats article,
    .roppo-svc-pack,
    .roppo-reach a {
        min-height: 0;
    }
    .roppo-case-mast .roppo-mast-lead {
        max-width: none;
    }
    .roppo-about-intro-copy .roppo-h2,
    .roppo-about-head .roppo-h2 {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .roppo-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 48px;
        text-align: center;
        justify-items: center;
    }
    .roppo-footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .roppo-footer-brand p {
        max-width: 28ch;
        font-size: 1.22rem;
        margin-top: 18px;
    }
    .roppo-footer-logo img {
        height: 50px;
    }
    .roppo-footer h3 {
        font-size: 1.12rem;
        margin-bottom: 18px;
    }
    .roppo-footer-top a {
        justify-content: center;
        font-size: 1.28rem;
        margin-top: 14px;
    }
    .roppo-footer-top > div:not(.roppo-footer-brand):not(.roppo-footer-reach) a svg {
        display: none;
    }
    .roppo-footer-reach a,
    .roppo-footer-reach p {
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 1.2rem;
    }
    .roppo-footer-reach a svg,
    .roppo-footer-reach p svg {
        width: 20px;
        height: 20px;
    }
    .roppo-footer-bottom {
        align-items: center;
        text-align: center;
    }
    .roppo-footer-mail {
        justify-content: center;
        flex-wrap: wrap;
        font-size: clamp(1.55rem, 7vw, 2.05rem);
    }
    .roppo-legal {
        font-size: 1.12rem;
    }
    .roppo-footer-legal {
        justify-content: center;
    }
    .roppo-footer-legal a {
        font-size: 1.08rem;
    }
    .roppo-footer-social {
        justify-content: center;
        gap: 22px;
        margin-top: 26px;
    }
    .roppo-footer-social svg {
        width: 26px;
        height: 26px;
    }
    .roppo-footer-mark {
        width: 100%;
        text-align: center;
        font-size: clamp(4rem, 24vw, 6.2rem);
    }
    .roppo-svc-price {
        grid-template-columns: 1fr;
    }
    .roppo-flow-steps,
    .roppo-svc-feats {
        grid-template-columns: 1fr;
    }
    .roppo-chips span {
        min-height: 48px;
        padding: 0 18px;
    }
    .roppo-stage-inner {
        padding-bottom: 56px;
        gap: 28px;
    }
    .roppo-marquee {
        padding-bottom: 36px;
    }
    .roppo-block,
    .roppo-flow,
    .roppo-svc-block,
    .roppo-svc-also-block {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .roppo-footer {
        padding: 72px 0 40px;
    }
    .roppo-band-actions {
        width: 100%;
    }
    .roppo-band-actions .roppo-btn {
        flex: 1 1 auto;
        justify-content: center;
    }
    .roppo-dock {
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
    }
    .roppo-totop {
        left: max(14px, env(safe-area-inset-left));
        bottom: max(14px, env(safe-area-inset-bottom));
        width: 48px;
        height: 48px;
    }
    .roppo-cookie {
        left: 12px;
        right: 12px;
        bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    }
    .roppo-pager {
        padding-bottom: 72px;
    }
    .roppo-pager a {
        min-width: 48px;
        height: 48px;
    }
    .roppo-contact-form input,
    .roppo-contact-form textarea {
        font-size: 16px;
    }
    .roppo-about-step,
    .roppo-about-card {
        min-height: 260px;
    }
    .roppo-about-place {
        min-height: 180px;
    }
    .roppo-reach span {
        overflow-wrap: anywhere;
        max-width: 100%;
        font-size: clamp(1.35rem, 6vw, 2rem);
    }
    .roppo-svc-feats article,
    .roppo-svc-pack,
    .roppo-offer article,
    .roppo-offer a {
        padding: 32px 26px;
        border-radius: 24px;
    }
    .roppo-worklist .roppo-case {
        height: 360px;
        min-height: 360px;
        max-height: 360px;
        padding: 32px 26px;
        border-radius: 24px;
    }
    .roppo-note-card {
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        border-radius: 24px;
    }
    .roppo-post,
    .roppo-notes-swiper .swiper-slide {
        height: 380px;
        min-height: 380px;
        max-height: 380px;
    }
    .roppo-about-live-card {
        height: 280px;
        min-height: 280px;
        max-height: 280px;
    }
    .roppo-case-board {
        padding: 14px;
        border-radius: 24px;
    }
    .roppo-inner .roppo-nav {
        width: calc(100vw - 16px);
    }
    .roppo-nav.is-stuck .roppo-nav-inner {
        padding: 8px 8px 8px 16px;
    }
    .roppo-mast {
        padding: 132px 0 40px;
    }
}

@media (max-width: 480px) {
    .roppo-wrap {
        padding: 0 5.5vw;
    }
    .roppo-nav-end {
        gap: 8px;
    }
    .roppo-lang button {
        padding: 8px 10px;
    }
    .roppo-mast-title,
    .roppo-case-title,
    .roppo-svc-title {
        font-size: clamp(2.45rem, 12vw, 3.2rem);
        letter-spacing: -0.04em;
    }
    .roppo-h2 {
        font-size: clamp(1.95rem, 10vw, 2.6rem);
    }
    .roppo-mast-lead,
    .roppo-body {
        font-size: 1.08rem;
        max-width: none;
    }
    .roppo-about-reach-links a:not(.roppo-btn) {
        font-size: 1.08rem;
        overflow-wrap: anywhere;
    }
    .roppo-dock-item span {
        max-width: 11ch;
    }
}
