@charset "UTF-8";

body {
    font-family: "Noto Serif JP", serif;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bg-accent {
    background-color: #fff;
}

.section-wrap {
    padding: 80px 0;
}

.section-inner {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px; /* スマホで余白をつける */
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.header {
    padding-top: 40px;
}

.logo {
    width: 180px;
    margin: 0 auto;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap; /* スマホ時の詰まり防止 */
    padding: 0;
    list-style: none;
}

.header-nav {
    margin-top: 30px;
}

.kv {
    padding: 64px 0;
}

.kv-img {
    width: 100%;
    height: auto;
}

.concept-copy {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 10px;
    margin-top: 30px;
}

.concept-text {
    font-size: 20px;
    text-align: center;
    margin-top: 5%;
    letter-spacing: 0.5px;
    line-height: 2;
}

.shop-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 20px;
}

.info_img, .shop-content {
    width: 48%;
}

.shop-row {
    border-bottom: 1px solid #000;
}

.shop-head, .shop-data {
    padding: 12px 0;
}

.footer {
    padding-top: 64px;
    text-align: center;
}

.footer-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0;
    list-style: none;
}

.footer-copy {
    display: block;
    padding: 16px 0;
    margin-top: 64px;
    font-weight: bold;
}


/* ===========================
   レスポンシブ対応（768px以下）
=========================== */

@media screen and (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .concept-copy {
        font-size: 22px;
        letter-spacing: 5px;
        margin-top: 40px;
    }

    .concept-text {
        font-size: 16px;
        margin-top: 32px;
    }

    .info_img, .shop-content {
        width: 100%;
    }

    .section-wrap {
        padding: 40px 0;
    }

    .kv {
        padding: 32px 0;
    }

    .footer-nav {
        gap: 20px;
    }

    .logo {
        width: 140px;
    }
}
