body {
    margin: 0;
    padding: 0;
    font-family: "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "MS ゴシック", "MS Gothic", sans-serif;
}

/* ===== ヘッダー ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 16px 32px;
    box-sizing: border-box;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header a {
    height: 100%;
}

.site-title-img {
    height: 100%;
}

/* ===== ハンバーガーメニュー ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 27px;
    height: 3px;
    margin: 5px auto;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== ナビゲーション ===== */
.site-nav {
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}
.nav-list li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.2s;
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-list li a:hover,
.here a {
    color: #399;
    border-bottom: solid 2px #399;
}

/* ===== メイン ===== */
main {
    width: 100%;
    margin-top: 80px;
}

/* ===== アイキャッチ ===== */
#eyecatch {
    margin-bottom: 5%;
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
#eyecatch img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}
#video_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
#eyecatch p {
    z-index: 1;
    font-size: 3rem;
    text-align: center;
}

/* ===== セクション ===== */
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 56px;
    margin-bottom: 56px;
}
section:first-of-type {
    margin-top: 0;
}
.section_title {
    font-size: 2rem;
    margin: 32px 0 16px 0;
    border-bottom: #1ba0e9 2px solid;
    text-align: center;
}
section p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.7;
}
section img {
    max-width: 320px;
    width: 100%;
    margin-top: 24px;
}
section img.under_construction {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* ===== フッター ===== */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 32px 16px 24px 16px;
    margin-top: 10vw;
    font-size: 1rem;
    line-height: 1.8;
}
footer p {
    margin: 8px 0;
}

/* ===== レスポンシブ ===== */
@media (max-width: 600px) {
    .site-header {
        height: 56px;
        padding: 8px 12px;
    }
    .site-nav {
        display: none;
        position: fixed;
        top: 56px;
        right: 0;
        width: 70vw;
        max-width: 320px;
        height: calc(100vh - 56px);
        background: #fff;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.08);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 0 0 0;
        z-index: 1050;
        transition: transform 0.3s;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        height: auto;
    }
    .nav-list li {
        width: 100%;
    }
    .nav-list li a {
        margin: 12px 0;
        padding: 0 24px;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
        text-align: left;
    }
    .hamburger {
        display: flex;
    }
    #nav-toggle:checked ~ .site-header .site-nav,
    #nav-toggle:checked ~ .site-header nav.site-nav {
        display: flex;
    }
    #nav-toggle:checked ~ .site-header .hamburger span:nth-child(1) {
        transform: translateY(12px) rotate(45deg);
    }
    #nav-toggle:checked ~ .site-header .hamburger span:nth-child(2) {
        opacity: 0;
    }
    #nav-toggle:checked ~ .site-header .hamburger span:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }
    main {
        margin-top: 56px;
    }
    #eyecatch {
        height: 32vh;
    }
    #eyecatch p {
        font-size: 1.5rem;
    }
    section {
        margin: 32px 0 36px 0;
        padding: 0 24px;
        font-size: 0.95rem;
    }
    .section_title {
        font-size: 1.2rem;
    }
    section img {
        max-width: 100%;
    }
    section img.under_construction {
        max-width: 70vw;
        margin-top: 24px;
        margin-bottom: 12px;
    }
    footer {
        font-size: 0.9rem;
    }
}

/* 不要なセレクタや誤記（#1ba0e9）は削除済み */