/* ベーススタイル */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

/* ヘッダー */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navigation a {
    text-decoration: none;
    color: #fff;
}

/* メインビジュアル */
.hero {
    height: 100vh;
    background: url('assets/images/hero.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
}

/* コンテンツセクション */
.about {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* ギャラリーセクション */
.gallery {
    padding: 50px;
    background-color: #f4f4f4;
    text-align: center;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

/* 横スクロール設定 */
.gallery-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 10px 0;
}

.gallery-container::-webkit-scrollbar {
    height: 8px;
}

.gallery-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.gallery-container::-webkit-scrollbar-track {
    background-color: #f4f4f4;
}

.gallery-item {
    flex: 0 0 auto; /* 固定幅 */
    width: 300px; /* 各画像の幅 */
    height: 200px; /* 各画像の高さ */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を枠にフィット */
}
