:root {
    /* Apple-inspired Color Palette from User Image */
    --color-primary: #FF8A00;
    /* Vibrant Orange */
    --color-secondary: #00B2FF;
    /* Electric Blue */
    --color-accent: #FFD600;
    /* Sunny Yellow */
    --color-dark: #000000;
    --color-light: #FFFFFF;
    --color-bg: #FFFFFF;
    --color-text: #1d1d1f;
    --color-text-dim: #86868b;

    /* Typography */
    --font-main: "Inter", "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", "Noto Sans JP", sans-serif;
    --font-size-hero: clamp(3rem, 10vw, 8rem);
    --font-size-heading: clamp(2rem, 5vw, 4rem);
    --font-size-sub: clamp(1.125rem, 2vw, 1.5rem);
    --font-size-body: 1rem;

    /* Spacing */
    --spacing-section: clamp(4rem, 10vh, 10rem);
    --spacing-content: 2rem;

    /* Transition */
    --transition-main: all 0.6s cubic-bezier(0.28, 0.11, 0.32, 1);
}

/* Modern Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-main);
}

ul {
    list-style: none;
}

/* Background Decorations */
.bg-decoration {
    position: relative;
    overflow: hidden;
}

.bg-decoration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;

    /* Diagonal Wipe Entry Animation */
    clip-path: circle(0% at 100% 0);
    /* Start from Top-Right corner */
    transition: clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bg-decoration.in-view::before {
    clip-path: circle(150% at 100% 0);
    /* Expand to full cover */
}

/* Animation Keyframes */
@keyframes bg-scroll {
    0% {
        background-position: 0 0, 0 30px;
    }

    100% {
        background-position: 60px 60px, 60px 90px;
    }
}

@keyframes stripe-pulse {
    0% {
        transform: scale(1) translateX(0);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.05) translateX(10px);
        opacity: 1;
    }
}

/* Arrow Pattern Overlay (Goods Section Only) */
.bg-decoration-gray::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    /* グレーの細い矢印（>>>）パターン */
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.1) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.1) 52%, transparent 52%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px;
    animation: bg-scroll 8s linear infinite;
}

/* Orange Stripe (Bottom Right) */
.bg-decoration-orange::before {
    background:
        linear-gradient(115deg, transparent 75%, rgba(255, 138, 0, 0.4) 75%),
        linear-gradient(115deg, transparent 65%, rgba(255, 214, 0, 0.45) 65%, rgba(255, 214, 0, 0.45) 85%, transparent 85%);
    background-size: 110% 110%;
    /* 動きのために少し拡大 */
    animation: stripe-pulse 8s ease-in-out infinite alternate;

    /* ワイプ表示の開始を遅らせる + ゆっくり表示する */
    transition-delay: 0.6s;
    transition-duration: 2.5s;
}

/* Blue Stripe (Top Left) */
.bg-decoration-blue::before {
    background:
        linear-gradient(115deg, rgba(0, 178, 255, 0.4) 15%, transparent 15%),
        linear-gradient(115deg, transparent 25%, rgba(0, 178, 255, 0.35) 25%, rgba(0, 178, 255, 0.35) 45%, transparent 45%);
    background-size: 110% 110%;
    /* 動きのために少し拡大 */
    animation: stripe-pulse 10s ease-in-out infinite alternate-reverse;
}

/* Gray/Dark Stripe (Wide) */
.bg-decoration-gray::before {
    background:
        linear-gradient(-65deg, transparent 60%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.25) 80%, transparent 80%);
    background-size: 110% 110%;
    animation: stripe-pulse 12s ease-in-out infinite alternate;
}

/* Ensure content stays above background */
.bg-decoration .container {
    position: relative;
    z-index: 2;
    /* コンテンツを確実に前面へ */
}

/* Horizontal Scroll Specific */
.horizontal-track {
    will-change: transform;
    /* パフォーマンス最適化 */
}

/* Force Cards to maintain stacking context and background */
.poster-card,
.disco-item,
.goods-item,
.sns-box {
    position: relative;
    z-index: 2;
    background-color: #fff;
    /* 背景色を明示して線を隠す（透過防止） */
}

/* Specific background adjustments for cards */
.poster-card {
    background-color: #000;
    /* Poster card needs black background base */
}

.disco-item {
    background-color: transparent;
    /* Disco item might need transparent if minimal, but content needs z-index */
}

/* Global Styles */
/* Main Styles based on the Apple theme */

.section {
    padding: var(--spacing-section) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.container {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
}

/* Header */
/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    /* Slightly taller for premium feel */
    background: rgba(255, 255, 255, 0.9);
    /* Whitish Glass */
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle dark border */
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-visible {
    transform: translateY(0);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px;
    /* More padding */
}

/* Logo Image */
.header-logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity 0.3s;
}

.header-logo-link:hover .header-logo-img {
    opacity: 0.8;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    gap: 40px;
    /* Wider gap for elegance */
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1d1d1f;
    /* Dark Text for White BG */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    position: relative;
    padding-bottom: 5px;
    transition: opacity 0.3s, color 0.3s;
}

/* Default Hover (Odd Items - Orange) */
.main-navigation li:nth-child(odd) a:hover {
    opacity: 1;
    color: #FF8A00;
}

.main-navigation li:nth-child(odd) a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #FF8A00, #FFD600);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-navigation li:nth-child(odd) a:hover::after {
    width: 100%;
}

/* Alternate Hover (Even Items - Blue) */
.main-navigation li:nth-child(even) a:hover {
    opacity: 1;
    color: #00B2FF;
}

.main-navigation li:nth-child(even) a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00B2FF, #80D8FF);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-navigation li:nth-child(even) a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    /* 映像の明るさを調整 */
    filter: grayscale(100%) contrast(1.2);
    /* コントラストを上げて映画っぽく */
    animation: colorFade 14s infinite ease-in-out;
    /* 14秒かけてゆっくりと色が変化 */
}

@keyframes colorFade {

    0%,
    30% {
        filter: grayscale(100%) contrast(1.2);
    }

    50% {
        filter: grayscale(20%) contrast(1.1);
        /* ボワッと色が戻るピーク */
    }

    70%,
    100% {
        filter: grayscale(100%) contrast(1.2);
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* ビネット（四隅を暗く）を強化 */
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.9) 90%);
    z-index: 2;
    /* 上下のレターボックス（シネマスコープ風） */
    border-top: 60px solid #000;
    border-bottom: 60px solid #000;
    box-sizing: border-box;
    pointer-events: none;
}

.hero-content {
    z-index: 3;
    opacity: 0;
    transform: translateY(30px);
    animation: appleFadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.5s;
    text-align: center;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    /* 影を強化して浮き上がらせる */
}

.hero-title {
    font-size: var(--font-size-hero);
    font-weight: 700;
    /* レイアウト崩れ防止: inline-blockをやめて幅フィット＋中央寄せ */
    width: fit-content;
    margin-inline: auto;

    color: #fff;
    /* ベースは純白 */
    background: none;
    -webkit-text-fill-color: initial;
}

/* 最後のY: たまにこけそうになる */
.stumble-char {
    display: inline-block;
    transform-origin: bottom left;
    /* 左下を軸にすることで、文字全体が右下に倒れ込む */
    animation: stumble 12s infinite;
}

@keyframes stumble {

    0%,
    90% {
        transform: rotate(0deg);
    }

    92% {
        transform: rotate(15deg);
        /* ほんのちょっとだけ傾く */
    }

    94% {
        transform: rotate(5deg);
        /* 戻ろうとする */
    }

    96% {
        transform: rotate(8deg);
        /* 小さく揺れる */
    }

    98% {
        transform: rotate(2deg);
        /* 収束 */
    }

    100% {
        transform: rotate(0deg);
        /* 戻る */
    }
}

.hero-furigana {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2em;
    /* ご要望通り広く */
    margin-right: -2em;
    /* letter-spacingによる右側の余白を相殺して中央揃えを維持 */
    color: #fff;
    opacity: 0.9;
    margin-bottom: -10px;
    /* タイトルとの距離を詰める */
    text-align: center;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    /* 可変サイズ: スマホ1.2rem ~ PC2.5rem */
    margin-top: 10px;
    font-weight: 200;
    /* 極細 */
    letter-spacing: 0.8em;
    /* Mobile default (Wide) */
    margin-right: -0.8em;

    display: inline-block;
    /* アニメーション: 10秒サイクルに延長 */
    animation: wipe-text 10s ease-in-out infinite;

    /* グラデーション: フラットな2色構成 */
    background-image: linear-gradient(90deg,
            #00B2FF 0%, #80D8FF 45%,
            #FF8A00 55%, #FFCC80 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* PC override: Narrower spacing */
@media (min-width: 769px) {
    .hero-subtitle {
        letter-spacing: 0.25em;
        margin-right: -0.25em;
    }
}

@keyframes wipe-text {

    /* 青色で待機 (2.5秒) */
    0%,
    25% {
        background-position: 0% 50%;
    }

    /* ゆっくりオレンジへ移動して待機 (2.5秒遷移 + 2.5秒待機) */
    50%,
    75% {
        background-position: 100% 50%;
    }

    /* ゆっくり青に戻る (2.5秒遷移) */
    100% {
        background-position: 0% 50%;
    }
}

/* Content Sections */
.intro-text {
    font-size: var(--font-size-heading);
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.1;
}

.vibrant-text {
    color: var(--color-primary);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.card {
    background: #f5f5f7;
    border-radius: 20px;
    padding: 40px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    transition: var(--transition-main);
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: scale(1.02);
}

/* ポスター型カード（Live Schedule用） */
.poster-card {
    position: relative;
    height: 400px;
    /* 縦長ポスター比率 */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
    /* リンク全体を機能させる場合など */
}

.poster-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.poster-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.poster-card:hover img {
    transform: scale(1.1);
    /* 拡大率をアップ */
}

.poster-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    z-index: 2;
    color: #fff;
    text-align: left;
}

/* Discography Showcase */
.disco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.disco-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

.disco-item:hover {
    transform: translateY(-5px);
}

.jacket-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* 正方形 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* 浮き上がるような影 */
    transition: box-shadow 0.3s ease;
}

.disco-item:hover .jacket-wrapper {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.jacket-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.disco-item:hover .jacket-img {
    transform: scale(1.05);
}

.disco-info {
    text-align: left;
}

.disco-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #86868b;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.disco-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 5px;
    line-height: 1.2;
}

.disco-desc {
    font-size: 1rem;
    color: #86868b;
    line-height: 1.4;
}

/* MUSIC VIDEO Player UI */
.mv-interface {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    background: rgba(20, 20, 20, 0.8);
    /* ベースを少し透過 */
    border-radius: 20px;
    /* 角丸を強化 */
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    /* 影を深く */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    /* 全体にブラー */
}

.mv-list {
    background: rgba(30, 30, 30, 0.6);
    padding: 0;
    overflow-y: auto;
    max-height: 500px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.mv-list::-webkit-scrollbar {
    width: 6px;
}

.mv-list::-webkit-scrollbar-track {
    background: transparent;
}

.mv-list::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.mv-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    /* 境界線を極薄に */
    position: relative;
}

.mv-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 25px;
    /* ホバーで少し右に動く */
}

.mv-item.active {
    background: rgba(255, 255, 255, 0.1);
}

/* Active Indicator */
.mv-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-primary);
    /* オレンジのアクセント */
    box-shadow: 0 0 10px var(--color-primary);
}

.mv-thumb-wrapper {
    position: relative;
    width: 100px;
    height: 56px;
    border-radius: 8px;
    /* 角丸を少し大きく */
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mv-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mv-item:hover .mv-thumb {
    transform: scale(1.1);
}

.mv-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.mv-title {
    font-size: 0.95rem;
    /* 少し大きく */
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* 標準プロパティも追加 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.mv-item:hover .mv-title {
    color: var(--color-primary);
    /* ホバーでタイトル色変化 */
}

.mv-artist {
    font-size: 0.8rem;
    color: #86868b;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.mv-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
}

.mv-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 900px) {
    .mv-interface {
        grid-template-columns: 1fr;
    }

    .mv-list {
        order: 2;
        max-height: 300px;
        border-right: none;
        border-top: 1px solid #333;
    }

    .mv-player {
        order: 1;
    }
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
}

/* Featured Section */
.featured-section {
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
}

.featured-item {
    background-color: #161617;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 600px;
    justify-content: flex-start;
}

.featured-item h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-item p {
    font-size: 20px;
    color: var(--color-text-dim);
    max-width: 300px;
}

/* Wide Banner Card */
.wide-card {
    grid-column: span 2;
    background-color: #f5f5f7;
    color: #1d1d1f;
    text-align: left;
    align-items: flex-start;
    height: 500px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 734px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-item,
    .wide-card {
        grid-column: span 1;
        height: 450px;
        padding: 40px;
    }

    #sb_instagram .sbi_item:nth-child(n+5) {
        display: none !important;
    }
}

/* ------------------------
   Ticket FAQ Accordion
   ------------------------ */
.ticket-faq {
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ticket-faq[open] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.ticket-faq-summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    list-style: none;
    /* デフォルトの三角を消す */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Chrome/Safari用 デフォルトマーカー削除 */
.ticket-faq-summary::-webkit-details-marker {
    display: none;
}

/* カスタム矢印（プラスマーク） */
.ticket-faq-summary .faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.ticket-faq-summary .faq-icon::before,
.ticket-faq-summary .faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

.ticket-faq-summary .faq-icon::before {
    width: 100%;
    height: 2px;
}

.ticket-faq-summary .faq-icon::after {
    width: 2px;
    height: 100%;
}

.ticket-faq[open] .ticket-faq-summary .faq-icon {
    transform: rotate(45deg);
    /* 開くと×になる */
}

.ticket-faq-content {
    padding: 0 20px 20px;
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.4s ease;
}

.ticket-faq-content li {
    margin-bottom: 12px;
}

.ticket-faq-content li:last-child {
    margin-bottom: 0;
}

/* Typography Accent */
.text-gradient-blue {
    background: linear-gradient(135deg, #00B2FF 0%, #006CFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #FF8A00 0%, #FFD600 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #FFE53B 0%, #FF2525 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-headline {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.image-box {
    margin-top: 40px;
    width: 100%;
    max-width: 900px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes appleFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade Slider */
.fade-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    /* カードの高さに合わせる */
    overflow: hidden;
    border-radius: 20px;
    background-color: #f5f5f7;
    /* 背景色 */
}

.fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    /* カード内容の中央揃え等に利用 */
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 0;
    pointer-events: none;
    /* 非アクティブ時はクリック不可 */
}

.fade-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

/* Slide Content Layout */
.slide-inner {
    display: flex;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.slide-image {
    width: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-text {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

@media (max-width: 768px) {
    .fade-slider-container {
        height: 600px;
    }

    .slide-inner {
        flex-direction: column;
    }

    .slide-image {
        width: 100%;
        height: 250px;
    }

    .slide-text {
        width: 100%;
        height: auto;
        padding: 30px;
    }
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        /* スマホでは小さく */
    }

    /* 横揺れ防止: letter-spacing をスマホ用にリセット */
    .hero-furigana {
        letter-spacing: 0.5em;
        /* 2em -> 0.5em */
        margin-right: -0.5em;
        /* 中央揃え補正 */
        font-size: 12px;
    }

    .hero-subtitle {
        letter-spacing: 0.2em;
        /* 0.8em -> 0.2em */
        margin-right: -0.2em;
        /* 中央揃え補正 */
        font-size: 1rem;
    }
}

/* Contact Email */
.contact-email {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    /* 適切な間隔に */
    word-break: break-all;
    /* 長いメアドの折り返し */
}

/* SNS Section Layout */
.sns-gap-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.sns-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sns-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sns-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.insta-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    display: block;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

@media (max-width: 900px) {
    .sns-gap-container {
        grid-template-columns: 1fr;
    }
}

/* News Hover Effect */
.news-hover-trigger {
    position: relative;
    overflow: hidden;
    /* Overlayがはみ出さないように */
    cursor: pointer;
}

.news-preview {
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: 100%;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* 暗い背景 */
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.news-hover-trigger:hover .news-preview {
    opacity: 0.3;
    transform: scale(0.95);
    filter: blur(4px);
}

.news-hover-trigger:hover .news-overlay {
    opacity: 1;
    visibility: visible;
}

.news-heading {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.news-list {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
    max-width: 400px;
}

.news-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 15px;
    color: #fff;
    font-size: 1rem;
}

.news-date {
    color: var(--color-text-dim);
    font-family: monospace;
}

.news-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.news-list a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Biography Hover Effect */
.bio-trigger:hover .bio-bg {
    transform: scale(1.05);
}

.bio-trigger:hover .card-label,
.bio-trigger:hover h3,
.bio-trigger:hover p {
    transform: translateY(-5px);
    transform: translateY(-5px);
    transition: transform 0.4s ease;
}

/* ------------------------
   Scroll Animation (Fade Up)
   ------------------------ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items if needed */
.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

/* ------------------------
   Loading Screen
   ------------------------ */
#site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 999999;
    /* headerより上 */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#site-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    width: 150px;
    height: auto;
    text-align: center;
}

.loader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* アニメーションなし（静止） */
    margin-bottom: 20px;
}

.loader-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: loaderBlink 1.5s ease-in-out infinite alternate;
}

@keyframes loaderBlink {

    /* 0% { opacity: 0.4; } */
    /* 100% { opacity: 1; } */
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* ------------------------
   Contact Form 7 Styles (Premium)
   ------------------------ */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.wpcf7-form p {
    margin-bottom: 24px;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1d1d1f;
    letter-spacing: 0.05em;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #fbfbfd;
    font-size: 1rem;
    color: #1d1d1f;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) inset;
    font-family: inherit;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
    border-color: #0071e3;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.wpcf7-form textarea {
    height: 150px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 40px auto 0;
    /* オレンジ〜ゴールドのグラデーション */
    background: linear-gradient(135deg, #FF8A00 0%, #FFD600 100%);
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.4);
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.5);
    filter: brightness(1.1);
}

/* 必須マークなどを調整する場合 */
.wpcf7-not-valid-tip {
    font-size: 0.85rem;
    margin-top: 5px;
}

/* =========================================
   Mobile Optimizations
   ========================================= */

@media (max-width: 768px) {

    /* Limit Instagram feed to 4 items on mobile */
    #sb_instagram .sbi_item:nth-child(n+5) {
        display: none !important;
    }
}

/* =========================================
   Ticket FAQ Accordion
   ========================================= */
.ticket-faq {
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ticket-faq[open] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.ticket-faq-summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    list-style: none;
    /* remove default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-faq-summary::-webkit-details-marker {
    display: none;
}

.ticket-faq-summary .faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.ticket-faq-summary .faq-icon::before,
.ticket-faq-summary .faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

.ticket-faq-summary .faq-icon::before {
    width: 100%;
    height: 2px;
}

.ticket-faq-summary .faq-icon::after {
    width: 2px;
    height: 100%;
}

.ticket-faq[open] .ticket-faq-summary .faq-icon {
    transform: rotate(45deg);
}

.ticket-faq-content {
    padding: 0 20px 20px;
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.4s ease;
}

.ticket-faq-content li {
    margin-bottom: 12px;
}

.ticket-faq-content li:last-child {
    margin-bottom: 0;
}

/* =========================================
   Premium Single News Page
   ========================================= */

.single-content .entry-content p {
    margin-bottom: 1.8em;
    line-height: 1.8;
    color: #f5f5f7;
    font-size: 1.05rem;
}

.single-content .entry-content h2 {
    font-size: 1.8rem;
    margin: 60px 0 30px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.single-content .entry-content h3 {
    font-size: 1.4rem;
    margin: 40px 0 20px;
    color: #fff;
}

.single-content .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.single-content .entry-content a {
    color: #2997ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(41, 151, 255, 0.3);
    transition: all 0.2s;
}

.single-content .entry-content a:hover {
    color: #5aaaff;
    border-bottom-color: #5aaaff;
}

/* Premium Button (Back to Home) */
.btn-premium {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #333 0%, #111 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* =========================================
   Live Schedule Details Responsive Grid
   ========================================= */
.live-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* PC: 2 Columns */
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .live-content-grid {
        grid-template-columns: 1fr;
        /* Tablet/Mobile: 1 Column */
        gap: 40px;
    }

    .live-image {
        max-width: 500px;
        margin: 0 auto;
        /* Center image on mobile */
    }
}

/* Link Styles in Details */
.live-meta-advanced a {
    color: #2997ff;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.live-meta-advanced a:hover {
    color: #5aaaff;
    text-decoration: none;
}

/* =========================================
   Mobile Navigation (Hamburger Menu)
   ========================================= */

/* Default: PC View */
.nav-toggle,
.mobile-navigation {
    display: none;
}

@media (max-width: 768px) {

    /* Hide PC Nav */
    .pc-nav {
        display: none !important;
    }

    /* Show Mobile Toggle */
    .nav-toggle {
        display: block;
        position: relative;
        z-index: 2000;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .nav-toggle .bar {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #1d1d1f;
        /* Header text color */
        margin-bottom: 6px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 2px;
    }

    .nav-toggle .bar:last-child {
        margin-bottom: 0;
    }

    /* Active State (X shape) */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #1d1d1f;
        /* Dark for visibility on light bg */
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #1d1d1f;
        /* Dark for visibility on light bg */
    }

    /* Mobile Menu Overlay */
    .mobile-navigation {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        /* Gradient: Whitish Blue -> Blue -> Orange -> Whitish Orange */
        background: linear-gradient(135deg,
                #e0f7fa 0%,
                #00b2ff 40%,
                #ff8a00 60%,
                #fff3e0 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-navigation.open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-inner {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-list li {
        margin-bottom: 30px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .mobile-navigation.open .mobile-menu-list li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered delay for menu items */
    .mobile-navigation.open .mobile-menu-list li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-navigation.open .mobile-menu-list li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .mobile-navigation.open .mobile-menu-list li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .mobile-navigation.open .mobile-menu-list li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .mobile-navigation.open .mobile-menu-list li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .mobile-menu-list a {
        font-family: 'Inter', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        /* Dark Text */
        text-decoration: none;
        letter-spacing: 0.05em;
        transition: color 0.3s ease;
    }

    .mobile-menu-list a:hover {
        color: #fff;
        /* Hover to White */
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    /* Scroll Lock on Body */
    body.menu-open {
        overflow: hidden;
    }
}

/* =========================================
   Footer Styles (Responsive)
   ========================================= */

.site-footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-bg-deco {
    opacity: 0.1;
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.footer-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-nav {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #FF8A00;
}

.footer-social {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-social .social-link {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, color 0.3s;
}

.footer-social .social-link {
    color: #fff;
    display: flex;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social .social-link:hover {
    color: #FF8A00;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block;
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.8rem;
}

.back-to-top {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

/* Mobile Footer Optimization */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-nav {
        /* スマホでも2列維持のまま、項目を中央寄せにするか、あるいは1列にするか */
        /* ここでは2列のままで見やすさを維持 */
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
        /* Center the grid container */
    }

    .footer-social {
        justify-content: center;
        /* Center icons */
        margin-bottom: 40px;
    }

    .site-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.bio-cta {
    padding: 80px 0;
    text-align: center;
    background: #0b0b0b;
}

/* =========================================
   Band Profile Premium Styles
   ========================================= */

.bio-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bg-dark-sub {
    background-color: #111;
}

/* Split Layout */
.bio-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.bio-split.reverse {
    flex-direction: row-reverse;
}

.bio-text-column {
    flex: 1;
}

.bio-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Typography */
.bio-heading-sm {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.bio-heading-lg {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    font-family: "Times New Roman", Times, serif;
    /* Premium Serif */
    font-weight: 400;
    margin-bottom: 40px;
    color: #fff;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 2.2;
    color: #ccc;
    font-weight: 300;
}

/* History Timeline */
.history-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.history-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 20px;
}

.history-item::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -35px;
    /* Adjust based on border padding */
    width: 10px;
    height: 10px;
    background: #FFD600;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 214, 0, 0.5);
}

.history-year {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.history-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.history-content p {
    color: #aaa;
    line-height: 1.6;
}

/* Premium Member Cards */
.member-grid.premium-grid {
    gap: 30px;
}

.premium-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 2px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
    /* reset center */
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.member-img-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-family: "Times New Roman", Times, serif;
}

.member-role {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.member-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .bio-split,
    .bio-split.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .bio-text-column {
        text-align: left;
    }

    .bio-heading-lg {
        font-size: 2.5rem;
    }
}