@charset "UTF-8" ;
/* ベーススタイル */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(images/017-Subtle-light-patterns-Vol04.png);
    color: #222;
    text-align: center;
}

/* ヘッダー */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #222;
    color: #fff;
}
header .logo {
    font-size: 1.5em;
    font-weight: bold;
}
header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}
header nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* ページタイトル */
.page-title {
    padding: 40px 0;
    font-size: 2em;
}

/* おすすめ動画セクション */
.recommended-videos, .video-series {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}
.recommended-videos h2, .video-series h2 {
    border-bottom: 2px solid #222;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* 動画グリッド */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}
.video-grid iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}


/* フッター */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 120px 20px; /* 下に余白を追加 */
}

footer p {
    margin-top: 30px; /* テキストをさらに下へ */
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px; /* フッターとの間に余白を追加 */
    border-bottom: none; /* SNSリンクの下線を削除 */
}
.social-links a {
    text-decoration: none; /* SNSリンクの下線を削除 */
    color: #fff;
    background: #333;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }
    .main-visual h1 {
        font-size: 2em;
    }
}