/* ============================================================
   PICH LIVE - Main Stylesheet
   TikTokライバー事務所 Webサイト
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --color-yellow: #F5C518;
    --color-yellow-light: #FFF8E7;
    --color-yellow-pale: #FFFBF0;
    --color-dark: #1a1a1a;
    --color-dark-gray: #2d2d2d;
    --color-gray: #555555;
    --color-light-gray: #f5f5f5;
    --color-white: #ffffff;
    --color-tiktok-red: #FF0050;
    --color-tiktok-cyan: #00F2EA;
    --color-orange-accent: #F5A623;

    --font-en: 'Montserrat', 'Bebas Neue', sans-serif;
    --font-ja: 'Noto Sans JP', sans-serif;

    --header-height: 70px;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.2);
    --radius: 12px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-ja);
    color: var(--color-dark);
    background: var(--color-white);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---------- Utility ---------- */
.bolt {
    display: inline-block;
    font-style: normal;
}

/* ---------- Section Common ---------- */
.section-header {
    text-align: center;
    padding: 60px 20px 40px;
}

.section-title {
    font-family: var(--font-en);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--color-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-title--white {
    color: var(--color-white);
}

.section-title-en {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 6px;
    letter-spacing: 0.1em;
}

.section-title-en--white {
    color: rgba(255, 255, 255, 0.7);
}

.section-more {
    text-align: center;
    padding: 30px 20px 60px;
}

.section-more__arrow {
    font-size: 1.5rem;
    color: var(--color-gray);
    margin-bottom: 16px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 48px;
    font-family: var(--font-en);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.btn--outline {
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
    background: transparent;
}

.btn--outline:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn--dark {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.btn--dark:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-yellow);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.header__logo:hover {
    opacity: 0.8;
}

.header__logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.logo-lines {
    color: var(--color-yellow);
    margin-right: 4px;
    font-size: 1.2rem;
}

.logo-bolt {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 4px rgba(245, 197, 24, 0.6));
}

.header__menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-yellow);
    padding: 8px;
    transition: var(--transition);
}

.header__menu-btn:hover {
    opacity: 0.7;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--color-yellow);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger span:first-child {
    width: 100%;
}

.hamburger span:nth-child(2) {
    width: 75%;
}

.hamburger span:last-child {
    width: 50%;
}

/* ============================================================
   DRAWER MENU
   ============================================================ */
.drawer {
    position: fixed;
    top: 0;
    right: -360px;
    width: 320px;
    height: 100vh;
    background: var(--color-dark);
    z-index: 2000;
    padding: 80px 40px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow-y: auto;
}

.drawer.is-open {
    right: 0;
}

.drawer__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.drawer__close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drawer__link {
    font-family: var(--font-en);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.1em;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: block;
}

.drawer__link:hover {
    color: var(--color-yellow);
    padding-left: 8px;
}

.drawer__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drawer__cta-link {
    display: block;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    border-radius: 4px;
    transition: var(--transition);
}

.drawer__cta-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.drawer__cta-link--accent {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-dark);
}

.drawer__cta-link--accent:hover {
    background: #e6b800;
}

.drawer__sns {
    display: flex;
    gap: 20px;
    margin-top: auto;
}

.drawer__sns a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
    transition: var(--transition);
}

.drawer__sns a:hover {
    color: var(--color-yellow);
}

.drawer__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.drawer__overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TikTokカラーライン */
.hero__tiktok-line {
    position: absolute;
    top: 0;
    width: 4px;
    height: 100%;
    z-index: 10;
    opacity: 0.7;
}

.hero__tiktok-line--red {
    left: 0;
    background: linear-gradient(to bottom, transparent, var(--color-tiktok-red), transparent);
}

.hero__tiktok-line--cyan {
    right: 0;
    background: linear-gradient(to bottom, transparent, var(--color-tiktok-cyan), transparent);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(30, 20, 0, 0.85) 0%,
            rgba(80, 50, 0, 0.7) 40%,
            rgba(20, 10, 0, 0.8) 100%),
        linear-gradient(to bottom right, #1a0a00, #3d2800, #1a0a00);
    /* 実際の背景画像を使う場合は以下のコメントを外してください */
    /* background-image: url('../images/hero-bg.jpg'); */
    background-size: cover;
    background-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
}

/* ダイヤモンド形状 */
.hero__diamond {
    position: relative;
    z-index: 5;
    width: min(85vw, 700px);
    aspect-ratio: 1;
    transform: rotate(45deg);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(245, 197, 24, 0.3);
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(245, 197, 24, 0.15),
        inset 0 0 60px rgba(0, 0, 0, 0.3);
}

/* ダイヤモンド内の背景 */
.hero__diamond::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        linear-gradient(135deg,
            rgba(30, 20, 0, 0.6) 0%,
            rgba(80, 50, 0, 0.4) 50%,
            rgba(20, 10, 0, 0.6) 100%),
        /* 都市の夜景風グラデーション */
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(245, 197, 24, 0.03) 2px,
            rgba(245, 197, 24, 0.03) 4px);
    background-size: cover;
}

.hero__diamond-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
}

.hero__content {
    text-align: center;
    padding: 20px;
}

.hero__title {
    font-family: var(--font-en);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    color: var(--color-yellow);
    line-height: 0.9;
    letter-spacing: 0.05em;
    text-shadow:
        0 0 30px rgba(245, 197, 24, 0.5),
        2px 2px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: 12px;
}

.hero__title span {
    display: block;
    font-size: 0.7em;
    color: rgba(245, 197, 24, 0.85);
}

.hero__subtitle {
    font-family: var(--font-en);
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.2em;
    text-transform: lowercase;
}

/* スクロールヒント */
.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-en);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    position: relative;
    background: var(--color-white);
    padding-top: 20px;
}

.about__yellow-bg {
    background: var(--color-yellow-light);
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    padding: 80px 20px 100px;
    position: relative;
}

.about__yellow-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(245, 197, 24, 0.05) 10px,
            rgba(245, 197, 24, 0.05) 20px);
}

.about__inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about__heading {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 24px;
    line-height: 1.4;
}

.about__heading span {
    color: var(--color-orange-accent);
    font-size: 1.2em;
}

.about__text {
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.9;
}

.about__tiktok-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 10px 20px;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.about__tiktok-badge i {
    font-size: 1rem;
}

/* ============================================================
   CREATORS
   ============================================================ */
.creators {
    padding: 0 0 20px;
    background: var(--color-yellow-pale);
    overflow: hidden;
}

.creators-swiper {
    padding: 0 60px 20px !important;
    overflow: visible !important;
}

.creators-swiper .swiper-wrapper {
    padding-bottom: 10px;
    align-items: stretch;
}

.creators-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.creator-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.creator-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.creator-card__img-wrap {
    position: relative;
    overflow: hidden;
}

.creator-card__img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.creator-card__img--placeholder {
    width: 100%;
    aspect-ratio: 3/4;
}

.creator-card__tiktok-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--color-white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
}

.creator-card__tiktok-badge i {
    font-size: 0.8rem;
}

.creator-card__name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-orange-accent);
    padding: 14px 16px 6px;
    letter-spacing: 0.05em;
}

.creator-card__desc {
    font-size: 0.82rem;
    color: var(--color-gray);
    padding: 0 16px 16px;
    line-height: 1.6;
    flex: 1;
}

.creator-card__links {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 10px 16px 16px;
}

.creator-card__links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-light-gray);
    color: var(--color-dark);
    font-size: 1rem;
    transition: var(--transition);
}

.creator-card__links a:hover {
    background: var(--color-yellow);
    color: var(--color-dark);
    transform: translateY(-2px);
}

/* Swiper カスタム */
.swiper-button-prev,
.swiper-button-next {
    width: 44px !important;
    height: 44px !important;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    color: var(--color-dark) !important;
    transition: var(--transition);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--color-yellow);
    color: var(--color-dark) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 0.9rem !important;
    font-weight: 900;
}

/* ============================================================
   TOPICS
   ============================================================ */
.topics {
    background: var(--color-white);
}

.topics__bg {
    background: var(--color-yellow-light);
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    padding: 20px 0 60px;
    position: relative;
    overflow: hidden;
}

.topics__bg::after {
    content: 'NEWS';
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-family: var(--font-en);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(245, 197, 24, 0.15);
    pointer-events: none;
    letter-spacing: -0.05em;
}

.topics-swiper {
    padding: 0 60px 20px !important;
    overflow: visible !important;
}

.topic-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.topic-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.topic-card__img--placeholder {
    width: 100%;
    aspect-ratio: 16/9;
}

.topic-card__body {
    padding: 16px;
    flex: 1;
}

.topic-card__tag {
    display: inline-block;
    background: var(--color-orange-accent);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.1em;
    margin-right: 8px;
}

.topic-card__date {
    font-size: 0.8rem;
    color: var(--color-gray);
}

.topic-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 10px 0 8px;
    line-height: 1.5;
    color: var(--color-dark);
}

.topic-card__desc {
    font-size: 0.82rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* ============================================================
   SERVICE
   ============================================================ */
.service {
    background: #2a2a2a;
    position: relative;
    overflow: hidden;
}

.service__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
    position: relative;
}

.service__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-en);
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.service__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #333;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.service-card__img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.service-card__img--management {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        linear-gradient(to bottom right, #2c3e50, #3498db, #2c3e50);
}

.service-card__img--media {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        linear-gradient(to bottom right, #1a1a2e, #16213e, #0f3460);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.service-card__label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-en);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.1em;
    text-align: center;
    white-space: nowrap;
    z-index: 1;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-white);
}

.service-card__body {
    padding: 24px;
    color: rgba(255, 255, 255, 0.85);
}

.service-card__body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 12px;
}

.service-card__body p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.service-card__body ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card__body li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 16px;
    position: relative;
}

.service-card__body li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}

/* ============================================================
   FOLLOWERS (TikTokエッセンス)
   ============================================================ */
.followers {
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.followers::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 0, 80, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 242, 234, 0.08) 0%, transparent 60%);
}

.followers__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px 80px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.followers__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.followers__stats--single {
    grid-template-columns: 1fr;
    max-width: 360px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.followers__stat {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.followers__stat:hover {
    border-color: var(--color-yellow);
    background: rgba(245, 197, 24, 0.05);
    transform: translateY(-4px);
}

.followers__icon {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 12px;
    display: block;
}

.followers__icon--instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.followers__icon--youtube {
    color: #FF0000;
}

.followers__icon--total {
    color: var(--color-yellow);
}

.followers__count {
    font-family: var(--font-en);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.followers__label {
    font-family: var(--font-en);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

.followers__platforms {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
}

.followers__note {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 32px;
}

/* ============================================================
   CTA SECTION (RECRUIT / CONTACT)
   ============================================================ */
.cta-section {
    background: var(--color-white);
    padding: 60px 24px;
}

.cta-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.cta-banner {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.cta-banner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.cta-banner--recruit {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        linear-gradient(to bottom right, #1a1a2e, #2d2d44, #1a1a2e);
}

.cta-banner--contact {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        linear-gradient(to bottom right, #2c1810, #4a2c1a, #2c1810);
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.cta-banner:hover .cta-banner__overlay {
    background: rgba(0, 0, 0, 0.1);
}

.cta-banner__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 24px;
}

.cta-banner__border {
    border: 1px solid rgba(245, 197, 24, 0.5);
    padding: 24px 32px;
    text-align: center;
    width: 100%;
    max-width: 320px;
    transition: var(--transition);
}

.cta-banner:hover .cta-banner__border {
    border-color: var(--color-yellow);
}

.cta-banner__title {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-banner__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 16px;
}

.cta-banner__btn {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-yellow);
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.cta-banner:hover .cta-banner__btn {
    letter-spacing: 0.1em;
}

/* ============================================================
   COMPANY
   ============================================================ */
.company {
    background: var(--color-white);
    padding-bottom: 80px;
}

.company__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.company__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.company__table th,
.company__table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
    line-height: 1.7;
}

.company__table th {
    width: 160px;
    color: var(--color-gray);
    font-weight: 700;
    white-space: nowrap;
    background: var(--color-light-gray);
}

.company__table td {
    color: var(--color-dark);
}

.company__table tr:last-child th,
.company__table tr:last-child td {
    border-bottom: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 40px;
}

.footer__top {
    margin-bottom: 24px;
}

.footer__logo {
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-yellow);
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition: var(--transition);
}

.footer__logo:hover {
    opacity: 0.8;
}

.footer__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 32px;
}

.footer__nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.footer__nav a {
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08em;
    transition: var(--transition);
}

.footer__nav a:hover {
    color: var(--color-yellow);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.footer__links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--color-yellow);
}

.footer__sns {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.footer__sns a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: var(--transition);
}

.footer__sns a:hover {
    border-color: var(--color-yellow);
    color: var(--color-yellow);
    background: rgba(245, 197, 24, 0.1);
}

.footer__copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .hero__diamond {
        width: 90vw;
    }

    .about__yellow-bg {
        clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
        padding: 60px 20px 80px;
    }

    .creators-swiper,
    .topics-swiper {
        padding: 0 20px 20px !important;
    }

    .service__cards {
        grid-template-columns: 1fr;
    }

    .followers__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .followers__stats--single {
        grid-template-columns: 1fr;
        max-width: 360px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-section__inner {
        grid-template-columns: 1fr;
    }

    .company__table th {
        width: 120px;
        font-size: 0.82rem;
    }

    .footer__nav-wrap {
        flex-direction: column;
    }

    .footer__links {
        text-align: left;
    }

    .drawer {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .followers__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .company__table {
        display: block;
        overflow-x: auto;
    }

    .company__table th {
        width: 100px;
    }
}