/* -----------------------------
   全体リセット・基本設定
----------------------------- */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: #222;
    line-height: 1.5;
}

/* -----------------------------
   画像（最初のプロモ画像）
----------------------------- */
.centered-image-container {
    text-align: center;
    margin: 20px 0;
}

.centered-image-container img {
    max-width: 100%;
    height: auto;
}

/* -----------------------------
   メディア（YouTube + SoundCloud）
----------------------------- */
.media-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* スマホで縦並びになる */
    margin: 20px 0;
}

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

.media-item iframe,
.media-item img {
    max-width: 100%;
    height: auto;
}

/* -----------------------------
   スケジュール
----------------------------- */
.image-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    padding: 0 15px;
}

.schedule-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.schedule-divider {
    text-align: left;
    color: #999;
    margin: 10px 0;
}

.schedule-item {
    margin-bottom: 20px;
}

.schedule-date,
.schedule-location,
.schedule-time,
.schedule-ticket {
    font-size: 1rem;
    margin: 2px 0;
}

.link {
    color: #0073e6;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* -----------------------------
   SNSリンク
----------------------------- */
.centered {
    text-align: center;
    margin: 20px 0;
}

.centered p {
    margin: 10px 0;
}

.centered img {
    vertical-align: middle;
}

/* -----------------------------
   ライセンス
----------------------------- */
.license-text {
    font-size: 0.9rem;
    margin: 5px 0;
}

.license-text a {
    color: #0073e6;
    text-decoration: none;
}

.license-text a:hover {
    text-decoration: underline;
}

/* -----------------------------
   レスポンシブ調整
----------------------------- */
@media screen and (max-width: 768px) {
    .media-container {
        flex-direction: column; /* スマホは縦並び */
        gap: 15px;
    }

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

    .schedule-date,
    .schedule-location,
    .schedule-time,
    .schedule-ticket {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .schedule-title {
        font-size: 1.3rem;
    }

    .schedule-date,
    .schedule-location,
    .schedule-time,
    .schedule-ticket {
        font-size: 0.9rem;
    }

    .media-item iframe,
    .media-item img {
        width: 100%;
    }
}
