/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');

/* ================================
   CSS Variables (Custom Properties)
   ================================ */
:root {
    /* Color Palette */
    --primary-color: #00ff88;
    --primary-dark: #00cc6a;
    --secondary-color: #6366f1;
    --background-dark: #0a0a0a;
    --background-light: #ffffff;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #aaaaaa;
    --border-light: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Layout */
    --header-height: 70px;
    --container-max-width: 1200px;
    --container-padding: 20px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

/* Base Styles */
/* Header */
.header {
    background-color: #2a2a2a;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

/* Logo */
.header__logo {
    font-size: 24px;
    font-weight: 700; /* boldの代わりに数値で指定 */
    color: #fff;
}

/* Desktop Navigation */
.header__menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.header__menu-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header__menu-link:hover {
    color: #00ff88;
}

/* Hamburger Button - Modern Design */
.header__hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 10001;
    position: relative;
}

.header__hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

/* Hamburger Animation - X Transform */
.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #fff;
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: #fff;
}

/* Mobile Navigation - Modern Circular Overlay */
@media (max-width: 768px) {
    .header__hamburger {
        display: flex;
    }
    
    /* Hide desktop navigation */
    .header__menu {
        display: none;
    }
    
    /* Modern Overlay Menu */
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 9999;

        /* Hidden by default */
        opacity: 0;
        pointer-events: none;

        /* Center content */
        display: flex;
        align-items: center;
        justify-content: center;

        /* Delay hiding to allow block animations to complete */
        transition: opacity 0.1s ease 0.7s;
    }

    .header__nav.active {
        opacity: 1;
        pointer-events: auto;
        /* Remove delay when opening */
        transition-delay: 0s;
    }

    /* Glitch Grid Container */
    .glitch-grid {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(5, 1fr);
        z-index: -1;
    }

    /* Individual Glitch Blocks */
    .glitch-block {
        background: #0a0a0a;
        border: 1px solid rgba(0, 255, 136, 0.1);
        transform: scale(0) rotate(0deg);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Apply reveal state when menu is active */
    .header__nav.active .glitch-block {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    /* Staggered transition delays for glitch blocks */
    .glitch-grid > .glitch-block:nth-child(1) { transition-delay: 0.02s; }
    .glitch-grid > .glitch-block:nth-child(2) { transition-delay: 0.15s; }
    .glitch-grid > .glitch-block:nth-child(3) { transition-delay: 0.08s; }
    .glitch-grid > .glitch-block:nth-child(4) { transition-delay: 0.22s; }
    .glitch-grid > .glitch-block:nth-child(5) { transition-delay: 0.11s; }
    .glitch-grid > .glitch-block:nth-child(6) { transition-delay: 0.18s; }
    .glitch-grid > .glitch-block:nth-child(7) { transition-delay: 0.05s; }
    .glitch-grid > .glitch-block:nth-child(8) { transition-delay: 0.25s; }
    .glitch-grid > .glitch-block:nth-child(9) { transition-delay: 0.13s; }
    .glitch-grid > .glitch-block:nth-child(10) { transition-delay: 0.07s; }
    .glitch-grid > .glitch-block:nth-child(11) { transition-delay: 0.20s; }
    .glitch-grid > .glitch-block:nth-child(12) { transition-delay: 0.03s; }
    .glitch-grid > .glitch-block:nth-child(13) { transition-delay: 0.17s; }
    .glitch-grid > .glitch-block:nth-child(14) { transition-delay: 0.10s; }
    .glitch-grid > .glitch-block:nth-child(15) { transition-delay: 0.24s; }
    .glitch-grid > .glitch-block:nth-child(16) { transition-delay: 0.06s; }
    .glitch-grid > .glitch-block:nth-child(17) { transition-delay: 0.19s; }
    .glitch-grid > .glitch-block:nth-child(18) { transition-delay: 0.12s; }
    .glitch-grid > .glitch-block:nth-child(19) { transition-delay: 0.27s; }
    .glitch-grid > .glitch-block:nth-child(20) { transition-delay: 0.09s; }
    .glitch-grid > .glitch-block:nth-child(21) { transition-delay: 0.21s; }
    .glitch-grid > .glitch-block:nth-child(22) { transition-delay: 0.04s; }
    .glitch-grid > .glitch-block:nth-child(23) { transition-delay: 0.16s; }
    .glitch-grid > .glitch-block:nth-child(24) { transition-delay: 0.14s; }
    .glitch-grid > .glitch-block:nth-child(25) { transition-delay: 0.23s; }

    /* Navigation List - Vertical Layout */
    .header__nav.active .header__menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    /* Menu Items */
    .header__menu-item {
        opacity: 0;
        transform: translateX(100px);
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    /* Staggered Animation Delays */
    .header__nav.active .header__menu-item:nth-child(1) {
        animation: slideInFromRight 0.6s ease 0.2s forwards;
    }

    .header__nav.active .header__menu-item:nth-child(2) {
        animation: slideInFromRight 0.6s ease 0.3s forwards;
    }

    .header__nav.active .header__menu-item:nth-child(3) {
        animation: slideInFromRight 0.6s ease 0.4s forwards;
    }

    .header__nav.active .header__menu-item:nth-child(4) {
        animation: slideInFromRight 0.6s ease 0.5s forwards;
    }

    .header__nav.active .header__menu-item:nth-child(5) {
        animation: slideInFromRight 0.6s ease 0.6s forwards;
    }

    .header__nav.active .header__menu-item:nth-child(6) {
        animation: slideInFromRight 0.6s ease 0.7s forwards;
    }

    .header__nav.active .header__menu-item:nth-child(7) {
        animation: slideInFromRight 0.6s ease 0.8s forwards;
    }

    .header__nav.active .header__menu-item:nth-child(8) {
        animation: slideInFromRight 0.6s ease 0.9s forwards;
    }

    .header__nav.active .header__menu-item:nth-child(9) {
        animation: slideInFromRight 0.6s ease 1.0s forwards;
    }

    /* Navigation Links - Modern Typography */
    .header__menu-link {
        color: #fff;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 300;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        padding: 0.75rem 1.5rem;
        display: block;
        position: relative;
    }
    
    /* Hover Effects - White Glow */
    .header__menu-link:hover {
        color: #fff;
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4);
        transform: scale(1.05);
    }
}

/* Slide In Animation */
@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    padding-top: 70px;
}

/* ===== COMMON STYLES ===== */

/* ================================
   Common Utility Classes
   ================================ */

/* Container Classes */
.page-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Page Header Classes (for secondary pages) */
.page-header {
    text-align: center;
    padding: 120px 20px 60px; /* header-height + spacing */
    animation: fadeInDown 0.8s ease;
}

.page-header__title {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.page-header__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive adjustments for page header */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 15px 40px;
    }

    .page-header__title {
        font-size: var(--font-size-3xl);
    }

    .page-header__subtitle {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 90px 15px 30px;
    }

    .page-header__title {
        font-size: 1.75rem;
    }

    .page-header__subtitle {
        font-size: var(--font-size-sm);
    }
}

/* Common Section Title */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #fff;
}

/* Common Card Background */
.card-background {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

/* Common Accent Line */
.accent-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.accent-line:hover::before {
    background: #00ff88;
}

/* Common Card Hover Effect */
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Common Button Base Style */
.btn-base {
    display: inline-block;
    padding: 18px 40px;
    background: rgba(0, 255, 136, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid rgba(0, 255, 136, 0.3);
    backdrop-filter: blur(10px);
}

.btn-base:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    transform: translateY(-5px);
}

/* Common Section Background */
.section-background {
    background: transparent;
}

/* ===== COMMON ANIMATIONS ===== */

/* Shimmer Animation */
@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Common Shimmer Line */
.shimmer-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    animation: shimmer 3s infinite;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}
/* Fade In Down Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== COMMON RESPONSIVE BREAKPOINTS ===== */

/* Mobile First Breakpoints */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 45px;
    }
    
    .btn-base {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* ===== FOOTER STYLES ===== */
/**
 * footer-grid.css - 4カラムグリッドフッター
 */
/* ===== CONTACT LINK SECTION ===== */
.contact-link {
    padding: 80px 0;
    margin-top: 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* index.htmlでfooterとの間の隙間をなくす */
body.index-page .contact-link {
    margin-bottom: 0;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.contact-link__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-link__title {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-link__description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* ボタンコンテナ */
.contact-link__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* portfolio-ctaのボタンスタイルを適用 */
.contact-link .btn {
    padding: 18px 40px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    flex: 1;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.contact-link .btn--primary {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.3);
}

.contact-link .btn--primary:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
}

.contact-link .btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-link .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .contact-link {
        padding: 60px 0;
    }

    .contact-link__title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .contact-link__description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .contact-link__buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-link .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .contact-link {
        padding: 50px 0;
    }

    .contact-link__title {
        font-size: 1.6rem;
    }

    .contact-link__description {
        font-size: 0.9rem;
        padding: 0 20px;
    }

    .contact-link .btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0a;
    padding: 80px 0 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}


/* pricing-calculator.htmlでsticky要素を正常に動作させるため */
body.pricing-page .footer {
    overflow: visible;
}

/* グラデーションライン */
.footer__gradient-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        #00ff88 20%,
        #00ff88 80%,
        transparent
    );
    animation: gradient-shimmer 3s ease-in-out infinite;
}

@keyframes gradient-shimmer {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 4カラムグリッド */
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__column {
    animation: fade-in-up 0.6s ease-out;
    animation-fill-mode: both;
}

.footer__column:nth-child(1) { animation-delay: 0.1s; }
.footer__column:nth-child(2) { animation-delay: 0.2s; }
.footer__column:nth-child(3) { animation-delay: 0.3s; }
.footer__column:nth-child(4) { animation-delay: 0.4s; }

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* カラム1: ブランド */
.footer__logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* カラム2,3,4: 共通スタイル */
.footer__heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: rgba(0, 255, 136, 0.3);
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__link {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer__link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.footer__link:hover {
    color: #00ff88;
}

.footer__link:hover::before {
    width: 100%;
}

.footer__link--disabled {
    color: #555;
    cursor: not-allowed;
    opacity: 0.5;
}

.footer__link--disabled:hover {
    color: #555;
}

/* カラム4: コンタクト */
.footer__contact {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.footer__contact-item {
    margin-bottom: 12px;
    color: #888;
    font-size: 0.95rem;
}

.footer__contact-label {
    color: #ccc;
    font-weight: 500;
}

.footer__contact-link {
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__contact-link:hover {
    color: #00cc66;
    text-decoration: underline;
}

.footer__cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.footer__cta-button:hover {
    background: linear-gradient(135deg, #00cc66, #00ff88);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

/* 最下部 */
.footer__bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__bottom-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer__bottom-link:hover {
    color: #00ff88;
}

.footer__separator {
    color: #444;
}

.footer__copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer__copyright p {
    margin: 0;
}

/* ===== FOOTER SOCIAL ===== */
.footer__social {
    display: flex;
    gap: 0px;
    margin-top: 25px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.footer__social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    transition: fill 0.3s ease;
}

.footer__social-link:hover svg {
    fill: var(--primary-color);
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer__column--brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__column--brand {
        grid-column: span 1;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer__bottom-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer__separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer__logo {
        font-size: 1.5rem;
    }

    .footer__heading {
        font-size: 1rem;
    }

    .footer__cta-button {
        width: 100%;
        text-align: center;
    }
}

