:root {
    --primary-color: #4A7DAF;
    /* Lighter Navy */
    --secondary-color: #1A5F7A;
    /* Muted Blue */
    --accent-color: #FFD700;
    /* Gold */
    --accent-hover: #E6C200;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --alert-bg: #FFF3CD;
    --alert-text: #856404;
    --font-main: 'Noto Sans JP', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--white);
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Helpers */
.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.highlight {
    background: linear-gradient(transparent 60%, var(--accent-color) 60%);
    font-weight: bold;
    padding: 0 5px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #E60012;
    /* Strong Red for CTA */
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(230, 0, 18, 0.4);
    text-align: center;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background-color: #C4000F;
    transform: translateY(-3px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(230, 0, 18, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 0, 18, 0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 125, 175, 0.6);
}

.hero-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.hero-catch {
    font-size: 1.2rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.hero h1 {
    margin-bottom: 1rem;
}

.main-title {
    display: block;
    font-size: 4rem;
    /* Larger than main-copy */
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.main-copy {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-sub {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Sections General */
.section {
    padding: 6rem 0;
}

/* Intro Section */
.intro {
    background-color: var(--white);
    text-align: center;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 2rem 0;
}

/* Problem Section */
.problem {
    background-color: var(--bg-light);
}

.check-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.check-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 1.5rem;
}

.check-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--white);
    background: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.problem-footer {
    text-align: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Root Cause */
.root-cause {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.root-cause .section-title {
    color: var(--white);
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.cause-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 10px;
}

.cause-content p {
    margin-bottom: 1rem;
}

.cause-conclusion {
    margin-top: 2rem;
    font-size: 1.3rem;
    text-align: center;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 700;
}

/* Crisis */
.crisis {
    background-color: var(--white);
    text-align: center;
}

.crisis-content {
    max-width: 800px;
    margin: 0 auto;
}

.highlight-alert {
    font-size: 2rem;
    font-weight: 900;
    color: #E60012;
    margin-top: 2rem;
    border: 3px solid #E60012;
    display: inline-block;
    padding: 1rem 3rem;
}

/* Worst Future */
.worst-future {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.worst-future .section-title {
    color: var(--white);
}

.worry-list {
    list-style: none;
    margin: 2rem 0;
}

.worry-list li {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.highlight-danger {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hope-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-top: 2rem;
}

/* Solution */
.solution {
    background-color: var(--bg-light);
}

.solution-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-sub {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.solution-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.2;
}

.solution-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

.features-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.features-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-img {
    flex: 1;
    height: 400px;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-text {
    flex: 1;
    padding: 4rem;
}

.feature-text h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Profile Section */
.profile {
    background-color: var(--white);
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.profile-img {
    flex: 1;
    max-width: 400px;
}

.profile-img img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.profile-text {
    flex: 1.5;
}

.profile-name-role {
    margin-bottom: 2rem;
}

.profile-role {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-color);
}

.profile-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.profile-credo {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.credo-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.credo-list {
    list-style: none;
}

.credo-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 700;
}

.credo-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.achievements {
    margin-top: 4rem;
}

.achievements-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.achievement-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .profile-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-img {
        margin: 0 auto;
    }

    .profile-credo {
        text-align: left;
    }

    /* Hero Mobile Fixes */
    .hero {
        height: auto;
        /* Allow content to dictate height */
        min-height: 100vh;
        padding: 4rem 0;
        /* Add top/bottom padding */
    }

    .hero-content {
        padding: 1rem;
    }

    .main-title {
        font-size: 2.5rem;
        /* Reduce font size */
    }

    .hero-catch {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .hero-sub {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        /* Make full width on mobile */
        max-width: 300px;
    }
}

.disclaimer-text {
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 1px solid #eee;
}

.pricing-card.recommended {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
    position: relative;
}

.pricing-card.recommended::before {
    content: "おすすめ";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.9rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
}

.price-box {
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.2rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #E60012;
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    color: #333;
    font-weight: 700;
}

.refund-policy {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}

.refund-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.refund-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 900;
    color: #E60012;
    line-height: 1;
}

.price-small {
    font-size: 1rem;
    color: #666;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* Location Section */
.location {
    background-color: var(--white);
    text-align: center;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .location-image {
        max-width: 100%;
    }
}

.location-address {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Closing */
.closing {
    background: linear-gradient(rgba(74, 125, 175, 0.8), rgba(74, 125, 175, 0.8)), url('IMG_4374.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.closing .section-title {
    color: var(--white);
}

.voice-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 600px;
    font-style: italic;
}

.voice-box p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.final-message {
    font-size: 1.5rem;
    font-weight: 900;
    margin-top: 3rem;
    color: var(--accent-color);
}

/* FAQ */
.faq {
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-q {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-a {
    padding: 2rem;
    background: var(--bg-light);
}

/* Contact */
.contact {
    background-color: var(--bg-light);
    text-align: center;
}

.cta-label {
    font-size: 1.5rem;
    font-weight: 900;
    color: #E60012;
    margin-bottom: 1rem;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.form-wrapper {
    max-width: 800px;
    margin: 2rem auto 0;
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-copy {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
    }

    .feature-img {
        width: 100%;
        height: 250px;
    }

    .feature-text {
        padding: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.2rem;
        width: 100%;
    }

    .cause-content {
        padding: 1.5rem;
    }
}

/* Athlete Results Section */
.section--athlete-results {
    background-color: var(--bg-light);
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.section-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-top: 1.5rem;
}

.athlete-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.athlete-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.athlete-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.athlete-card__header {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    position: relative;
}

.athlete-card__tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 900;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.athlete-card__title {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.athlete-card__summary {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.athlete-card__body {
    padding: 2rem;
}

.athlete-card__list {
    list-style: none;
}

.athlete-card__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px dashed #eee;
    padding-bottom: 1rem;
}

.athlete-card__list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.athlete-card__list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--primary-color);
    font-weight: 900;
}

/* Recommended Ticket Styling */
.ticket-item.recommended-ticket {
    background-color: var(--alert-bg);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 1rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ticket-item.recommended-ticket::before {
    content: "おすすめ";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-weight: 900;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Mobile Fix for Athlete Results */
@media (max-width: 768px) {
    .athlete-results-grid {
        grid-template-columns: 1fr;
        /* Force single column */
    }

    .athlete-card {
        margin: 0 auto;
        /* Center cards */
        width: 100%;
        max-width: 100%;
    }

    .section--athlete-results .container {
        width: 100%;
        padding: 0 1rem;
    }
}