@charset "UTF-8";

/* ロゴ用フォント：チェックポイントフォント（マルセ／よく飛ばない鳥 http://marusexijaxs.web.fc2.com/）
   「ドラマびより」の6文字だけを抜き出したサブセット */
@font-face {
    font-family: 'CP Logo';
    src: url("../fonts/cpfont-logo.woff2") format("woff2");
    font-display: block;
}

/*--------------------------------------------------------------------
=== [変数] ====================================
 -------------------------------------------------------------------*/

:root {
    --bg: #F6F4EE;
    --card: #fff;
    --ink: #1E1C1A;
    --ink2: #6A655F;
    --line: #E6E1D6;
    --lemon: #FFE45E;
    --lemon-l: #FFF6C2;
    --mint: #8FE3C0;
    --mint-l: #DDF6EB;
    --green: #0E8A5B;
    --lilac: #CFC2FF;
    --lilac-l: #EEEAFF;
    --peach: #FFC2A8;
    --peach-l: #FFE9DF;
    --pink: #FF6F91;
    --radius: 28px;
    /* グラデーション */
    --g-lemon: linear-gradient(135deg, #FFF3A8 0%, #FFE45E 50%, #FFCE54 100%);
    --g-mint: linear-gradient(135deg, #CDF6E3 0%, #8FE3C0 55%, #74D4C9 100%);
    --g-lilac: linear-gradient(135deg, #ECE6FF 0%, #CFC2FF 55%, #E1B8F2 100%);
    --g-peach: linear-gradient(135deg, #FFE6D9 0%, #FFC2A8 55%, #FFA8A8 100%);
    --g-pink: linear-gradient(135deg, #FF93AC 0%, #FF6F91 60%, #FF5C7A 100%);
    --g-ink: linear-gradient(135deg, #3E3934 0%, #1E1C1A 65%);
    --g-mint-l: linear-gradient(135deg, #EEFBF5 0%, #D6F4E7 100%);
    --g-lilac-l: linear-gradient(135deg, #F6F3FF 0%, #E7E0FF 100%);
    --g-logo: linear-gradient(100deg, #7C5CFF 0%, #FF4F8B 36%, #FF7A59 64%, #FFB321 100%);
    --font-en: 'Bricolage Grotesque', 'Zen Kaku Gothic New', sans-serif;
}

/*--------------------------------------------------------------------
=== [共通レイアウト] ====================================
 -------------------------------------------------------------------*/

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    line-height: 1.8;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
}

html, body { overflow-x: clip; } /* アニメーション中などに横にはみ出しても、横スクロールさせない */
img { max-width: 100%; height: auto; vertical-align: middle; }
a { transition: color .2s, background-color .2s, border-color .2s, opacity .2s, transform .25s; }

.inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.icon { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }
.sp { display: none; }

/*--------------------------------------------------------------------
=== [ヘッダー] ====================================
 -------------------------------------------------------------------*/

.header {
    position: sticky;
    top: 12px;
    z-index: 50;
    margin-top: 12px;
}
.header .inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 88px;
    padding: 0 20px 0 32px;
    max-width: 1184px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border: 1px solid rgba(30, 28, 26, .07);
    box-shadow: 0 8px 30px rgba(30, 28, 26, .06);
}
.logo { display: flex; align-items: center; align-self: stretch; margin: 0; }
.logo a { display: flex; align-items: center; }
.logo .txt { justify-content: center; }
.logo .name { padding-bottom: 0; }
.logo .txt { display: flex; flex-direction: column; gap: 5px; }
.logo .tagline {
    display: block;
    padding-left: 2px;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--ink2);
    letter-spacing: .08em;
    line-height: 1;
    white-space: nowrap;
}
.logo .name {
    display: block;
    padding-bottom: 2px;
    font-family: 'CP Logo', 'Zen Kaku Gothic New', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.01em;
    white-space: nowrap;
    background: linear-gradient(100deg, #7C5CFF 0%, #FF4F8B 18%, #FF7A59 32%, #FFB321 50%, #FF7A59 68%, #FF4F8B 82%, #7C5CFF 100%);
    background-size: 200% 100%;
    background-position: 0 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 3px 6px rgba(255, 79, 139, .18));
    transition: background-position .8s ease;
}
.logo a:hover .name { background-position: 100% 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.gnav { margin-left: auto; }
.gnav ul { display: flex; gap: 2px; }
.gnav a {
    display: block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}
.gnav a:hover { background: var(--bg); }
.gnav a.is-current { background: var(--ink); color: #fff; }
.searchBtn, .menuBtn {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--g-lemon);
    font-size: 19px;
}
.searchBtn:hover { background: var(--ink); color: var(--lemon); }
.menuBtn { display: none; background: var(--ink); color: #fff; }

/*--------------------------------------------------------------------
=== [マーキー] ====================================
 -------------------------------------------------------------------*/

.marquee {
    overflow: hidden;
    margin-top: 40px;
    padding: 14px 0;
    background: var(--g-ink);
    color: #fff;
    white-space: nowrap;
}
.marquee .track {
    display: inline-flex;
    animation: marquee 32s linear infinite;
}
.marquee span {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
    font-family: var(--font-en);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .01em;
}
.marquee span b { font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 900; color: var(--lemon); }
.marquee .icon { font-size: 20px; color: var(--lemon); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee .track { animation: none; } }

/*--------------------------------------------------------------------
=== [見出し] ====================================
 -------------------------------------------------------------------*/

.secHead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}
.secTtl { display: flex; align-items: flex-start; gap: 16px; }
.secTtl .num {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-top: 8px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 700;
}
.secTtl h2 { line-height: 1; }
.secTtl .en {
    display: block;
    font-family: var(--font-en);
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: .95;
}
.secTtl .ja {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--g-lemon);
    font-size: 14px;
    font-weight: 900;
}
.more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 10px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--ink);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}
.more .icon {
    width: 28px;
    height: 28px;
    padding: 7px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
}
.more:hover { background: var(--ink); color: #fff; }
.more:hover .icon { background: var(--lemon); color: var(--ink); }

/*--------------------------------------------------------------------
=== [パーツ] ====================================
 -------------------------------------------------------------------*/

/* サムネイル（仮：画像差し替え前はメッシュグラデーション） */
.thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    background:
        radial-gradient(at 18% 22%, hsl(var(--h, 45) 95% 82%) 0, transparent 55%),
        radial-gradient(at 82% 30%, hsl(calc(var(--h, 45) + 60) 90% 80%) 0, transparent 55%),
        radial-gradient(at 60% 90%, hsl(calc(var(--h, 45) - 40) 85% 76%) 0, transparent 60%),
        hsl(calc(var(--h, 45) + 20) 80% 88%);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb .ph {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .9);
    font-size: 36px;
}
.thumb .ph .icon {
    width: 64px;
    height: 64px;
    padding: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    backdrop-filter: blur(6px);
}

/* 配信サービスバッジ（ロゴ） */
.svc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    vertical-align: middle;
}
.svc img { width: auto; height: 11px; }
.svc.prime img { height: 14px; }
.svc.hulu img { height: 10px; }
.svc.disney img { height: 20px; }

/* タグ（1作品に複数）：どこでも同じ見た目 */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.6;
}
.tag::before { content: "#"; margin-right: 1px; opacity: .45; }
.tag.hot { background: var(--lemon); border-color: var(--lemon); }
a.tag:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

/* カテゴリー（1作品に1つ）：カテゴリーごとの色 */
.c-love     { --cc: #FFB8C9; --cg: linear-gradient(135deg, #FFE0E8 0%, #FFB8C9 55%, #FF9DBA 100%); }
.c-korea    { --cc: #CFC2FF; --cg: linear-gradient(135deg, #EEE9FF 0%, #CFC2FF 55%, #B6A5FF 100%); }
.c-suspense { --cc: #A8CBFF; --cg: linear-gradient(135deg, #DDEBFF 0%, #A8CBFF 55%, #8FB5FF 100%); }
.c-court    { --cc: #FFE45E; --cg: linear-gradient(135deg, #FFF3A8 0%, #FFE45E 55%, #FFCE54 100%); }
.c-medical  { --cc: #8FE3C0; --cg: linear-gradient(135deg, #D3F7E7 0%, #8FE3C0 55%, #74D4C9 100%); }
.c-police   { --cc: #C9CFD8; --cg: linear-gradient(135deg, #EDF0F4 0%, #C9CFD8 55%, #B3BCCB 100%); }
.c-school   { --cc: #CDEF7A; --cg: linear-gradient(135deg, #EDFAC4 0%, #CDEF7A 55%, #B6E36A 100%); }
.c-human    { --cc: #FFC2A8; --cg: linear-gradient(135deg, #FFE6D9 0%, #FFC2A8 55%, #FFA8A8 100%); }
.c-reality  { --cc: #FFB3E6; --cg: linear-gradient(135deg, #FFE3F5 0%, #FFB3E6 50%, #D9B3FF 100%); }

.cats { display: flex; flex-wrap: wrap; gap: 6px; }
.cat {
    display: inline-block;
    padding: 1px 9px;
    border-radius: 6px;
    background: var(--cc, var(--line));
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.7;
    white-space: nowrap;
}
a.cat:hover { background: var(--ink); color: #fff; }

/* ネタバレラベル */
.spoLabel {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    border-radius: 999px;
    background: #FFE3EA;
    color: #D6406A;
    font-size: 11px;
    font-weight: 700;
}

/* 話数ステッカー */
.epNo {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    background: var(--g-ink);
    color: var(--lemon);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}

/* ひよりちゃん吹き出し */
.hiyori { display: flex; align-items: flex-start; gap: 10px; }
.hiyori .face {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #fff;
}
.hiyori .bubble {
    padding: 10px 16px;
    border-radius: 4px 18px 18px 18px;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
}
.hiyori .bubble .who {
    display: block;
    margin-bottom: 2px;
    font-size: 11px;
    color: var(--ink2);
}

/* ボタン */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--g-ink);
    color: #fff;
    font-weight: 700;
}
.btn .icon { transition: transform .25s; }
.btn:hover { background: linear-gradient(135deg, #1BB077 0%, var(--green) 65%); }
.btn:hover .icon { transform: translateX(3px); }

/* パンくず */
.breadcrumb {
    padding: 28px 0 16px;
    font-size: 12px;
    color: var(--ink2);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; opacity: .5; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }

/*--------------------------------------------------------------------
=== [サイドバー] ====================================
 -------------------------------------------------------------------*/

.widget {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--card);
}
.widget + .widget { margin-top: 16px; }
.widget .wTtl {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 900;
}
.widget .wTtl .icon {
    width: 30px;
    height: 30px;
    padding: 7px;
    border-radius: 50%;
    background: var(--g-lemon);
}

.miniRank li { counter-increment: mr; }
.miniRank li + li { border-top: 1px solid var(--line); }
.miniRank a { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.miniRank a::before {
    content: counter(mr);
    width: 18px;
    flex-shrink: 0;
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}
.miniRank .thumb { width: 64px; flex-shrink: 0; border-radius: 10px; aspect-ratio: 1; }
.miniRank .t { font-size: 13px; font-weight: 700; line-height: 1.5; }
.miniRank a:hover .t { text-decoration: underline; }

.profile { background: var(--g-lemon); text-align: center; }
.profile .face { width: 96px; margin: 0 auto 8px; border-radius: 50%; border: 3px solid #fff; }
.profile .nm { text-align: center; font-size: 20px; font-weight: 900; line-height: 1.3; }
.profile .nm small { display: block; font-size: 11px; font-weight: 700; }
.profile p { margin-top: 10px; font-size: 13px; text-align: left; }
.profile .likes { margin-top: 12px; padding: 8px 12px; border-radius: 14px; background: rgba(255, 255, 255, .6); font-size: 12px; font-weight: 700; text-align: center; }

/*--------------------------------------------------------------------
=== [フッター] ====================================
 -------------------------------------------------------------------*/

.footer {
    margin: 120px 12px 12px;
    padding: 64px 0 24px;
    border-radius: 36px;
    background: radial-gradient(ellipse at 85% 110%, rgba(255, 228, 94, .16) 0, transparent 55%), var(--g-ink);
    color: #fff;
    overflow: hidden;
}
.footer .cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer .logo .tagline { color: rgba(255, 255, 255, .6); }
.footer .about { margin-top: 16px; font-size: 13px; line-height: 1.9; color: rgba(255, 255, 255, .75); }
.footer h3 { margin-bottom: 12px; font-family: var(--font-en); font-size: 13px; font-weight: 700; color: var(--lemon); letter-spacing: .04em; }
.footer li { font-size: 14px; }
.footer li + li { margin-top: 8px; }
.footer li a:hover { color: var(--lemon); }
.footer .note {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    font-size: 11px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .6);
}
.footer .copy { margin-top: 12px; font-family: var(--font-en); font-size: 12px; color: rgba(255, 255, 255, .6); }

.pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--g-ink);
    color: var(--lemon);
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .25s;
}
.pagetop:hover { transform: translateY(-3px); }
.pagetop.is-show { opacity: 1; pointer-events: auto; }

/*--------------------------------------------------------------------
=== [背景（ホログラム風オーロラ＋グレイン）] ====================================
 -------------------------------------------------------------------*/

/* オーロラ：ぼかした大きなグラデーションを画面に固定 */
body::before {
    content: "";
    position: fixed;
    inset: -10%;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(38% 42% at 8% 12%, rgba(207, 194, 255, .75) 0, transparent 70%),
        radial-gradient(34% 38% at 92% 8%, rgba(255, 228, 94, .55) 0, transparent 70%),
        radial-gradient(40% 44% at 96% 70%, rgba(143, 227, 192, .55) 0, transparent 70%),
        radial-gradient(36% 40% at 4% 88%, rgba(255, 184, 201, .6) 0, transparent 70%),
        radial-gradient(30% 30% at 50% 50%, rgba(168, 230, 240, .35) 0, transparent 70%);
    filter: blur(40px) saturate(1.1);
}

/* 大きな円の線とグレイン */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 1000 1000%22%3E %3Cg fill=%22none%22 stroke=%22%231E1C1A%22 stroke-opacity=%22.09%22%3E %3Ccircle cx=%22500%22 cy=%22500%22 r=%22490%22 stroke-width=%221.5%22/%3E %3Ccircle cx=%22500%22 cy=%22500%22 r=%22400%22 stroke-width=%221%22/%3E %3Ccircle cx=%22500%22 cy=%22500%22 r=%22310%22 stroke-width=%221%22 stroke-dasharray=%223 9%22/%3E %3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 1000 1000%22%3E %3Cg fill=%22none%22 stroke=%22%231E1C1A%22 stroke-opacity=%22.09%22%3E %3Ccircle cx=%22500%22 cy=%22500%22 r=%22490%22 stroke-width=%221.5%22/%3E %3Ccircle cx=%22500%22 cy=%22500%22 r=%22400%22 stroke-width=%221%22/%3E %3Ccircle cx=%22500%22 cy=%22500%22 r=%22310%22 stroke-width=%221%22 stroke-dasharray=%223 9%22/%3E %3C/g%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22200%22 height=%22200%22%3E %3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%22.9%22 numOctaves=%222%22 stitchTiles=%22stitch%22/%3E%3CfeColorMatrix values=%220 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .09 0%22/%3E%3C/filter%3E %3Crect width=%22200%22 height=%22200%22 filter=%22url(%23n)%22/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat, repeat;
    background-position: -380px -300px, calc(100% + 420px) calc(100% + 380px), 0 0;
    background-size: 900px, 1000px, 200px;
    opacity: .9;
    mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
    body::after { background-size: 520px, 600px, 200px; background-position: -260px -200px, calc(100% + 300px) calc(100% + 260px), 0 0; }
}

/*--------------------------------------------------------------------
=== [ホバー（共通）] ====================================
 -------------------------------------------------------------------*/

/* 画像のリンク：写真を少しズーム */
a .thumb img,
a.thumb img { transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
a:hover .thumb img,
a.thumb:hover img { transform: scale(1.06); }

/* 本文中の文字リンク */
.docBody a,
.noHit a,
.pageHead .lead a,
.footer .note a,
.agree a,
.dramaHero dd a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s, text-decoration-color .2s;
}
.docBody a:hover,
.noHit a:hover,
.pageHead .lead a:hover,
.agree a:hover,
.dramaHero dd a:hover { color: var(--green); text-decoration-thickness: 2px; }
.footer .note a:hover { color: var(--lemon); }

/* 見出しのリンク */
.rankCard .ttl a:hover { text-decoration: underline; text-underline-offset: 3px; }

/*--------------------------------------------------------------------
=== [表示アニメーション] ====================================
 -------------------------------------------------------------------*/

/* --- スクロールで表示（JSで .rv を付与） --- */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--rv-d, 0ms);
}
.rv[data-rv="right"] { transform: translateX(48px); }
.rv[data-rv="left"] { transform: translateX(-36px); }
.rv[data-rv="pop"] { transform: scale(.4); transition: opacity .4s ease, transform .7s cubic-bezier(.34, 1.56, .64, 1); transition-delay: var(--rv-d, 0ms); }
.rv[data-rv="flip"] { transform: perspective(900px) rotateX(-70deg) translateY(30px); transform-origin: 50% 0; transition: opacity .6s ease, transform 1s cubic-bezier(.2, .9, .3, 1.2); transition-delay: var(--rv-d, 0ms); }
.rv[data-rv="tiltL"] { transform: translate(-30px, 60px) rotate(-8deg); transition: opacity .6s ease, transform 1s cubic-bezier(.2, .9, .3, 1.15); transition-delay: var(--rv-d, 0ms); }
.rv[data-rv="tiltR"] { transform: translate(30px, 60px) rotate(8deg); transition: opacity .6s ease, transform 1s cubic-bezier(.2, .9, .3, 1.15); transition-delay: var(--rv-d, 0ms); }
.rv[data-rv="zoom"] { transform: scale(.9); }
.rv.is-in, .rv.is-in[data-rv] { opacity: 1; transform: none; }

/* --- 最初から見えている部分（FV）：CSSだけで表示 --- */
@keyframes fvUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }
@keyframes fvFade { from { opacity: 0; } to { opacity: 1; } }
.header .inner { animation: fvFade .6s ease both; }
.bento > * { animation: fvUp .9s cubic-bezier(.2, .7, .2, 1) both; }
.bento > :nth-child(1) { animation-delay: .1s; }
.bento > :nth-child(2) { animation-delay: .22s; }
.bento > :nth-child(3) { animation-delay: .34s; }
.bento > :nth-child(4) { animation-delay: .44s; }
.marquee { animation: fvFade .8s ease .5s both; }
.pageHead .box,
.dramaHero .box,
.notFound .box,
.soonMain .box { animation: fvUp .9s cubic-bezier(.2, .7, .2, 1) .1s both; }
.breadcrumb { animation: fvFade .6s ease both; }

/* ランキングのタブ切り替え */
.is-swap { animation: swapIn .5s cubic-bezier(.2, .7, .2, 1); }
@keyframes swapIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; }
    .rv { opacity: 1; transform: none; transition: none; }
    a .thumb img, a.thumb img { transition: none; }
}
