@charset "utf-8";

/*
Theme Name: syeahagu
Description: syeahagu用のテンプレートです
Version: 1.0
Author: amelab
*/

/*=====common====== */
html {
  font-size: 16px;
}

html, body {
  overflow-x: hidden;
  background-color: var(--main-color)!important;
}

/* ====font======= */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}



/* ===========header================ */

/* .premium-header__sns { 
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #fff;
  padding: 20px 5px;
  border-radius: 6px 6px 0 0;
  gap: 5px;
  z-index: 1;
}

.premium-header__sns img {
  width: 50px;
}

@media screen and (max-width:768px){
  .premium-header__logo img {
    width: 250px;
  }

  .premium-header__logo {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;
  }
} */



/* ========= nav ========= */

.premium-header__sp-nav{ display:none; }

.premium-header__pc-nav{
  background: var(--header-color, #FFCB21);
  color: var(--header-text, #4E3204);
  text-align: center;
  display: flex;
  gap: 30px;
  padding: 10px 35px;
  justify-content: center;
  align-items: center;
}

.premium-header__pc-nav ul{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.premium-header__pc-nav ul ul{ display:block; }

.premium-header__pc-nav ul li{ position: relative; }

.premium-header__pc-nav ul li a{
  display: block;
  text-decoration: none;
  padding: 15px 20px;
  transition: all .3s;
  font-size: 1.1rem;
  line-height: .9;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  color: var(--header-text, #4E3204);
}

.premium-header__pc-nav ul li a span{
  font-size: .7rem;
  font-family: "IBM Plex Sans JP", sans-serif;
}

.premium-header__pc-nav ul li li a{ padding: 10px 35px; }

.premium-header__pc-nav ul li a:hover{
  color: var(--header-hover, #FFDD55);
}

/* ←ここ修正：#header ではなく .premium-header に合わせる */
.premium-header.fixed{
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  opacity: .9;
  margin-top: initial;
}

.premium-header__logo img{ width:150px; max-width:initial; }
.premium-header__sns  img{ width:50px;  max-width:initial; }



/* ===== PC用 TRYボタン ===== */
.premium-header__nav_try--pc {
  /* 置き場所に合わせて微調整 */
  margin-left: 16px;
}

.premium-header__nav_try--pc a {
  display: inline-flex;          /* 2行表示でも中央揃え */
  flex-direction: column;
  justify-content: center;
  align-items: center;

  min-width: 180px;
  padding: 10px 16px;
  border: 2px solid var(--header-text);
  border-radius: 9999px;

  background: #fff;
  color: var(--header-text);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .1s ease, box-shadow .2s ease;
}

.premium-header__nav_try--pc a:hover {
  background: var(--header-text);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}

/* PCでは改行タグを非表示（1行でも2行でも崩れない） */
.premium-header__nav_try--pc .sp_br {
  display: none;
}

/* スマホではPC用ボタンを非表示（重複回避） */
@media (max-width: 767.98px) {
  .premium-header__nav_try--pc { display: none; }
}

/* もしPCナビが横並びでない場合だけ有効化（既にflexなら不要） */
@media (min-width: 768px) {
  .premium-header__pc-nav {
    display: flex;
    align-items: center;
    gap: 20px; /* 必要に応じて広げる */
  }
}






.premium-header__sp-logo{ display:none; }



/* --- 共通の調整（折り返し許可＆列間の自動調整） --- */
.premium-header__pc-nav{
  flex-wrap: wrap;            /* 幅が足りなければ2段に */
  justify-content: space-between; /* 余白を均等に */
  row-gap: 10px;              /* 折返し時の上下間隔 */
}

/* ナビULにも折返しを許可してギュッと詰める */
.premium-header__nav-list{
  gap: 8px 12px;              /* 行間/列間のギャップ */
  flex-wrap: wrap;
}

/* ========== 1200px 以下：少し縮小 ========== */
@media (max-width: 1200px){
  .premium-header__logo img{ width: 130px; }
  .premium-header__nav-list a{
    padding: 12px 16px;
    font-size: 1.0rem;
  }
  .premium-header__pc-nav{ gap: 18px; padding: 10px 24px; }
  .premium-header__nav_try--pc a{
    min-width: 160px;
    padding: 8px 14px;
  }
  .premium-header__sns img{ width: 44px; }
}

/* ========== 1024px 以下：さらにコンパクト ========== */
@media (max-width: 1024px){
  /* 全体を2段構成になっても崩れないように */
  .premium-header__pc-nav{
    justify-content: center;    /* 真ん中寄せ */
    gap: 14px;
    padding: 8px 16px;
    
  }

  .premium-header__logo{ order: 1; }
  .premium-header__nav-list{ order: 2; }
  .premium-header__nav_try--pc{ order: 3; }
  .premium-header__sns{ order: 4; }

  .premium-header__logo img{ width: 110px; }

  .premium-header__nav-list a{
    padding: 10px 12px;
    font-size: .95rem;
  }

  /* TRYボタンも小さく */
  .premium-header__nav_try--pc a{
    min-width: 150px;
    padding: 8px 12px;
    border-width: 2px;
    line-height: 1.15;
  }

  /* SNSアイコンはやや小さく */
  .premium-header__sns img{ width: 38px; }

  /* 高さが詰まり過ぎるのを軽減 */
  .premium-header__pc-nav > *{
    margin: 0 4px;
  }
}

/* ========== 900px 以下：ナビ文字をさらに詰める ========== */
@media (max-width: 900px){
  .premium-header__nav-list a{
    padding: 8px 10px;
    font-size: .9rem;
  }
  .premium-header__nav_try--pc a{
    min-width: 140px;
    padding: 7px 10px;
  }
  .premium-header__sns img{ width: 34px; }
}

/* ========== 820px 以下：ボタンを1行表示優先に ========== */
@media (max-width: 820px){
  .premium-header__nav_try--pc .sp_br{ display: none; } /* 改行を消して1行に */
  .premium-header__nav_try--pc a{
    min-width: auto;           /* 幅固定を解除して詰める */
    padding: 6px 10px;
    font-size: .9rem;
  }
}

/* 既存のSP切替は 768 未満でOK（あなたのCSSと同じ前提） */


/* PCナビは折り返し前提 */
.premium-header__pc-nav{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  column-gap:16px;
  row-gap:10px;
}

/* 基本は横並び。幅が狭くなったらレイアウトを切替 */
@media (max-width: 1200px){
  /* 並び順：左=ロゴ / 右=TRY→SNS / 2段目=ナビ */
  .premium-header__logo{ order:1; }

  /* ここが“右寄せトリガー”。この要素に margin-left:auto を与えると、
     以降の兄弟（=SNS）が右側にまとまって並びます。 */
  .premium-header__nav_try--pc{
    order:2;
    margin-left:auto;            /* ←右側へ押し出し */
    flex:0 0 auto;               /* 幅を縮めて折り返しにくく */
    white-space:nowrap;          /* 2行テキストでも塊で扱う */
  }

  .premium-header__sns{
    order:3;
    flex:0 0 auto;
  }

  /* ナビは2段目にフル幅で配置＆中央寄せ */
  .premium-header__nav-list{
    order:4;
    flex:0 0 100%;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px 12px;
  }

  /* 少しコンパクト化（必要なら調整） */
  .premium-header__logo img{ width:120px; }
  .premium-header__nav-list a{ padding:10px 12px; font-size:.95rem; }
  .premium-header__nav_try--pc a{ min-width:150px; padding:8px 12px; }
  .premium-header__sns img{ width:38px; }
}

/* さらに狭いとき（～1024px）：余白を詰めて安定化 */
@media (max-width: 1024px){
  .premium-header__pc-nav{ padding:8px 12px; column-gap:12px; }
  .premium-header__nav_list a{ padding:8px 10px; font-size:.9rem; }
  .premium-header__nav_try--pc a{ min-width:auto; padding:7px 10px; }
  .premium-header__sns img{ width:34px; }
}























/* ========== SP ========== */
@media (max-width:1024px){
  .premium-header__sp-logo{ display:block; }

  .premium-header__pc-nav{ display:none; }
  .premium-header__sp-nav{ display:block; }
  .premium-header__sns{ display:none; }
  .premium-header__pc-nav{ margin-top:0; }

  .premium-header__g-nav{
    position: fixed; z-index: 999; top: 0;
    width: 100%; height: 100vh;
    background: var(--sp-panel-bg, var(--header-color, #FFCB21));
    border-radius: var(--sp-panel-radius, 0);
    transition: all .6s; transform: translateX(100%);


  }
  .premium-header__g-nav.panelactive{
    right: 0; margin-top: 0; transform: translateX(0); padding: 30px;
  }
  .premium-header__g-nav.panelactive .premium-header__g-nav-list{
    position: fixed; z-index: 999; width: 100%; height: 90vh;
    overflow: auto; -webkit-overflow-scrolling: touch;
  }

  .premium-header__nav_try{
    text-align: left;
    margin-top: 15px;
  }

  .premium-header__g-nav ul{ 
    display:block; 
    margin:50px 0 0 0px; 
  }

  .premium-header__g-nav-list li{ 
    list-style:none; 
    text-align:left; 
    margin-top: 10px;
  }
  .premium-header__g-nav-list li a{
    color: var(--sp-link-text, var(--header-text, #4E3204));
    text-decoration:none; padding:10px; display:block;
    text-transform:uppercase; letter-spacing:.1em;
    font-weight:bold; line-height:.8;
  }
  .premium-header__g-nav-jp{ font-size:.7rem; margin-top:5px; }

  .premium-header__nav-footer{ margin:35px 0px; }
  .premium-header__nav-footer-item{ display:flex; gap:15px; text-align: center; }
  .premium-header__nav-footer-item-box{
    font-size:.8rem;
    background: var(--sp-card-bg, #fff);
    border-radius: var(--sp-card-radius, 10px);
    border:1px solid var(--sp-card-border, #000);
    width:100px; 
    height:90px;
    color: var(--sp-link-text, var(--header-text, #4E3204));
  }
  .premium-header__nav-footer-item-box p{ margin-top:15px; }

  .premium-header__nav_try a{
    display:inline-block; 
    max-width: 330px; 
    height: 65px;
    background: var(--sp-btn-bg, #fff);
    color: var(--sp-btn-text, var(--header-text, #4E3204));
    font-size:1.2rem; 
    font-weight:500; 
    padding:8px 65px;  
    border-radius: var(--sp-btn-radius, 10px); 
    border:1px solid var(--sp-btn-border, #000);
    line-height:1.2;
    text-align: center;
  }

  .premium-header__sp-sns{ 
    margin:20px 0; 
    width:330px; 
    color: var(--sp-link-text, var(--header-text, #4E3204));
    text-align: center;
  }
  .premium-header__sp-sns-item{ 
    align-items:center; 
    justify-content:space-between; 
    position:relative; 
    font-size:.87rem; 
    margin-bottom:5px; 
  }

  .premium-header__sp-sns-icons{ 
    display:flex; 
    justify-content:center; 
    margin-top:10px; 
    gap:10px; }

  .premium-header__sp-sns-item img{ 
    width:45px; 
    height:45px; 
  }

  /* ハンバーガー */
  .premium-header__openbtn{
    position: fixed; 
    z-index: 9999; 
    top:10px; 
    right:10px; 
    cursor:pointer;
    width:50px; height:50px;
    background: var(--sp-hamburger-bg, var(--header-color, #FFCB21));
    border-radius: var(--sp-hamburger-radius, 0);
  }
  .premium-header__openbtn span{
    display:inline-block; transition:all .4s; position:absolute;
    left:14px; height:3px; border-radius:2px;
    background: var(--sp-hamburger-bar, #fff); width:45%;
  }
  .premium-header__openbtn span:nth-of-type(1){ top:15px; }
  .premium-header__openbtn span:nth-of-type(2){ top:23px; }
  .premium-header__openbtn span:nth-of-type(3){ top:31px; }
  .premium-header__openbtn.active span:nth-of-type(1){ top:18px; left:18px; transform:translateY(6px) rotate(-45deg); width:30%; }
  .premium-header__openbtn.active span:nth-of-type(2){ opacity:0; }
  .premium-header__openbtn.active span:nth-of-type(3){ top:30px; left:18px; transform:translateY(-6px) rotate(45deg); width:30%; }

  .premium-header__sp-logo{
    position: fixed; z-index: 9999; top:10px; left:10px; cursor:pointer;
    width:50px; height:50px;
  }
  .premium-header__sp-logo img{ width:80px; max-width:initial; }
}










/* ========== 店舗ページ専用CSS ========== */
.store-hero {
  position: relative;
}

.mv img {
  width: 100vw;
  height: auto;
  max-height: 60vh;
  object-fit: cover;
  display: block;
}

.mv_title {
  background-color: #fff;
  color: #000;
  position: absolute;
  right: 5%;
  bottom: 3%;
  opacity: 70%;
  width: fit-content;
  padding: 20px;
  font-size: 4rem;
}


/* about================================ */
.about {
  margin-top: 80px;
}

.store_h2_ps {
  color: var(--about-title-color-ps, #000000);
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
}

.about-box {
  width: 85%;
  margin: 0 auto;
}

.about-text_ps {
  color: var(--about-text-color-ps, #333333);
  text-align: center;
  margin-top: 30px;
  font-size: 1.3rem;
  line-height: 1.5;
}




/* news======================================== */

.premium-news-section {
  width: 90%;
  max-width: 1100px;
  background-color:  var(--news-bg-color, #fff);
  margin: 80px auto;
  padding: 50px 20px;
  font-family: "Noto Sans JP", sans-serif;

}

.news-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--news-title-color-ps, #000000);
  margin-bottom: 30px;
}

.premium-news-list {
  max-width: 700px;
  list-style: none;
  padding: 0;
  margin: 30px auto;
}


.premium-news-list li {
  border-bottom: var(--news-border-width, 1px)
                 var(--news-border-style, dashed)
                 var(--news-border-color, #F39600);
  padding: 10px 0;
}

.premium-news-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--news-text-color);
  gap: 10px;
}

.premium-news-list .date {
  flex-shrink: 0;
  width: 110px;
  color:var(--news-date-color);
  font-size: 0.9rem;
}

.premium-news-list .text {
  flex-grow: 1;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list .arrow {
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}




@media screen and (max-width: 768px) {

.news-title {
  font-size: 2rem;
}

  .news-section {
    padding: 30px 15px;
    margin: 60px auto;
    width: 90%;
  }

  .news-list {
    width: 100%;
    margin: 20px auto;
  }

  .news-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 0;
    font-size: 1rem;
  }

  .news-list .date {
    flex: none;
    width: auto;
    color: #888;
  }

  .news-list .text {
    margin: 0;
    width: 100%;
  }

  
  .heading .text {
    font-size: 1.3rem;
  }
}


 /* B */
.pattern-b .news-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.pattern-b .news-card {
  flex: 1 1 calc(33% - 20px);
  background: var(--news-b-bg-color, #fff7e6);
  border: 1px solid var(--news-b-border-color, #f0c674);
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  color: var(--news-b-text-color, #333);
  transition: 0.3s;
}


.pattern-b .news-card:hover {
  background: var(--news-b-hover-bg-color, #ffe299);
}

.pattern-b .news-card-date {
  display: block;
  font-size: 0.9rem;
  color: var(--news-b-date-color, #a67c00);
  margin-bottom: 10px;
}

.pattern-b .news-card-text {
  font-size: 1rem;
  line-height: 1.4;
}
@media (max-width:768px){
  .pattern-b .news-card{
    flex: 1 1 100%;
  }
}


/* C */
.pattern-c .news-timeline {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin: 30px auto;
  max-width: 700px;
}

.pattern-c .news-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--news-c-line-color, #f39600);
}

.pattern-c .news-timeline li {
  position: relative;
  padding: 10px 0 10px 20px;
}

.pattern-c .news-timeline li::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 16px;
  width: 10px;
  height: 10px;
  background: var(--news-c-dot-color, #f39600);
  border-radius: 50%;
}

.pattern-c .timeline-date {
  font-size: 0.9rem;
  color: var(--news-c-date-color, #666);
  display: block;
  margin-bottom: 5px;
}

.pattern-c .timeline-content {
  font-size: 1rem;
  color: var(--news-c-text-color, #333);
}

/* クリック領域をブロック化 */
.pattern-c .news-timeline .timeline-link{
  display:block;
  text-decoration:none;
  color: var(--news-c-text-color);
}

/* hover演出（任意） */
.pattern-c .news-timeline .timeline-link:hover .timeline-content{
  text-decoration: underline;
}

/* 縦線・ドットは装飾だけなのでクリックを邪魔しない */
.pattern-c .news-timeline::before,
.pattern-c .news-timeline li::before{
  pointer-events: none;
}



/* news一覧===================== */
/* na- : news archive */
.na-archive { background:#f8f2e8; padding:40px 0; }
.na-breadcrumb { width:90%; max-width:1100px; margin:0 auto 24px; font-size:.95rem; }
.na-breadcrumb a { text-decoration:none; }
.na-title { width:90%; max-width:1100px; margin:0 auto 28px; text-align:center; font-size:2rem; font-weight:700; }
.na-title .na-circle { display:inline-block; width:44px; height:44px; background:#f2c400; border-radius:50%; margin-right:12px; vertical-align:middle; }
.na-list { width:90%; max-width:1100px; margin:0 auto; background:#fff; padding:40px; }
.na-item a{ display:flex; align-items:center; text-decoration:none; color:#111; border-bottom:1px dashed #f5a200; }
.na-item:last-child a{ border-bottom:none; }
.na-date{ width:140px; color:#666; }
.na-text{ flex:1; }
.na-arrow{ font-size:1.6rem; }

.na-pager{ width:90%; max-width:1100px; margin:28px auto 0; text-align:center; }




/* ===== News Detail (nd-) ===== */
.nd-wrap{
  background: var(--nd-bg, #f8f2e8);
  padding: 40px 0 80px;
}
.nd-breadcrumb, .nd-card, .nd-back, .nd-top{
  width: 90%;
  max-width: var(--nd-max, 900px);
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumb */
.nd-bc{ display:flex; justify-content: var(--bc-align, center); margin: 0 auto 24px; }
.nd-bc-list{
  display:flex; align-items:center; 
  background: var(--bc-bg, #ffd233); color: var(--bc-text, #000);
  padding: var(--bc-pad-v,10px) var(--bc-pad-h,18px);
  border-radius: var(--bc-radius,8px);
  list-style:none; margin:0;
  box-shadow: var(--bc-shadow, none);
}
.nd-bc-item{ display:flex; align-items:center; }
.nd-bc-item a{ color: var(--bc-link, #000); text-decoration:none; font-weight:700; }
.nd-bc-item a:hover{ color: var(--bc-hover, #333); }
/* 2個目以降の項目の「前」に区切りを出す */
.nd-bc-item + .nd-bc-item::before{
  content: var(--bc-sep, "＞");
  margin: 0 var(--bc-gap-x, 16px);
  color: var(--bc-text, #000);
  font-weight: 700;
}

/* 重複防止：以前の after 区切りを無効化 */
.nd-bc-item:not(:last-child)::after{ content: none !important; }


.nd-breadcrumb.nd-bc { background: var(--bc-bar-bg, transparent); }

/* 本文カード */
.nd-card{
  background: var(--nd-card-bg, #fff);
  padding: var(--nd-card-pad, 36px);
  border-radius: var(--nd-radius, 12px);
  color: var(--nd-text-col, #111);
  box-shadow: var(--nd-shadow, none);
}
.nd-date{ color: var(--nd-date-col, #666); margin: 0 0 6px; }
.nd-title{ font-size: var(--nd-title-size, 1.8rem); margin: 0 0 20px; font-weight: 700; color: var(--nd-title-col, #111); }
.nd-content p{ line-height: 1.9; margin: 1em 0; }
.nd-content img{ max-width: 100%; height: auto; }
.nd-thumb{ margin: 0 0 18px; }
.nd-thumb img{ width:100%; height:auto; border-radius: calc(var(--nd-radius,12px) * .6); }

/* 戻る/Top ボタン */
.nd-back{ text-align:center; margin:30px 0 0; }
.nd-back-btn{
  display:inline-block; background: var(--nd-btn-bg, #fff); color: var(--nd-btn-text, #000);
  border:1px solid var(--nd-btn-bd, #e0e0e0);
  padding:12px 24px; border-radius:999px; text-decoration:none; font-weight:700;
}
.nd-back-btn:hover{ background: var(--nd-btn-hov, #f5f5f5); }

.nd-top{ text-align:center; margin:48px auto 0; }
.nd-top-btn{
  display:inline-block; padding:12px 26px;
  background: var(--nd-btn-bg, #fff); color: var(--nd-btn-text, #000);
  border:1px solid var(--nd-btn-bd, #e0e0e0); border-radius:999px; text-decoration:none; font-weight:700; font-size:.95rem;
}
.nd-top-btn:hover{ background: var(--nd-btn-hov, #f5f5f5); }

/* ちょいレスポンシブ */
@media (max-width: 640px){
  .nd-title{ font-size: calc(var(--nd-title-size, 1.8rem) * .92); }
  .nd-bc-list{ padding: var(--bc-pad-v,8px) var(--bc-pad-h,14px); }
}










/* 下部 TOP ボタン */
.na-top{
  text-align:center;
  margin:48px 0 80px;
  position: relative;
  z-index: 1;
}
.na-top-btn{
  display:inline-block;
  padding:12px 26px;
  background:#fff;
  border:1px solid #ccc;
  border-radius:999px;
  text-decoration:none;
  color:#000;
  font-weight:700;
  font-size: 0.95rem;
}
.na-top-btn:hover{
  background:#f5f5f5;
}

















/* =====event================================ */

.premium-event-section {
  background-color: var(--event-bg);
  padding: var(--event-pad-y) var(--event-pad-x);
  font-family: "Noto Sans JP", sans-serif;
  border: var(--event-border-w) solid var(--event-border);
  border-radius: var(--event-radius);
  margin: 40px auto;
  width: 90%;
  max-width: 1100px;
}

.event-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--event-title);
}

.event-title .circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--event-circle);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.premium-event-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.premium-event-card {
  background-color: var(--a-card-bg);
  color: var(--a-text);
  border-radius: var(--a-radius);
  padding: 15px;
  width: 260px;
  box-sizing: border-box;
  text-align: left;
  box-shadow: var(--a-shadow);
}

.premium-event-image {
  background-color: #ccc;
  width: 100%;
  height: auto;                     /* ← wrapper の高さは自動 */
  margin-bottom: 10px;
  border-radius: var(--a-img-radius);
  overflow: hidden;                 /* はみ出し対策 */
}

.premium-event-image img.premium-event-img{
  display:block;
  width:100%;
  height: var(--a-img-h);           /* 例: 150px（変数で制御） */
  object-fit: cover;
  border-radius: inherit;
}


.premium-event-text p {
  margin: 8px 0;
  font-size: 0.9rem;
}

.event-button {
  margin-top: 50px;
  text-align: center;
}

.premium-event-singlrink {
  text-align: end;
}

.premium-view-all-button {
  background-color: var(--event-btn-bg);
  border-radius: var(--event-btn-radius);
  padding: 10px 20px;
  border: 1px solid var(--event-btn-border);
  text-decoration: none;
  color: var(--event-btn-text);
  font-weight: bold;
  font-size: 0.9rem;
}
.premium-view-all-button:hover {
  background-color: var(--event-btn-bg-hover);
}

/* SP 調整（既存のクラス名維持） */
@media screen and (max-width: 768px) {
  .event-title {font-size: 2rem;}
  .event-section { padding: 40px 15px; margin: 30px auto; }
  .event-container { gap: 20px; }
  .event-card { max-width: 100%; }
  .event-text p { font-size: 1rem; }
  .event-singlrink { text-align: center; margin-top: 10px; }
  .view-all-button { font-size: 1rem; padding: 12px 24px; }
}

/* ===== Pattern B ===== */
.event-section.pattern-b{
  background: var(--b-bg);
  border: var(--event-border-w) solid var(--event-border);
  border-radius: var(--event-radius);
  padding: 50px 24px;
  width:90%; max-width:1100px; margin:40px auto;
  font-family:"Noto Sans JP", sans-serif;
}
.pattern-b .event-list{ list-style:none; margin:24px auto 0; padding:0; max-width:980px; }
.pattern-b .event-row{
  display:flex; gap:20px; padding:18px; border-radius:var(--b-row-radius);
  background: var(--b-row-bg);
  border:1px solid var(--b-row-border);
}
.pattern-b .event-row + .event-row{ margin-top:16px; }
.pattern-b .event-thumb{ flex:0 0 220px; height:140px; border-radius: var(--b-thumb-radius); background:#ccc; }
.pattern-b .event-body{ flex:1; min-width:0; }
.pattern-b .event-meta{ margin:0 0 6px; color: var(--b-meta); font-size:.9rem; }
.pattern-b .badge{
  display:inline-block; background: var(--b-badge-bg); color: var(--b-badge-text);
  font-size:.75rem; padding:2px 8px; border-radius: var(--b-badge-radius); margin-right:6px;
}
.pattern-b .event-title{ margin:0 0 6px; font-size:1.15rem; font-weight:700; color:#111; }
.pattern-b .event-desc{ margin:0 0 10px; color:#444; line-height:1.6; }
.pattern-b .event-link{ color: var(--b-link); text-decoration:none; font-weight:700; }
.pattern-b .event-link:hover{ text-decoration:underline; }
@media (max-width:768px){
  .pattern-b .event-row{ flex-direction:column; }
  .pattern-b .event-thumb{ width:100%; height:180px; }
}

/* ===== Pattern C ===== */
.event-section.pattern-c{
  background: var(--c-bg);
  border: var(--event-border-w) solid var(--event-border);
  border-radius: var(--event-radius);
  padding: 44px 0 56px;
  width:90%; max-width:1100px; margin:40px auto;
  font-family:"Noto Sans JP", sans-serif;
}
.pattern-c .event-scroll{
  display:flex; gap:18px; padding:0 24px; overflow-x:auto; scroll-snap-type:x mandatory; margin-top: 20px;
}
.pattern-c .event-scroll::-webkit-scrollbar{ height:8px; }
.pattern-c .event-scroll::-webkit-scrollbar-thumb{ background: var(--c-scrollbar); border-radius:4px; }
.pattern-c .event-slide{
  scroll-snap-align:start; flex:0 0 300px;
  background: var(--c-slide-bg); border:1px solid var(--c-slide-border);
  border-radius: var(--c-slide-radius); box-shadow:0 2px 6px rgba(0,0,0,.06); padding:14px; text-align:left;
}
.pattern-c .event-slide-img{ height:170px; border-radius: var(--c-img-radius); background:#cfd7df; margin-bottom:10px; }
.pattern-c .event-slide-title{ margin:0 0 6px; font-weight:700; font-size:1.05rem; color: var(--c-title); }
.pattern-c .event-slide-meta{ margin:0 0 10px; font-size:.9rem; color: var(--c-meta); }
.pattern-c .event-slide-link{ color: var(--c-link); text-decoration:none; font-weight:700; }
.pattern-c .event-slide-link:hover{ text-decoration:underline; }
@media (max-width:768px){
  .pattern-c .event-slide{ flex-basis:78%; }
}













/* menu==================================== */


/* a */
.menu-section.pattern-a {
  background-color: var(--menu-a-bg);
  color: var(--menu-a-text);
  padding: 60px 20px;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 80px;
}

.menu-section.pattern-a .menu-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: inherit;
}

.menu-section.pattern-a .menu-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.menu-section.pattern-a .menu-card {
  width: 330px;
  background-color: var(--menu-a-card-bg);
  color: var(--menu-a-card-text);
  border-radius: var(--menu-a-card-radius);
  box-shadow: var(--menu-a-card-shadow);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  line-height: 1.5;
}

.menu-section.pattern-a .menu-card h3 {
  font-size: 1.5rem;
  margin-top: 10px;
}

.menu-section.pattern-a .menu-card .price {
  font-size: 1.4rem;
  margin-top: 8px;
  margin-bottom: 8px;
}

.menu-section.pattern-a .menu-card p {
  font-size: 1.1rem;
  margin-top: 10px;
}


.menu-section.pattern-a .menu-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3; /* 画像比率に合わせて調整（正方形なら 1/1） */
  object-fit: cover;   /* トリミングしつつ中央寄せ */
  display: block;
  border-radius: var(--menu-a-image-radius);
  
}

/* b */
.menu-section.pattern-b {
  background-color: var(--menu-b-bg);
  padding: 60px 50px;
  font-family: "Noto Sans JP", sans-serif;
}

.menu-section.pattern-b .menu-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--menu-b-heading-color);
}

.menu-section.pattern-b .menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.menu-section.pattern-b .menu-item {
  background: var(--menu-b-box);
  border-left: 6px solid var(--menu-b-border);
  padding: 15px 20px;
}

.menu-section.pattern-b .menu-item h4,
.menu-section.pattern-b .menu-item .price {
  color: var(--menu-b-item-color); 
}

.menu-section.pattern-b .menu-item h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.menu-section.pattern-b .menu-item .price {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.menu-section.pattern-b .menu-item p {
  font-size: 0.95rem;
  color: var(--menu-b-text);
}

/* c */

.menu-section.pattern-c {
  background-color: var(--menu-c-bg);
  padding: 80px;
  font-family: "Noto Sans JP", sans-serif;
}

.menu-section.pattern-c .menu-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: var(--menu-c-heading-color);

}

.menu-section.pattern-c .menu-block {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  align-items: center;
  justify-content: center;
}

.menu-section.pattern-c .menu-block:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: center;
}

.menu-section.pattern-c .menu-image {
  width: 30%;
  min-width: 280px;
}

.menu-section.pattern-c .menu-image img {
  width: 100%;
  border-radius: 10px;
}

.menu-section.pattern-c .menu-content {
  width: 55%;
  padding: 0 30px;
}

.menu-section.pattern-c .menu-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--menu-c-item-color);
}

.menu-section.pattern-c .menu-content p {
  font-size: 1rem;
  color: var(--menu-c-text);

}

.menu-section.pattern-c .menu-block .price {
  color: var(--menu-c-price-color);
  
}

/* d */
.menu-section.pattern-d {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--menu-d-bg);
}

.menu-section.pattern-d .menu-title {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: var(--menu-d-heading-color);
}

.menu-section.pattern-d .menu-items {
  max-width: 600px;
  margin: 0 auto;
}

.menu-section.pattern-d .menu-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--menu-d-border);
  font-size: 1.2rem;
}

.menu-section.pattern-d .menu-left {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.menu-section.pattern-d .menu-left .main {
  font-weight: bold;
}

.menu-section.pattern-d .menu-left .sub {
  font-size: 0.8rem;
  color: var(--menu-d-sub-text);
}

.menu-section.pattern-d .menu-right {
  font-weight: bold;
}

.menu-section.pattern-d .menu-card,
.menu-section.pattern-d .menu-right,
.menu-section.pattern-d .menu-left .main {
  color: var(--menu-d-text);
}

@media screen and (max-width: 768px) {

  /* a */
.menu-section.pattern-a .menu-title {
    font-size: 2rem;
  }

  .menu-section.pattern-a .menu-items {
    flex-direction: column;
    align-items: center;
  }

  .menu-section.pattern-a .menu-card {
    width: 90%;
    font-size: 1rem;
  }

  .menu-section.pattern-a .menu-card h3 {
    font-size: 1.4rem;
  }

  .menu-section.pattern-a .menu-card .price {
    font-size: 1.3rem;
  }

  .menu-section.pattern-a .menu-card p {
    font-size: 1rem;
  }

  .menu-section.pattern-a .menu-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;  /* 比率は必要に応じて調整 */
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}


/* b */
  .menu-section.pattern-b {
    padding: 40px 20px;
  }

  .menu-section.pattern-b .menu-title {
    font-size: 2rem;
    text-align: center;
  }

  .menu-section.pattern-b .menu-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .menu-section.pattern-b .menu-item {
    padding: 12px 16px;
  }

  .menu-section.pattern-b .menu-item h4 {
    font-size: 1.3rem;
  }

  .menu-section.pattern-b .menu-item .price {
    font-size: 1.1rem;
  }

  .menu-section.pattern-b .menu-item p {
    font-size: 0.9rem;
  }


/* c */

.menu-section.pattern-c {
    padding: 50px 20px;
  }

  .menu-section.pattern-c .menu-title {
    font-size: 2rem;
  }

  .menu-section.pattern-c .menu-block {
    flex-direction: column !important;
    text-align: center;
  }

  .menu-section.pattern-c .menu-image,
  .menu-section.pattern-c .menu-content {
    width: 70%;
    min-width: 280px;
    padding: 0;
  }

  .menu-section.pattern-c .menu-content {
    margin-top: 20px;
  }

  .menu-section.pattern-c .menu-content h3 {
    font-size: 1.3rem;
  }

  .menu-section.pattern-c .menu-content p {
    font-size: 0.95rem;
  }

  .menu-section.pattern-c .menu-image {
  width: 70%;
  min-width: 280px;
}


  /* d */
  .menu-section.pattern-d .menu-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }

  .menu-section.pattern-d .menu-left {
    flex-direction: row;
  }

  .menu-section.pattern-d .menu-right {
    align-self: flex-end;
  }

  .menu-section.pattern-d .menu-title {
    font-size: 1.5rem;
  }

  .menu-section.pattern-d .menu-items {
    width: 100%;
  }
}




/* event一覧 */
/* イベント一覧（アーカイブ） */
.event-archive{
  --ea-bg:#F3E9D9; --ea-card-bg:#fff; --ea-border:#E9DFC8;
  --ea-title:#3a2d1f; --ea-text:#333;
  --ea-badge-bg:#f59f57; --ea-badge-text:#fff;
  --ea-radius:8px; --ea-gap:28px;
  background:var(--ea-bg); padding:32px 18px 60px;
  font-family:"Noto Sans JP",sans-serif;
}
.ea-breadcrumb{display:flex;gap:8px;align-items:center;font-size:.9rem;color:#6e5c45;margin:6px auto 10px;max-width:1100px}
.ea-breadcrumb a{color:#6e5c45;text-decoration:none}
.ea-breadcrumb a:hover{text-decoration:underline}
.ea-title{text-align:center;color:var(--ea-title);font-size:24px;font-weight:700;margin:12px 0 24px}
.ea-grid{max-width:1100px;margin:0 auto;display:grid;gap:var(--ea-gap);grid-template-columns:repeat(3,1fr)}
.ea-card{display:flex;gap:16px;background:var(--ea-card-bg);border:1px solid var(--ea-border);border-radius:var(--ea-radius);text-decoration:none;color:var(--ea-text);padding:14px;transition:transform .15s,box-shadow .15s}
.ea-card:hover{transform:translateY(-2px);box-shadow:0 4px 10px rgba(0,0,0,.06)}
.ea-thumb{flex:0 0 160px;height:100px;border-radius:6px;background:#ddd center/cover no-repeat}
.ea-body{flex:1;min-width:0}
.ea-meta{display:flex;gap:10px;align-items:center;margin-bottom:6px}
.ea-date{font-size:.9rem;color:#8a7a65}
.ea-badge{display:inline-block;font-size:.8rem;padding:2px 10px;background:var(--ea-badge-bg);color:var(--ea-badge-text);border-radius:999px}
.ea-card-title{font-size:1.05rem;margin:0 0 6px;color:#111}
.ea-excerpt{margin:0;color:#555;font-size:.93rem;line-height:1.6}
.ea-pager{margin:28px auto 0;max-width:1100px;text-align:center}
.ea-pager .page-numbers{display:inline-block;min-width:40px;padding:8px 10px;margin:0 4px;background:#fff;border:1px solid var(--ea-border);border-radius:6px;text-decoration:none;color:#333;font-weight:700}
.ea-pager .current{background:#F9C74F;border-color:#F9C74F;color:#000}
.ea-top{text-align:center;margin:28px 0 0}
.ea-top-btn{display:inline-block;padding:12px 28px;background:#fff;border:1px solid var(--ea-border);border-radius:999px;color:#333;text-decoration:none;font-weight:700}
.ea-top-btn:hover{background:#f7f7f7}
.ea-empty{text-align:center;color:#666;padding:40px 0}
@media (max-width:1024px){.ea-grid{grid-template-columns:repeat(2,1fr)}.ea-thumb{flex-basis:150px;height:96px}}
@media (max-width:640px){.ea-grid{grid-template-columns:1fr}.ea-card{gap:12px}.ea-thumb{flex-basis:120px;height:84px}}



/*イベント詳細ページ */
/* ====== Event Detail ====== */
.ed-wrap{
  background:#f6efe4;   /* 画面の生成色（サンプルの薄ベージュ） */
  padding:40px 16px 80px;
}

.ed-breadcrumb{
  max-width:960px; margin:0 auto 18px; font-size:14px; color:#8b8b8b;
}
.ed-breadcrumb a{ color:#8b8b8b; text-decoration:none; }
.ed-breadcrumb span{ margin:0 8px; }

.ed-card{
  max-width:960px; margin:0 auto;
  background:#fff; border:1px solid #eee; border-radius:6px;
  box-shadow:0 2px 6px rgba(0,0,0,.04);
  padding:28px 32px 36px;
}

.ed-date{ color:#777; font-size:14px; margin:0 0 10px; }

.ed-title{
  font-size:28px; font-weight:700; margin:0 0 20px; line-height:1.3;
  position:relative; padding-left:18px;
}
.ed-title::before{
  content:""; position:absolute; left:0; top:.25em;
  width:6px; height:1.2em; background:#F2C400; border-radius:2px;
}

.ed-hero{ margin:16px 0 22px; }
.ed-hero img{ width:100%; height:auto; display:block; border-radius:4px; }

/* 本文エリア（見出しや段落を整える） */
.ed-content{ color:#222; line-height:1.9; font-size:16px; }
.ed-content p{ margin:0 0 1.2em; }
.ed-content img{ max-width:100%; height:auto; border-radius:4px; }

/* 本文中の h3 を黄色ライン付きに */
.ed-content h3{
  font-size:20px; margin:26px 0 12px; padding-left:16px; position:relative;
}
.ed-content h3::before{
  content:""; position:absolute; left:0; top:.25em;
  width:6px; height:1.1em; background:#F2C400; border-radius:2px;
}

/* 戻るボタン（中央・ pill 形） */
.ed-back{ text-align:center; margin-top:24px; }
.ed-back-btn{
  display:inline-block; background:#fff; color:#7b5a00; font-weight:700;
  border:1px solid #e6c15e; border-radius:999px; padding:14px 28px;
  text-decoration:none; box-shadow:0 4px 10px rgba(0,0,0,.06);
  position:relative;
}
.ed-back-btn::after{
  content:"▶"; font-size:14px; margin-left:10px; vertical-align:middle;
}

/* SP */
@media (max-width: 768px){
  .ed-card{ padding:22px 18px 28px; }
  .ed-title{ font-size:22px; }
  .ed-content{ font-size:15px; }
}












/* message================================= */

.message-section {
  margin: 80px auto;
  max-width: 1100px;
  padding: 40px 20px;
  font-family: "Noto Sans JP", sans-serif;
  width: 90%;
}

.message-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

/* a */
.pattern-a .message-content {
  font-size: 1.1rem;
  line-height: 1.9;
  text-align: center;
  color: var(--message-a-maintext);
}

.message-section.pattern-a {
  background-color: var(--message-a-bg);
  color: var(--message-a-text);
}

/* b */
.pattern-b .message-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.message-title2 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 500;
}

.pattern-b .message-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--message-b-radius);
  object-fit: cover;
  width: 300px;
}

.pattern-b .message-text {
  flex: 1;
  min-width: 300px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--message-b-text);
}

.message-section.pattern-b {
  background-color: var(--message-b-bg);
  color: var(--message-b-text);
}

.message-section.pattern-b .message-title2 {
  color: var(--message-b-heading);
}

/* c */
.pattern-c .message-box {
  background-color: var(--message-c-boxbg);
  border-left: 6px solid var(--message-c-border);
  padding: 30px 25px;
  border-radius: var(--message-c-radius);
  font-size: 1.1rem;
  color: var(--message-c-text);
  line-height: 1.9;
  max-width: 800px;
  margin: 0 auto;
}

.pattern-c .message-box .lead {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--message-c-lead);
  margin-bottom: 20px;
}

.message-section.pattern-c {
  background-color: var(--message-c-bg);
}

.message-section.pattern-c .lead {
  color: var(--message-c-lead);
}

.message-section.pattern-c p {
  color: var(--message-c-text);
}

.pattern-c .message-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--message-c-heading); /* ← 追加 */
}

@media screen and (max-width: 768px) {
  .message-section {
    padding: 30px 15px;
  }

  .message-title {
    font-size: 1.6rem;
  }

  .message-title2 {
    text-align: center;
    font-size: 1.5rem;
  }

  .pattern-b .message-inner {
    flex-direction: column;
    gap: 20px;
  }

  .pattern-b .message-text {
    text-align: center;
  }

  .pattern-c .message-box {
    padding: 25px 15px;
    font-size: 1rem;
  }

  .pattern-c .message-box .lead {
    font-size: 1.2rem;
    text-align: center;
  }
}




/* gallery============================== */

/* a */

.gallery-a {
  margin-top: 80px;
  background-color: var(--gallery-bg-color, #F4FCFD);
  padding: 40px 40px 70px;
}

.gallery-a .gallery-title{
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 30px;
  color: var(--gallery-title-color, #000000);
}


.gallery-a .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.gallery-a .gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.gallery-a .gallery-item:hover img {
  transform: scale(1.05);
}


/* b */


.gallery-b {
  margin-top: 80px;
  background-color: var(--gallery-bg-color, #F4FCFD);
  padding: 40px 40px 70px;
}

.gallery-b .gallery-title {
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 30px;
  color: var(--gallery-title-color, #000000);
}

.gallery-b .swiper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 0;
}

.gallery-b .swiper-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* ★比率を統一（16:9なら 16 / 9） */
  overflow: hidden;
  border-radius: 10px;
}

.gallery-b .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ★切り抜いて全体表示 */
  border-radius: 10px;
}




/* c */

.gallery-c {
  margin-top: 80px;
  background-color: var(--gallery-bg-color, #F4FCFD);
  padding: 40px 40px 70px;
}

.gallery-c .gallery-title{
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 30px;
  color: var(--gallery-title-color, #000000);
}


.gallery-c-wrap {
  display: flex;
  gap: 20px;
}

.left-image,
.right-images {
  flex: 1;
  margin-top: 40px;
}

.left-image img,
.right-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.right-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right-images img {
  height: calc(50% - 10px); /* 2つで縦分割 */
}

/* d */

.gallery-d {
  margin-top: 80px;
  background-color: var(--gallery-bg-color, #F4FCFD);
  padding: 40px 40px 70px;
}



.gallery-d .gallery-title{
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-top: 30px;
  color: var(--gallery-title-color, #000000);
}

.slider {
  margin-top: 40px;
}

.slider img {
  width:100%;
  height: 100%;
}

.slider .slick-slide {
  margin:0 10px;
}


@media screen and (max-width: 768px) {

 .gallery-a {
    padding: 30px 20px 50px;
  }

  .gallery-a .gallery-title {
    font-size: 1.8rem;
    margin-top: 20px;
  }

   .gallery-b {
    padding: 30px 20px 50px;
  }

  .gallery-b .gallery-title {
    font-size: 1.8rem;
    margin-top: 20px;
  }

   .gallery-c {
    padding: 30px 20px 50px;
  }

  .gallery-c .gallery-title {
    font-size: 1.8rem;
    margin-top: 20px;
  }

   .gallery-d {
    padding: 30px 20px 50px;
  }

  .gallery-d .gallery-title {
    font-size: 1.8rem;
    margin-top: 20px;
  }


  .gallery-c-wrap {
    flex-direction: column;
  }

  .right-images {
    flex-direction: row;
  }

  .right-images img {
    height: auto;
    width: 50%;
  }

  .left-image img,
  .right-images img {
    aspect-ratio: 4 / 3;
  }

  .gallery-a .gallery-grid {
    grid-template-columns: 1fr;
  }

  .slider .slick-slide {
    margin: 0 5px;
  }
}


/* ========= Gallery: 安定表示のための共通リセット ========= */
/* 画像はすべて「枠を満たす＝cover」。余白で見せたい時は .gallery--contain を親に付与 */
.gallery-a .gallery-item,
.gallery-b .swiper-slide,
.gallery-c .left-image,
.gallery-c .right-images img,
.gallery-d .slider li {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* 画像を枠にフィット。デフォルトは cover（トリミングあり）。可変にしたいのでCSS変数を使う */
.gallery-a .gallery-item img,
.gallery-b .swiper-slide img,
.gallery-c img,
.gallery-d .slider img {
  width: 100%;
  height: 100%;
  object-fit: var(--gallery-fit, cover);
  display: block;
  background: var(--gallery-pad, transparent); /* contain時の余白色 */
}

/* 統一のアスペクト比（必要に応じて 16/9, 1/1 に変更OK） */
.gallery-a .gallery-item      { aspect-ratio: var(--gallery-ratio, 4 / 3); }
.gallery-b .swiper-slide      { aspect-ratio: var(--gallery-ratio, 4 / 3); } /* 既存と同じ */
.gallery-c .left-image        { aspect-ratio: var(--gallery-left-ratio, 4 / 3); }
.gallery-c .right-images img  { aspect-ratio: var(--gallery-right-ratio, 4 / 3); }
.gallery-d .slider li         { aspect-ratio: var(--gallery-ratio, 4 / 3); }

/* 既存の gallery-a で img に height:auto を当てている場合は上記で上書きされます */

/* ========= レイアウト調整（cの右側を安定2分割） ========= */
.gallery-c .right-images{
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

/* ========= Slick用の安定化（d） ========= */
.gallery-d .slider .slick-slide { margin: 0 10px; } /* 既存維持 */
.gallery-d .slider .slick-list  { overflow: visible; } /* 角丸や影が切れないように */

/* ========= モバイル調整 ========= */
@media screen and (max-width: 768px){
  /* 必要ならモバイルだけ比率を変えたい場合（例：1:1に） */
  /* .gallery-a .gallery-item,
     .gallery-b .swiper-slide,
     .gallery-c .left-image,
     .gallery-c .right-images img,
     .gallery-d .slider li { aspect-ratio: 1 / 1; } */

  /* 既存のc用指定は不要（上のaspect-ratioで統一管理） */
}








/* link=================================== */

.acf-link-item {
  background-color: var(--link-bg, #266C47);
  color: var(--link-text, #ffffff);
  border: var(--link-border-width, 0px) solid var(--link-border-color, transparent);
  border-radius: var(--link-border-radius, 8px);
  width: fit-content;
  min-width: 350px;
  padding: 20px;
  margin: 60px auto;
  text-align: center;
  font-size: 1.5rem;
  transition: 0.3s;
}

.acf-link-item:hover {
  background-color: var(--link-bg-hover, #1c5135);
  color: var(--link-text-hover, #ffffff);
}



/* info============================= */


.store-info-psver {
  margin: 80px auto;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 1100px;
}

.store-info-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--info-title-color, #000);
}

.store-info-all {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.map {
  flex: 1 1 48%;
  min-width: 300px;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.store-info_box {
  flex: 1 1 48%;
  color: var(--info-text-color, #333);
  background: var(--info-box-bg, transparent);
}

.info-item {
  display: flex;
  border-bottom: 1px solid var(--info-border-color, #ccc);
  padding: 15px 0;
  align-items: flex-start;
}

.info-item_title {
  width: 6em;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--info-label-color, #000);
}

.info-item_text {
  font-size: 1.1rem;
  line-height: 1.6;
  flex: 1;
  color: var(--info-text-color, #333);
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .store-info-all {
    flex-direction: column-reverse;
    align-items: center;
  }

  .map,
  .store-info_box {
    flex: 1 1 100%;
    width: 95%;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .info-item_title {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .info-item_text {
    width: 100%;
    font-size: 1rem;
  }

  .map iframe {
    height: 250px;
  }
}





/* footer======================================= */
.store-footer {
  margin-top: 80px;
}

.footer_all {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--footer-bg-color)!important;
}

.footer-logo img {
  
  margin-bottom: 15px;
  width: 159px;
}

.footer-syeatop a {
  font-size: 16px;
  color: var(--footer-text-color);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-syeatop a:hover {
  opacity: 0.8;
}

.footer-syeatop {
  margin-top: 15px;
}

.store-footer-copy {
  margin-top: 10px;
}

.store-footer-copy small {
  font-size: 14px;
  color: var(--footer-copy-color);
}

/* .footer_all {
  background-color: #E2CDA6;
  padding: 30px 20px;
  text-align: center;
}

.footer_all img {
  max-height: 60px;
  margin-bottom: 10px;
  width: 150px;
}

.footer-syeatop {
  margin-top: 10px;
}

.store-footer-copy {
  color: #000;
  margin-top: 15px;
} */

.sp_br {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_br {
    display: block;
  }

  .store-top_sns img {
    width: 45px;
  }

  .sp_store-toplogo {
    background-color: var(--header-color)!important;
    display: block;
    text-align: center;
    padding: 10px 0;
  }

  .store-top_logo img {
    width: 100px;
  }

  .mv_title {
    font-size: 2rem;
    right: 2%;
    bottom: 2%;
    padding: 10px;
  }

  .about-box {
    width: 95%;
  }

  .about-text {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  h2 {
    font-size: 2rem;
    margin: 0 auto;
  }

  .link-item {
    min-width: auto;
    width: 80%;
    font-size: 1.3rem;
    padding: 15px;
  }

  .store-info {
    width: 95%;
  }



  .info-item {
    flex-direction: column;
    padding: 15px;
    text-align: center;
  }

  .info-item_title {
    width: 100%;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .info-item_text {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .map iframe {
    width: 100%;
    height: 250px;
    padding: 20px;
  }

  

  .store-footer-copy {
    font-size: 0.75rem;
  }
}





/*========= ページトップのためのCSS ===============*/

#page-top a#page-top2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--page-top-bg);
  border-radius: calc(var(--page-top-radius) * 1px); /* 数値変数にpxを付与 */
  height: 60px;
  width: 60px;
  color: var(--page-top-color);
  text-align: center;

  /* ▼ 改行を効かせるための追加・調整 */
  white-space: normal;   /* 改行/折返しを許可 */
  line-height: 1.15;     /* 行間を少し詰めて3行でも収まる */
  word-break: break-word;/* 長い語も折返し */
  padding-bottom: 0;     /* 中央からズレないよう調整 */

  text-transform: uppercase; 
  text-decoration: none;
  font-size: 0.7rem;
  font-family: "Oswald", sans-serif;
  transition: all 0.3s;
}

#page-top a#page-top2:hover{
  background: var(--page-top-bg-hover);
}

/* リンクを右下に固定 */
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;    /* ← 明示しておくと安定します */
  z-index: 2;

  /* はじめは非表示 */
  opacity: 0;
  transform: translateY(100px);
}

/* 上に上がる動き */
#page-top.UpMove{ animation: UpAnime 0.5s forwards; }
@keyframes UpAnime{
  from { opacity: 0; transform: translateY(100px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 下に下がる動き */
#page-top.DownMove{ animation: DownAnime 0.5s forwards; }
@keyframes DownAnime{
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 1; transform: translateY(500px); }
}