@charset "UTF-8";

.vc-page {
    --vc-ink: #152033;
    --vc-muted: #5c6678;
    --vc-blue: #2563eb;
    --vc-cyan: #06b6d4;
    --vc-gold: #d4af37;
    --vc-line: rgba(21, 32, 51, 0.14);
    color: var(--vc-ink);
    background: #f7fbff;
    font-family: "Noto Sans JP", "Inter", system-ui, sans-serif;
}

.vc-inner {
    width: min(100% - 32px, 1160px);
    margin: 0 auto;
}

.vc-hero {
    padding: clamp(58px, 8vw, 112px) 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(6, 182, 212, 0.20), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.18), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
}

.vc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
}

.vc-kicker {
    margin: 0 0 12px;
    color: var(--vc-blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vc-hero h1,
.vc-section-head h2,
.vc-cta h2 {
    margin: 0;
    color: var(--vc-ink);
    font-size: clamp(2.2rem, 4.6vw, 4.3rem);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: 0;
}

.vc-section-head h2,
.vc-cta h2 {
    font-size: clamp(1.8rem, 3.4vw, 3.1rem);
}

.vc-lead,
.vc-card p,
.vc-feature p,
.vc-cta p {
    color: var(--vc-muted);
    line-height: 1.9;
}

.vc-lead {
    margin: 24px 0 0;
    font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.vc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.vc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
}

.vc-btn-primary {
    background: linear-gradient(135deg, var(--vc-cyan), var(--vc-blue));
    color: #fff;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}

.vc-btn-secondary {
    border: 1px solid var(--vc-line);
    background: rgba(255, 255, 255, 0.76);
    color: var(--vc-ink);
}

.vc-feature,
.vc-card {
    border: 1px solid var(--vc-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 20px 54px rgba(21, 32, 51, 0.10);
}

.vc-feature {
    padding: 28px;
}

.vc-feature span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: var(--vc-blue);
    font-weight: 900;
}

.vc-feature strong {
    display: block;
    color: var(--vc-ink);
    font-size: 1.35rem;
    line-height: 1.45;
}

.vc-section {
    padding: clamp(62px, 8vw, 104px) 0;
}

.vc-section-head {
    margin-bottom: 32px;
    text-align: center;
}

.vc-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: -10px 0 34px;
}

.vc-filter-btn {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--vc-line);
    border-radius: 999px;
    background: #fff;
    color: var(--vc-ink);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.vc-filter-btn:hover,
.vc-filter-btn:focus,
.vc-filter-btn.is-active {
    border-color: rgba(37, 99, 235, 0.65);
    background: var(--vc-blue);
    color: #fff;
}

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

.vc-groups {
    display: grid;
    gap: clamp(34px, 5vw, 58px);
}

.vc-genre {
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--vc-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 18px 42px rgba(21, 32, 51, 0.07);
}

.vc-genre:first-child {
    border-color: rgba(37, 99, 235, 0.28);
    background:
        linear-gradient(135deg, rgba(6, 182, 212, 0.10), rgba(255, 255, 255, 0.82) 42%),
        #ffffff;
}

.vc-genre-head {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--vc-line);
}

.vc-genre-head h3 {
    margin: 0;
    color: var(--vc-ink);
    font-size: clamp(1.55rem, 2.8vw, 2.55rem);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0;
}

.vc-genre-head p {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--vc-muted);
    line-height: 1.8;
}

.vc-genre-head > span {
    flex: 0 0 auto;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: var(--vc-blue);
    font-size: 0.86rem;
    font-weight: 900;
}

.vc-genre-eyebrow {
    margin: 0 0 8px;
    color: var(--vc-blue);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vc-card {
    overflow: hidden;
}

.vc-thumb {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
}

.vc-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.vc-thumb:hover img,
.vc-thumb:focus img {
    opacity: 1;
    transform: scale(1.03);
}

.vc-play {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.vc-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid var(--vc-blue);
    transform: translate(-50%, -50%);
}

.vc-card-body {
    padding: 20px;
}

.vc-category {
    color: var(--vc-blue);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.vc-card h3 {
    margin: 8px 0 10px;
    color: var(--vc-ink);
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.45;
}

.vc-card p {
    margin: 0 0 16px;
    font-size: 0.94rem;
}

.vc-card a {
    color: var(--vc-blue);
    font-weight: 900;
    text-decoration: none;
}

.vc-cta {
    padding: clamp(64px, 8vw, 96px) 0;
    background: #152033;
    text-align: center;
}

.vc-cta h2,
.vc-cta p {
    color: #fff;
}

.vc-cta p {
    color: rgba(255, 255, 255, 0.82);
}

.vc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.vc-modal.is-open {
    display: flex;
}

.vc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.84);
}

.vc-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background: #000;
    overflow: hidden;
}

.vc-modal-dialog iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.vc-modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 980px) {
    .vc-hero-grid,
    .vc-grid {
        grid-template-columns: 1fr;
    }

    .vc-genre-head {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .vc-inner {
        width: min(100% - 24px, 1160px);
    }

    .vc-actions {
        flex-direction: column;
    }

    .vc-btn {
        width: 100%;
    }
}
