.info {
    padding: 60px 20px;
    background: transparent;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.info-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.info-title {
    margin: 0;
    padding: 0;
    animation-delay: 0.2s;
}

.info-title-image {
    max-width: 420px;
    height: auto;
    margin-bottom: 1rem;
}

.info-content {
    color: #fff;
    text-align: center;
}

.info-date {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    color: #FFE500;
    animation-delay: 0.4s;
}

.info-date small {
    font-size: 1.8rem;
    font-weight: normal;
}

.info-time-venue {
    margin-bottom: 5rem;
    animation-delay: 0.6s;
}

.info-time,
.info-venue {
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.05em;
}

.info-time small {
    font-size: 1.2rem;
}

.info-main-message {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 700;
    margin-bottom: 8rem;
    letter-spacing: 0.05em;
    animation-delay: 0.8s;
}

.info-sub-message {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 700;
    margin-bottom: 5rem;
    max-width: 800px;
    text-align: center;
    letter-spacing: 0.05em;
    animation-delay: 1s;
}

.info-sub-message p {
    font-size: 1.5rem;
    margin: 0;
    text-align: justify;
}

.info-table {
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 20px 10px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}

.info-table th {
    text-align: right;
    font-weight: normal;
    padding-right: 1rem;
    vertical-align: top;
    white-space: nowrap;
}

.info-table td {
    text-align: left;
}

.info-sub-content {
    margin: 4rem 0;
    text-align: center;
}

.info-sub-heading {
    color: #000;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.info-sub-description {
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.info-sub-image-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.info-sub-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-sub-image:hover {
    transform: translateY(-5px);
}

/* フェードインアニメーションの定義 */
/* フェードイン用のベース設定 */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Intersection Observerで付与されるクラス */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight {
    color: #FFE500; /* トマト色 */
}
/* レスポンシブ対応を更新 */
@media screen and (max-width: 768px) {
    .info-title-image {
        max-width: 300px;
    }

    .info-table {
        border-spacing: 10px 8px;
        font-size: 1.5rem;
    }

    .info-free-badge {
        width: 80px;
        height: 80px;
        left: 10px;
        top: -5px;
    }

    .info-free-badge-text {
        font-size: 1.6rem;
    }

    .info-date {
        font-size: 2.4rem;
        padding: 0 15px;
        word-break: keep-all;
        line-height: 1.6;
    }

    .info-date small {
        font-size: 1.6rem;
        display: inline-block;
    }

    .info-time,
    .info-venue {
        font-size: 1.6rem;
    }

    .info-main-message {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .info-sub-message {
        font-size: 1.5rem;
        padding: 0 10px;
    }
}

@media (max-width: 1200px) {
    .info-container {
        padding: 0 30px;
    }

    .info-free-badge {
        left: 30px;
    }
}

@media (max-width: 1024px) {
    .info-title {
        font-size: 6rem;
    }

    .info-date {
        font-size: 4.8rem;
    }

    .info-main-message {
        font-size: 1.5rem;
    }

    .info-sub-message {
        font-size: 1.5rem;
        padding: 0 20px;
    }
}

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

    .info-container {
        padding: 0 20px;
    }

    .info-header {
        margin-bottom: 40px;
    }

    .info-title {
        font-size: 4.2rem;
    }

    .info-subtitle {
        font-size: 1.4rem;
    }

    .info-free-badge {
        width: 80px;
        height: 80px;
        left: 10px;
        top: -5px;
    }

    .info-free-badge-text {
        font-size: 1.6rem;
    }

    .info-date {
        font-size: 3.6rem;
    }

    .info-time,
    .info-venue {
        font-size: 1.6rem;
    }

    .info-main-message {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .info-sub-message {
        font-size: 1.5rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .info-date {
        font-size: 2rem;
        padding: 0 10px;
        white-space: normal;
    }

    .info-date small {
        font-size: 1.5rem;
    }
    .info-table {
        font-size: 1.5rem;
    }
}
