/* ============================== 基本設定 ============================== */

/* 全体のスタイル */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f2e2;
    color: #333;
    overflow-x: hidden;
}

h1,
h3,
h5 {
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


/* ============================== メイン ============================== */

/* メインコンテンツのスタイル */
main {
    margin: 0px 0px 50px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}


/* ============================== メニュー表示/非表示切り替え ============================== */

/* メニュー表示ボタン */
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: gray;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 20;
}


/* ============================== メニュー内のnavクラス ============================== */

/* ナビゲーションのデザイン */
.nav {
    position: fixed;
    top: 50px;
    right: 10px;
    background-color: rgba(80, 80, 80, 0.7);
    border-radius: 5px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: center;
    transition: display 0.3s ease-in-out;
    z-index: 10;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 10px;
    font-size: 18px;
    font-weight: bold;
}

.nav a:hover {
    color: #e5a67c;
}

/* メニューが開いた状態 */
.nav-open {
    display: flex;
}


/* ============================== メニュー内のtabクラス ============================== */

/* タブとコンテンツのスタイル */
.tabs {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.tab {
    background-color: #F6CF66;
    /* ベースのオレンジ色 */
    color: #5C3D22;
    /* ダークブラウン */
    padding: 12px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab:hover {
    background-color: #FFB84D;
    /* オレンジの濃い色 */
    color: #3E2C1C;
    /* さらに濃いブラウン */
}

.tab-content {
    display: block;
    padding: 20px;
    border: 1px solid #e0a24f;
    /* オレンジの濃い色でボーダー */
    background-color: #F8E3A1;
    /* 明るいオレンジ系 */
    border-radius: 10px;
    margin-top: 10px;
    width: 100%;
}


/* ============================== 動画の配置 ============================== */

/* 映像（動画）のスタイル */
/*.movie {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin-bottom: 20px;
}

.movie .contents {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    background-color: #F6CF66; */
/* オレンジ系 */
/*    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.movie .content {
    align-items: center;
    text-align: center;
    margin: 0px 5px 0px 5px;
    width: 100%;
}

.movie .content iframe {
    width: 450px;
    height: 300px;
}

.movie a {
    text-decoration: none;
}*/

.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* PCで2列表示を固定 */
    gap: 20px;
}

/* レスポンシブ設定（モバイル用） */
@media (max-width: 680px) {
    .container {
        grid-template-columns: 1fr;
        /* スマホでは1列表示 */
    }
}

.video {
    background: #dccbb4;
    border: 1px solid #e5a67c;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.video iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.video a {
    color: #f97948;
    font-weight: bold;
    text-decoration: none;
}

.video a:hover {
    text-decoration: underline;
}

/*
@media (min-width: 680px) {
    .container {
        grid-template-columns: 2fr;
    }
}*/

/* ============================== フッター ============================== */

/* フッターのスタイル */
footer {
    background-color: #f97948;
    color: #FFF;
    text-align: center;
    padding: 0.5px;
    width: 100%;
}


/* 見出しのスタイル */
h2 {
    color: #f97948;
    border-bottom: 2px solid #cd6319;
    padding-bottom: 0.5rem;
}

/* ボタンのスタイル */
.button {
    display: inline-block;
    background-color: #cd6319;
    color: #FFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #f97948;
}

img {
    pointer-events: none !important;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}