﻿body {
    margin: 0;
    background-color: #fff;
    font-family: sans-serif;
    box-sizing: border-box; /* 余白を含めて要素のサイズを計算 */
}

*,
*::before,
*::after {
    box-sizing: inherit; /* 継承 */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    position: relative;
}

.header__logo--small img {
    max-height: 40px;
}

.header__burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 11;
}

    .header__burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #000;
        margin-bottom: 6px;
        transition: all 0.3s ease-in-out;
    }

        .header__burger span:last-child {
            margin-bottom: 0;
        }

    .header__burger.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .header__burger.is-open span:nth-child(2) {
        opacity: 0;
    }

    .header__burger.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0; /* メニューを非表示にする初期設定 */
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    z-index: 9;
}

    .drawer.is-open {
        height: auto; /* メニューを開いた時に自動で高さを調整 */
    }

.drawer__list {
    display: flex;
    flex-direction: column; /* 縦並び */
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 100vh; /* ドロワーが開いた際に画面全体を覆うように */
}

.drawer__item {
    margin: 20px 0;
}

    .drawer__item a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
    }

main {
    padding-top: 60px; /* ヘッダーの高さ */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    padding-left: 60px;
    padding-right: 60px;
    overflow: hidden; /* メインコンテンツがはみ出さないように */
}

/* トップページのメインロゴ */
.header__logo--main img {
    width: 368px;
    height: 460px;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    margin: -50px auto 0; /* 上に移動 (調整済み) */
    opacity: 0; /* 最初は透明にする */
    transition: opacity 1s ease-in-out; /* フェードインのアニメーション */
}

    .header__logo--main img.fade-in {
        opacity: 1; /* fade-in クラスが付与されたら表示 */
    }



/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header {
        padding: 10px 20px;
    }

    .header__logo--small img {
        max-height: 30px;
    }

    main {
        padding-left: 20px;
        padding-right: 20px;
        align-items: center; /* 縦方向中央揃え */
    }

    .header__logo--main img {
        max-width: 100%;
        max-height: 70vh;
    }
}

/* トップページのメインロゴ */
.header__logo--main img {
    width: 368px;
    height: 460px;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    margin: -50px auto 0; /* 上に50px移動 (値は調整可能) */
}

/* フッターエリア */
.footer {
    background-color: #f8f8f8; /* フッターの背景色 */
    color: #333; /* フッターの文字色 */
    padding: 40px 20px;
    text-align: center;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

    .footer__links li {
        display: inline;
        margin: 0 15px;
    }

        .footer__links li a {
            color: #333;
            text-decoration: none;
        }

            .footer__links li a:hover {
                text-decoration: underline;
            }

.footer__copyright {
    font-size: 0.8em;
    margin-top: 10px;
}

    .footer__copyright a {
        color: #333;
        text-decoration: none;
    }

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer {
        padding: 30px 10px;
    }

    .footer__links li {
        margin: 0 10px;
    }
}

/* member.html用のCSS (style.cssに記述) */
.member-visual {
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

    .member-visual h1 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .member-visual p {
        margin-bottom: 0;
    }

.member-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.member-section-title {
    text-align: left;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    width: 100%;
    display: flex; /* Flexbox を使用して要素を配置 */
    align-items: center; /* 垂直方向に中央揃え */
}

    .member-section-title::before,
    .member-section-title::after {
        content: ""; /* 疑似要素の内容を空にする */
        flex: 1; /* Flexbox の flex プロパティで、要素の伸び縮みする比率を指定 */
        height: 2px; /* 線の高さを指定 */
        background-color: #000; /* 線の色を指定 */
        margin: 0 10px; /* タイトルとの間隔を指定 */
    }

    .member-section-title::before {
        margin-left: 0;
    }

    .member-section-title::after {
        margin-right: 0;
    }

.member-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .member-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* PC画面で横並びにする */
@media (min-width: 1024px) {
    .musician-list .member-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .creator-list .member-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .creator-list .member-item {
        /* creator-list の member-item に幅を指定 */
        width: 320px; /* PC では 320px に固定 */
        margin-left: 0; /* 左寄せ */
        margin-right: auto; /* 右マージンをautoに設定 */
    }
}

.member-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

    .member-item img {
        width: 240px;
        height: 240px;
        border-radius: 8%;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .member-item h2 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
        white-space: pre-line;
    }

    .member-item p {
        line-height: 1.7;
        color: #555;
        text-align:left;
    }

.musician-list {
    margin-bottom: 40px;
    width: 100%;
}

.creator-list {
    margin-bottom: 40px;
    width: 100%;
}

main {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
}

/* Topへ戻るボタン */
.back-to-top {
    display: block;
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    text-align: center;
}
/*予約ボタン*/
.re-btn {
    display: block;
    margin:40px auto;
    border-radius: 4px;
    background-color: black;
    width: 200px;
    line-height: 2.8em;
    text-align: center;
    color: white !important;
}
/* スケジュールページ用のCSS */
.schedule-visual {
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

    .schedule-visual h1 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
    }

.schedule-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.schedule-item {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .schedule-item h3 {
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .schedule-item p {
        margin-bottom: 10px;
    }

    .schedule-item a {
        color: #0078d7;
        text-decoration: none;
    }
.schedule-item img{
    width:100%;
    max-width:320px;
}

.schedule-item a:hover {
    text-decoration: underline;
}

#back-to-top {
    display: block;
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    text-align: center;
}
/* soundmovie.html用のCSS */
.soundmovie-visual {
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

    .soundmovie-visual h1 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
    }

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.youtube-slider-container {
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
}

.youtube-slider {
    display: flex;
    flex-wrap: wrap; /* 追加: フレックスボックスの折り返しを有効にする */
    justify-content: flex-start; /* 変更: 左寄せにする */
    padding-bottom: 0; /* 不要なpaddingを削除 */
    margin-bottom: 0; /* 不要なmarginを削除 */
}

    .youtube-slider::-webkit-scrollbar {
        display: none;
    }

    .youtube-slider > div {
        flex: 0 0 auto;
        width: calc(100% / 3);
        padding-right: 10px;
        padding-bottom: 20px; /* 追加: 各要素の下に余白を追加 */
        box-sizing: border-box;
    }

    .youtube-slider iframe {
        width: 100%;
        height: 315px;
        border-radius: 8px;
    }

@media (max-width: 768px) {
    .header {
        padding: 10px 20px;
    }

    .header__logo--small img {
        max-height: 30px;
    }

    main {
        padding-left: 20px;
        padding-right: 20px;
    }

    .youtube-slider > div {
        width: 100%;
        padding-right: 0; /* スマホでは右のpaddingを削除 */
    }

    .youtube-slider iframe {
        height: 200px;
    }
}

@media (min-width: 1200px) {
    .youtube-slider > div {
        width: calc(100% / 3);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .youtube-slider > div {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .youtube-slider > div {
        width: 100%;
    }
}

.youtube-slider-container {
    overflow: visible; /* 変更: スライダーコンテナのoverflowをvisibleに変更 */
}
.construction-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px); /* ヘッダーの高さ分を引く */
    text-align: center;
    padding-bottom: 80px;
}

.construction-text {
    font-size: 24px;
    margin-bottom: 20px;
}

#back-to-top {
    display: inline-block;
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    text-align: center;
}
/* contact.html用のCSS (style.cssに記述してもOK) */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

    .contact-form label {
        margin-bottom: 5px;
        font-weight: bold;
        color: #555;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 16px;
    }

    .contact-form textarea {
        resize: vertical;
        height: 100px;
    }

    .contact-form button {
        padding: 10px 20px;
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 18px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        align-self: center;
        width: 150px;
    }

        .contact-form button:hover {
            background-color: #0056b3;
        }

    .contact-form input.error,
    .contact-form textarea.error {
        border-color: red;
    }

.error-message {
    color: red;
    margin-bottom: 10px;
}
/* Informationページ用のCSS */
.information-visual {
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

    .information-visual h1 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .information-visual p {
        margin-bottom: 0;
    }

.info-list-container {
    max-width: 960px; /* お知らせリストの最大幅 */
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex; /* Flexbox を使用 */
    flex-direction: column; /* 縦方向に要素を並べる */
    align-items: flex-start; /* 全てのアイテムを左端に揃える */
}

    .news-item:last-child {
        border-bottom: none; /* 最後のお知らせの下線はなし */
    }

.news-header { /* NEWSラベルと日付のコンテナ */
    display: flex;
    justify-content: space-between; /* 要素を両端に配置 */
    align-items: center; /* 垂直方向中央揃え */
    width: 100%; /* 親要素の幅いっぱいに広げる */
    margin-bottom: 8px; /* ヘッダーとタイトルの間のスペース */
}

.news-label {
    padding: 4px 8px;
    border-radius: 9999px; /* 角丸を最大にする (TailwindCSSのrounded-full相当) */
    font-size: 0.75rem; /* text-xs 相当 */
    font-weight: 700; /* font-bold 相当 */
    color: #fff;
}

    /* 各ラベルの色（例） */
    .news-label.bg-red-500 {
        background-color: #ef4444;
    }

    .news-label.bg-blue-500 {
        background-color: #3b82f6;
    }

    .news-label.bg-green-500 {
        background-color: #22c55e;
    }

/* 日付はtext-gray-600 text-sm mb-2のdivにflexが当たっているので、そのまま */
/* flexアイテムの右寄せを解除し、左寄せにする */
.news-item .flex.items-center {
    width: 100%; /* 親要素の幅いっぱいに広げる */
    justify-content: flex-start; /* 内容を左寄せに */
}

.news-date {
    font-size: 0.875rem; /* text-sm 相当 */
    color: #6b7280; /* text-gray-600 相当 */
}

.news-title {
    font-size: 1.25rem; /* text-xl 相当 */
    font-weight: 600; /* font-semibold 相当 */
    color: #1f2937; /* text-gray-800 相当 */
    margin-bottom: 8px; /* タイトルとコンテンツの間のスペース */
    text-align: left; /* タイトルは左寄せに */
    width: 100%; /* 親要素の幅いっぱいに広げる */
}

.news-content {
    font-size: 1rem; /* text-base 相当 */
    color: #374151; /* text-gray-700 相当 */
    line-height: 1.6;
    margin-bottom: 16px; /* コンテンツとボタンの間のスペース */
    text-align: left; /* 内容は左寄せに */
    width: 100%; /* 親要素の幅いっぱいに広げる */
}

.news-detail-button {
    display: inline-block;
    background-color: #1f2937; /* bg-gray-800 相当 */
    color: #fff;
    font-size: 0.875rem; /* text-sm 相当 */
    font-weight: 700; /* font-bold 相当 */
    padding: 8px 16px;
    border-radius: 0.25rem; /* rounded 相当 */
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
    align-self: flex-end; /* Flexboxアイテムとして右寄せ */
    margin-top: auto; /* コンテンツが短い場合でもボタンを下部に固定 */
}

    .news-detail-button:hover {
        background-color: #374151; /* hover:bg-gray-700 相当 */
    }

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .information-visual h1 {
        font-size: 30px;
    }

    .info-list-container {
        padding: 15px;
    }

    .news-title {
        font-size: 1.125rem; /* text-lg 相当 */
    }

    .news-content {
        font-size: 0.9375rem; /* 少し小さく */
    }
}

/* トップへ戻るボタンのスタイル */
#back-to-top {
    display: block; /* ブロック要素として表示 */
    position: relative; /* 相対位置指定 */
    bottom: auto; /* bottom の指定を削除 */
    right: auto; /* right の指定を削除 */
    margin-top: 20px; /* 上部のマージン */
    z-index: 99; /* 他の要素との重なり順序 */
    border: none; /* デフォルトのボーダーを削除 */
    outline: none; /* デフォルトのアウトラインを削除 */
    background-color: black; /* 背景色 */
    color: white; /* テキスト色 */
    cursor: pointer; /* カーソル形状をポインターに */
    padding: 10px 15px; /* パディング */
    border-radius: 4px; /* 角丸 */
    font-size: 16px; /* フォントサイズ */
    text-decoration: none; /* リンクの下線を消す */
    margin-left: auto; /* 左右マージンをautoにして中央寄せ */
    margin-right: auto;
    width: 100px; /* 幅を固定 */
    text-align: center; /* テキストを中央に */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* 影を追加 */
    transition: background-color 0.3s ease; /* ホバー時のアニメーション */
}

    #back-to-top:hover {
        background-color: #333; /* ホバー時の背景色 */
    }

@media (max-width: 768px) {
    #back-to-top {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 14px;
        width: auto; /* SPでは幅をコンテンツに合わせる */
    }
}
/* お知らせ詳細ページ用のCSS */
.detail-visual {
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

    .detail-visual h1 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .detail-visual p {
        margin-bottom: 0;
    }

.detail-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px; /* PCでのデフォルトパディング */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.detail-date {
    font-size: 0.875rem; /* text-sm相当 */
    color: #6b7280; /* text-gray-600相当 */
    text-align: right; /* 日付を右寄せ */
}

.detail-heading {
    font-size: 1.5rem; /* text-2xl相当 */
    font-weight: 600; /* font-semibold相当 */
    color: #1f2937; /* text-gray-800相当 */
    margin-bottom: 16px;
}

.content-block {
    margin-bottom: 32px;
}

    .content-block img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .content-block p {
        font-size: 1rem; /* text-base相当 */
        color: #374151; /* text-gray-700相当 */
        line-height: 1.6;
    }

/* フライヤー画像横並び */
.flyer-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 12px;
    margin-bottom: 12px;
}

.flyer-row img {
    flex: 1 1 0;
    max-width: 50%;
    height: auto;
}

@media (max-width: 768px) {
    .flyer-row {
        flex-direction: column;
    }
    .flyer-row img {
        max-width: 100%;
    }
}

/* 新しく追加したテキストのスタイル */
.detail-info-bold {
    font-weight: bold;
    margin-top: 8px; /* デフォルトの上下マージン */
}

    .detail-info-bold.detail-info-top {
        margin-top: 32px; /* 最初の項目の上マージンを大きく */
    }


/* トップページに遷移ボタンのスタイル */
.back-to-top-detail {
    display: block; /* ブロック要素として表示 */
    position: relative; /* 相対位置指定 */
    margin-top: 40px; /* 上部のマージン */
    z-index: 99; /* 他の要素との重なり順序 */
    border: none; /* デフォルトのボーダーを削除 */
    outline: none; /* デフォルトのアウトラインを削除 */
    background-color: black; /* 背景色 */
    color: white; /* テキスト色 */
    cursor: pointer; /* カーソル形状をポインターに */
    padding: 10px 15px; /* パディング */
    border-radius: 4px; /* 角丸 */
    font-size: 16px; /* フォントサイズ */
    text-decoration: none; /* リンクの下線を消す */
    margin-left: auto; /* 左右マージンをautoにして中央寄せ */
    margin-right: auto;
    width: 100px; /* 幅を固定 */
    text-align: center; /* テキストを中央に */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* 影を追加 */
    transition: background-color 0.3s ease; /* ホバー時のアニメーション */
}

    .back-to-top-detail:hover {
        background-color: #333; /* ホバー時の背景色 */
    }

/* レスポンシブ対応 */
@media (max-width: 768px) {
    /* main要素のパディング調整 */
    main.container.mx-auto.py-10 {
        padding-left: 0; /* スマホで左右のパディングをリセット */
        padding-right: 0; /* スマホで左右のパディングをリセット */
        padding-top: 20px; /* スマホで上部パディングを減らす */
        padding-bottom: 20px; /* スマホで下部パディングを減らす */
    }

    .detail-visual h1 {
        font-size: 30px;
    }

    .detail-content {
        padding: 15px; /* スマホで詳細コンテンツの上下パディング */
        padding-left: 20px; /* スマホで詳細コンテンツの左右パディングを調整 */
        padding-right: 20px; /* スマホで詳細コンテンツの左右パディングを調整 */
    }

    .detail-heading {
        font-size: 1.25rem; /* text-xl相当 */
    }

    .content-block.flex-col-reverse img {
        order: 0; /* スマホでは画像の順序を元に戻す */
    }
    /* content-block内の画像とテキストを囲むdivの左右パディングをスマホでリセット */
    .content-block > div.w-full.md\:w-1\/2 {
        padding-left: 0 !important; /* Tailwindのmd:pr-4, md:pl-4を上書き */
        padding-right: 0 !important; /* Tailwindのmd:pr-4, md:pl-4を上書き */
    }
        /* 画像の下に適切なマージンを追加 */
        .content-block > div.w-full.md\:w-1\/2 img {
            margin-bottom: 16px; /* 画像の下にマージンを追加 */
        }
}

.sp-only { display: none; }
@media (max-width: 768px) {
  .sp-only { display: inline; }
}
