@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;
}

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

/* もっと見るボタン */
/* .load-more {
    margin: 30px 0;
}
.load-more button {
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.load-more button:hover {
    background-color: #e65c00;
} */

/* フッター */
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;
    }
}