/* ============================================================
   SAKURA HIGH SCHOOL — Premium Sleek Theme
   Dark Navy + Sakura Pink + Gold Accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS Custom Properties ── */
:root {
    --bg-dark: #0f1923;
    --bg-dark-2: #162030;
    --bg-page: #f5f3ef;
    --bg-card: #ffffff;
    --bg-card-hover: #fefefe;

    --accent: #d4829c;
    --accent-light: #f0d0dc;
    --accent-dark: #b8607a;
    --accent-gold: #c9a96e;
    --accent-gold-light: #e8d5a8;

    --text-primary: #1a1a2e;
    --text-secondary: #4a4a5a;
    --text-muted: #8a8a9a;
    --text-on-dark: #e8e6e1;
    --text-on-dark-muted: #9ca3af;

    --border: rgba(0, 0, 0, 0.06);
    --border-light: rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 14px 44px rgba(0, 0, 0, 0.1), 0 6px 16px rgba(0, 0, 0, 0.06);

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Base Reset & Typography ── */
body {
    font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-page);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(212, 130, 156, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
    background-attachment: fixed;
    line-height: 1.75;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 50px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    color: var(--text-secondary);
}

a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

a:hover, a:focus {
    color: var(--accent);
    text-decoration: none;
    opacity: 1;
}

::selection {
    background: var(--accent-light);
    color: var(--text-primary);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-page);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

/* ── Images ── */
.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

/* ── Navbar — Dark Premium Glass ── */
.navbar {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    min-height: 64px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar-inverse {
    background-image: none;
    background-repeat: no-repeat;
    filter: none;
}

.navbar-inverse .navbar-brand {
    color: var(--text-on-dark);
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 15px;
    letter-spacing: 0.08em;
    transition: opacity var(--transition);
}

.navbar-inverse .navbar-brand:hover {
    color: var(--accent-light);
    opacity: 0.9;
}

.navbar-inverse .navbar-nav > li > a {
    color: var(--text-on-dark-muted);
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 22px 16px;
    letter-spacing: 0.03em;
    transition: all var(--transition);
    position: relative;
}

.navbar-inverse .navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.06);
}

.navbar-inverse .navbar-nav > li > a:hover::after {
    transform: scaleX(1);
}

.navbar-toggle {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    margin-top: 15px;
    padding: 8px 10px;
    transition: all var(--transition);
}

.navbar-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: var(--text-on-dark);
    border-radius: 2px;
    height: 2px;
    transition: all var(--transition);
}

/* ── Main Container ── */
main.container,
main.container-fluid {
    background-color: transparent;
    margin-top: 0;
}

.container {
    max-width: 1140px;
    padding-top: 30px;
}

/* ── Panels → Cards ── */
.panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    transition: box-shadow var(--transition), transform var(--transition);
    overflow: hidden;
}

.panel:hover {
    box-shadow: var(--shadow-md);
}

.panel-none {
    background-color: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.panel-none:hover {
    box-shadow: none;
}

.panel-heading {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%) !important;
    border: none;
    border-bottom: none;
    color: var(--text-on-dark) !important;
    padding: 16px 24px;
    margin-bottom: 0;
    border-radius: var(--radius) var(--radius) 0 0;
}

.panel-title,
.panel-heading span {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-on-dark) !important;
}

.panel-body {
    padding: 24px;
}

.panel-none > .panel-body {
    padding: 0;
}

/* Override panel-danger for footer */
.panel-danger {
    border: none;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
    color: inherit;
}

.panel-danger > .panel-heading {
    display: none;
}

/* ── Header Section ── */
#container-header {
    margin-bottom: 10px;
}

#container-header .plugin-accessibility {
    margin-top: 10px;
}

#container-header .plugin-announcements {
    margin-top: 0;
}

/* ── Hero Image ── */
#container-header .plugin-announcements .nc3-img-block[title=""] {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition), box-shadow var(--transition);
}

#container-header .plugin-announcements .nc3-img-block[title=""]:hover {
    transform: scale(1.005);
    box-shadow: var(--shadow-hover);
}

/* ── Navigation Tabs (Header Menu) ── */
.menu-header-tabs.nav-justified,
.menu-footer-tabs.nav-justified {
    margin-top: 0;
}

.nav-tabs {
    border-bottom: 2px solid var(--border);
}

.nav-tabs > li {
    background: transparent;
    margin-bottom: -2px;
}

.nav-tabs > li > a {
    color: var(--text-muted) !important;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none !important;
    border-radius: 0 !important;
    padding: 14px 18px;
    transition: all var(--transition);
    position: relative;
    background: transparent !important;
}

.nav-tabs > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-gold));
    border-radius: 1px;
    transition: all var(--transition);
}

.nav-tabs > li > a:hover {
    color: var(--text-primary) !important;
    background: transparent !important;
}

.nav-tabs > li > a:hover::after {
    left: 18px;
    right: 18px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    color: var(--text-primary) !important;
    font-weight: 600;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

.nav-tabs > li.active > a::after {
    left: 18px;
    right: 18px;
}

.menu-header-tabs > li {
    border-radius: 0 !important;
    border: none !important;
}

.menu-header-tabs > li.active {
    background-color: transparent !important;
}

/* Menu header navbar */
.menu-header.navbar-default {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    padding: 4px 8px;
}

/* ── Sidebar Menu ── */
#container-major {
    padding-top: 10px;
}

.list-group-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    padding: 14px 16px;
    color: var(--text-secondary);
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: all var(--transition);
    border-radius: 0;
    position: relative;
}

.list-group-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent), var(--accent-gold));
    border-radius: 2px;
    transition: height var(--transition-bounce);
}

.list-group-item:first-child {
    border-top: 1px solid var(--border-light);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.list-group-item:last-child {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    background: linear-gradient(135deg, rgba(212, 130, 156, 0.08), rgba(201, 169, 110, 0.06));
    color: var(--accent-dark);
    border-color: var(--border-light);
    font-weight: 600;
    padding-left: 20px;
    border-left: none;
}

.list-group-item.active::before {
    height: 60%;
}

.list-group-item:hover {
    background-color: rgba(0, 0, 0, 0.015);
    color: var(--text-primary);
    padding-left: 20px;
}

.list-group-item:hover::before {
    height: 40%;
}

/* ── Main Content ── */
#container-main {
    padding-top: 10px;
}

article {
    animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

article p {
    margin-bottom: 1.4em;
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-secondary);
}

article em {
    color: var(--accent-dark);
    font-style: italic;
}

article strong {
    color: var(--text-primary);
    font-weight: 600;
}

article ol, article ul {
    padding-left: 1.5em;
}

article ol li, article ul li {
    margin-bottom: 0.6em;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 15px;
}

/* Section titles within articles */
article span[style*="font-size: 12pt"] {
    font-family: 'Playfair Display', 'Noto Sans JP', serif !important;
    position: relative;
    display: inline-block;
}

/* ── Tables — Refined ── */
.table {
    margin-top: 16px;
    border-collapse: separate;
    border-spacing: 0;
}

.table-bordered {
    border: none;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 14px 8px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: background var(--transition);
}

.table > tbody > tr:hover > td {
    background-color: rgba(212, 130, 156, 0.03);
}

.table > tbody > tr > td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    width: 28%;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Footer — Dark Premium ── */
footer#container-footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    color: var(--text-on-dark-muted);
    padding: 48px 0 40px;
    margin-top: 60px;
    border-top: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}

footer#container-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-gold), transparent);
}

footer#container-footer .panel-danger {
    background: transparent;
    border: none;
    color: inherit;
}

footer#container-footer article p {
    color: var(--text-on-dark-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0.6em;
}

footer a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

footer a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    text-decoration: none;
}

footer .panel-danger > .panel-heading {
    display: none;
}

/* System Footer */
#nc-system-footer {
    display: none;
}

/* ── Accessibility Area — Glassmorphism Card ── */
.accessibility-area {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.accessibility-area p {
    margin: 0 !important;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.font-size-area,
.style-area,
.padding-area {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── Buttons — Refined ── */
.btn {
    background-image: none;
    box-shadow: none;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background-color: var(--bg-card);
    color: var(--text-secondary);
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    transition: all var(--transition);
    cursor: pointer;
}

.btn:hover {
    background: var(--bg-dark);
    color: #fff;
    border-color: var(--bg-dark);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.font-size-btn,
.style-white-btn,
.style-black-btn,
.style-blue-btn,
.padding-btn {
    border: 1px solid var(--border);
    background: var(--bg-card);
    padding: 4px 12px;
    margin: 0 2px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.font-size-btn:hover,
.style-white-btn:hover,
.style-black-btn:hover,
.style-blue-btn:hover,
.padding-btn:hover {
    background: var(--bg-dark);
    color: #fff;
    border-color: var(--bg-dark);
}

/* ── Breadcrumb ── */
.breadcrumb {
    background-color: transparent;
    margin: 0;
    padding: 8px 0;
    font-size: 13px;
}

/* ── Dropdown Menu ── */
@media (min-width: 768px) {
    ul.nav li.dropdown:hover > ul.dropdown-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        min-width: 200px;
        padding: 8px 0;
        margin: 0;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-lg);
        animation: dropdownFade 0.2s ease-out;
    }

    ul.nav li.dropup:hover > ul.dropdown-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        min-width: 200px;
        padding: 8px 0;
        margin: 0;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-lg);
        animation: dropdownFade 0.2s ease-out;
    }
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu > li > a {
    padding: 8px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.dropdown-menu > li > a:hover {
    background: rgba(212, 130, 156, 0.06);
    color: var(--accent-dark);
}

/* Dropdown header/divider hidden */
.dropdown-menu .dropdown-header {
    display: none;
}
.dropdown-menu .divider {
    display: none;
}

/* ── Logo Section ── */
.navbar-brand img {
    height: 36px;
}

#container-header .boxes-1 section:first-child .nc3-img-block {
    transition: opacity var(--transition);
}

#container-header .boxes-1 section:first-child .nc3-img-block:hover {
    opacity: 0.85;
}

/* ── School Motto Styling ── */
article .table em {
    color: var(--accent-dark);
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    line-height: 1.6;
}

/* ── Brief Introduction Title ── */
article em strong {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 20px;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    display: inline-block;
    padding-bottom: 8px;
    position: relative;
}

/* ── Section Headers ── */
article span[style*="font-size: 12pt"] strong {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

article span[style*="font-size: 12pt"] strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-gold));
    border-radius: 1px;
}

/* ── HOME Link at Bottom ── */
article div[style*="text-align:center"] a,
article div[style*="text-align: center"] a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 36px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    color: var(--text-on-dark) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

article div[style*="text-align:center"] a:hover,
article div[style*="text-align: center"] a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--accent-light) !important;
}

/* ── Contact Info Header Area ── */
#container-header .col-sm-6:last-child div[style*="text-align: right"] {
    font-size: 13px;
    line-height: 1.8;
}

/* ── Navbar Collapse Mobile ── */
.navbar-collapse {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
    .navbar-collapse {
        background: var(--bg-dark);
        padding: 8px 0;
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-inverse .navbar-nav > li > a::after {
        display: none;
    }

    .navbar-inverse .navbar-nav > li > a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .container {
        padding-top: 16px;
    }

    footer#container-footer {
        border-radius: 0;
        padding: 32px 16px;
    }

    .accessibility-area {
        gap: 8px;
        padding: 12px 14px;
    }

    .panel-body {
        padding: 16px;
    }

    .panel-none > .panel-body {
        padding: 0;
    }

    .menu-header.navbar-default {
        border-radius: var(--radius-sm);
        padding: 2px 4px;
    }
}

/* ── Mobile Menu Items ── */
@media (max-width: 767px) {
    .visible-xs-block .list-group-item {
        padding: 12px 16px;
        font-size: 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }
}

/* ── Smooth Scroll Behavior ── */
html {
    scroll-behavior: smooth;
}

/* ── Print Styles ── */
@media print {
    body {
        background: white;
    }
    .navbar, footer#container-footer {
        background: #333 !important;
    }
    .panel {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ── Staggered Fade-in for Multiple Frames ── */
.frame:nth-child(1) article { animation-delay: 0s; }
.frame:nth-child(2) article { animation-delay: 0.1s; }
.frame:nth-child(3) article { animation-delay: 0.2s; }
.frame:nth-child(4) article { animation-delay: 0.3s; }
.frame:nth-child(5) article { animation-delay: 0.4s; }

/* ── Subtle Gradient Divider ── */
#container-main > .boxes-3 > div > section + section {
    position: relative;
}

#container-main > .boxes-3 > div > section + section::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-gold));
    border-radius: 1px;
    margin: 0 auto 28px;
}

/* ── Memorial Hall Image Specific ── */
.nc3-img-block[alt=""] {
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
}

/* ── Container Main Panel Overrides ── */
#container-main .panel-default {
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

#container-main .panel-default > .panel-heading {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%) !important;
    color: var(--text-on-dark) !important;
    border-bottom: none;
    padding: 16px 24px;
    line-height: 1.4;
}

/* ── Sidebar Panel ── */
#container-major .panel-default {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

#container-major .panel-default > .panel-heading {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%) !important;
    border-bottom: none;
    border-radius: 0;
    padding: 16px 20px;
    line-height: 1.4;
}

#container-major .panel-default > .panel-heading span {
    color: var(--text-on-dark) !important;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
