/*
Theme Name: Twenty Twenty-Two Child
Theme URI: https://example.com/twentytwentytwo-child
Description: Child theme for Twenty Twenty-Two
Author: mamiruco
Template: twentytwentytwo
Version: 1.0.0
*/

/* ヘッダー全体 */
#site-header {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
/* サイトロゴ */
.site-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}
/* ナビゲーションメニュー */
.main-navigation {
    display: flex;
}
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.main-navigation li {
    margin: 0 15px;
}
.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
/* ハンバーガーメニュー（レスポンシブ用） */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation.open {
        display: flex;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 50px;
        right: 20px;
        padding: 10px;
    }
}


/* 動画セクション */
#video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


/* コンテンツエリア */
#content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
}


/* footer */
#custom-footer {
    background-color: #333; /* フッターの背景色 */
    color: #fff; /* フォントの色 */
    height: 30px; /* フッターの高さ */
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    font-size: 14px;
    font-family: Arial, sans-serif; /* 好みのフォントに変更可能 */
}
.footer-content {
    text-align: center;
}