@charset "UTF-8";

html,
body {
    font-weight: bold;
    font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho Pro";
    text-align: center
}

a {
    text-decoration: none;
}

ul {
    padding-left: 0;
    margin: 0;
}

li {
    list-style: none;
}

body {
    background-image: url('images/main3.JPG');
    background-size: cover;
    /* 画像を画面全体にフィットさせる */
    background-position: center;
    /* 画像の中心を基準にする */
    background-repeat: no-repeat;
    /* 画像の繰り返しを禁止する */
    background-attachment: fixed;
    /* スクロールしても背景を固定する（任意） */
    min-height: 100vh;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.6);
}


.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
}

.nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-wrapper {
    align-items: center;
    height: auto;
}