/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7b4397 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 30%, rgba(255,255,255,0.05) 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255,255,255,0.05) 30%, rgba(255,255,255,0.05) 70%, transparent 70%);
    background-size: 60px 60px;
    opacity: 0.3;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #ff9800;
    color: #fff;
}

.btn-primary:hover {
    background-color: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.btn-green {
    background-color: #4caf50;
    color: #fff;
    width: 100%;
}

.btn-green:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.btn-blue {
    background-color: #2196f3;
    color: #fff;
    width: 100%;
}

.btn-blue:hover {
    background-color: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

/* Results Section */
.section-results {
    background: linear-gradient(to bottom, #e3f2fd 0%, #f5f5f5 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.result-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.result-icon {
    color: #2196f3;
    margin-bottom: 20px;
}

.result-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.result-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Why Section */
.section-why {
    background: #fff;
}

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

.why-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: #7b4397;
    box-shadow: 0 8px 30px rgba(123, 67, 151, 0.2);
}

.why-icon {
    color: #7b4397;
    margin-bottom: 20px;
}

.why-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.why-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Details Section */
.section-details {
    background: #f5f5f5;
}

.details-box {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.venue-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #2196f3;
}

.venue-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.venue-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.venue-text strong {
    color: #2196f3;
    font-weight: 700;
}

.details-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 30px;
}

.date-icon {
    color: #2196f3;
}

.dates-text {
    text-align: left;
}

.date-item {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
}

/* Pricing Section */
.section-pricing {
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card-lump {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.pricing-card-installment {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.pricing-type {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.pricing-amount {
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: 900;
    color: #2c3e50;
}

.tax {
    font-size: 18px;
    color: #666;
}

.times {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.pricing-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Target Section */
.section-target {
    background: #f5f5f5;
}

.target-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.target-icon {
    font-size: 24px;
    color: #4caf50;
    font-weight: 700;
}

.target-text {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

/* FAQ Section */
.section-faq {
    background: #fff;
}

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

.faq-item {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #7b4397;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(123, 67, 151, 0.15);
    transform: translateX(5px);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-q {
    background: #7b4397;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
    padding-top: 4px;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-left: 0;
}

.faq-a {
    background: #2196f3;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-answer-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    padding-top: 4px;
}

.faq-answer-text strong {
    color: #2196f3;
    font-weight: 700;
}

/* Host Section */
.section-host {
    background: #f5f5f5;
}

.host-card {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.host-image {
    flex-shrink: 0;
}

.host-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.host-info {
    flex: 1;
}

.host-name {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #2c3e50;
}

.host-title {
    font-size: 16px;
    font-weight: 700;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.host-bio {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff9800;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #bbb;
    padding-top: 30px;
    border-top: 1px solid #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .results-grid,
    .why-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .host-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .host-image img {
        width: 200px;
        height: 200px;
    }

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

    .details-dates {
        flex-direction: column;
        text-align: center;
    }

    .dates-text {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section {
        padding: 50px 0;
    }

    .btn {
        padding: 14px 32px;
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
