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

:root {
    --primary-color: #1a1a1a;
    --accent-color: #8b0020;
    --accent-bright: #c41e3a;
    --gold-color: #d4af37;
    --gold-light: #f4e4c1;
    --gold-dark: #b8941f;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0a0a0a;
    --bg-light: #f5f5f5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

/* ナビゲーション */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
    opacity: 0;
    transform: translateY(-20px);
}

.navigation.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-in-out;
}

.navigation.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 40px;
}

.nav-logo-img {
    height: 100%;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.nav-en {
    font-family: 'Abril Fatface', serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.nav-ja {
    font-size: 0.65rem;
    font-weight: 300;
    opacity: 0.7;
    letter-spacing: 0.1em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover .nav-en {
    color: var(--gold-color);
}

.nav-menu a:hover .nav-ja {
    opacity: 1;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* セクションのpadding調整 */
section {
    scroll-margin-top: 70px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

footer.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ヒーローセクション */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: shimmer 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(10%, -10%) scale(1.1); opacity: 0.5; }
    50% { transform: translate(-10%, 10%) scale(0.9); opacity: 0.3; }
    75% { transform: translate(5%, 5%) scale(1.05); opacity: 0.4; }
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0000 0%, #1a0a0a 50%, #0a0000 100%);
}

.main-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    opacity: 0;
    filter: contrast(1.1) saturate(1.2);
    transition: opacity 2s ease-in-out;
}

/* 初期状態 */
.hero.initial-state .main-visual {
    opacity: 0;
}

.hero.initial-state .hero-overlay {
    justify-content: center;
    align-items: center;
}

.hero.initial-state .main-title {
    position: relative;
    transform: translateY(0);
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* アニメーション後 */
.hero.animated .main-visual {
    opacity: 0.85;
}

.hero.animated .hero-overlay {
    justify-content: center;
    align-items: center;
    transition: none;
}

.hero.animated .main-title {
    position: relative;
    transform: translateY(calc(50vh - 250px));
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(139,0,32,0.3) 50%, rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 2;
    transition: all 1.5s ease-in-out;
}

.logo-container {
    position: absolute;
    top: 30px;
    left: 30px;
    opacity: 0;
}

.hero.animated .logo-container {
    opacity: 1;
    transition: opacity 1s ease-in-out 0.5s;
}

.logo {
    width: 150px;
    height: auto;
}

.main-title {
    text-align: center;
    color: var(--text-light);
}

.subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

.title-en {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold-color) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-logo {
    display: block;
    width: clamp(200px, 50vw, 500px);
    height: auto;
    margin: 20px auto;
}

.title-ja {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.3em;
}

/* キャッチコピーセクション */
.catchcopy {
    background: linear-gradient(135deg, #2d0000 0%, #3d0a0a 50%, #2d0000 100%);
    padding: 80px 0;
    position: relative;
}

.catch-main {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.lead-copy {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lead-copy p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #f0e8e8;
    line-height: 1.8;
}

.lead-copy .emphasis {
    font-weight: 700;
    color: var(--gold-color);
    font-size: 1.2rem;
    margin-top: 30px;
}

/* キャストセクション */
.cast {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    padding: 80px 0;
    color: var(--text-light);
    position: relative;
}

.cast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 32, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.section-title .title-en {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.05em;
    line-height: 1;
}

.section-title .title-ja {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-color), var(--gold-dark));
}

.cast-list {
    text-align: center;
    margin: 0 auto;
}

.cast-names {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.8;
    color: var(--text-light);
}

/* ストーリーセクション */
.story {
    background: linear-gradient(180deg, #2d0000 0%, #1a0000 100%);
    padding: 80px 0;
    position: relative;
    color: var(--text-light);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2;
}

.story-content p {
    margin-bottom: 25px;
    text-align: justify;
    color: #f0e8e8;
}

.story-highlight {
    font-weight: 700;
    color: var(--gold-color);
    text-align: center !important;
    margin-top: 40px;
    font-size: 1.2rem;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* チケットセクション */
.ticket {
    background: linear-gradient(180deg, #1a1a1a 0%, var(--bg-dark) 100%);
    padding: 80px 0;
    color: var(--text-light);
}

.ticket-info h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.3rem;
    color: var(--gold-color);
}

.ticket-prices {
    max-width: 600px;
    margin: 0 auto;
}

.ticket-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ticket-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.ticket-item.premium {
    /* スーパープレミアム席も他と同じ背景 */
}

.ticket-type {
    font-weight: 500;
    font-size: 1.1rem;
}

.ticket-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-color);
    min-width: 120px;
    text-align: left;
}

.ticket-note {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.ticket-item.special .ticket-note {
    color: var(--gold-color);
}

/* スケジュールセクション */
.schedule {
    background: linear-gradient(135deg, #2d0000 0%, #3d0a0a 50%, #2d0000 100%);
    padding: 80px 0;
    color: var(--text-light);
}

.schedule-city {
    margin-bottom: 50px;
}

.city-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 0.1em;
}


/* スケジュールテーブル */
.schedule-table-wrapper {
    margin-top: 20px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
    padding: 12px 8px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.schedule-table thead {
    background: rgba(212, 175, 55, 0.15);
}

.schedule-table th {
    font-weight: 600;
    color: var(--gold-color);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.schedule-table tbody tr {
    background: rgba(10, 10, 10, 0.3);
    transition: background 0.3s ease;
}

.schedule-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.1);
}

.date-cell {
    font-weight: 600;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.time-cell {
    font-weight: 600;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    width: 200px;
    min-width: 200px;
}

/* テーブル表示切り替え */
.mobile-table {
    display: none;
}

.desktop-table {
    display: block;
}

.show-time {
    color: var(--gold-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* 会場セクション */
.venues {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
    padding: 80px 0;
    color: var(--text-light);
    position: relative;
}

.venue-item {
    margin-bottom: 60px;
}

.venue-city {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.venue-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
}

.venue-name {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.venue-address {
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.map-container iframe {
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* チケット販売セクション */
.ticket-sales {
    background: linear-gradient(180deg, #2d0000 0%, #1a0000 100%);
    padding: 80px 0;
    color: var(--text-light);
}

.sales-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.sales-item h3 {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 20px;
}

.sales-item a {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.sales-item a:hover {
    opacity: 0.8;
}

.phone {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.sales-notice {
    margin-top: 40px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 2px solid var(--gold-color);
}

.presale-date {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 25px;
}

.ticket-purchase-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.ticket-purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-color));
}

/* フローティング購入ボタン */
.floating-ticket-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    z-index: 1000;
    opacity: 1;
    white-space: nowrap;
}

.floating-ticket-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-color));
}

.floating-ticket-btn.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(100px);
    pointer-events: none;
}

.note {
    color: var(--text-light);
    opacity: 0.8;
}

/* ソーシャルフィードセクション */
.social-feed {
    background: linear-gradient(180deg, #1a0000 0%, #0a0a0a 100%);
    padding: 80px 0;
    color: var(--text-light);
}

.twitter-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.twitter-embed {
    min-height: 600px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.twitter-timeline {
    width: 100% !important;
    max-width: 520px !important;
}

.twitter-link {
    text-align: center;
    margin-top: 30px;
}

.x-follow-btn {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.x-follow-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.twitter-note {
    margin-top: 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* フッター */
.contact {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    color: var(--text-light);
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    margin-bottom: 10px;
}

.company {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-color);
}

.hours {
    font-size: 0.9rem;
    opacity: 0.8;
}

.email a {
    color: var(--gold-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.email a:hover {
    opacity: 0.8;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-target {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* デスクトップでの画像調整 */
@media (min-width: 1200px) {
    .main-visual {
        object-fit: cover;
        object-position: center 25%;
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .main-visual {
        object-fit: cover;
        object-position: center 25%;
    }
}

@media (max-width: 768px) {
    .hero.animated .main-title {
        transform: translateY(calc(50vh - 180px));
    }

    .subtitle {
        font-size: 0.85rem;
        letter-spacing: normal;
    }

    /* ロゴサイズの調整 */
    .nav-logo {
        height: 30px;
    }

    /* ナビゲーションのモバイル対応 */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 60px);
        background: #0a0a0a;
        flex-direction: column;
        padding: 50px 30px;
        gap: 25px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8);
    }

    .nav-menu a {
        align-items: flex-start;
    }

    .nav-en {
        font-size: 1.3rem;
    }

    .nav-ja {
        font-size: 0.75rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .logo-container {
        display: none;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .cast-names {
        font-size: 1.5rem;
    }

    .floating-ticket-btn {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .ticket-purchase-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .twitter-container {
        padding: 15px;
    }

    /* モバイル用テーブル表示 */
    .mobile-table {
        display: block;
        overflow-x: visible;
    }

    .desktop-table {
        display: none;
    }

    .schedule-table {
        font-size: 0.9rem;
        table-layout: fixed;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 10px 4px;
    }

    .schedule-table th {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .show-time {
        font-size: 1.5rem;
    }

    .time-cell {
        font-size: 0.85rem;
        padding: 10px 6px;
        width: 80px;
        min-width: 80px;
    }

    .ticket-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .ticket-price {
        margin-top: 10px;
    }

    .catch-main {
        font-size: 1.3rem;
        padding: 0 10px;
    }

    .lead-copy p {
        font-size: 1rem;
    }

    .story-content {
        font-size: 1rem;
        padding: 0 10px;
    }

    .story-content p {
        text-align: left;
    }

    .venue-info {
        padding: 20px;
    }

    .map-container iframe {
        height: 200px;
    }
}

/* モバイル改行制御 */
.mobile-br {
    display: none;
}

.mobile-hide {
    display: inline;
}

/* 400px以下で改行を表示、句読点を非表示 */
@media (max-width: 400px) {
    .mobile-br {
        display: inline;
    }

    .mobile-hide {
        display: none;
    }
}

/* iPhone SE等の小画面（375px以下） */
@media (max-width: 375px) {
    .floating-ticket-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
        letter-spacing: 0;
    }

    .ticket-purchase-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        letter-spacing: 0;
    }
}

@media (max-width: 480px) {
    .hero.animated .main-title {
        transform: translateY(calc(55vh - 160px));
    }

    .schedule-table th,
    .schedule-table td {
        padding: 8px 3px;
        font-size: 0.8rem;
    }

    .schedule-table th {
        font-size: 0.75rem;
    }

    .show-time {
        font-size: 1.3rem;
    }

    .time-cell {
        font-size: 0.75rem;
        width: 70px;
        min-width: 70px;
    }

    .title-en {
        font-size: 3rem;
    }

    .title-ja {
        font-size: 1.5rem;
    }

}