html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Zen Kaku Gothic New", "Inter", system-ui, -apple-system, "Hiragino Sans", "Yu Gothic", sans-serif;
    font-weight: 400;
    color: #fff;
}

body {
    margin: 0;

}

main {
    background: #222f64dd;
}

/* hero */
.home-hero {
    background: url('../images/backgroundImage_1.png');
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    color: white;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgba(14, 25, 121, 0.15);
    z-index: 1;


}


/* navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
}


.brand__logo {
    width: 90px;
    height: 60px;
    object-fit: contain;
    display: block;
    opacity: 0.75;
    /* 薄くする */
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.688));
}

.brand__logo:hover {
    opacity: 1;
}

.nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;
    border-radius: 10px;
    /* 四角を角丸に */

    background: rgba(255, 255, 255, 0.06);
    /* 通常時はうっすらガラス */
    color: rgba(255, 255, 255, 0.85);

    border: 1px solid rgba(255, 255, 255, 0.10);

    transition: background-color .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}


/* hoverで反転（白背景＋濃色アイコン） */
.nav-social a:hover {
    background: rgba(255, 255, 255, 0.92);
    color: #0b1024;
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

/* mobile menu */
@media (max-width: 991.98px) {
    .navbar .navbar-collapse {
        background: rgba(0, 0, 0, .45);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 12px 16px;
        margin-top: 8px;

    }
}


.nav-item::after {
    opacity: 1;
}

/* pc */
@media (min-width: 992px) {
    .navbar .navbar-collapse {
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        border-radius: 0;
    }

    .navbar-nav {
        align-items: center;
    }

    .navbar .nav-item {
        display: flex;
        align-items: center;
    }
}




/*.block {
    width: 300px;
    height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
}*/

.home-hero__content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 200px;
}

.home-hero__desc p {
    margin-bottom: 5px;
    text-align: center;
    color: #fff;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(0, 0, 0, 0.4);
}

/*pc*/
@media (min-width: 769px) {
    .home-hero__desc p {
        margin-bottom: 10px;
        line-height: 1.8;
    }

    /* 段落の始まり */
    .home-hero__desc p:nth-of-type(1),
    .home-hero__desc p:nth-of-type(3),
    .home-hero__desc p:nth-of-type(8),
    .home-hero__desc p:nth-of-type(11) {
        margin-top: 18px;
    }
}


/*mobile*/
@media (max-width: 768px) {

    /* hero全体の高さズレ対策 */
    .hero {
        min-height: 100svh;
        background-size: cover;
        /* PCと同じ */
        background-position: 50% 18%;
        background-repeat: no-repeat;
        background-color: #0b1024;
        background-image: url('../images/backgroundImage_1_sp.png');
        /* 余白を舞台色で埋める */
    }

    /* コンテンツ開始位置 */
    .home-hero__content {
        display: block;
        padding: 56px 16px 40px;


    }

    /* テキストコンテナ */
    .home-hero__text {
        max-width: 320px;
        /* ←重要：読み幅制御 */
        margin: 0 auto;
        padding-top: 100px;
        color: #fff;

    }

    /* 本文 */
    .home-hero__desc>p {
        font-size: 0.85rem;
        line-height: 1.65;
        margin: 0 0 6px 0;
        text-align: center;
        opacity: 1;
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.6),
            0 0 12px rgba(0, 0, 0, 0.4);
    }

    /* brは使わない（余白管理をCSSに） */
    .home-hero__desc br {
        display: none;
    }

    /* セクションの区切りだけ余白を作る */
    .home-hero__desc>p:nth-of-type(1),
    .home-hero__desc>p:nth-of-type(3),
    .home-hero__desc>p:nth-of-type(8),
    .home-hero__desc>p:nth-of-type(11) {
        margin-top: 16px;
    }

    /* after-hero（次セクション） */
    .after-hero {
        padding: 64px 16px;
    }

    .after-hero__inner {
        max-width: 680px;
        margin: 0 auto;
    }
}

/* ===== News Section ===== */
.after-hero {
    background: #f7f7f9;
    color: #111;
    padding: 100px 16px;
}

.after-hero__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* 見出し */
.news-title {
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 4px;
}

.news-sub {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 48px;
}

/* リスト */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #ddd;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 16px 8px;
    border-bottom: 1px solid #ddd;

    font-size: 0.95rem;
    cursor: pointer;
}

.news-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

/* 日付 */
.news-date {
    min-width: 90px;
    font-size: 0.85rem;
    color: #666;
}

/* カテゴリ */
.news-category {
    font-size: 0.75rem;
    padding: 4px 8px;
    border: 1px solid #aaa;
    border-radius: 12px;
    color: #444;
    white-space: nowrap;
}

/* 本文 */
.news-text {
    color: #111;
    /* 黒寄り */
    text-decoration: none;
    /* 下線も消す */
}

.news-link {
    flex: 1;
    color: #111;
    text-decoration: none;
}

/* NEWバッジ .news-item.new::after {
    content: "NEW";
    font-size: 0.65rem;
    color: #fff;
    background: #c1121f;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: auto;
}*/

.news-badge {
    font-size: 0.65rem;
    color: #fff;
    background: #c1121f;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: 5px;
}

@media (min-width: 769px) {
    .news-badge {
        margin-left: 5px;
    }
}

/* ✅ モバイルだけ：日付・カテゴリ・NEW を左に固めて、タイトルを次行へ */
@media (max-width: 768px) {
    .news-item {
        flex-wrap: wrap;
        /* 改行できるように */
        align-items: center;
        gap: 8px 10px;
        /* 行/列のgap */
    }

    /* タイトルリンクは次の行を占有 */
    .news-link {
        order: 2;
        flex-basis: 100%;
    }

    /* カテゴリを先に */
    .news-category {
        order: 0;
    }

    /* NEWをカテゴリの横に */
    .news-badge {
        order: 1;
        /* 近づけたければ微調整 */
    }

    /* 日付も一緒に並べたいなら */
    .news-date {
        order: -1;
    }
}



.news-link,
.news-link:visited,
.news-link:hover,
.news-link:active,
.news-link:focus {
    text-decoration: none !important;
    color: #111 !important;
}



@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .news-date {
        min-width: auto;
    }
}

/* newslist */
.news-page {
    background: #ffffff;
    margin-top: 100px;
    /* ← padding を margin に戻す */
    min-height: calc(100vh - 100px);
    /* ← 画面下まで白を伸ばす */
    color: #0b1024;
}

.news-page__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 16px;
}

.news-page__title {
    font-size: 1.6rem;
    margin-bottom: 32px;
}


/*newsDetail*/

/* news detail */
.news-detail {
    min-height: 100vh;
    background: #fff;
    color: black;
    padding-bottom: 80px;
    box-sizing: border-box;
}

.news-detail__inner {
    width: min(720px, 92vw);
    margin: 100px auto 60px;
    padding: 32px 16px 80px;
    box-sizing: border-box;
}

.news-detail__body {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.news-detail__body p {
    white-space: pre-line;
    line-height: 1.9;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .news-detail__inner {
        width: 94vw;
        margin: 80px auto 40px;
        padding: 24px 14px 36px;
    }

    .news-detail__body p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}



/*boxicon*/
.footer-icons {
    font-size: 16px;

}

.footer-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;
    border-radius: 10px;
    /* 角丸（丸なら999px） */

    color: rgba(255, 255, 255, 0.85);
    /* アイコン色 */
    background: transparent;
    /* 通常時は背景なし */

    transition:
        background-color .18s ease,
        color .18s ease,
        transform .18s ease;
}

.footer-icons a:hover {
    background: #ffffff;
    /* 背景を白に */
    color: #0b1024;
    /* アイコンを濃色に */
    transform: translateY(-1px);
}


.footer-inner {
    position: relative;
    min-height: 48px;
}

/* =========================
   Performance Section
========================= */

.views-hero {
    opacity: 0.93;
    background: transparent;
    background-repeat: repeat;
}

/* ===== Title ===== */
.views-title {
    height: 200px;
    padding-top: 100px;
    text-align: center;
}

.views-title h1 {
    text-shadow: 10px 13px 15px rgba(0, 0, 0, 0.637);
    font-size: 28px;
}

@media (max-width: 768px) {
    .views-title h1 {
        font-size: 20px;
    }
}

/* =========================
   Card Layout (FIXED)
========================= */

/* グリッドに従わせる */
.views-hero .card {
    width: 100%;
    max-width: 350px;   /* PCでの見た目維持 */
    height: auto;       /* ← 固定500pxやめる（超重要） */
    margin: 0 auto;

    border-radius: 7px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
    background: transparent;
}

.views-hero .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}

/* ===== 画像はここだけで管理 ===== */
.views-hero .card-img-top {
    width: 100%;
    aspect-ratio: 2 / 3;   /* 綺麗なポスター比率 */
    object-fit: cover;
    display: block;
}

/* =========================
   Meta Panel
========================= */

.meta-panel {
    background: rgba(10, 14, 30, 0.40);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 14px 40px rgba(0, 0, 0, 0.35);

    color: rgba(255, 255, 255, 0.92);
    text-align: left;
}

.meta-panel .card-title {
    margin: 0 0 4px;
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
    color: #ffffffe4;
}

.meta-panel .cardDetails {
    margin: 0;
    opacity: .85;
    font-size: .9rem;
}

/*LoginForm*/
.loginForm {
    background: #f5f6f8e7;
    color: #111;

}

.login-wrap {
    max-width: 420px;
    width: 100%;
}


@media (max-width: 768px) {
    .login-wrap {
        max-width: 320px;
        /* 280〜360くらいで好み */
    }
}

/*flash*/
.flash-floating {
    position: fixed;
    top: 90px;
    /* navbarの高さ分 */
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 720px);
    z-index: 1055;
    /* navbarより上 */
}


/*cotact*/
.contact {
    background-color: #fff;
    color: #0b1024;
    padding-bottom: 60px;
    /* footerにくっつかない */
    min-height: calc(100vh - 80px);
}

.contactBackground {
    background: url('../images/contactBackground.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 150px;

}

.contact-actions {
    padding-top: 1rem;
    /* mt-3 相当 */
}


@media (max-width: 768px) {
    .contact {
        background-color: #fff;
        padding-bottom: 32px;
        min-height: calc(100vh - 80px);
        display: flex;
        flex-direction: column;
        /* 好きな余白 */
    }


    .contactBackground {
        height: 100px;

    }
}

.contact-title {
    margin-top: 30px;
}


/*performanceDetail*/
/* 全体の背景と文字色 */
.performance-page {
    background-color: transparent;
    /* スクリーンショットに合わせた紺色 */
    color: #ffffff;
    min-height: 100vh;
    padding-bottom: 5rem;
}

/* カルーセルの位置調整 */
.performance-carousel {
    margin-top: 100px;
    /* navbarから30px空ける */
    margin-left: 200px;
    margin-right: 200px;

}

.performance-carousel img {
    height: 60vh;
    object-fit: cover;
    border-radius: 5px;
}

/* タイトルとサブ情報 */
.performance-header {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.performance-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.performance-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

/* あらすじセクション */
.performance-synopsis {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.synopsis-title {
    font-size: 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.synopsis-text {
    line-height: 1.8;
    white-space: pre-line;
    opacity: 0.9;
}

/* カルーセルコントロールの微調整 */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

@media (max-width: 768px) {
    .performance-carousel {
        margin-top: 130px;
        /* navbarから30px空ける */
        margin-left: 30px;
        margin-right: 30px;
    }

    .performance-carousel img {
        height: 300px;
        object-fit: cover;
        border-radius: 7px;

    }

    .performance-header {
        text-align: center;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .performance-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .performance-meta {
        color: rgba(255, 255, 255, 0.7);
        font-size: ;
    }

    .synopsis-title {
        font-size: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 0.5rem;

    }
}

/*about*/
.about_hero {
    background: #111111d1;
    color: #f5f5f5;
    width: 100%;
    min-height: 100svh;

}

.about-sub {
    color: #565656;
}

.about_box h2 {
    margin-bottom: 3px;
}

.about_box {
    padding-top: 150px;
    text-align: center;
}

.about-list {
    list-style: none;
    margin: 25px auto 0;
    padding: 0;
    max-width: 760px;
    /* 中央寄せ＋幅制御 */
}

/* 1行ごとのレイアウト */
.about-items {
    display: flex;
    gap: 24px;
    padding: 18px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

/* 左カラム（項目名） */
.about-items dt {
    width: 110px;
    /* 固定幅で縦ラインを揃える */
    flex-shrink: 0;
    font-weight: 200;
    line-height: 1.6;
    white-space: nowrap;
}

/* 右カラム（内容） */
.about-items dd {
    flex: 1;
    min-width: 0;
    margin: 0;
    line-height: 1.7;
    overflow-wrap: break-word;
    text-align: left;
    /* ← これが本命 */
}

.about-items dd p {
    margin: 0;
    font-weight: 200;
}

.about-items {
    gap: 14px;
}

.about-items dt {
    width: 96px;
}

.about-items--map {
    border-bottom: none;
    padding-bottom: 0;
    /* 下の余白も詰めたいなら */
}

.map-wrap {
    width: 100%;
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    /* 角丸を効かせる */
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.map-wrap iframe {
    width: 100%;
    height: 450px;
    /* 好きに調整 */
    border: 0;
    display: block;
}



@media (max-width: 576px) {
    .map-wrap iframe {
        height: 300px;
    }
}

.after_about_hero {
    padding-top: 80px;
    padding-bottom: 70px;
    background: rgb(255, 255, 255);
    color: #111;
}

.about-sub-title {
    padding: 0px;
    text-align: center;
    color: #3a3a3ad0;
    margin-bottom: 50px;
}

.about-image {
    max-width: 1100px;
    margin: 40px auto;
}


.about-image img {
    background: rgba(255, 255, 255, 0.7);
    padding: 8px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.372);
}

.about-caption {
    margin: 12px 4px 0;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.04em;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
    padding-bottom: 20px;
}

.about-caption::before {
    content: "— ";
    opacity: 0.6;
}

@media (max-width: 768px) {
    .about-image {
        margin: 24px 16px;
    }

    .about-caption {
        font-size: 0.85rem;
    }
}

/*adminperformance*/
.admin-perfNew {
    background: #3e476d;
    min-height: 100vh;
    padding: 40px 0;
    /* padding-bottomを大きく取ることで、フッターの下まで背景色を伸ばし、
     かつコンテンツ（ボタン）を上に押し上げます */
    padding-bottom: 150px !important;
    box-sizing: border-box;
}

/* 管理画面のフォームを中央寄せ */
.admin-form form {
    max-width: 720px;
    margin: 0 auto;
}

/*adminnews*/
.admin-newsNew {
    background: #3e476d;
    /* 画面の高さに合わせるのではなく、中身が伸びても背景が続くようにする */
    min-height: 100vh;
    /* ボタンとフッターの間にクッションを作る（重要） */
    padding: 40px 0 100px 0;
    /* 背景を確実に描画 */
    display: block;
}

/* 管理画面のフォームを中央寄せ */
.admin-form form {
    max-width: 720px;
    margin: 0 auto;
    /* カード自体の下の影がフッターに刺さらないようにする */
    margin-bottom: 2rem;
}

/* join page */
.join {
    background: #f7f7f9;
    color: #111;
    padding-bottom: 80px;
}

/* hero */
.join-hero {
    padding: 120px 20px 80px;
    text-align: center;
}

.join-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.join-lead {
    color: #555;
}

/* section */
.join-section {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.join-heading {
    font-size: 1.6rem;
    margin-bottom: 24px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 8px;
}

/* schedule */
.join-schedule img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* text */
.join-text p {
    line-height: 1.9;
    margin-bottom: 16px;
}

/* contact */
.join-contact-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* join hero bg */
.join-hero-bg {
    position: relative;
    height: 180px;
    /* navbar＋余白分 */
    background-image: url('/images/hero.jpg');
    background-size: cover;
    background-position: center top;
}

/* 暗幕（文字・アイコン見やすく） */
.join-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
    .join-hero-bg {
        height: 100px;
        /* navbar＋余白分 */
    }
}

.join-section {
    margin-top: 50px;
}

.join-schedule__img {
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.join-schedule__img:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/* ===== Contact Success Page ===== */

.success-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #4e5d94, #3e476d);
    color: #ffffff;
    padding: 20px;
}

.success-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    max-width: 600px;
    width: 100%;
    animation: fadeUp 0.6s ease-out;
}

.success-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.success-text {
    opacity: 0.85;
    margin-bottom: 35px;
    line-height: 1.6;
}

.success-btn {
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 8px;
}

/* 軽いアニメーション */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Ticket Page ===== */

.ticket-hero {
    background: #3e476d;
    /* navbarと相性いい濃い背景 */
    padding: 120px 0 70px;
    /* navbar分の余白 */
    color: #fff;
}

.ticket-hero__inner {
    max-width: 860px;
    margin: 0 auto;
}

.ticket-kicker {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.75;
    font-weight: 600;
}

.ticket-title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.ticket-sub {
    opacity: 0.85;
}

.ticket-body {
    background: #f6f7fb;
    padding: 70px 0 90px;
}

.ticket-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    padding: 34px 32px;
    max-width: 980px;
    margin: 0 auto;
}

.ticket-perfTitle {
    color: #272a36;
    text-align: center;
}


.ticket-meta {
    color: rgba(0, 0, 0, 0.55);
    text-align: center;
    margin-top: 10px;
}

.ticket-hr {
    margin: 24px 0;
    opacity: 0.15;
}

.ticket-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
}

.ticket-item {
    background: rgba(62, 71, 109, 0.06);
    border: 1px solid rgba(62, 71, 109, 0.10);
    border-radius: 14px;
    padding: 14px 16px;
}

.ticket-item--wide {
    grid-column: 1 / -1;
}

.ticket-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(62, 71, 109, 0.85);
    margin-bottom: 6px;
}

.ticket-value {
    color: rgba(0, 0, 0, 0.78);
    line-height: 1.55;
}

.ticket-actions {
    text-align: center;
    margin-top: 26px;
}

.ticket-btn {
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
}

.ticket-small {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.55);
}

.ticket-notes {
    max-width: 980px;
    margin: 28px auto 0;
    padding: 0 6px;
}

.ticket-notes__title {
    font-weight: 700;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 10px;
}

.ticket-notes__list {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(0, 0, 0, 0.65);
}

@media (max-width: 768px) {
    .ticket-title {
        font-size: 2.1rem;
    }

    .ticket-grid {
        grid-template-columns: 1fr;
    }

    .ticket-card {
        padding: 26px 18px;
    }
}