@charset "UTF-8";

/*
変数定義
----------------------------------------------------------- */
:root {
   /*カラー*/
   --color-brown: #3C1804;
   --color-cream: #F7F1EA;
   --color-beige: #CFB4A4;
   --color-beige2: #ECDDCB;
   --color-hover: #f5deb3;
   --color-hover2:#b8860b;
   /* レイアウト */
   --width-mid:1200px;
   --space-section:120px;
}

/*
ベース
----------------------------------------------------------- */
html {
    font-size: 100%;
    overflow-x: clip;
}
body {
    font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    overflow-x: clip;
    background: var(--color-brown);
    color: var(--color-brown);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: url(#grain);
    background: var(--color-brown);
    opacity: 0.4;
    pointer-events: none;   /* クリックの邪魔をしない */
    z-index: 9999;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

h1 {
    font-size: 40px;
    color: var(--color-brown);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.5;
}

/*縦書きh2*/
.title-vertical {
    position: absolute;
    top: 120px;
    right: 40px;
    z-index: 0;
}

.title-vertical h2 {
    writing-mode: vertical-rl;
    background: var(--color-cream);
    padding: 50px 15px;
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 45px;
    letter-spacing: .3em;
    text-align: right;
    color: var(--color-brown);
    z-index: 1;
}

.title-vertical::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    background: var(--color-beige);
    z-index: -1;
}
/*よこ書きh2*/
.title-horizontal {
    font-size: 45px;
    margin-bottom: 60px;
    letter-spacing: .3em;
}


h3 {
    font-size: 40px;
    margin-bottom: 60px;
    margin-top: 70px;
    border-bottom: 1px solid var(--color-cream);
    padding-bottom: 20px;
    color: var(--color-cream);
    text-align: left;
}

h4 {
    font-size: 26px;
}

p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}


/*ボタン茶色*/
.button-more-brown {
    text-align: center;
    margin-top: 80px;
}

.button-more-brown a {
    display: inline-block;
    padding: 15px;
    text-decoration: none;
    border-top: 3px double var(--color-brown);
    border-bottom: 3px double var(--color-brown);
    font-size: 20px;
    letter-spacing: 0.15em;
    color: var(--color-brown);
    width: 260px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.button-more-cream a:hover {
    border-color: var(--color-hover);
    color: var(--color-hover);
}

/*ボタンクリーム色*/
.button-more-cream {
    text-align: center;
    margin-top: 80px;
}

.button-more-cream a {
    display: inline-block;
    padding: 15px;
    text-decoration: none;
    border-top: 3px double var(--color-cream);
    border-bottom: 3px double var(--color-cream);
    font-size: 20px;
    letter-spacing: 0.15em;
    color: var(--color-cream);
    width: 260px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.button-more-brown a:hover {
    border-color: var(--color-hover2);
    color: var(--color-hover2);
}


/*
レイアウト
----------------------------------------------------------- */
.wrapper-wide {
    margin: 0 120px;
    padding: 120px 0 150px 0;
    box-sizing: border-box;
    background: var(--color-cream);
}

.sec-category .wrapper-wide ,
.sec-single .wrapper-wide {
    min-height: 100vh;
}
.wrapper-small  {
    max-width: 1170px;
    width: calc(100% - 30px);
    padding: 120px 0 150px 0;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
}

.wrapper-footer  {
    padding: 120px 0 100px 0;
}

.wrapper-single  {
    margin: 0 120px;
    padding: 100px 30px 150px 30px;
    box-sizing: border-box;
    background: var(--color-cream);
}

 .wrapper-p-menu  {
    margin: 0 120px;
    padding: 100px 30px 150px 30px;
    box-sizing: border-box;
    background: var(--color-cream);
}

/*格子柄背景*/
.pattern {
    background-color: var(--color-cream);
    background-image:
        linear-gradient(45deg, var(--color-beige2) 25%, transparent 25%),
        linear-gradient(-45deg, var(--color-beige2) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--color-beige2) 75%),
        linear-gradient(-45deg, transparent 75%, var(--color-beige2) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

/*背景の花輪*/
.sec-menu,
.sec-garally {
    position: relative;   /* 装飾の配置基準 */
    overflow: hidden;       /* はみ出た部分を隠す */
}

.ring-flower {
    position: absolute;
    top: -300px;
    right: -500px;
    width: 1000px;
    height: 1000px;
    background-size: contain;
    background-repeat: no-repeat;
    animation: rotate-slow 60s linear infinite;
    pointer-events: none;
    z-index: -1;
    opacity: 0.05;
}

.ring-flower-b {
    position: absolute;
    bottom: -300px;
    left: -500px;
    width: 1000px;
    height: 1000px;
    background-size: contain;
    background-repeat: no-repeat;
    animation: rotate-slow 60s linear infinite;
    pointer-events: none;
    z-index: -1;
    opacity: 0.05;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }   /* rotateだけにする */
    to   { transform: rotate(360deg); }
}

/*
スクロールしたら現れる------------------- */
.f-up {
    opacity: 0;
}
.f-up.fadeup {
    animation: fadeupanime 1s forwards;
}
@keyframes fadeupanime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
ローディング
----------------------------------------------------------- */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-brown);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
}
#loading.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.loading-logo {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    width: 200px;
}
.loading-logo.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sp-only {
    display: none;
}

/*
split layout
----------------------------------------------------------- */
.split-layout {
    width: 100%;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    color: var(--color-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.3s, visibility 0.3s;   /* フワッと消えるように */
}
header.is-hidden {
    opacity: 0;
    visibility: hidden;   /* クリックできないようにもする */
}

main {
    margin-left: 300px;
}

/*
main visual
----------------------------------------------------------- */
.mv {
    position: relative;
}

.mv-overlay {
    display: none;   /* PCでは非表示 */
}

.slider img {
    width: 100%;
}
/* スライダー矢印カスタマイズ */
.swiper-button-prev svg,
.swiper-button-next svg {
    display: none; /* デフォルトの矢印を非表示 */
}
.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(232, 228, 220, 0.4);
    border-radius: 50%;
    color: var(--color-cream);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 168, 76, 0.08);
}
.swiper-button-prev {
    left: 20px;
}
.swiper-button-next {
    right: 20px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 14px; /* 細枠に合わせて小さめ */
    content: "\f054"; /* chevron-right */
}
.swiper-button-prev:after {
    content: "\f053"; /* chevron-left */
}
/* スライダードットカスタマイズ */
.swiper-pagination-bullet {
    background: var(--color-white);
    opacity: 0.6;
}
.swiper-pagination-bullet-active {
    background: var(--color-cream);
    opacity: 1;
}

/* ヘッダー
----------------------------------------------------------- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: auto;
    margin-top: 360px;
    color: var(--color-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, visibility 0.3s;   /* フワッと消えるように */
}
.nav.is-hidden {
    opacity: 0;
    visibility: hidden;   /* クリックできないようにもする */
}

.nav-overlay,
.menu {
    display: none;   /* PCでは最初から非表示 */
}

.main-menu {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-menu li {
    letter-spacing: 0.3em;   
}

.main-menu a {
    color: var(--color-cream);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3em;               /* 通常時の文字間（今の指定に合わせる） */
    transition: letter-spacing 0.3s ease, color 0.3s ease;
}

.main-menu a:hover {
    letter-spacing: 0.5em;            /* ホバー時に少し広げる */
    color: var(--color-hover);           /* 金色に */
}


/* ヘッダーロゴ */
.logo-header {
    margin-top: 120px;
    margin-bottom: 20px;
}
.logo-header img {
    width: 200px;
    height: auto;
    margin: 0;
}

.instagram-icon {
    font-size: 40px;
}

/* アバウトセクション 
----------------------------------------------------------- */

.about-img {
    display: flex;
    width: 100%;
}

.about-txt {
    padding: 0 15px;
}

.char-anim .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.char-anim.is-visible .char {
    opacity: 1;
    transform: translateY(0);
}

.line-anim .line {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.line-anim.is-visible .line:nth-child(1) { transition-delay: 0.5s; }
.line-anim.is-visible .line:nth-child(2) { transition-delay: 0.65s; }
.line-anim.is-visible .line:nth-child(3) { transition-delay: 0.8s; }
.line-anim.is-visible .line:nth-child(4) { transition-delay: 0.95s; }

.line-anim.is-visible .line {
    opacity: 1;
    transform: translateY(0);
}

.about-video-01,
.about-img-02 {
    flex: 1;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* メニューセクション
----------------------------------------------------------- */

.meal-menu {
    color: var(--color-cream);
}

.meal-menu h3 {
    width: 80%;
}

.meal-top {
    position: relative;
    width: 100%;
    height: auto;
}
.meal-top img {
    margin: 0;
    width: 80%;
}
.meal-top-txt {
    position: absolute;
    right: 0;          /* 右にはみ出す */
    bottom: -50px;          /* 下にもはみ出す */
    width: 430px;
    background:rgba(247, 241, 234, 0.75);
    padding: 30px;
    color: var(--color-brown);
}

.meal-title , .sweets-title {
    display: flex;
    align-items: center;
}

.meal-title h4 , .sweets-title h4 {
    margin-right: 30px;
    line-height: 1.8;
}

.meal-title p , .sweets-title p {
    font-size: 26px;
}

.meal-second-line ,.sweets-second-line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap :30px;
    list-style: none;
    margin-top: 60px;
}

.sweets-menu {
    color: var(--color-cream);

}
.sweets-first-line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap :30px;
    list-style: none;
    margin-top: 60px;
}

/* ニュースセクション
----------------------------------------------------------- */

.sec-news {
    text-align: center;
}
.news-list {
    display: flex;
    text-align: left;
    gap: 30px;
    flex-direction: column;
    margin: 0 auto;
    width: fit-content;
}

.news-list li a {
    display: flex;
    text-decoration: none;
    letter-spacing: 0.1em;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 2px;
    gap: 20px;
    transition: background 0.3s ease;
    align-items: center;
}

.news-list li a:hover {
    background: rgba(212, 175, 55, 0.12);   /* 金色をうっすら12%の濃さで */
}

.news-list a time {
    width: 150px;
    flex-shrink: 0;
}

.news-tag {
    width: 85px;
    height: auto;
    padding: 4px;
    background-color: #fff;
    font-size: 15px;
    box-sizing: content-box;
    text-align: center;
    flex-shrink: 0;
    border-radius: 5px;
}

.news-txt {
    flex: 1;
}

.news-list.is-visible .line:nth-child(1) { transition-delay: 0.4s; }
.news-list.is-visible .line:nth-child(2) { transition-delay: 0.5s; }
.news-list.is-visible .line:nth-child(3) { transition-delay: 0.6s; }
.news-list.is-visible .line:nth-child(4) { transition-delay: 0.7s; }
.news-list.is-visible .line:nth-child(5) { transition-delay: 0.8s; }

/* ギャラリーセクション
----------------------------------------------------------- */

.gallery {
    margin-top: 70px;
}

.gallery-main {
    width: 100%;
}

.gallery-main img {
    width: 80%;
    margin: 0;
}


.gallery-thumbs-slider {
    margin-top: 50px;
}

.gallery-thumbs-slider .swiper-slide {
    width: calc((100% - 48px) / 4);   /* 4枚表示、gap16px×3個分を差し引く */
}

.gallery-thumbs-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.2s;
}

.gallery-thumbs-slider img.active {
    border-color: var(--color-cream);
}

.smooth {
  clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.smooth.is-animated {
  clip-path: inset(0);
}

/* フッター
----------------------------------------------------------- */
footer {
    background: var(--color-cream);
    margin: auto;
}
.footer-block {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-left {
    flex: 1;
}
.footer-right {
    flex: 1;
    min-width: 0;
}

.footer-menu {
    writing-mode: vertical-rl;
    margin: auto;
    margin-bottom: 55px;
}

.footer-menu li {
    padding: 0 15px;
    font-size: 18px;
    letter-spacing: .3em;
}

.footer-menu a:hover {
    color: var(--color-hover2);           /* 金色に */
}

.footer-info {
    display: flex;
}

.footer-info li p {
    text-align: left;
}

/* フッターロゴ */
.logo-footer {
    margin-right: 40px;
}
.logo-footer img {
    width: 200px;
    height: auto;
    margin: 0;
}
/* マップ */
.footer-right iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.copyright {
    font-size: 12px;
}

/* シングルページ---------------- */

.sec-single {
    text-align: center;
    min-height: 100vh;   /* 最低でも画面の高さは確保する */
}

.single-tag-time-title {
    display: flex;
    text-decoration: none;
    letter-spacing: 0.1em;
    gap: 0 10px;
    transition: background 0.3s ease;
    align-items: center;
    flex-wrap: wrap;
    max-width: 700px;
    margin: auto;
}

.sec-single .time-tag {
    flex-shrink: 0;
}

.sec-single .news-tag {
    width: auto;
    height: auto;
    padding: 2px 4px;
    background-color: #fff;
    font-size: 14px;
    box-sizing: content-box;
    text-align: center;
    flex-shrink: 0;
    border-radius: 5px;
}
.sec-single .time-tag {
    font-size: 14px;
}

.sec-single h2 {
    font-size: 30px;
    letter-spacing: .2rem;
    margin-top: 20px;
    margin-bottom: 40px;
    flex-shrink: 0;
    flex-basis: 100%;
    line-height: 1.5;
}

.wp-block-image img {
    margin: 20px auto; /*画像の上下に余白*/
}


/* カテゴリページ
----------------------------------------------------------- */

.sec-category {
    text-align: center;
}

.sec-category {
    min-height: 100vh;   /* 最低でも画面の高さは確保する */
}


/* メニューページ
----------------------------------------------------------- */
 .page-menu {
    text-align: center;
 }

 .page-menu h3 {
    color: var(--color-brown); 
    border-color: var(--color-brown);
    font-size: 35px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    width: 100%;
}

 .page-menu h4 {
    font-size: 20px;
    line-height: 1.8;
    margin-right: 20px;
}

.page-menu .meal-title ,
.page-menu .sweets-title {
    display: flex;
    color: var(--color-brown);
    text-align: left;
    flex-wrap: wrap;
}
.page-menu .meal-title p ,
.page-menu .sweets-title p ,
.page-menu .sweets-title-2 p {
    font-size: 20px;
    margin-left: 0;
}

.meal-line , .sweets-line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap :30px;
    list-style: none;
}

.sweets-line-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap :0px 30px;
    list-style: none;
    margin-top: 20px;
}

.sweets-title-2 {
    font-size: 18px;
    color: var(--color-brown);
    display: flex;
    gap: 20px;
}




/*
レスポンシブ tablet + mobile 共通
----------------------------------------------------------- */
@media screen and (max-width: 1199px) {

    header {
        display: none;
    }

    main {
        width: 100%;
        margin-left: 0;
    }

    /* .navをドロワーとして使用（PC横並びからドロワーに切り替え） */
    .nav {
        position: fixed;
        top: 0;
        left: auto;
        right: 0;
        width: 280px;
        height: 100%;
        background: var(--color-brown); /* ダーク背景 */
        transform: translateX(100%); /* 閉じた状態：画面外に隠す */
        transition: transform 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 100px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        justify-content: normal;
        margin-top: 0;
    }
    /* 開いた状態：スライドイン */
    body.open .nav {
        transform: translateX(0);
    }
    /* SP/TB時のmain-menu：縦並びに変更 */
    .main-menu {
        flex-direction: column;
    }
    /* SP/TB時のnav-link：ドロワーリンクのスタイルに変更 */
    .nav-link {
        height: 55px;
        line-height: 55px;
        padding: 0 var(--space-section);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    /* ドロワー時はホバー下線アニメーションを無効化 */
    .nav-link::after {
        display: none;
    }
    /* オーバーレイ */
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    /* 開いた状態：オーバーレイ表示 */
    body.open .nav-overlay {
        opacity: 1;
        visibility: visible;
    }
    /* ハンバーガーメニュー */
    .menu {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        z-index: 1001;
    }
    .menu span {
        display: block;
        height: 3px;
        background: var(--color-cream); 
        position: absolute;
        width: 100%;
        left: 0;
        transition: 0.5s ease-in-out;
        border-radius: 3px;
    }
    .menu span:nth-child(1) { top: 5px; }
    .menu span:nth-child(2) { top: 15px; }
    .menu span:nth-child(3) { top: 25px; }
    body.open .menu span:nth-child(1) { top: 12px; rotate: 135deg; }
    body.open .menu span:nth-child(2) { width: 0; left: 50%; }
    body.open .menu span:nth-child(3) { top: 12px; rotate: -135deg; }

/*
main visual------------------ */
.mv-overlay {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);   /* 暗めのオーバーレイ */
        z-index: 10;
    }

    .mv-logo {
        width: 160px;   /* お好みのサイズに調整 */
    }

/* シングルページ---------------- */


.sec-single h2 {
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.sec-single .news-tag,
.sec-single .time-tag {
    font-size: 12px;
}

.sec-single p {
    font-size: 15px;
}

    
}







/*
レスポンシブ mobile
----------------------------------------------------------- */
@media screen and (max-width: 767px) {

/*ベース------------------ */
h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

/*縦書きh2*/
.title-vertical {
    top: 60px;
    right: 1%;
}

.title-vertical h2 {
    padding: 20px 8px;
    margin: 0;
    font-size: 24px;
}

.title-vertical::before {
    top: 2px;
    left: 5px;
}
/*よこ書きh2*/
.title-horizontal {
    font-size: 24px;
    margin-bottom: 30px;
}

h3 {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 20px;
    padding-bottom: 6px;
}

h4 {
    font-size: 18px;
}

p {
    font-size: 14px;
}

.button-more-cream ,.button-more-brown {
    margin-top: 50px;
}

.button-more-cream a ,.button-more-brown a {
    font-size: 14px;
    padding: 10px 20px;
    width: fit-content;
    max-width: 200px;
    box-sizing: content-box;
}

/*
レイアウト------------------ */
.wrapper-wide {
    margin: 0 40px;
    padding: 60px 0 80px 0;
}
.wrapper-small  {
    padding: 60px 0 80px 0;
}

.wrapper-footer  {
    padding: 60px 0 40px 0;
}

.wrapper-single  {
    margin: 0 40px;
    padding: 60px 15px 80px 15px;
}

.wrapper-p-menu {
    margin: 0 40px;
    padding: 60px 15px 80px 15px;
}

/*格子柄背景*/
.pattern {
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
}

.sp-only {
    display: block;
}

.pc-only {
    display: none;
}

/*花輪*/
.ring-flower {
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
}

.ring-flower-b {
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
}

/*
メニューセクション------------------ */

.meal-menu h3 {
    width: 100%;
}

.meal-title p , .sweets-title p {
    font-size: 18px;
    margin-left: 20px;
}

.meal-second-line ,.sweets-second-line {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
}

.meal-top-txt-sp {
    position: static;
    width: 100%;
    background:none;
    color: var(--color-cream);
    width: 80%;
    margin: 40px 0 50px 0;
}

.meal-top-txt-sp p {
    text-align: left;
}

.meal-top img {
    width: 100%;
}

.sweets-first-line {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
}

.meal-menu {
    margin-bottom: 50px;
}

/*
ニュースセクション------------------ */

.news-list {
    gap: 20px;
}

.news-list li a {
    font-size: 14px;
}
.news-list a time {
    white-space: nowrap;   /* 日付が絶対に折り返さないようにする */
    width: auto;
    margin-right: 0;
}

.news-list li a {
    display: flex;
    text-decoration: none;
    flex-wrap: wrap;
    letter-spacing: 0.1em;
    font-size: 14px;
    padding: 8px 12px;
    margin: 0 -12px;                          /* paddingを足した分、外側の見た目位置がズレないよう相殺 */
    border-radius: 2px;
    gap: 10px; 
    transition: background 0.3s ease;
}

.news-list {
        padding: 0 15px;
    }

.news-tag {
    width: 70px;
    padding: 2px;
    font-size: 12px;
    border-radius: 3px;
}

/*
ギャラリーセクション------------------ */
.gallery {
margin-top: 40px;
}

.gallery-thumbs-slider {
    margin-top: 20px;
}

.gallery-thumbs-slider .swiper-slide {
    width: calc((100% - 24px) / 4);   /* 4枚表示、gap16px×2個分を差し引く */
}

/*
フッター------------------ */

.footer-block {
    display: block;
}

.footer-menu {
    margin-bottom: 30px;
}

.footer-menu li {
    padding: 0 15px;
    font-size: 13px;
    letter-spacing: .3em;
}

.logo-footer {
    margin-right: 20px;
}

.logo-footer img {
    width: 120px;
}

.footer-info-txt {
    font-size: 12px;
}

.footer-right {
    margin-top: 30px;
}

/* シングルページ---------------- */

.single-tag-time-title {
    display: flex;
    text-decoration: none;
    letter-spacing: 0.1em;
    gap: 0 10px;
    transition: background 0.3s ease;
    align-items: center;
    flex-wrap: wrap;
}

.sec-single h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.sec-single .news-tag,
.sec-single .time-tag {
    font-size: 10px;
}

.sec-single p {
    font-size: 14px;
}

/* メニューページ---------------- */
.meal-line , .sweets-line {
    grid-template-columns: repeat(1, 1fr);    
}

.sweets-line-2 {
    grid-template-columns: repeat(2, 1fr);    
}

 .page-menu h3 {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 20px;
    padding-bottom: 6px;
}

 .page-menu h4 {
    font-size: 18px;
 }

 .page-menu .meal-title p,
.page-menu .sweets-title p ,
.page-menu .sweets-title-2 p {
    font-size: 18px;
}

 .page-menu .sweets-menu {
    margin-top: 40px;
}


}

/*
レスポンシブ mobile 480
----------------------------------------------------------- */
@media screen and (max-width: 479px) {
.sweets-line-2 {
    grid-template-columns: repeat(1, 1fr);    
}



}