/******************************************************************
Theme Name:horumonya-kinchan
------------------------------------------------------------------

*/



@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}


body {
font-family: "Noto Sans JP", sans-serif;
line-height:1.8;
margin: 0;
padding: 0;
  background: #d9ceaf;
}

body.home {
  background: #d90012;
	}


html, body {
height: 100%;
  width: 100%;
  overflow-x: hidden;
  margin: 0;  
  padding: 0;  
}


body {
display: flex;
  flex-direction: column;
  min-height: 100vh; 
  width: 100%;       
}

main {
  flex: 1;
padding-top: 85px;
}

body.post-template-default,
body.single,
body.single-post {
    display: block !important; /* flexを解除してみる */
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* mainタグも念のため強制的に広げる */
body.single-post main {
    width: 100% !important;
    display: block !important;
}

/* =====================
  切り替え
===================== */

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/* =====================
  ヘッダー
===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background:#f2ecde;
  z-index: 999;
}

.header-inner {

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative; /* ←追加 */
  z-index: 10;
}

.logo img {
  height: 50px;
}

/* ナビ */
.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
font-size: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
/* =====================
   ハンバーガーボタン
===================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 10000; /* ナビより大きく */
  padding: 0;
}

.hamburger span {
  width: 30px;
  height: 2px;
  background: #333;
  display: block;
  transition: all 0.3s ease-in-out;
}

/* ×印のアニメーション */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg) !important;
}
.hamburger.active span:nth-child(2) {
  opacity: 0 !important;
  transform: translateX(-10px) !important;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg) !important;
}
/* =====================
  ボタン
===================== */

.btn_area01 {
	padding:10% 0 0 0;
	margin: 0 auto;
	text-align: center;
	}

.btn_area_menu {
	padding:0 0;
	margin: 0 auto;
	text-align: center;
	}

/*赤背景ボタン*/
.btn_r {
  text-align: center;
}

.btn_r a {
  display: inline-block;
  background:#d90012;
  color: #fff;
  font-weight: bold;
  padding: 18px 80px;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.3s;
}


/*白背景ボタン*/
.btn_w {
  text-align: center;
}

.btn_w a {
  display: inline-block;
  background: #fff;
  color: #d90012;
  font-weight: bold;
  padding: 18px 80px;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.3s;
}

.btn_r a:hover,
.btn_w a:hover {
  opacity: 0.8;
}


@media screen and (max-width: 768px) {
/* 親要素の制限解除 */
  .header {
    overflow: visible !important;
  }

  /* ハンバーガーを表示 */
  .hamburger {
    display: flex !important;
  }

  /* ナビゲーション本体 */
  .nav {
   display: block !important;
    visibility: visible !important;
    z-index: 9999 !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 100% !important;
    height: 100vh !important;
    background: #f2ecde !important;
    transition: 0.4s ease !important;
  }

  .nav.active {
    right: 0 !important; /* activeがついたら右から出てくる */
  }

  .nav ul {
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
    padding:10% 0 0 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .nav a {
    font-size: 20px !important;
    display: block !important;
    padding: 10px !important;
    text-align: center !important;
    width: 100% !important;
  }
.btn_r a, 
.btn_w a {
    width: 90%;
    padding: 16px 0;
  }
}



/* =====================
  FV
===================== */
.fv_area {
  position: relative; /* ←これが基準になる */
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

/* 右の装飾 */
.charm01 {
  position: absolute;
  bottom:-5%;
  right: 0;
  z-index: 3;
}

.charm01 img {
  width: 25vw; 
  max-width: 400px;
}

/* 上の画像 */
.fv_top {
  width: 100%;
  height: auto;
  display: block;
}

/* 動画エリア */
.fv {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* 動画 */
.fv-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;   
  height: 100%;
  object-fit: cover;
}

/* =====================
  スマホ
===================== */
@media (max-width: 768px) {
  .fv-text h1 {
    font-size: 28px;
  }
	
/* 右の装飾 */
.charm01 {
  position: absolute;
  bottom:-10%;
  right: 0;
  z-index: 3;
}
.charm01 img {
  width:100px;
  height: auto;
}

}

/* =====================
サブタイトル
===================== */
/* 黒バージョン*/
.sub_titleb{
margin: 0 auto;
padding: 5% 0;
text-align: center;
	}

.sub_titleb h2{
  position: relative;
  text-align: center;
  font-size: 65px; /* サイズ調整OK */
  font-weight: bold;
  color: #000;
  padding: 80px 20px; /* 上下余白 */
  z-index: 1;
	
		}

.sub_titleb h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 165px;  /* 円のサイズ */
  height: 165px;
  background: url("img/top/title_b.png") no-repeat center / contain;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* 白バージョン*/
.sub_titlew{
margin: 0 auto;
padding: 5% 0;
text-align: center;
	}

.sub_titlew h2{
  position: relative;
  text-align: center;
  font-size: 65px; /* サイズ調整OK */
  font-weight: bold;
  color: #fff;
  padding: 80px 20px; /* 上下余白 */
  z-index: 1;
	
		}

.sub_titlew h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 165px;  /* 円のサイズ */
  height: 165px;
  background: url("img/top/title_w.png") no-repeat center / contain;
  transform: translate(-50%, -50%);
  z-index: -1;
}


/* 下層ページのh1*/
.lowertitle{
margin: 0 auto;
padding:1% 0 5% 0;
text-align: center;
	}

.lowertitle h1,
.lowertitle h2{
  position: relative;
  text-align: center;
  font-size: 65px; /* サイズ調整OK */
  font-weight: bold;
  color: #000;
  padding: 80px 20px; /* 上下余白 */
  z-index: 1;
	
		}

.lowertitle h1::before,
.lowertitle h2::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 165px;  /* 円のサイズ */
  height: 165px;
  background: url("img/top/title_b.png") no-repeat center / contain;
  transform: translate(-50%, -50%);
  z-index: -1;
}



@media screen and (max-width: 768px) {

.sub_titleb h2,
.sub_titlew h2,
.lowertitle h1,
.lowertitle h2
	{
	 margin: 0 auto 5% auto;
    font-size: 28px;
    padding: 40px 10px;
  }

.sub_titleb h2::before,
.sub_titlew h2::before,
.lowertitle h1::before,
.lowertitle h2::before{
    width: 40px;
    height: 40px;
  }
	
	
	
	
}


/* =====================
チャーム
===================== */
.charm_base{
position: relative;
padding: 0;
margin: 0;
width: 100%;
overflow:hidden;

}

.charm02{
position: absolute;
  top: 40%;
  left: 0;
  transform: translateX(-1%);
	}

.charm02 img{
	width: 70%;
	}

.charm03{
position: absolute;
top:62%;
right:0;
	}

.charm03 img{
	width:50%;
	}

.charm04{
position: absolute;
bottom:-2%;
right:5%;
	}

.charm04 img{
	width: 50%;
	}


.charm05{
position: absolute;
top:1%;
left:5%;
	}

.charm05 img{
	width: 70%;
	}

.charm06{
  position: absolute;
  pointer-events: none;
  top: 0;
  right: 0;
   transform: translate(60%, -20%);
	}

.charm06 img{
	width:50%;
	}

.charm07{
position: absolute;
top:1%;
left:5%;
  z-index: 3;
	}

.charm07 img{
	width: 50%;
	}


.charm08{
position: absolute;
top:0;
right:1%;
  z-index: 3;
	}

.charm08 img{
	width: 60%;
	}

@media screen and (max-width: 768px) {
	
.charm02{
position: absolute;
  top: 45%;
  left: 0;
  transform: translateX(-1%);
	}

.charm02 img{
	width: 50%;
	}

.charm03 {
  position: absolute;
  top: 57%;
  right: 0;
  /* 移動距離をさらに大きくして、画面外へ追い出す */
  transform: translateX(80%); 
  /* 親の幅を画像に合わせるか、具体的なサイズを指定する */
  width:200px; 
}

.charm03 img {
  /* 親要素の中で画像をいっぱいに表示する */
  width: 100%;
  height: auto;
}

.charm04{
position: absolute;
bottom:-2%;
right:0;
  transform: translateX(50%);
	}

.charm04 img{
	width: 40%;
	}


.charm05{
position: absolute;
top:1%;
  left: 0;
  transform: translateX(-1%);
	}

.charm05 img{
	width: 30%;
	}

.charm07{
position: absolute;
top:1%;
  left: 0;
  transform: translateX(-3%);
  z-index: 3;
	}

.charm07 img{
	width: 30%;
	}


.charm08{
position: absolute;
top:7%;
right:0;
  transform: translateX(70%);
  z-index: 1;
	}

.charm08 img{
	width: 30%;
	}

	}

/* =====================
きんちゃんのこだわり
===================== */

.finicality01{
  width: 100%;
  aspect-ratio: 2400 / 1090;
  background: url("img/top/content01.png") no-repeat center / cover;
}

.finicality02{
  width: 100%;
  aspect-ratio: 2400 / 726;
  background: url("img/top/content02.png") no-repeat center / cover;
}

.finicality03{
  width: 100%;
  aspect-ratio: 2400 / 672;
  background: url("img/top/content03.png") no-repeat center / cover;
}


.finicality_area {
  width: 90%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.finicality_title{
padding: 0;
margin: 0;
text-align: left;	
	}

.finicality_title img{
  max-width: 865px;
  width: 100%;
padding: 0;
margin: 0;
	
		}

.finicality_box01{
  max-width:600px;
  width: 100%;
margin: 0;
padding:0;
text-align: left;
	}

.finicality_box02{
  max-width:600px;
  width: 100%;
margin: 0 0 0 50%;
padding:10% 0 0 0; 
text-align: left;
	}

.finicality_box03{
  max-width:600px;
  width: 100%;
margin: 0;
padding:10% 0 0 0; 
text-align: left;
	}

.finicality_box01 h2,
.finicality_box02 h2,
.finicality_box03 h2{
  font-size: 40px;
  font-weight: 900;
  color: #d40000;
  text-shadow:
    2px 2px 0 #f1e7ce,
   -2px 2px 0 #f1e7ce,
    2px -2px 0 #f1e7ce,
   -2px -2px 0 #f1e7ce;
}

.finicality_box01 h2::after,
.finicality_box02 h2::after,
.finicality_box03 h2::after{
  content: "";
  display: block;
  height: 4px;
  margin: 12px auto 0;
  background: #d40000;
  box-shadow: 0 0 0 3px #f1e7ce;
}

.finicality_box01 p,
.finicality_box02 p,
.finicality_box03 p{
  font-size: 24px;
 padding: 2% 0 0 0;
margin: 0;
  color: #333;
  line-height: 1.6;
  text-shadow:
    2px 2px 0 #f1e7ce,
   -2px 2px 0 #f1e7ce,
    2px -2px 0 #f1e7ce,
   -2px -2px 0 #f1e7ce;	
	}





.season-title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 700;
}

.season-title h2 span {
  display: block;
  color: #d00;
  font-size: 16px;
  margin-top: 10px;
  letter-spacing: 0.1em;
}



@media screen and (max-width: 768px) {


.finicality01_sp{
  width: 100%;
background: url("img/top/content0_back_sp.png") repeat-y center top / 100% auto;

}
.finicality01_sp img{
width: 100%;
max-width: 750px;
margin: 0;
padding: 0;
	}
	

.finicality02{
  width: 100%;
  aspect-ratio: 750 / 726;
  background: url("img/top/content02_sp.png") no-repeat center / cover;
}

.finicality03{
  width: 100%;
  aspect-ratio: 750 / 837;
  background: url("img/top/content03_sp.png") no-repeat bottom center / cover;
}
	
.finicality_box02,
.finicality_box03{
  max-width:600px;
  width: 100%;
margin: 0 0 0 0;
padding:10% 0 0 0; 
text-align: left;
	}
	
  .finicality_box02 h2,
  .finicality_box03 h2 {
    font-size: 22px;
  }

  .finicality_box02 p,
  .finicality_box03 p {
    font-size: 16px;
  }

  .finicality_box02 {
    margin: 0;
    padding-top: 10%;
  }
	
	
	
.finicality_box_sp{
  max-width:600px;
  width: 100%;
margin: 0 auto;
padding:0;
text-align: left;
	}
	
.finicality_box_sp h2{
  font-size: 22px;
  font-weight: 900;
  color: #d40000;
  text-shadow:
    2px 2px 0 #f1e7ce,
   -2px 2px 0 #f1e7ce,
    2px -2px 0 #f1e7ce,
   -2px -2px 0 #f1e7ce;
}

.finicality_box_sp h2::after{
  content: "";
  display: block;
  height: 4px;
  margin: 12px auto 0;
  background: #d40000;
  box-shadow: 0 0 0 3px #f1e7ce;
}

.finicality_box_sp p{
  font-size: 16px;
 padding: 2% 0 0 0;
margin: 0;
  color: #333;
  line-height: 1.6;

	
}

	
}

/* =====================
メニュー
===================== */
.top_menu_area {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 2400 / 929;
  background: url("img/top/content04.png") no-repeat center / cover;
  padding:5% 40px 0 40px; 
  box-sizing: border-box;
}


.menu-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 20s linear infinite;
}

.menu-track img {
  width: 130px;
  height: auto;
  flex-shrink: 0;
  display: block;
  margin-right: 20px; /* ←画像の間の余白 */
}

/* 最後の余白を消す（見た目調整） */
.menu-track img:last-child {
  margin-right: 0;
}

/* 無限スクロール */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .top_menu_area {
    padding: 5% 15px 0;
  }

  .menu-track img {
    width: 50px;
    margin-right: 12px;
  }
}




/* =====================
お品書き
===================== */
.top_oshinagaki {
  width: 100%;
  padding-top: 10%; 
  background: #c80d1f url("img/top/content05.png") no-repeat top center;
  background-size: 100% auto;
  position: relative;
}

.top_oshinagaki_base {
  width: 100%;
  background-image: url("img/top/back01.png");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
}


.top_oshinagaki_area {
	width: 100%;
	max-width: 1000px;
	padding:0 0 0 0;
	margin: 0 auto;
	text-align: center;

	
	}

.top_oshinagaki_area img{
	width: 100%;
	max-width: 1000px;	
		}

/*宴会メニュー*/
.enkai-note{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin:28px auto 40px auto;
}

.enkai-note span{
  position:relative;
  display:inline-block;
  padding:14px 34px;
  background:#f7f1df;
  color:#3d2f22;
  font-size:16px;
  font-weight:700;
  letter-spacing:0.12em;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.08);
}

/* 和紙っぽい角 */
.enkai-note span::before,
.enkai-note span::after{
  content:"";
  position:absolute;
  width:14px;
  height:14px;
  border:2px solid #b08b4f;
}

.enkai-note span::before{
  top:6px;
  left:6px;
  border-right:none;
  border-bottom:none;
}

.enkai-note span::after{
  right:6px;
  bottom:6px;
  border-left:none;
  border-top:none;
}

#enkai-menu{
  scroll-margin-top:120px;
}

@media screen and (max-width: 768px) {
.top_oshinagaki_area {
	width: 96%;
	max-width:700px;
	padding:0 0 0 0;
	margin: 0 auto;
	text-align: center;
	
	}

.top_oshinagaki_area img{
	width: 96%;
	max-width:700px;
		}	
	

  .enkai-note{
    gap:12px;
    margin:20px auto 32px;
    padding:0 14px;
  }

  .enkai-note span{
    width:100%;
    max-width:320px;

    padding:14px 20px;

    font-size:14px;
    letter-spacing:0.08em;
    text-align:center;

    line-height:1.8;
  }

  /* 角装飾を少し小さく */
  .enkai-note span::before,
  .enkai-note span::after{
    width:10px;
    height:10px;
  }
	}
/* =====================
宴会メニュー　バナー
===================== */
.floating-enkai{
  position:fixed;
  right:0;
  top:50%;
  transform:translateY(-50%);

  writing-mode:vertical-rl;
  text-orientation:mixed;

  padding:24px 12px;

  background:#c8a46b;
  color:#111;

  text-decoration:none;

  font-size:13px;
  font-weight:700;
  letter-spacing:0.18em;

  border-left:1px solid #d8c29b;

  z-index:9999;

  transition:0.3s ease;

  box-shadow:
    -4px 0 12px rgba(0,0,0,0.06);
}



.floating-enkai::before{
  top:10px;
}

.floating-enkai::after{
  bottom:10px;
}

.floating-enkai:hover{
  background:#111;
  color:#fff;
}

@media screen and (max-width: 768px) {
	
.floating-enkai{
  position:fixed;
  right:0;
  top:20%;
  transform:translateY(-20%);
}
	
	}
/* =====================
きんちゃん名物
===================== */
.top_meibutu {
  position: relative;
  width: 100%;
  padding: 60px 0;
  overflow: hidden; /* 装飾のはみ出し防止 */
}

.top_meibutu {
  background: 
    url("img/top/back02.png") no-repeat top center,
    #c80d1f url("img/baseback.png") repeat-y top center;
  background-size: 100% auto, 100% auto;
}

.top_meibutu_area {
  background: none;
}
.top_meibutu_base {
  width: 100%; /* 少し余裕を持たせる */
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

/* ================= */
/* 共通レイアウト */
/* ================= */
.meibutu-item {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}

/* 1段目だけ逆 */
.meibutu-item.first {
  flex-direction: row-reverse;
}

/* 1段目の比率 */
.meibutu-item.first .meibutu-img {
  width: 65%;
}

.meibutu-item.first .meibutu-text {
  width: 35%;
  max-width: 420px;
}

/* ================= */
/* 画像 */
/* ================= */
.meibutu-img {
  width: 50%;
}

.meibutu-img img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* ================= */
/* テキスト */
/* ================= */
.meibutu-text {
  width: 50%;
  display: flex;
  flex-direction: column;
}

/* タイトル */
.meibutu-text h3 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* ================= */
/* 価格（←重要修正） */
/* ================= */
.meibutu_price {
  position: relative;
  color: #c80d1f;
  font-size: 18px;
  margin: 10px 0 25px;
  padding-bottom: 10px;
  text-align: right; /* ← 右寄せ */
}

/* 税込み */
.meibutu_price span {
  font-size: 12px;
  margin-left: 6px;
}

/* ラインを固定長で右に出す */
.meibutu_price::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%; /* ← ラインの長さ固定 */
  height: 2px;
  background: #c80d1f;
}

/* ================= */
/* 説明 */
/* ================= */
.desc {
  font-size: 14px;
  line-height: 1.9;
}

/* ================= */
/* 下2カラム */
/* ================= */
.meibutu-row {
  display: flex;
  gap: 50px;
}

.meibutu-row .meibutu-item {
  width: 50%;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

.meibutu-row .meibutu-img,
.meibutu-row .meibutu-text {
  width: 100%;
}

/* 画像サイズ揃える */
.meibutu-row .meibutu-img img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ================= */
/* スマホ */
/* ================= */
@media (max-width: 768px) {

  .top_meibutu_base {
    padding: 60px 15px;
  }

  .meibutu-item {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
  }

  .meibutu-item.first {
    flex-direction: column;
  }

  .meibutu-item.first .meibutu-img,
  .meibutu-item.first .meibutu-text {
    width: 100%;
    max-width: none;
	 
  }

  .meibutu-img,
  .meibutu-text {
    width: 100%;
  }

  .meibutu-row {
    flex-direction: column;
    gap: 40px;
  }

  .meibutu-row .meibutu-item {
    width: 100%;
  }

  .meibutu-text h3 {
    font-size: 24px;
  }

  .meibutu_price {
    text-align: left; /* ← スマホは左寄せに戻す */
  }

  .meibutu_price::after {
    left: 0;
    right: auto;
    width: 100px;
  }
	
	

}

/* ================= */
/* TOPSNS
===================== */
.topsns_base{
  background: #fff;
  padding:5% 0;
  margin:1% auto;
  width: 98%;
	
}

.topsns_area {
	width: 100%;
	max-width: 1000px;
	padding:0 0 0 0;
	margin: 0 auto;
	text-align: center;

	
	}


.sbi_bio{
	text-align: left;
	}

@media screen and (max-width: 768px) {
.topsns_area {
	width: 90%;
	max-width: 700px;
	padding:0 0 0 0;
	margin: 0 auto;
	text-align: center;

	
	}
	}	

/* ================= */
/* お知らせ
===================== */
.news-area {
  background: #d90012;
  padding: 0 0 5% 0;
  margin: 0 auto;
	
}


.news-list {
  max-width: 1000px;
  margin: 0 auto 50px;
  display: flex;
  gap: 30px;
flex-wrap: wrap;
}


.item {
  display: block;
  width: calc(33.333% - 20px);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

/* 画像ラップ（超重要） */
.img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* 画像 */
.img-wrap img {
  width: 100%;
height: 100%;
 object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* ホバー演出 */
.item:hover {
  transform: translateY(-5px);
}

.item:hover .img-wrap img {
  transform: scale(1.1);
  filter: brightness(0.9);
}


.news-text {
  padding: 20px;
}

.date {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.news-text h2{
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
}




/* =====================
   スマホ
===================== */
@media screen and (max-width: 768px) {
.news-list {
  width:96%;
  max-width:700px;
  margin: 0 auto 50px;
  display: flex;
  gap: 30px;
}

  .news-list {
    flex-direction: column;
    gap: 20px;
  }

  .item {
    width: 100%;
  }


}

/* =====================
   フッター全体
===================== */
.footer {
  background: #fff;
  padding: 80px 0 60px 0;
  text-align: center;
}

/* 中央幅 */
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* =====================
   ロゴ
===================== */
.footer-logo {
  margin-bottom: 40px;
}

.footer-logo img {
  width: 260px; /* 調整OK */
  height: auto;
}

/* =====================
   ナビ
===================== */
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
  padding: 0;
  list-style: none;
}

/* 各リンク */
.footer-nav li {
  position: relative;
  padding: 0 15px;
}

/* 区切り線 */
.footer-nav li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -5px;
  color: #666;
}

/* リンク */
.footer-nav a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: 0.3s;
}

.footer-nav a:hover {
  opacity: 0.6;
}

/* =====================
   コピー
===================== */
.copyright {
width:100%;
  font-size: 14px;
  color: #fff;
 background: #c80d1f;
padding: 2% 0;
margin: 0 auto;
text-align: center;
	
}

/* =====================
   スマホ
===================== */
@media screen and (max-width: 768px) {

  .footer {
    padding: 60px 15px 40px;
  }

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

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  /* スマホは区切り線なし */
  .footer-nav li::after {
    display: none;
  }

  .footer-nav li {
    padding: 0;
  }
.copyright {
  font-size: 10px;
	
}
}


/* =====================
  共通（初期状態）
===================== */
.fade-up,
.slide-left,
.slide-right {
  opacity: 0;
  transition: all 0.8s ease;
}

/* 下から */
.fade-up {
  transform: translateY(40px);
}

/* 左から */
.slide-left {
  transform: translateX(-60px);
}

/* 右から */
.slide-right {
  transform: translateX(60px);
}

/* 表示状態 */
.fade-up.show,
.slide-left.show,
.slide-right.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* =====================
 パンくず
===================== */
.aioseo-breadcrumbs {
max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0; /* 上下の余白をしっかり取る */
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #333;
  position: relative;
  z-index: 10; /* 他の要素より上に */
}

/* 中身 */
.aioseo-breadcrumbs span {
  display: inline-block;
}

/* リンク */
.aioseo-breadcrumbs a {
color: #d90012; 
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

/* ホバー */
.aioseo-breadcrumbs a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* 区切り */
.aioseo-breadcrumbs .separator {
  margin: 0 10px;
   color: #555;
}

/* 現在ページ */
.aioseo-breadcrumbs .current {
 color: #555;
  font-weight: normal;
}

/* =====================
 スマホ
===================== */
@media screen and (max-width: 768px) {
  .aioseo-breadcrumbs {
	 max-width: 700px;
	 width:90%;
    font-size: 12px;
    padding: 10px 0;
  }
}

/* ================= */
/* 下層ページ
===================== */
.subpage_area {
  padding: 0 0 10% 0;
  margin: 0 auto;
	
}

.page_area {
width: 100%;
max-width: 1000px;
  padding: 0;
  margin: 0 auto;
	
}

/* =====================
  お知らせ詳細
===================== */

.single-news-inner {
  max-width: 1000px;
  margin: 0 auto;
padding:2% 0 0 0;
}

/* サムネ */
.single-news-thumb img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
}

/* タイトル＋日付 */
.single-news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
}

/* タイトル */
.single-news-title {
  font-size: 28px;
  font-weight: bold;
}

/* 日付（右） */
.single-news-date {
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

/* 本文 */
.single-news-content {
  font-size: 16px;
  line-height: 2;
}

.single-news-content p {
  margin-bottom: 20px;
}
.single-news-content a{
color: #c80d1f;
}

.news-pagination {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
}

/* 共通 */
.news-pagination a {
  display: block;
  width: 100%;
  padding: 20px;
  background: #f5f5f5;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: 0.3s;
}

/* 左 */
.prev-post {
  width: 50%;
}

/* 右 */
.next-post {
  width: 50%;
  text-align: right;
}

/* ホバー */
.news-pagination a:hover {
  background: #d90012;
  color: #fff;
}


/* =====================
  スマホ
===================== */
@media screen and (max-width: 768px) {
.single-news-inner {
  max-width: 700px;
  width:90%;
  margin: 0 auto;
padding:2% 0 0 0;

}

  .single-news {
    padding: 100px 15px 60px;
  }

  .single-news-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .single-news-title {
    font-size: 22px;
  }

  .single-news-date {
    font-size: 12px;
  }
	
  .news-pagination {
    flex-direction: column;
  }

  .prev-post,
  .next-post {
    width: 100%;
    
}
}
/* =====================
  コラムページ
===================== */

/*コラム一覧*/
.column-list {
  max-width: 1000px;
  margin: 0 auto 50px;
  display: flex;
  gap: 30px;
flex-wrap: wrap;
}


/* 画像ラップ（超重要） */
.img-wrap_column {
  aspect-ratio: 4 / 3;
  overflow: hidden;
position: relative;
}

/* 画像 */
.img-wrap_column img {
  width: 100%;
height: 100%;
 object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.column-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(217, 0, 18, 0.9);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.05em;
}


/*コラム詳細*/

.single-post-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding:2% 0 0 0;
}

/* サムネ */
.single-post-thumb img {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}

/* タイトル */
.single-post-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
}

.single-post-title {
  font-size: 28px;
  font-weight: bold;
}

.single-post-date {
  font-size: 14px;
  color: #333;
}

/* 本文 */
.single-post-content {
  line-height: 2;
}

/* 前後 */
.post-pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.post-pagination a {
  display: block;
  width: 100%;
  padding: 20px;
  background: #f5f5f5;
  text-decoration: none;
  color: #333;
}

.prev-post { width: 50%; }
.next-post { width: 50%; text-align: right; }

.single-post-category {
  margin-bottom: 10px;
}

.single-post-category span {
  display: inline-block;
  background: #d90012;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  font-weight: bold;
}
/* =====================
  関連記事
===================== */

.related-posts {
  margin-top: 80px;
}

.related-title {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: bold;
}

/* 横並び */
.related-list {
  display: flex;
  gap: 20px;
}

/* 各記事 */
.related-item {
  width: calc(33.333% - 14px);
  text-decoration: none;
  color: #333;
}

/* 画像 */
.related-item img {
  width: 100%;
  display: block;
}

/* タイトル */
.related-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}


/* スマホ */
@media (max-width: 768px) {
/*コラム一覧*/
.column-list {
width:96%;
  max-width:700px;
  margin: 0 auto 50px;
  display: flex;
  gap: 30px;
flex-wrap: wrap;
}
	
.single-post-inner {
 max-width: 700px;
  width:90%;
  margin: 0 auto;
  padding:2% 0 0 0;
}
	
  .single-post-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-pagination {
    flex-direction: column;
    gap: 15px;
  }

  .prev-post,
  .next-post {
    width: 100%;
    text-align: left;
  }
	
	
}


/* =====================
  店舗一覧
===================== */

.shop-list {
  max-width: 1000px;
  margin: 0 auto 50px;
  display: flex;
  gap: 30px;
flex-wrap: wrap;
}


.shop_item {
  display: block;
  width: calc(50% - 15px);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.shop_text {
  padding: 20px;
}

.shop_text h2 {
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
}

/* スマホ */
@media (max-width: 768px) {
.shop-list {
 width: 96%;	
  max-width:700px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
flex-wrap: wrap;
}


.shop_item {
  display: block;
  width: calc(50% - 5px);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
	
.shop_text {
  padding: 10px;
}

	
.shop_text h2 {
  font-size: 14px;
  line-height: 1.6;
  font-weight: bold;
}


}

/* =====================
  きんちゃんのこだわり
===================== */
.kodawari_fv{
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 450px;
  background: url("img/kodawari/fv.png") no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius:30px;
  overflow: hidden;
  margin: 0 auto;
	
}

.kodawari_fv h1{
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
	
}


.kodawari_h2{
  position: relative;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 20px;
  color: #cc0000;
  margin: 5% auto;
}

.kodawari_h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background:#cc0000;
}


.kodawari_box{
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 120px auto;
}

.kodawari_box.reverse{
  flex-direction: row-reverse;
}

/* =========================
   写真
========================= */

.kodawari_img{
  width: 55%;
}

.kodawari_img img{
  width: 100%;
  display: block;
  border-radius: 30px;
}

/* =========================
   テキストエリア
========================= */
.kodawari_text{
  position: relative;
  width: 45%;
  padding: 80px 30px;

  background: url("img/kodawari/kodawari_back.png") no-repeat center / contain;
}

/* 番号 */
.kodawari_no{
  position: absolute;
  top: -40px;
  left: -20px;
  width: 100px;
}

.kodawari_no img{
  width: 100%;
  display: block;
}

/* タイトル */
.kodawari_text h3{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #000;
  line-height: 1.4;
}

/* テキスト */
.kodawari_text p{
  font-size: 14px;
  line-height: 2;
  color: #333;
}


/* スマホ */
@media screen and (max-width: 768px){
	
.kodawari_fv{
  position: relative;
  width:96%;
  max-width: 700px;
  height: 250px;
  background: url("img/kodawari/fv.png") no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius:30px;
  overflow: hidden;
  margin: 0 auto;
	
}


  .kodawari_fv h1{
    font-size: 32px;
  }

  .kodawari_h2{
    font-size: 18px;
    margin: 2% auto;
  }

  .kodawari_box{
  width:96%;
  max-width: 700px;
    flex-direction: column;
    gap: 30px;
    margin: 80px auto;
  }

  .kodawari_box.reverse{
    flex-direction: column;
  }
	
  .kodawari_img{
    padding: 0 0 5% 0;
  }

  .kodawari_img,
  .kodawari_text{
    width: 100%;
  }

  .kodawari_img img{
    border-radius: 20px;
  }

  .kodawari_text{
    padding: 60px 30px;
    background-size:50%;
    background-position: center;
  }

  .kodawari_no{
    width: 90px;
    top: -20px;
    left: 0;
  }

  .kodawari_text h3{
    font-size: 28px;
    margin-bottom: 20px;
  }

  .kodawari_text p{
    font-size: 15px;
    line-height: 1.8;
  }

}
/* =========================
   スクロールアニメーション
========================= */

.kodawari_box{
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

/* 表示時 */
.kodawari_box.active{
  opacity: 1;
  transform: translateY(0);
}


/* 写真 */

.kodawari_img{
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.kodawari_box.reverse .kodawari_img{
  transform: translateX(60px);
}

.kodawari_box.active .kodawari_img{
  opacity: 1;
  transform: translateX(0);
}


/* テキスト */

.kodawari_text{
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease 0.3s,
    transform 1s ease 0.3s;
}

.kodawari_box.active .kodawari_text{
  opacity: 1;
  transform: translateY(0);
}


/* NO画像 */

.kodawari_no{
  opacity: 0;
  transform: rotate(-15deg) scale(0.8);
  transition:
    opacity 0.8s ease 0.6s,
    transform 0.8s ease 0.6s;
}

.kodawari_box.active .kodawari_no{
  opacity: 1;
  transform: rotate(0) scale(1);
}



/* =============================================
   店舗詳細ページ（shop-page-wrapper）
============================================= */
.sk-shop-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}

/* ヘッダー */
.sk-shop-header {
    text-align: center;
    margin-bottom: 50px;
}

.sk-hero-image {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px; /* 画像とキャッチコピーの間隔 */
}

.sk-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-hero-title {
    color: #fff; /* 画像内は白文字 */
    font-size: 2.8rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.sk-catch-outside {
    margin: 0;
	text-align: left;
}

/* 予約ボタン（3カラム） */
.sk-action-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.sk-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 50px;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 1.05rem;
}

.sk-btn i { margin-right: 8px; }
.sk-btn:hover { transform: translateY(-3px); opacity: 0.9; box-shadow: 0 6px 18px rgba(0,0,0,0.15); }

.sk-btn-tel { background: #f39c12; } /* オレンジ */
.sk-btn-web { background: #e74c3c; } /* 赤 */
.sk-btn-map { background: #444; }    /* グレー */

/* 情報カード（2カラム） */
.sk-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.sk-info-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sk-info-label {
    font-size: 1.25rem;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.sk-info-label i { color: #e74c3c; margin-right: 10px; }

.sk-text-hours { line-height: 1.8; }
.sk-text-lastorder { font-weight: bold; margin-top: 15px; font-size: 1.1rem; }
.sk-text-holiday { color: #e74c3c; font-weight: bold; margin-top: 5px; }

.sk-text-address { line-height: 1.6; margin-bottom: 10px; }
.sk-text-address span { font-size: 0.9em; }

.sk-map-frame { margin-top: 20px; border-radius: 10px; overflow: hidden; line-height: 0; }
.sk-map-frame iframe { width: 100% !important; height: 230px !important; border: 0; }

/* ショップ情報*/
.sk-spec-section {
    margin-bottom: 50px;
	    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sk-spec-label {
    font-size: 1.25rem;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.sk-spec-label i { color: #e74c3c; margin-right: 10px; }

.sk-spec-table {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
}

.sk-spec-table dl {
    display: flex;
    margin: 0;
    border-bottom: 1px solid #333;
    padding: 15px 10px;
}

.sk-spec-table dt {
    width: 200px;
    font-weight: bold;
    color: #555;
    background: #fdfdfd;
}

.sk-spec-table dd {
    flex: 1;
    margin: 0;
    padding-left: 20px;
}

/* ギャラリー */
.sk-gallery-label {
    font-size: 1.3rem;
    margin-bottom: 20px;
    border-left: 5px solid #e74c3c;
    padding-left: 15px;
}

.sk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.sk-gallery-item { aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; }
.sk-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.sk-gallery-item:hover img { transform: scale(1.1); }



/* スマホ対応 */
@media (max-width: 768px) {
    .sk-action-nav, .sk-info-row, .sk-gallery-grid { grid-template-columns: 1fr; }
    .sk-hero-image { height: 300px; }
    .sk-hero-title { font-size: 1.8rem; }
	
.sk-spec-table dl {
        flex-direction: column;
    }
    .sk-spec-table dt {
        width: 100%;
        margin-bottom: 5px;
        background: transparent;
    }
    .sk-spec-table dd {
        padding-left: 0;
    }
  
}

/* =============================================
   SNS
============================================= */
/* PCではSNSアイコンを隠す（必要であれば） */
.nav-sns {
  display: none;
}
.sns-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin: 1% auto 3% auto;
}

.sns-icons a {
  display: block;
  transition: 0.3s;
  text-decoration: none;
}

.sns-icons a:hover {
  transform: scale(1.1);
  text-decoration: none;
}

.sns-icons img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

@media screen and (max-width: 768px) {

  /* スマホメニュー内では表示 */
  .nav-sns {
    display: block !important;
    width: 100%;
    margin-top: 10px;
  }

  .sns-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    width: 100% !important;
    padding: 20px 0 !important;
  }

  .sns-icons a {
    width: auto !important;
    height: auto !important;
    display: block !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
  }

  .sns-icons img {
    width: 40px !important;
    height: 40px !important;
    display: block !important;
    object-fit: contain !important;
  }

}