/* =================================================
   1. Base & Reset
   ================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background: #000;
    font-family: 'EB Garamond', 'Noto Serif JP', serif;
}

p {
    line-height: 2.2;
    color: #444;
    text-align: justify;
    font-size: 1.05rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: 'Noto Serif JP', serif;
    color: #1a1a1a;
}

.sub-title {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: #be0032;
    margin-bottom: 15px;
}

/* =================================================
   2. Header & Main Visual (Top)
   ================================================= */
.bg-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.bg-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.jpg') no-repeat center/cover;
    filter: brightness(0.7) contrast(1.1);
    animation: kenBurnsZoom 20s ease-out forwards;
    z-index: -1;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
        filter: brightness(0.7);
    }

    100% {
        transform: scale(1.15);
        filter: brightness(1);
    }
}

.s-title {
    width: 100%;
    color: #393939;
    background-color: #fff;
    font-size: .85em;
    font-family: sans-serif;
    padding: 1px 3px 1px 15px;
}

.s-title img {
    max-height: .85em;
    margin-right: .5em;
}

.logo-area {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.logo-final {
    width: 320px;
    height: auto;
    opacity: 0;
    transform: scale(0.95);
    transition: all 1.2s ease-out;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.7));
}

.logo-final.show {
    opacity: 1;
    transform: scale(1);
}

.logo-text {
    position: absolute;
    bottom: calc(50% + 80px);
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
    transition: all 1.5s ease-out;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.15em;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.4);
}

.logo-text.show {
    opacity: 1;
    transform: translateY(0);
}

.logo-text p {
    position: static !important;
    display: block !important;
    text-align: center !important;
    color: #fff !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    font-size: 1.1rem !important;
    padding: .7em 0 !important;
    margin: 0 auto !important;
}

.logo-sub-eng {
    padding: 0.7em 0;
}

/* =================================================
   3. Special Visual Effects (Spiral & Glow & Cherry)
   ================================================= */
.spiral-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    perspective: 1500px;
}

.spiral-img {
    position: absolute;
    width: 260px;
    aspect-ratio: 4/3;
    object-fit: cover;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translate(-50%, -50%) translateZ(0);
}

.from-left {
    animation: strongMixFromLeft 4s cubic-bezier(0.15, 0, 0.15, 1) forwards;
}

.from-right {
    animation: strongMixFromRight 4s cubic-bezier(0.15, 0, 0.15, 1) forwards;
}

@keyframes strongMixFromLeft {
    0% {
        transform: translate3d(-250%, -50%, 600px) rotateY(45deg) scale(1.6);
        opacity: 0;
    }

    15% {
        opacity: 0.7;
    }

    75% {
        opacity: 0.7;
        filter: blur(0px) brightness(1);
    }

    100% {
        transform: translate3d(-50%, -50%, -400px) rotateY(0deg) scale(0.1);
        opacity: 0;
        filter: blur(10px) brightness(3);
    }
}

@keyframes strongMixFromRight {
    0% {
        transform: translate3d(150%, -50%, 600px) rotateY(-45deg) scale(1.6);
        opacity: 0;
    }

    15% {
        opacity: 0.7;
    }

    75% {
        opacity: 0.7;
        filter: blur(0px) brightness(1);
    }

    100% {
        transform: translate3d(-50%, -50%, -400px) rotateY(0deg) scale(0.1);
        opacity: 0;
        filter: blur(40px) brightness(3);
    }
}

.bg-flash {
    animation: bgGlow 1.8s ease-out forwards !important;
}

@keyframes bgGlow {
    0% {
        filter: brightness(1.0) blur(0px);
    }

    15% {
        filter: brightness(3.0) blur(10px);
    }

    100% {
        filter: brightness(1.0) blur(0px);
    }
}

.center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    display: none;
    z-index: 5;
}

.glow {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: flash 1.2s ease-out forwards;
}

@keyframes flash {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.cherry-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.petal-wrapper {
    position: absolute;
    top: -10vh;
    animation: fallOnly linear forwards;
}

.petal {
    background: linear-gradient(135deg, #fdeff4 0%, #f8d7e3 50%, #f5c6d8 100%);
    border-radius: 80% 0 70% 30%;
    animation: swayOnly ease-in-out infinite;
}

.petal-wrapper.near .petal {
    width: 22px;
    height: 16px;
    filter: blur(1.5px);
}

.petal-wrapper.mid .petal {
    width: 14px;
    height: 10px;
}

.petal-wrapper.far .petal {
    width: 8px;
    height: 6px;
}

@keyframes fallOnly {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translate3d(0, 115vh, 0);
        opacity: 0;
    }
}

@keyframes swayOnly {

    0%,
    100% {
        transform: translateX(-30px) rotate(15deg);
    }

    50% {
        transform: translateX(30px) rotate(15deg);
    }
}

/* =================================================
   4. Scroll Indicators & Navigation UI
   ================================================= */
.scrolldown-wrapper {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    pointer-events: auto;
    text-decoration: none;
    cursor: pointer;
    animation: fadeInScrollIndicator 1.5s ease-out 11s forwards;
    transition: all 0.3s ease;
}

.scrolldown-wrapper:hover {
    transform: translate(-50%, -5px);
    opacity: 1 !important;
}

.scrolldown-wrapper:hover span {
    text-shadow: 0 0 15px #fff;
}

.scrolldown-wrapper:hover .scrolldown-arrow {
    background: rgba(255, 255, 255, 0.4);
}

@keyframes fadeInScrollIndicator {
    0% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }

    100% {
        opacity: 0.9;
        transform: translate(-50%, 0);
    }
}

.scrolldown-wrapper span {
    font-size: 0.8rem;
    font-family: 'EB Garamond', serif;
    letter-spacing: 0.4em;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.scrolldown-arrow {
    width: 2px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scrolldown-arrow::after {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLine 1.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes scrollLine {

    0%,
    20% {
        top: -80px;
    }

    60% {
        top: 0;
    }

    100% {
        top: 80px;
    }
}

.hamburger {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 200;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: 0.4s;
}

.hamburger span {
    width: 25px;
    height: 1px;
    background: #fff;
    transition: 0.4s;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 190;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 100px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}

.global-nav.is-active {
    opacity: 1;
    visibility: visible;
}

.nav-list {
    list-style: none;
    text-align: center;
}

.nav-list li {
    margin-bottom: 40px;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    letter-spacing: 0.2em;
    display: block;
    transition: 0.3s;
}

.nav-list a span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
}

.nav-list a:hover {
    color: #be0032;
}

.nav-list a img {
    max-height: 2em;
}

/* =================================================
   5. Common Layout & Animation Components
   ================================================= */
.scroll-section {
    position: relative;
    z-index: 30;
    width: 100%;
    padding: 140px 0;
    box-sizing: border-box;
}

.container-inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.fade-in-content {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s ease, transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-active .fade-in-content {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.is-active .fade-in-content:nth-child(n+2) {
    transition-delay: 0.4s;
}

/* =================================================
   6. Individual Page Sections (Top)
   ================================================= */
.section-about {
    background: #ffffff;
}

.section-message {
    background: #fdfaf5;
}

.message-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.message-text {
    flex: 1.2;
}

.message-highlight {
    text-decoration: underline;
    font-size: 120%;
}

.last-sentence {
    display: block !important;
    width: fit-content !important;
    margin-left: auto !important;
    text-align: right;
}

.line-cta-wrapper {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 80px auto 0;
    background: #f9f9f9;
    padding: 60px 40px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    text-align: center;
}

.line-cta-inner {
    width: 100%;
    margin: 0 auto;
}

.line-cta-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.1em;
}

.line-story-text {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.line-story-text span {
    display: inline-block;
}

.highlight-text {
    display: inline-block;
    color: #be0032;
    font-weight: 700;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #06c755;
    padding: 16px 50px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    gap: 15px;
    transition: all 0.3s ease;
}

.line-icon-img {
    max-height: 1.5em;
    object-fit: contain;
    display: block;
}

.btn-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(6, 199, 85, 0.4);
    filter: brightness(1.1);
}

.inquiry-section {
    background: #ffffff;
    padding: 120px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.inquiry-inner {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.btn-inquiry {
    display: inline-block;
    padding: 18px 60px;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-inquiry:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* =================================================
   7. Partner & Sponsor Section
   ================================================= */
.sponsor-section {
    position: relative;
    padding: 120px 0;
    background-color: #11151a;
    border-bottom: 1px solid #d4af37;
    z-index: 10;
}

.sponsor-header {
    text-align: center;
    margin-bottom: 60px;
}

.sponsor-header h2 {
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-family: 'Noto Serif JP', serif;
}

.top-partner-margin {
    margin-top: 50px;
}

.category-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.category-title::before,
.category-title::after {
    content: "";
    width: 30px;
    height: 1px;
    background-color: #d4af37;
    opacity: 0.6;
}

.sponsor-category:first-of-type .category-title {
    margin-top: 20px;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.logo-item {
    background: #ffffff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    width: 200px;
    height: 60px;
    padding: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.logo-item img,
.logo-item a img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.sponsor-provider-group {
    margin-top: 120px;
    padding-top: 40px;
}

.provider-main-title {
    background: transparent;
    color: #d4af37;
    text-align: center;
    padding: 15px 0;
    font-size: 1.5rem;
    font-family: 'EB Garamond', serif;
    letter-spacing: 0.3em;
    margin: 0 auto 60px;
    max-width: 600px;
    position: relative;
}

.provider-main-title::before,
.provider-main-title::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.provider-main-title::before {
    top: 0;
}

.provider-main-title::after {
    bottom: 0;
}

.category-title.sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
    margin-bottom: 25px;
}

/* =================================================
   8. Sub Page Navigation & Header Styles
   ================================================= */
.sub-header {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #000;
    z-index: 10;
}

.sub-page-bgContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg_sub.jpg') no-repeat center bottom/cover;
    filter: brightness(0.7) contrast(1.1);
    z-index: -1;
}

.logo-area-sub {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

#logoFinalSub {
    width: auto;
    height: 80px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    transition: none;
}

#subCherryContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

/* =================================================
   9. Donation Page Specific Content Styles
   ================================================= */
#donationContent {
    background-color: #fff;
    padding-top: 40px !important;
}

.donation-block {
    padding: 40px 0;
}

.donation-lead {
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 2;
}

.donation-lead span {
    display: inline-block;
    vertical-align: top;
}

.donation-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 60px auto;
    width: 80%;
    opacity: 0.5;
}

.purpose-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.purpose-item {
    flex: 1;
    background: #fdfaf5;
    padding: 35px 25px;
    border-top: 3px solid #be0032;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.purpose-item h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.purpose-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.use-list {
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
}

.use-item {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 20px;
}

.use-item span {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    color: #d4af37;
    font-weight: 600;
}

.donation-table {
    width: 100%;
    max-width: 850px;
    margin: 40px auto 0;
    border-collapse: collapse;
    text-align: left;
}

.donation-table tr {
    border-bottom: 1px solid #ddd;
}

.donation-table th {
    width: 25%;
    padding: 25px 20px;
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    color: #1a1a1a;
    background: #fdfaf5;
    vertical-align: top;
    font-weight: 600;
}

.donation-table td {
    padding: 25px 20px;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    vertical-align: top;
}

.donation-table td strong {
    color: #be0032;
}

.donation-info-wrapper {
    max-width: 850px;
    margin: 80px auto 40px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 50px 40px;
    display: flex;
    gap: 50px;
    text-align: left;
}

.info-block {
    flex: 1;
}

.info-block h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    border-left: 3px solid #999999;
    padding-left: 12px;
}

.info-dl dt {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.info-dl dd {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-dl dd a {
    color: #be0032;
    text-decoration: none;
}

.privacy-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

.donation-action {
    margin: 60px 0 20px;
    text-align: center;
}

/* =================================================
   10. Donation Page Header & Title Component
   ================================================= */
.page-header-title {
    width: 100%;
    background-color: #fdfaf5;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px 0 60px 0;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.page-header-inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.page-header-title .sub-title {
    margin-bottom: 20px;
    font-weight: 600;
}

.main-page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 3rem;
    color: #1a1a1a;
    line-height: 1.4;
    letter-spacing: 0.15em;
    display: inline-block;
    position: relative;
    padding: 25px 0;
    margin: 0;
    font-weight: 700;
}

.main-page-title::before,
.main-page-title::after {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37 20%, #d4af37 80%, transparent);
}

.main-page-title::before {
    top: 0;
}

.main-page-title::after {
    bottom: 0;
}

.main-page-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.5em;
    color: #be0032;
    margin-top: 25px;
    font-weight: 600;
    text-indent: 0.5em;
}

#donationContent .page-header-title,
#donationContent .page-header-title *,
#donationContent .donation-block:first-of-type,
#donationContent .donation-block:first-of-type * {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* =================================================
   11. Donation Benefits Grid Component (Menu)
   ================================================= */
.benefits-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.benefit-card {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.card-header {
    padding: 30px 20px;
    text-align: center;
    color: #fff;
}

.cat-sponsor .card-header {
    background-color: #1a1a1a;
    border-bottom: 4px solid #d4af37;
}

.cat-corp .card-header {
    background-color: #be0032;
    border-bottom: 4px solid #8a0022;
}

.cat-indiv .card-header {
    background-color: #d4af37;
    border-bottom: 4px solid #aa8725;
}

.menu-cate {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.menu-amount {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
    background-color: #fff;
}

.benefit-row {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.benefit-row:last-child {
    border-bottom: none;
}

.benefit-row dt {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    color: #1a1a1a;
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.cat-sponsor .benefit-row dt {
    border-left: 3px solid #1a1a1a;
}

.cat-corp .benefit-row dt {
    border-left: 3px solid #be0032;
}

.cat-indiv .benefit-row dt {
    border-left: 3px solid #d4af37;
}

.benefit-row dd {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-weight: 600;
    padding-left: 4px;
}

.no-benefit {
    color: #b0b0b0 !important;
    font-weight: normal !important;
}

.benefit-logo-flex {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    line-height: 1;
    vertical-align: middle;
}

.benefit-inline-logo {
    height: 1.3em;
    width: auto;
    object-fit: contain;
    display: block;
    margin-right: 0;
    position: relative;
    top: -0.05em;
}

/* =================================================
   12. Floating Action Button Component (Top Page Fixed)
   ================================================= */
.btn-fixed-donation {
    position: fixed;
    top: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #be0032;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.btn-donation-text {
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.btn-divider {
    width: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
    display: block;
}

.btn-fixed-donation:hover {
    background-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* =================================================
   13. Footer Layout
   ================================================= */
.footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.footer-content p {
    color: #999;
}

.footer-brand {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-logo-img {
    height: 90px !important;
    margin-bottom: 10px;
}

.footer-logo-text {
    font-size: 1.6rem;
    color: #fff;
}

.footer-logo-text span {
    color: #be0032;
    margin-right: 0.2em;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
}

p.copyright {
    text-align: right;
    color: #999;
}

p.credit {
    border-top: solid 1px #fff;
    font-size: 90%;
    text-align: right;
    margin-top: .5em;
    line-height: 1;
    padding-top: .5em;
    padding-left: .7em;
}

/* =================================================
   14. Responsive Layout (Mobile Devices)
   ================================================= */
@media (max-width: 950px) {
    .benefit-logo-flex {
        display: inline-flex;
        justify-content: flex-start;
        width: auto;
        line-height: 1;
    }

    .benefits-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .benefit-card {
        margin-bottom: 35px;
    }

    .benefit-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefit-row dt {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .benefit-row dd {
        text-align: left;
        font-size: 0.95rem;
        width: 100%;
        padding-left: 8px;
    }

    .location-detail {
        text-align: left;
    }
}

@media (max-width: 850px) {
    p {
        font-size: 1rem;
    }

    .scroll-section {
        padding: 80px 0;
    }

    .s-title {
        text-align: center;
    }

    .scrolldown-wrapper {
        bottom: 30px;
    }

    .scrolldown-wrapper span {
        font-size: 0.7rem;
        letter-spacing: 0.3em;
    }

    .scrolldown-arrow {
        height: 50px;
        width: 1px;
    }

    @keyframes scrollLine {

        0%,
        20% {
            top: -50px;
        }

        60% {
            top: 0;
        }

        100% {
            top: 50px;
        }
    }

    .section-about h2,
    .section-message h2,
    .inquiry-section h2,
    .timeline-header h3 {
        font-size: 1.5rem !important;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .message-layout {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .message-image {
        border-left: none !important;
        border-bottom: 3px solid #be0032;
        padding-left: 0 !important;
        padding-bottom: 15px;
        max-width: 280px;
        margin: 0 auto;
    }

    .timeline-header {
        padding: 0 20px;
    }

    .line-cta-wrapper {
        margin: 60px 15px 0;
        padding: 40px 20px;
    }

    .inquiry-inner {
        width: 85%;
    }

    .btn-inquiry {
        padding: 16px 40px;
        width: 80%;
        max-width: 300px;
    }

    .footer-content {
        justify-content: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .pc-only {
        display: none;
    }

    .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
    }

    .copyright,
    p.copyright,
    p.credit {
        text-align: center;
    }

    .copyright {
        font-size: 0.55rem !important;
        letter-spacing: 0.05em;
        opacity: 0.5;
        line-height: 1.5;
        padding: 0 10px;
        color: #fff;
    }

    p.credit {
        padding: 0 1em;
    }

    .sub-header {
        height: 140px;
    }

    #logoFinalSub {
        height: 80px;
    }

    .donation-lead {
        font-size: 1rem;
        text-align: justify !important;
    }

    .purpose-grid {
        flex-direction: column;
        gap: 20px;
    }

    .use-item {
        font-size: 1rem;
        padding: 15px 5px;
    }

    .donation-table,
    .donation-table tbody,
    .donation-table tr,
    .donation-table th,
    .donation-table td {
        display: block;
        width: 100%;
    }

    .donation-table tr {
        border-bottom: none;
        margin-bottom: 25px;
        background: #fff;
        border: 1px solid #eee;
    }

    .donation-table th {
        width: 100%;
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
    }

    .donation-table td {
        padding: 15px;
    }

    .donation-info-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 30px 20px;
        margin: 40px 0;
    }

    .info-block h3 {
        margin-bottom: 15px;
    }

    .page-header-title {
        padding: 50px 0;
    }

    .main-page-title {
        font-size: 1.8rem;
        padding: 15px 0;
        display: block;
        letter-spacing: 0.05em;
    }

    .main-page-subtitle {
        font-size: 0.85rem;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .global-nav {
        padding: 60px 0 !important;
        align-items: flex-start !important;
        display: flex !important;
    }

    .nav-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .nav-list li {
        margin-bottom: 25px !important;
    }

    .nav-list a {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
    }

    .nav-list a span {
        font-size: 0.7rem !important;
    }

    .nav-list li:last-child {
        margin-top: 20px !important;
        margin-bottom: 0 !important;
    }

    .nav-list li img {
        width: 160px !important;
        max-width: 70% !important;
        height: auto !important;
        opacity: 1 !important;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    }

    .btn-fixed-donation {
        top: 100px;
        right: 30px;
    }
}


/* =================================================
   extra
   ================================================= */
.btn-donation-submit {
    background: #1a1a1a !important;
    color: #fff !important;
    width: 100%;
    max-width: 400px;
}

.policy a {
    text-decoration: none;
    color: #999;

}

/* =================================================
   about section
   ================================================= */
.about-lead-block {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-lead-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    color: #be0032;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.about-lead-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
    text-align: center;
}

.about-lead-text span {
    display: inline-block;
    vertical-align: top;
}

.about-vision-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.about-vision-card {
    flex: 1;
    background: #fdfaf5;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border-top: 3px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, border-top-color 0.3s ease;
}

.about-vision-card:hover {
    transform: translateY(-5px);
    border-top-color: #be0032;
}

.card-num {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    color: #d4af37;
    letter-spacing: 0.05em;
}

.about-vision-card h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.about-vision-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

@media (max-width: 850px) {
    .about-lead-title {
        font-size: 1.2rem;
    }

    .about-lead-text {
        font-size: 1rem;
        text-align: justify;
    }

    .about-vision-grid {
        flex-direction: column;
        gap: 20px;
    }

    .about-vision-card {
        padding: 30px 25px;
    }

    .about-vision-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
}



@media (max-width: 850px) {
    .line-cta-wrapper {
        width: calc(100% - 30px);
        margin: 60px 15px 0;
        padding: 40px 20px;
    }

    .line-cta-inner h3 {
        font-size: 1.4rem;
    }

    .line-story-text {
        font-size: 0.95rem;
        text-align: justify;
    }

    .btn-line {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}


/* =================================================
   donation-action
   ================================================= */
.donation-action-group {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 950px;
    margin: 60px auto 0;
    text-align: center;
}

.action-box {
    flex: 1;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.action-box-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    text-align: left;
    margin-bottom: 30px;
}

.action-btn-wrapper {
    margin-top: auto;
    width: 100%;
}

.donation-action-group .btn-donation-submit {
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
    padding: 20px 20px;
}

.btn-action-primary {
    background: #be0032 !important;
    color: #ffffff !important;
    border-color: #be0032 !important;
}

.btn-action-primary:hover {
    background: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

.btn-action-secondary {
    background: #ffffff !important;
    color: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

.btn-action-secondary:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border-color: #1a1a1a !important;
}

@media (max-width: 850px) {
    .donation-action-group {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .action-box {
        padding: 30px 20px;
    }

    .action-box-text {
        margin-bottom: 20px;
    }

    .action-btn-wrapper {
        margin-top: 0;
    }
}



/* =================================================
   btn-fixed
   ================================================= */
.btn-fixed-donation {
    position: fixed;
    top: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #be0032;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.btn-fixed-donation.sub-active-red {
    background-color: #d4af37 !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.btn-fixed-donation.sub-active-red:hover {
    background-color: #1a1a1a !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

.btn-fixed-line-official {
    position: fixed;
    top: 180px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #06C755;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.btn-fixed-line-official:hover {
    background-color: #05b34c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-line-text-official {
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .btn-fixed-donation {
        top: 105px;
        right: 30px;
    }

    .btn-fixed-donation.sub-active-red {
        top: 100px !important;
        right: 30px !important;
    }

    .btn-fixed-line-official {
        display: none !important;
    }
}


/* =================================================
   Event Section Styles 
   ================================================= */
.event-section {
    background: #ffffff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.event-section::before {
    content: "100th";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    font-family: 'EB Garamond', serif;
    font-size: 22vw;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.03);
    letter-spacing: -0.02em;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
}

.event-card-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    z-index: 1;
}

.event-image-visual {
    background-image: url('ev_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 60px;
    position: relative;
    z-index: 1;
}

.event-image-visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 10, 12, 0.95) 0%, rgba(20, 24, 30, 0.75) 50%, rgba(10, 12, 15, 0.95) 100%);
    z-index: -1;
}

.event-image-visual::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #be0032 0%, #d4af37 15%, #be0032 30%, #d4af37 70%, #be0032 85%, #d4af37 100%);
    background-size: 200% auto;
}

.event-status-badge {
    display: inline-block;
    font-family: 'EB Garamond', serif;
    font-size: 0.85rem;
    color: #ffffff;
    background: #be0032;
    padding: 4px 16px;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    font-weight: 600;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(190, 0, 50, 0.4);
    text-transform: uppercase;
}

.event-image-visual h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 0.08em;
    font-weight: 700;
    background: linear-gradient(to bottom, #ffffff 30%, #f2ebd9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.event-catch {
    color: #d4af37 !important;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.35rem !important;
    line-height: 1.6;
    border-left: 4px solid #d4af37;
    padding-left: 20px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}

.event-details-content {
    padding: 60px 50px;
    background: #ffffff;
}

.event-purpose {
    font-size: 1.05rem;
    color: #2c2c2c;
    line-height: 1.9;
    margin-bottom: 45px;
    font-weight: 500;
}

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

.event-info-table tr {
    border-bottom: 1px solid #f5f5f5;
}

.event-info-table tr:last-child {
    border-bottom: none;
}

.event-info-table th {
    width: 22%;
    padding: 22px 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 700;
    vertical-align: top;
    letter-spacing: 0.05em;
}

.event-info-table td {
    padding: 22px 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    vertical-align: top;
}

.coming-soon-text {
    color: #be0032;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .event-section {
        padding: 80px 0 50px;
    }

    .event-image-visual {
        padding: 60px 24px;
    }

    .event-image-visual h3 {
        font-size: 1.75rem;
    }

    .event-catch {
        font-size: 1.1rem !important;
    }

    .event-details-content {
        padding: 40px 24px;
    }

    .event-info-table th,
    .event-info-table td {
        display: block;
        width: 100%;
        padding: 12px 0;
    }

    .event-info-table th {
        padding-bottom: 0;
    }
}

.event-info-table tr:nth-child(2) th,
.event-info-table tr:nth-child(2) td {
    vertical-align: top !important;
}

.event-location-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.event-location-text {
    line-height: 1.2;
    padding-top: 2px;
}

.event-location-thumb {
    width: 140px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.event-location-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .event-location-block {
        gap: 8px;
    }

    .event-location-thumb {
        width: 140px;
        height: 90px;
    }
}

/* =================================================
   sub-page-header_link
   ================================================= */
.logo-area-sub {
    pointer-events: auto !important;
}

.logo-area-sub a {
    display: block;
    cursor: pointer;
    pointer-events: auto !important;
}

/* =================================================
   iphone-safari
   ================================================= */
@media (max-width: 768px) {

    .sponsor-section .fade-in-content,
    #sponsorSection .container-inner {
        opacity: 1 !important;
        visibility: visible !important;
    }
}


/* =================================================
   forum
   ================================================= */
.event-crown-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.05rem !important;
    font-weight: 600;
    color: #d4af37 !important;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
    text-align: left !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.event-main-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.3rem !important;
    font-weight: 700;
    line-height: 1.4 !important;
    letter-spacing: 0.05em !important;
    background: linear-gradient(to bottom, #ffffff 40%, #f2ebd9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    text-align: left !important;
    margin: 0 !important;
}

.event-section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    border-left: 4px solid #be0032;
    padding-left: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.event-purpose-section {
    margin-bottom: 50px;
}

.event-purpose-text {
    font-size: 1.05rem;
    color: #333;
    line-height: 2;
    margin-bottom: 15px;
    text-align: justify;
}

.event-purpose-text:last-child {
    margin-bottom: 0;
}

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

.event-info-table tr:nth-child(3) th,
.event-info-table tr:nth-child(3) td {
    vertical-align: top !important;
}

.event-speakers-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #eee;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.general-speakers-margin {
    margin-top: 40px;
}

.speaker-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fdfaf5;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.speaker-thumb {
    width: 90px;
    height: 110px;
    border-radius: 4px;
    overflow: hidden;
    background: #fdfaf5;
    flex-shrink: 0;
    border: 1px solid #ddd;
    transform: translateZ(0);
}

.speaker-thumb img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
}

.speaker-info {
    flex: 1;
}

.speaker-title {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    color: #666 !important;
    margin-bottom: 8px;
    text-align: left !important;
}

.speaker-title.font-small {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
    letter-spacing: -0.02em;
}

.speaker-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.15rem;
    color: #1a1a1a;
    font-weight: 700;
}

.speaker-note {
    font-size: 0.8rem !important;
    color: #999 !important;
    margin-top: 15px;
    text-align: left !important;
}

.event-footer-message {
    margin-top: 50px;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 6px;
    text-align: center;
}

.event-footer-message p {
    font-size: 1.05rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.8;
    text-align: center !important;
}

@media (max-width: 768px) {
    .event-crown-title {
        font-size: 0.85rem !important;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .event-main-title {
        font-size: 1.4rem !important;
        line-height: 1.5 !important;
    }

    .event-section-title {
        font-size: 1.15rem;
    }

    .speakers-grid {
        grid-template-columns: 100%;
        gap: 20px;
    }

    .general-speakers-margin {
        margin-top: 20px;
    }

    .speaker-card {
        padding: 15px;
    }

    .speaker-thumb {
        width: 80px;
        height: 100px;
    }

    .speaker-name {
        font-size: 1.05rem;
    }

    .speaker-title.font-small {
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
    }

    .event-footer-message {
        padding: 20px;
    }

    .event-footer-message p {
        font-size: 0.95rem;
        text-align: justify !important;
    }
}
