@charset "UTF-8";

/* ==========================================================================
    メインビジュアル mobile
   ========================================================================== */
.main-visual {
    width: 100%;
    height: 80vh;
    background-image: url(../images/main-visual_mobile.jpg);
    background-position: center 90%;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 56px;
    position: relative;
}

/* スクロールバー */
.scroll-container {
    height: 300px;
}

.scrollbar-text {
    display: inline-block;
    position: absolute;
    left: 5%;
    bottom: 0;
    padding: 10px 10px 110px;
    color: var(--color-text-white);
    font-size: 14px;
    font-family: var(--font-en);
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: translateX(-50%);
    font-size: 1.2rem;
}

.scrollbar {
    position: absolute;
    left: 5%;
    bottom: 0px;
    transform: translateX(-50%);
}

.scrollbar::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-text-white);
    animation:  circlemove 3s ease-in-out infinite, cirlemovehide 3s ease-out infinite;
}

.scrollbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100px;
    background-color: var(--color-text-white);
}

/* スクロールバーのアニメーション */
@keyframes circlemove {
    0% {
        bottom: 95px;
    }
    100% {
        bottom: 0px;
    }
}
@keyframes cirlemovehide {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}

/* ===============
    メインビジュアル メディアクエリ
   =============== */
/* タブレット端末 */
@media(min-width:768px) {
    .main-visual {
        background-image: url(../images/main-visual_tablet.jpg);
        background-size: cover;
        height: 90vh;
    }
}
/* pc */
@media (min-width: 1025px) {
    .main-visual {
        background-image: url(../images/main-visual_pc.jpg);
        background-size: cover;
        margin-top: 72px;
        height: 100vh;
    }
    /* スクロールバーの長さ */
    .scrollbar-text {
        bottom: 100px;
    }
    .scrollbar::after {
        height: 200px;
    }
    @keyframes circlemove {
        0% {
            bottom: 200px;
        }
        100% {
            bottom: 0px;
        }
    }
}

/* ==========================================================================
    ブログ(NEWS)エリア
   ========================================================================== */
.blog-section .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
}

.blog-date {
    color: #fff;
    background-color: #c0392b;
    border-radius: 6px;
    font-size: 1rem;
    padding: 4px 10px;
    font-family: var(--font-en);
}
.blog-text-area p {
    margin-top: 20px;
    font-family: var(--font-ja);
    font-size: 1rem;
}

@media (min-width: 821px) {
    .blog-section {
        padding: 0 24px;
    }

    .blog-section .container {
        max-width: 1100px;
        padding: 0 40px;
    }
    .blog-text-area p {
        font-size: 18px;
    }
}

/* ==========================================================================
    ITEM mobile
   ========================================================================== */
.gallery-filter {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 24px;
    padding-right: 28px;
    box-sizing: border-box;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--color-brand-main);
    border-radius: var(--border-radius-btn);
    color: var(--color-brand-main);
    font-family: var(--font-ja);
    font-size: 0.8rem;
    padding: 4px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.filter-btn.is-active,
.filter-btn:hover {
    background: var(--color-brand-main);
    color: var(--color-text-white);
}

.gallery-thumbnails li.is-hidden {
    display: none;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-bg-base);
}

.section-heading {
    text-align: center;
}

.section-title {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-brand-main);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    white-space: nowrap;
    margin-top: 24px;
}

.section-title::before,
.section-title::after {
    content: "";
    height: 1px;
    background-color: var(--color-brand-main);
    flex-grow: 1;
    max-width: 150px;
    opacity: 0.6;
}

.gallery-main-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: var(--border-radius-common);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-main-visual {
    width: 100%;
    position: relative;
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 24px 24px 12px 24px;
    box-sizing: border-box;
    box-shadow: none;
}

.gallery-main-visual img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    margin: 0 auto;
    filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.12));
}

.item-label {
    position: absolute;
    z-index: 5;
    font-family: var(--font-ja);
    color: var(--color-text-white);
    letter-spacing: 0.05em;
    line-height: 1.4;
    white-space: nowrap;
    transition: all 0.3s;
}
.gallery-text {
    font-size: 0.75rem;
    font-family: var(--font-ja);
    color: var(--color-text-main);
    padding-bottom: 0.5rem;
}

.gallery-main-visual .item-label:not(:empty) {
    top: 32px;
    left: 32px;
    border-radius: 6px;
    background-color: var(--color-new-label);
    font-size: 0.8rem;
    padding: 4px 10px;
}

.gallery-info .item-info-box {
    padding: 12px 24px 32px 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
}

.gallery-info h3 {
    margin-bottom: 12px;
}

.gallery-info .item-name {
    color: var(--color-text-main);
    font-size: 1.4rem;
    font-weight: bold;
    white-space: normal;
    font-family: var(--font-ja);
}

.gallery-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--color-text-muted);
    font-family: var(--font-ja);
}

.btn-detail {
    display: inline-block;
    background-color: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-text-main);
    border-radius: var(--border-radius-btn);
    padding: 10px 30px;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-family: var(--font-ja);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    margin-top: 10px;
}

.btn-detail:hover {
    background-color: var(--color-text-hover);
    color: var(--color-text-white);
    transform: translateY(2px);
    border-color: var(--color-text-hover);
}

.gallery-content {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-common);
    padding: 20px;
    box-sizing: border-box;
    height: 336px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-thumbnails li {
    position: relative;
    cursor: pointer;
    background: var(--color-text-white);
    border: 1px solid var(--color-border-card);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    padding: 8px;
    box-sizing: border-box;
    gap: 8px;
    box-shadow: 0 2px 4px var(--shadow-light);
}

.gallery-thumbnails li:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.thumb-img-wrap {
    position: relative;
}

.gallery-thumbnails img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.12));
}

.gallery-thumbnails .item-label:not(:empty) {
    top: 6px;
    left: 6px;
    border-radius: 2px;
    background-color: var(--color-new-label);
    font-size: 0.7rem;
    padding: 2px 4px;
}

.item-info-box {
    padding: 4px 0 8px 0;
    background: transparent;
    border: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-name {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-main);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    font-family: var(--font-ja);
    border-top: 1px solid var(--color-border-card);
    padding: 8px 0;
}

.gallery-content::-webkit-scrollbar {
    width: 6px;
}

.gallery-content::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-content::-webkit-scrollbar-thumb {
    background-color: var(--color-concept-border);
    border-radius: 10px;
}

/* カテゴリボタン→一覧→view moreボタン の順に配置する */
@media (max-width: 820px) {
    .section-heading {
        order: 0;
    }

    .gallery-filter {
        order: 1;
        margin-bottom: 0;
        padding-right: 28px;
    }

    .gallery-content {
        order: 2;
    }

    .view-more-wrapper {
        order: 3;
    }

    .gallery-main-area {
        order: 4;
        display: none;
    }
}

/*  ==========
    ITEM pc
    ========== */
@media (min-width: 821px) {
    .gallery {
        display: grid;
        grid-template-columns: minmax(320px, 450px) 1fr;
        gap: 0 32px;
        max-width: 1100px;
        padding: 0 24px;
        align-items: stretch;
    }

    .section-heading {
        grid-column: 1 / 3;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .section-title {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.4rem;
        margin-bottom: 20px;
        gap: 30px;
        width: 100%;
    }

    .section-span {
        display: block;
        margin-top: -2rem;
    }

    .gallery-filter {
        grid-column: 1 / 3;
    }

    .gallery-main-area {
        height: auto;
    }

    .gallery-main-visual {
        padding: 20px 20px 10px 20px;
    }

    .gallery-info .item-info-box {
        padding: 10px 20px 30px 20px;
    }

    .gallery-info .item-name {
        font-size: 1.2rem;
    }

    .gallery-info p {
        margin-bottom: 8px;
    }

    .gallery-content {
        height: 0;
        min-height: 100%;
        overflow-y: auto;
        padding: 20px;
        box-shadow: 0 4px 20px var(--shadow-light);
        box-sizing: border-box;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .gallery-thumbnails {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-main-visual .item-label:not(:empty) {
        top: 32px;
        left: 48px;
    }

    .gallery-thumbnails .item-label:not(:empty) {
        top: -2px;
        left: 4px;
        font-size: 0.6rem;
    }

    /* 商品の個別ページへのリンクを無効化 */
    .item-shop-link {
        pointer-events: none;
    }

    .gallery-text {
    display: none;
    }
}

/* ==========================================================================
    View more ボタン
   ========================================================================== */
.view-more-wrapper {
    text-align: right;
    padding: 0 28px;
    grid-column: 2 / 3;
}

.view-more-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--color-brand-main);
    color: var(--color-brand-main);
    font-family: var(--font-ja);
    font-size: 0.8rem;
    padding: 4px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: var(--border-radius-btn);
}

.view-more-btn:hover {
    background: var(--color-brand-main);
    color: var(--color-text-white);
}

/* pc */
@media (min-width: 821px) {
    .view-more-wrapper {
        padding: var(--section-space) 28px 0;
        display: block;
    }
}


/* ==========================================================================
    GIFT mobile
   ========================================================================== */
.gift-section {
    width: 100%;
    padding: 0;
}

.gift-section .container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 0 16px;
    text-align: center;
}

.gift-slider {
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s;
    overflow: visible;
}

.gift-slider.slick-initialized {
    opacity: 1;
    visibility: visible;
}

.gift-section .gift-slider .slick-list {
    padding: 40px 0 !important;
    margin: 0;
    overflow: hidden;
}

.gift-section .gift-slider .slick-slide {
    margin: 0 10px;
    transform: scale(0.9);
    opacity: 0.5;
    transition: all 0.3s ease;
    outline: none;
}

.gift-section .gift-slider .slick-center {
    transform: scale(1.1);
    opacity: 1;
    z-index: 5;
}

.gift-section .gift-slider img {
    width: 96%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-common);
    margin: auto;
}

.gift-section .gift-slider .slick-dots {
    bottom: -20px;
}

.gift-title {
    display: block;
    text-align: center;
    font-family: var(--font-ja);
    font-size: 1.0rem;
    color: var(--color-text-main);
    margin-top: 10px;
    letter-spacing: 0.1em;
}

.gift-section .view-more-wrapper {
    padding-top: 64px;
}

@media (min-width: 821px) {
    .gift-section {
        padding: 0 24px;
    }

    .gift-section .container {
        max-width: 1100px;
        padding: 0 40px;
    }
}

.section-span {
    color: var(--color-brand-main);
    font-family: var(--font-ja);
    font-size: clamp(0.8125rem, -0.2644rem + 1.6827vw, 1.25rem);
}
/*  ====================
    GIFT PC
    =================== */
@media (min-width: 821px) {
    .gallery {
        display: grid;
        grid-template-columns: minmax(320px, 480px) 1fr;
        gap: 0 32px;
        max-width: 1100px;
        padding: 0 40px;
        /* padding: 64px 24px; */
        align-items: stretch;
    }

    .section-title {
        grid-column: 1 / 3;
        font-size: 2.4rem;
        margin-bottom: 40px;
        gap: 30px;
    }
    .section-span {
        margin-top: -2rem;
        display: block;
    }

    .gallery-main-area, .gallery-content {
        height: 540px;
        box-shadow: 0 4px 20px var(--shadow-light);
    }

    .gallery-main-area {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px;
    }

    .gallery-main-visual img {
        max-height: 300px;
        width: auto;
        margin: 0 auto;
    }

    .gallery-info {
        margin-top: 16px;
        text-align: center;
    }

    .gallery-content {
        padding: 20px;
        overflow-y: auto;
    }

    .gallery-thumbnails {
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-thumbnails span {
        font-size: 0.8rem;
        white-space: nowrap;
        margin-top: 8px;
    }

    .gallery-filter {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    grid-column: 1 / 3;
    margin-bottom: var(--section-space);
    }

    .filter-btn {
    background: transparent;
    border: 1px solid var(--color-brand-main);
    color: var(--color-brand-main);
    font-family: var(--font-ja);
    font-size: 0.8rem;
    padding: 4px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    }

    .filter-btn.is-active,
    .filter-btn:hover {
    background: var(--color-brand-main);
    color: var(--color-text-white);
    }

    .gallery-thumbnails li.is-hidden {
    display: none;
    }
}
@media (min-width: 821px) and (max-width: 1023px) {
    .gallery {
        grid-template-columns: 1fr 1fr !important;
    }

    .gallery-main-area {
        min-width: 0;
        width: 100%;
    }

    .gallery-main-visual {
        display: flex;
        justify-content: center;
    }

    .gallery-main-visual img {
        max-height: 250px;
        width: auto;
        margin: 0 auto;
    }

    .gallery-content {
        min-width: 0;
    }
}

/*  ==========================================================================
    CONCEPT mobile
    ========================================================================== */
    .concept-section {
        width: 100%;
        padding: 0;
    }

    .concept-section .container {
        max-width: 600px;
        margin: 0 auto;
        padding: 0 16px;
        text-align: center;
    }

    /* コンセプトコンテナ内 画像→テーマ→テキストの順で配置 */
    .concept-container {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: auto;
        margin: 24px 0 40px;
    }
    .concept-image {
        grid-row: 1 / 2;
        aspect-ratio: 4 / 3;
        width: 100%;
        height: auto;
        margin-bottom: 0.5rem;
        max-width: 600px;
        max-height: 400px;
        object-fit: cover;
        border-radius: var(--border-radius-common);
    }
    .concept-theme {
        grid-row: 2 / 3;
        text-align: center;
        white-space: nowrap;
        padding: 0.7rem 0;
        color: var(--color-text-main);
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ffffff, 0 0 40px #ffffff;
        font-family: var(--font-ja);
        font-size: 24px;
    }

    /* 読みやすさを保つため1行あたり30~40文字におさめる */
    .concept-text {
        grid-row: 3 / 4;
        padding: 1rem;
        color: var(--color-text-main);
        font-family: var(--font-ja);
        text-align: left;
    }


/*  ====================
    CONCEPT PC
    =================== */
@media (min-width: 821px) {
    .concept-section {
        padding: 0 24px;
    }

    .concept-section .container {
        max-width: 1100px;
        padding: 0 40px;
    }
    .concept-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(11, minmax(auto, 1fr));
        margin-bottom: 40px;
        padding: 40px 0;
    }
    .concept-image {
        grid-column: 5 / 12;
        grid-row: 1 / 3;
        object-fit: cover;
        aspect-ratio: 4 / 3;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 400px;
        border-radius: var(--border-radius-common);
    }
    .concept-theme {
        grid-column: 1 / 5;
        grid-row: 1 / 2;
        white-space: nowrap;       /* テキストを折り返ししない */
        font-size: 1.6rem;
        padding: 1rem 0;
        margin-left: 20%;
        text-align: center;
        display: block;
        width: 100%;
        z-index: 30;
        /* 文字の装飾 */
        font-size: 24px;
        color: var(--color-text-main);
        font-family: var(--font-ja);
    }
    .concept-text {
        grid-column: 1 / 6;
        grid-row: 2 / 3;
        padding: clamp(1.7rem, 7.0625rem + -10.5469vw, 0.3125rem);
        line-height: 1.7;
        z-index: 30;
        /* テキストの装飾 */
        color: var(--color-text-main);
        background-color: rgb(249, 247, 242,0.7);
        border: 1px solid var(--color-concept-border);
        border-radius: var(--border-radius-common);
        box-shadow: 1px 0 3px var(--color-concept-border);
        font-family: var(--font-ja);
        font-size: 1rem;
        font-weight: bold;
    }

    /* 逆配置のレイアウト */
    .concept-theme-reverse {
        grid-column: 7 / 12;
        grid-row: 1 / 2;
        max-height: 70px;
        margin-left: revert;
    }
    .text-reverse {
        grid-column: 7 / 12;
        grid-row: 1 / 2;
        margin-top: 100px;
    }
    .image-reverse {
        grid-column: 1 / 8;
        grid-row: 1 / 2;
    }

}

/* ==========================
    GALLERY
    ========================= */

.scroll_wrap {
    width: 100%;
    overflow: hidden;
}

.scroll_track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 24px;
    margin: 0 12px;
    transition: none;
}

.scroll_photo {
    display: grid;
    place-content: center;
    flex-shrink: 0;
    padding: 0 12px;
    vertical-align: bottom;
}

.scroll_inner {
    display: flex;
}


.scroll_photo img {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius-common);
    object-fit: cover;
}

/* ==========
    GALLERY pc
    ========= */

@media(min-width: 821px) {
    .scroll_photo img {
        width: 450px;
        height: 300px;
        border-radius: var(--border-radius-common);
    }
}


/*  ==========================================================================
    INFORMATION mobile
    ========================================================================== */
.information-section {
    width: 100%;
    padding: 0;
}

.information-section .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}
/* google map */
.info-map {
    max-width: 600px;
    margin: 24px auto;
    text-align: center;
    border-radius: var(--border-radius-common);
}
iframe {
    width: 100%;
    height: 300px;
    border: 0;
    vertical-align: bottom;
    border-radius: var(--border-radius-common);
}
/* 店舗情報 */
.info-table-container {
    margin: 20px auto 0;
    border-spacing: 0;
    text-align: center;
    background-color: var(--color-text-white);
    border-radius: var(--border-radius-common);
}

.info-table th, td {
    border: none;
    font-family: var(--font-ja);
    letter-spacing: 0.05em;
}

.info-table th {
    width: 35%;
}

.info-table td {
    width: auto;
    padding: 15px 20px;
    text-align: left;
    border: none;
}

/* font-awesome */
.fa-up-right-from-square {
    margin-left: 0.3rem;
}

/*  ===============
    INFORMATION pc
    =============== */

@media (min-width: 821px) {
    .information-section {
        padding: 0 24px;
    }

    .information-section .container {
        max-width: 1100px;
        padding: 0 40px;
    }

    /* google map */
    .info-map {
        max-width: 1100px;
        margin-top: 40px;
    }

    /* 店舗情報 */
    .info-table th, td {
        border: none;
        font-family: var(--font-ja);
    }
    .info-table th {
        width: 40%;
    }
    .info-table td {
        width: 60%;
        padding: 15px 20px;
        text-align: left;
        border: none;
        font-family: var(--font-ja);
    }
}

/*  ==========================================================================
    INSTAGRAM mobile
    ========================================================================== */

.instagram-section {
    width: 100%;
    padding: 0;
}

.instagram-section .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
    margin-bottom: var(--section-space);
}
.instagram-section p {
    text-align: left;
}
.instagram-container {
    font-family: var(--font-ja);
    margin: 24px auto;
    text-align: center;
    display: block;
}
.instagram-container img {
    width: 300px;
    height: auto;
    max-width: 540px;
    object-fit: cover;
}

/*  ===============
    INSTAGRAM pc
    ============== */
@media (min-width: 821px) {
    .instagram-section {
        padding: 0 24px clamp(1rem, 0.12rem + 3.2vw, 3rem) 24px;
    }

    .instagram-section .container {
        max-width: 1100px;
        padding: 0 40px;
        margin-bottom: 40px;
    }

    .instagram-container {
    display: flex;
    justify-content: space-around;
    }
}



/*  ==========================================================================
    CONTACT mobile
    ========================================================================== */

.contact-section {
    width: 100%;
    padding: 0;
}

.contact-section .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}
.contact-container {
    font-family: var(--font-ja);
    margin: 24px auto;
    text-align: center;
}

/*  ===============
    CONTACT pc
    ============== */
@media (min-width: 821px) {
    .contact-section {
        padding: 0 24px clamp(1rem, 0.12rem + 3.2vw, 3rem) 24px;
    }

    .contact-section .container {
        max-width: 1100px;
        padding: 0 40px;
    }

    .contact-container {
        margin: 40px 0;
    }
}




/* アレルギーアイコン */
.allergy-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.allergy-list img {
    width: 28%;
    object-fit: contain;
}
.gallery-info .allergy-list img {
    width: 40px;
}