@charset "UTF-8";
/*
Theme Name: Wakayama Gibier Theme
Author: Your Name
Description: わかやまジビエ公式テーマ
Version: 1.0
*/

/* ----------------------------
 * 0. 変数定義 (管理しやすく)
 * ---------------------------- */
:root {
    --primary-green: #004b25;
/*    --primary-white: #fafff1;*/
    --primary-white: #fff;
    --accent-yellow: #ffd700;
    --bg-white: #fff;
    --bg-black: #000;
    --bg-kon: #083260;
    --bg-enji: #800000;
    --bg-cream: #f2f2e9;
    --bg-cream2: #f7f2e8;
    --bg-wine: #8c2f29;
    --border-black: 2px solid #000;
    --border-white: 2px solid #fff;
    --font-bold: "新ゴ B", "Noto Sans JP", sans-serif;
}

/* ----------------------------
 * 1. CSSリセット & 基本設定
 * ----------------------------
html, body, div, span, h1, h2, h3, h4, h5, p, img, ul, ol, li, table, tbody, tr, th, td, footer, header, nav {
    margin: 0; padding: 0; border: 0; outline: 0;
    font-size: 100%; vertical-align: baseline; background: transparent;
}
 */
/* @font-face でローカルフォントを優先 */
@font-face {
	font-family: "Local Noto Sans JP";
	src: local("Noto Sans JP");
}
body {
    font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
	margin: 0;
    line-height: 1.6;
    font-size: 1.2em;
    background: var(--bg-cream);
    color: #333;
    -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, b, strong {
    font-family: var(--font-bold);
}

img { max-width: 100%; height: auto; }

/* 表示切り替え用クラス */
.pc {
	display: block;
}
.sp {
	display: none;
}
@media (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}

article{
	min-height:auto;

}
a {
  overflow-wrap: break-word;
  word-break: break-all;
}
/* ----------------------------
 * 2. レイアウト (Container系)
 * ---------------------------- */
.header-container {
	width: 100%;
	border: var(--border-black);
	box-sizing: border-box;
	background-color: #fff;
}
.header-top {
	display: flex;
	background-color: var(--accent-yellow);
	font-weight: bold;
	border-bottom: var(--border-black);
	align-items: center;
	justify-content: space-between;
}
.title-area {
	flex: 1;
	padding: 5px;
	font-size: 1.5em;
	white-space: nowrap;
}
.title-area img {
	max-height: 48px;
	width: auto;
}
.pc-links {
	display: flex;
	align-items: center;
}
.pc-links div {
	padding: 10px 20px;
	cursor: pointer;
}
.pc-links a {
	text-decoration: none;
	font-family: var(--font-bold);
	color: #333;
	/* 文字色 */
	display: inline-block;
	/* これがないとリンク範囲が全幅になる */
	/*  font-size: 36px; /* 文字サイズ */
	position: relative;
	/* 相対位置指定 */
	text-decoration: none;
	/* デフォルトのテキストの下線を消す */
	cursor: pointer;
/* ★ここを追加（ホバー時の動きを滑らかにする：0.3秒かけて変化） */
	transition: transform 0.3s ease;
}


/* ★ここを追加（ホバー時に1.1倍に大きくする） */
.pc-links a:hover {
	transform: scale(1.1);
	/* もしホバー時に文字色も変えたい場合はここに color: #xxx; を追加してください */
}




.menu-btn {
	display: none;
	width: 50px;
	height: 50px;
	position: relative;
	cursor: pointer;
	border-left: var(--border-black);
	flex-shrink: 0;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
	display: block;
	height: 3px;
	width: 25px;
	background: var(--bg-black);
	position: absolute;
	transition: all 0.3s ease-in-out;
}
.menu-btn span {
	top: 24px;
	left: 12px;
}
.menu-btn span::before {
	content: "";
	top: -8px;
}
.menu-btn span::after {
	content: "";
	top: 8px;
}
.menu-btn.open span {
	background: transparent;
}
.menu-btn.open span::before {
	top: 0;
	transform: rotate(45deg);
}
.menu-btn.open span::after {
	top: 0;
	transform: rotate(-45deg);
}
/*
#nav-menu.header-bottom {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}
*/
/* ナビゲーションメニュー */
.header-bottom {
	display: flex;
	border-bottom: var(--border-black);
	background: #fff;
	/* --- 修正箇所 ---
	position: absolute;
	top: 60px; /* ヘッダーの高さに合わせて調整 */
	/*left: 0;*/
	width: 100%;
	/*z-index: 1000;*/
	/*max-height: 0;*/
	overflow: hidden;
	transition: max-height 0.4s ease;
}


.menu-item {
	flex: 1;
	/* padding: 10px; */ /* ← 枠いっぱいに広げるためにliの余白は削除 */
	text-align: center;
	border-right: 1px solid #ccc;
	cursor: pointer;
	text-decoration: none;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-bold);
}
.menu-item:last-child {
	border-right: none;
}

/* 枠いっぱいに広げるための指定 */
a.menu-item,
.menu-item a {
	text-decoration: none;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	/* 画面幅に合わせて 11px 〜 14px の間でなめらかに自動変化 */
	font-size: clamp(11px, 1.1vw, 18px); 
	
	/* もし文字が枠からハミ出そうな時に、文字同士の間隔を少しだけ詰めて収める隠し味 */
	letter-spacing: -0.03em;

	min-height: 70px;
	
	/* ここを追加 */
	width: 100%;
	height: 100%;
	padding: 10px; /* 代わりにリンクの中に余白を持たせる */
	box-sizing: border-box; /* paddingを含めたサイズ計算にする */
}

@media (max-width: 768px) {
a.menu-item,
.menu-item a{
	font-size:1em;
}
}


/* ホバー時に文字色が変わらない対策 */
.menu-item:hover a {
	color: #fff;
}

.menu-item:hover,
a.menu-item:hover,
.menu-item a:hover {
	background-color: var(--primary-green);
	color: #fff;
}

.mobile-only {
	display: none!important;
}
/* モバイル用設定 */
@media (max-width: 768px) {
	.menu-btn {
		display: block;
	}
	.pc-links {
		display: none;
	}
	.header-bottom {
		position: absolute;
		display: flex;
		flex-direction: column;
		max-height: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
	}
	/* 開いた時の挙動 */
	.header-bottom.open {
		max-height: 600px;
		border-bottom: var(--border-black);
	}
	.menu-item {
		border-right: none;
		border-bottom: 1px solid #ccc;
		display: block;
		/* ブロック要素にして縦並びを確実に */
		/*
		justify-content: flex-start;
		padding-left: 20px;
		*/
	}
	/* スマホ時はスライドショーの高さを少し低くする */
	.swiper {
		/*max-height: 300px;*/
		margin: 1em 0;
	}
	/* スマホで追加表示する項目 */
	.mobile-only {
		display: block!important;
		/*
		background: #eee;
		font-weight: bold;
*/
	}
	.pc-links div {
		border-left: none;
		padding: 3px 10px;
	}
	.title-area img {
		max-height: 60px;
	}
}
/* ボタン風メニュー */
.menu-button {
	display: inline-block;
	padding: 10px 18px;
	background: var(--bg-enji);	 /*あざやかな赤系の色 */
/*	background: #3d2b1f;	 こげ茶色 */
/*	background: var(--primary-green);	 緑 */
/* 	background: #472514;	 茶色 */
/*	background: var(--bg-kon);	 紺色 */
	color: #fff !important;
	text-decoration: none;
	border-radius: 999px;
	font-weight: bold;
	transition: opacity 0.3s ease;
}
.menu-button-shop {
	display: inline-block;
	padding: 10px 18px;
	background: var(--bg-kon);	 /*紺色 */
	color: #fff !important;
	text-decoration: none;
	border-radius: 999px;
	font-weight: bold;
	transition: opacity 0.3s ease;
}
/* マウスオン */
.menu-button:hover {
	background-color: var(--primary-green)!important;
}
.menu-button-shop:hover {
	background-color: var(--primary-green)!important;
}
/* スマホ時はボタン風を軽くする */
@media screen and (max-width: 768px) {
	.menu-button {
		background: var(--bg-enji);
		color: #fff !important;/* 高さ維持 */
		padding: 10px 18px;/* 丸ボタンだけ解除 */
		border-radius: 0;
	}
	.menu-button:hover {
		color: #fff !important;
		background: var(--primary-green);
	}
	.menu-button-shop {
		background: var(--bg-kon);
		color: #fff !important;
		padding: 10px 18px;/* 高さ維持 */
		border-radius: 0;/* 丸ボタンだけ解除 */
	}
	.menu-button-shop:hover {
		color: #fff !important;
		background: var(--primary-green);
	}
}
/* ---------------------------
 * フッター
 * --------------------------- */
.footer_wrap {
	max-width: 1500px;
	margin: 0 auto;
	background: var(--primary-green);
	color: var(--primary-white);
	border-radius: 20px;
	border-left: 4px solid #ffd700;
	padding: 20px;
	text-align:center;
}
.footer .footer_inner {
	display: flex;
	justify-content: space-between;
	padding: 37px 30px 37px 34px;
}
@media (max-width: 768px) {
	.footer .footer_inner {
		flex-flow: column;
		padding: 5px;

	}
}
.footer_informaiton_body {
	text-align: left;
}
.footer_logo img {
	width: 250px;
}
.footer_ttl {
	font-size: 1.2em;
	font-weight: 700;
	font-family: var(--font-bold);
	padding-bottom: 10px;
}
.footer .footer_sub {
	display: flex;
	justify-content: space-between;
	max-width: 1500px;
	margin: 19px auto 0;
}
@media (max-width: 768px) {
	.footer .footer_sub {
		flex-flow: column;
	}
}
.footer_links ul {
	list-style: none;
}
/*
.footer_links ul li a {
	display: block;
	text-decoration: none;
	background: #fff;
	color: #000;
	margin: 10px;
	padding: 0.5em 1em;
	font-size: 1.1em;
	border-radius: 10px;
	width: 250px;
	font-weight: 500;
	cursor: pointer;
}
*/
.footer_links ul li a img{
	width:250px;
	height:auto;
	border-radius: 10px;
	border:2px solid #fff;
	margin:auto;
}


@media (max-width: 768px) {
	.footer_links {
		display: flex;
		justify-content: center;
		margin-top: 30px;
	}
	.footer_links ul {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.footer_links ul li a {
		width: auto;
	}
}
.footer_links ul li a:hover {
	background: #f0f0f0;
}
.footer_btn img {
	height: 24px;
	width: 24px;
	padding-right: 0.5em;
}
.footer .footer_sub_nav .footer_sub_nav_list li {
	display: inline-block;
	font-size: 14px;
	font-size: 0.875em;
}
.footer .footer_sub_nav .footer_sub_nav_list li a {
	color: #333;
	/* 文字色 */
	display: inline-block;
	/* これがないとリンク範囲が全幅になる */
	/*  font-size: 36px; /* 文字サイズ */
	position: relative;
	/* 相対位置指定 */
	text-decoration: none;
	/* デフォルトのテキストの下線を消す */
	cursor: pointer;
}
/* 下線のスタイル */
.footer .footer_sub_nav .footer_sub_nav_list li a::after {
	background-color: #333;
	/* 下線の色 */
	bottom: -4px;
	/* 要素の下端からの距離 */
	content: "";
	/* 要素に内容を追加 */
	height: 1px;
	/* 下線の高さ */
	left: 0;
	/* 要素の左端からの距離 */
	position: absolute;
	/* 絶対位置指定 */
	transform: scale(0, 1);
	/* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
	transform-origin: left top;
	/* 変形の原点を左上に指定 */
	transition: transform .3s;
	/* 変形をアニメーション化 */
	width: 100%;
	/* 要素の幅 */
}
/* リンクにホバーした際の下線の表示 */
.footer .footer_sub_nav .footer_sub_nav_list li a:hover::after {
	transform: scale(1, 1);
	/* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
.footer .footer_sub_nav .footer_sub_nav_list li+li::before {
	margin-right: 0.4em;
	margin-left: 0.2em;
	content: "|";
}
footer {
	/*	background: #472413;
	color: var(--primary-white);
*/
	padding: 1em;
	font-size: 0.8em;
	text-align: center;
}
footer a {
	color: var(--primary-white);
}

footer a img{
	display:block;
	margin:0;
	padding:0;
}


/* フッター画像 バナーリンク */
.banner-link img {
	transition: opacity 0.3s ease;
}
.banner-link:hover img {
	opacity: 0.85;
}

main {
	margin: 0 auto;
}
.main_inner {
	max-width: 1260px;
	margin: auto;
	display: block;
}
.main_inner_kiji,
.main_inner_page {
	padding: 10px;
}
.bg_green {
	background: #004825;
	color: #fff;
}
.container {
	display: flex;
	/* 子要素を横並びにする */
	gap: 20px;
	/* 左右の間に隙間を作る */
	max-width: 1260px;
	width:100%;
	margin: 0 auto;
}
.container3 {
	padding: 1em;
	text-align: center;
}
@media (max-width: 768px) {
.container3 {
	text-align: left;
	}
}
.container4 {
	max-width: 1260px;
	margin: 0 auto;
}
.flex_center {
	display: flex;
	justify-content: center;
	/* 水平方向の中央寄せ */
	align-items: center;
	/* 垂直方向の中央寄せ */
}
/* メインコンテンツ（左側） */
.content {
	flex: 2;
	/* 全体の2/3の幅を占める */
	margin: 20px 10px 20px 10px;
	/*	padding: 20px;*/
	padding: 20px 40px;
	border-radius: 20px;
	background: #fff;
	border:1px solid #d4af37;
	
}
/* サイドバー（右側） */
.sidebar {
	flex: 1;
	/* 全体の1/3の幅を占める */
	margin: 20px 5px 20px 5px;
	/*	padding: 20px;*/
	padding: 20px 40px;
	border-radius: 20px;
	background: #fff;
	border:1px solid #d4af37;
	min-height:280px;
}
/* スマホ表示の時だけ「縦並び」に戻す */
@media (max-width: 768px) {
	.container {
		margin: 10px 0 10px 0;
		flex-direction: column;
		/* 縦積み（縦並び）に変更 */
	}
	.content {
		margin: 20px 5px 20px 5px;
	}
	.sidebar {
		margin: 10px 5pxpx 10px 5px;
	}
}
.container2 {
	display: grid;
	/* 最小250pxを確保し、入り切らなくなったら自動で折り返す */
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 10px;
	/*	padding: 20px;*/
}
.container2 .item {
	margin: 20px 10px;
	text-align: center;
	background: #fafafa;
	border-radius: 10px;
	border: var(--border-black);
}
.container2 .item img {
	max-width: 100%;
	border-radius: 0 0 8px 8px;
	margin-bottom: -7px;
}
/* 画像リンク */
.container2 .item a img {
	transition: opacity 0.3s ease;
}

/* オンマウス */
.container2 .item a:hover img {
	opacity: 0.7;
}

@media screen and (max-width: 768px) {
	.container2 {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.container2 .item {

		/* 下余白を狭く */
		margin: 0px 10px;
		padding: 10px;
		display: flex;
		align-items: center;
		gap: 15px;
		border-radius: 12px;
	}

	.container2 .item h2 {
		order: 2;
		margin: 0;
		font-size: 24px !important;
		text-align: left;
		line-height: 1.4;
}

	.container2 .item a {
		/* 写真側 */
		order: 1;
		display: block;
		flex-shrink: 0;
	}

	.container2 .item img {
		width: 120px;
		height: 80px;
		object-fit: cover;
		border-radius: 8px;
		margin-bottom: 0;
	}

}

/* =========================
   スマホ
========================= */

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

	.container2 {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.container2 .item a {
		display: flex;
		align-items: center;

		padding: 10px;
	}

	.container2 .item img {
		width: 120px;
		height: 80px;

		object-fit: cover;

		border-radius: 8px;

		flex-shrink: 0;
	}

	.container2 .item h2 {
		margin: 0;
		padding: 0 0 0 15px;

		font-size: 1rem;
		text-align: left;
	}

}

.kiji h2 {
    text-align: center;
    font-size: 1.7em;
}


/* ---------------------------
 * お知らせ・イベント情報
 * --------------------------- */
/* dl自体を2列のグリッドにする */
dl.oshirase {
    display: grid;	/* 左側(dt)を220px、右側(dd)を残りの全幅に固定 */
    grid-template-columns: 220px 1fr; 
    width: 100%;
    margin: 0 auto;
    padding: 0;
    border-top: 1px solid #ccc;
}

/* 日付部分 */
dl.oshirase dt {
    grid-column: 1; /* 必ず1列目 */
    padding: 15px 10px;
    margin: 0;
    border-bottom: 1px solid #ccc;
    color: #3d2b1f; /* 和牛の焦げ茶 */
    font-weight: bold;
}

/* 内容部分 */
dl.oshirase dd {
    grid-column: 2; /* 必ず2列目 */
    margin: 0;
    padding: 15px 10px 15px 20px;
    border-bottom: 1px solid #ccc;
}

/* リンク */
dl.oshirase dd a {
    text-decoration: none;
    color: #0000ee;
}
/* スマホ表示（768px以下）の切り替え */
@media screen and (max-width: 768px) {
	dl.oshirase {
	    grid-template-columns: 1fr;
	}
	dl.oshirase dt {
	    grid-column: 1;
	    border-bottom: none;
	    padding:15px 10px 5px 10px;
	    white-space: normal;
	}
	dl.oshirase dd {
	    grid-column: 1;
	    padding:0 10px 15px 10px;
	    border-bottom: 1px solid #ccc;
   }
}
/* 日付共通 */
.oshirase dt {
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

/* お知らせタグ */
.oshirase dt.news::before {
  content: "お知らせ";
  display: inline-block;
  background: #99715b;
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 999px;
}
/* イベントタグ */
.oshirase dt.event::before {
  content: "イベント";
  display: inline-block;
  background: #4c8166;
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 999px;
}
/* =========================
   スマホ
========================= */
@media (max-width: 768px) {

	.content h2 {
		text-align: center;
	}

}

/* スマホ表示（480px以下）の切り替え */
@media screen and (max-width: 480px) {
    dl.osirase {
        /* スマホでは2列を解除して1列にする */
        grid-template-columns: 1fr;
    }
    dl.osirase dt {
        grid-column: 1;
        border-bottom: none;
        padding-bottom: 5px;
    }
    dl.osirase dd {
        grid-column: 1;
        padding-top: 0;
        padding-left: 10px;
    }
}
/* =========================
   店舗・施設の方へ
========================= */
.shop-info {
	display: flex;
	align-items: center;
	justify-content: center; 	/* space-between から center に変更 */
	gap: 30px;
	flex-wrap: wrap;		/* 必要に応じて：親要素の中でこのブロック自体を中央寄せする場合 */
/*	text-align: center;*/
	background-color: #ffffff;
	background-image: url('common/bg02.jpg');
/*	background-repeat: no-repeat; */
	overflow: hidden;
/*	min-height:300px;*/
}
.shop-info img {
/*
	max-width:400px;
	width: 100%;
	border-radius: 20px;
*/
	max-height:200px;
	display: block;
}
.shop-info a:hover img {
    opacity: 0.7;
}
/* 左側 */
.shop-text {
	flex: 1;
	min-width: 300px;
}
.heading_wrap small {
    display: block;
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
    text-align: left;
}
.heading_wrap h2 {
    text-align: left;
    margin: 0;
}
/* 右側ボタン群 */
.shop-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.shop-buttons a{
	display: block;
}

/* ---------------------------
 * イベント一覧
 * --------------------------- */
.kiji-event{}
.kiji-event {
	border-bottom: 1px solid #eee;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.kiji-event h3{
	font-size: 20px;
	margin-bottom: 15px;
}
.kiji-event h3 a{
	color: #333;
	text-decoration: none;
	font-weight: bold;
}
.kiji-event .post-eyecatch{
	margin-bottom: 20px;
}

















/* ジビエを食べるボタン */
.search_btn {
    display: block;
    margin-top: 20px;
    padding: 14px 20px;
    border: 2px solid var(--bg-enji); /*あざやかな赤*/
    background: var(--bg-enji);
    border-radius: 999px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 1.15rem; 
/*    font-size: 1.3rem;*/
    font-weight: bold;
    transition: all 0.3s ease;
}
/* ボタンオンマウス */
.search_btn:hover {
    background: var(--primary-green);       /*緑 */
    border: 2px solid var(--primary-green);
    color: #fff;
}

/* 掲載申し込みボタン */
.btn01 {
	display: inline-block;
	padding: 10px 18px;
	min-width: 220px;
	font-size: 1rem;
	background: var(--bg-kon);
	color: #fff !important;
	text-decoration: none;
	border-radius: 999px;
	font-weight: bold;
	text-align: center;
	transition: background-color 0.3s ease;

}
.btn01:hover {
	background-color: var(--primary-green);
}

/* =========================
   スマホ
========================= */
@media (max-width: 768px) {
	h2{
		font-size:1.2em;
	}
	.content h2 {
		text-align: center;
	}
	.shop-info {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 20px;
	}
	.shop-text {
		min-width: auto;
		width: 100%;
	}
	.heading_wrap small {
		text-align: center;
	}
	.heading_wrap h2 {
		text-align: center;
		margin: 0;
	}
	.shop-buttons p {
		margin: 0;
		text-align: center;
	}
	.search_btn {
		display: inline-block;
		width: auto;   /* ← ここ重要 */
		margin-top: 12px;
		/*padding: 14px 100px;  /* ← 横幅を広げる */
		padding: 14px 20px;  /* ← 横幅を広げる */
	}
	.shop-buttons {
		width: 100%;
	}

	.btn01 {
		/* スマホだけ小さく */
		min-width: auto;
		padding: 10px 14px;
		font-size: 0.9rem;
	}
}
.center {
	text-align: center;
}
/* 全体を囲む親要素：横並びにする */
.form-container {
	display: flex;
	flex-wrap: wrap;
	/* スマホで入り切らない時に折り返す */
	gap: 20px;
	/* 横並びの要素間の隙間 */
}
/* 個別のグループ設定 */
.form-group {
	display: flex;
	flex-direction: column;
	/* 文字とプルダウンは縦並び */
	min-width: 150px;
	/* 横幅の最小値を指定 */
}
/* プルダウン（select）自体のサイズを大きくする */
.form-group select {
	padding: 5px 15px;
	/* 内部の余白を広げて大きくする */
	font-size: 16px;
	/* 文字サイズを大きくする */
	border-radius: 4px;
	/* 角を丸くしてモダンにする */
	border: 1px solid #ccc;
	width: 100%;
	/* 横幅を親要素（form-group）いっぱいに広げる */
	cursor: pointer;
}
/* ラベルの文字サイズも一緒に大きくするとバランスが良いです */
.form-group label {
	font-size: 18px;
	margin-bottom: 8px;
}
.form-container label,
.form-container2 label {
	margin-bottom: 5px;
	font-weight: bold;
}
.form-container2 {
	margin-top: 2em;
	margin-bottom: 1em;
}
input[type="search"] {
	padding: 5px 15px;
	/* 内部の余白を広げて大きくする */
	font-size: 16px;
	border-radius: 4px;
	border: 1px solid #ccc;
	width: 90%;
}
.ttl01 {
	text-align: center;
	font-size: 180%;
	margin: 0;
	padding: 2em;
}

@media (max-width: 768px) {
	.ttl01 {
		font-size: 120%;
		padding: 1em;
	}
}

#submit_button {
	width: 250px;
	min-height:60px;
	padding: .3em 2em;
	border: 1px solid var(--primary-green);
	border-radius: 10px;
	background-color: var(--primary-green);
	color: #fff;
	font-weight: 600;
	font-size: 1em;
	cursor: pointer;
	margin:5px;
}
#submit_button:hover {
	background-color: #fff;
	color:var(--primary-green);
}
/* ===============================================
 * swiper追加CSS
 * =============================================== */
/* 1. コンテナの固定高さを解除 */
.mySwiper .carousel-wrapper,
.mySwiper .swiper,
.mySwiper .swiper-wrapper {
    height: auto !important; /* 固定高さを解除 */
}
.swiper {
	padding-top:1em;
	padding-bottom:1em;
}
/* 2. スライドのレスポンシブ設定 */
.mySwiper .swiper-slide {
    width: 100%;       /* スマホ時は80%くらいの幅で見せる場合 */
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* PC時は横幅を調整 */
@media (min-width: 768px) {
    .mySwiper .swiper-slide {
        /*width: 60%; /* PC時はスライドの幅を調整 */
    aspect-ratio: 16 / 9; /* ここで比率を固定（横：縦） */

    }
}

/* 3. 画像のレスポンシブ設定 */
.mySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 比率を保ってトリミング */
    display: block;
}

/* 4. スマホ用スライダー (spSwiper) も共通化してOK */
.spSwiper .swiper-slide {
    width: 100%;
/*    aspect-ratio: 16 / 9; /* PCと同じ比率に合わせる */
    height: auto;
}

/* ---------------------------
 * 写真が1枚の時
 * --------------------------- */
.shop-single-image{
	margin:auto;
	width:100%;
	text-align:center;
}

.shop-single-image img{
	max-width:800px;
	width:90%;
}

/* -------------------------------------------------------------------- */
/* スライド矢印のカスタマイズ */
/* -------------------------------------------------------------------- */
/* 矢印画像の高さと幅 */
.swiper-button-prev,
.swiper-button-next {
	height: 30px!important;
	width: 30px!important;
	border-radius:100%;
	background:#eee;
	color:#333!important;
	font-weight:bold;
	font-size:16px!important;
	z-index: 100;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
	background:#888;
}


.swiper-button-next:after, .swiper-button-prev:after{
	height: 15px!important;
	width: 15px!important;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '◀'!important;
    font-size: 16px!important;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '▶'!important;
    font-size: 16px!important;
}

.carousel-wrapper{
	margin:2em 0;

}


/* ページネーションの色を黒にする */
.swiper-pagination-bullet-active {
	background: #000;
}
.mySwiper .carousel-wrapper {
	max-width: 1200px;
	/*	margin: 80px auto 0 auto;*/
	margin: 120px auto 0 auto;
	padding: 20px;
	height: 550px;
}
.mySwiper .swiper-wrapper {
	display: flex;
	transform: translateZ(0);
	height: 550px;
}
.mySwiper .swiper {
	width: 100%;
	height: 550px;
	padding-bottom: 2em;
}
.mySwiper .swiper-slide {
	width: 800px;
	height: 533px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	flex-shrink: 0;
	/* ← スライドが縮まないように */
}
.mySwiper .swiper-slide img {
	width: 800px;
	height: 533px;
	object-fit: cover;
	display: block;
	backface-visibility: hidden;
	transform: translateZ(0);
}
.mySwiper .swiper-slide-active {
	transform: translateZ(0) scale(1) !important;
}
.mySwiper .swiper-slide-prev img,
.mySwiper .swiper-slide-next img {
	filter: brightness(1);
	/* 明るさ100% */
	opacity: 0.5;
}
@media (max-width: 768px) {
	.mySwiper .swiper-slide,
	.mySwiper .swiper-slide img {
		width: 100%;
		height: auto;
	}
}

/* ---------------------------
 * スマホ用
 * --------------------------- */
.spSwiper .swiper-wrapper {
	aspect-ratio: 1 / 0.687;
	margin: 0;
	padding: 0;
}
.spSwiper .swiper-slide img {
	max-width: 800px;
	width: 100%;
	max-height: 554px;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* -------------------------------------------------------------------- */
/* スライド矢印のカスタマイズ */
/* -------------------------------------------------------------------- */
/* 矢印画像の高さと幅 
.swiper-button-prev,
.swiper-button-next {
	height: 30px;
	width: 30px;
	border-radius:100%;
	background:#eee;
	color:#333;
	font-weight:bold;
	font-size:0.8em;
	z-index: 100;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
	background:#888;
}
*/
.insta-banner {
	display: flex;
	align-items: center;
	background-color: #fff;
	padding: 15px 20px;
	border-radius: 50px;
	/* 角を丸くして今っぽく */
	border: 2px solid #e1306c;
	/* インスタカラーの枠線 */
	width: fit-content;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}
.insta-banner:hover {
	background: #f0f0f0;
}

.icon-container {
	margin-right: 15px;
}
.sns-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
}
.text-container {
	display: flex;
	flex-direction: column;
}
.text-container a {
	text-decoration: none;
	color: inherit;
}

.text-container a:hover {
	text-decoration: none;
}
.main-title {
	font-weight: 800;
	font-size: 1.2rem;
	color: #333;
}
.sub-title {
	font-weight: 500;
	font-size: 0.9rem;
	color: #e1306c;
	/* 文字にもインスタカラーを使用 */
}
/* スマホ時 */
@media screen and (max-width: 768px) {

	.footer_links ul {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-left:-2em;
	}

	.insta-banner {
		min-width: 220px;
	}

}
.gibier-banner.youtube {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	border-radius: 50px;
	border: 2px solid #FF0000;
	/* YouTubeのブランドカラー */
	width: fit-content;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	font-family: 'Helvetica Neue', Arial, sans-serif;
}
.gibier-banner.youtube .icon-container {
/*	margin-right: 15px;*/
	display: flex;
	/* アイコンを中央に寄せる */
	align-items: center;
}
.gibier-banner.youtube .sns-icon {
	width: 50px;
	height: auto;
	/* YouTubeロゴは横長の場合があるため、高さを自動調整 */
}
.gibier-banner.youtube .text-container {
	display: flex;
	flex-direction: column;
}
.gibier-banner.youtube .main-title {
	font-weight: 900;
	/* より太く力強いゴシック体に */
	font-size: 1.3rem;
	/* わずかに大きく */
	color: #333;
	letter-spacing: -0.5px;
	/* 文字間を詰めてインパクトを出す */
}
.gibier-banner.youtube .sub-title {
	font-weight: 700;
	font-size: 0.9rem;
	color: #FF0000;
	/* 文字にもYouTubeカラーを使用 */
}
.font_mini {
	font-size: 0.8em;
}
.bg-transparent {
	position: relative;
	padding: 20px 40px;
	max-width: 1200px;
	margin: 10px 10px 2em 10px;
	border-radius: 20px;
	overflow: hidden;
	/* 角丸を背景にも適用させるため */
	background: none;
	/* 親要素の背景は消す */
	box-shadow: 0 10px 20px rgba(61, 43, 31, 0.2); /* 焦げ茶系の影 */
	border:1px solid #d4af37;
}
/* 背景画像専用のレイヤー */
.bg-transparent::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	/* コンテンツの後ろに配置 */
	background-image: url('common/bg02.jpg');
	background-repeat: repeat;
	opacity: 0.2;
}
/* ---------------------------
 * 背景色
 * --------------------------- */
/* クリーム色 */
.bg_01 {
	background: #fff7d5;
	padding: 2em 0;
}
/* 薄い黄色 / わかやまジビエ取り扱い店舗・施設*/
.bg_02 {
	background: #ffed96;
	padding: 2em 0;
}
/* 薄いオレンジ */
.bg_03 {
	background: #e1b58f;
	padding: 2em 0;
}
.bg_04 {
	background: #fcfaf2;
	padding: 2em 0;
}
.bg_green {
	background: #004825;
	color: #fff;
}
.mw1200_center {
	max-width: 1200px;
	margin: 2em auto;
	text-align: center;
}
.w100 {
	width: 100%;
}

/* =========================
   動画中央寄せ
========================= */
.container.flex_center {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	padding: 0 20px;

	box-sizing: border-box;
}

/* iframe */
.container.flex_center iframe {
	width: 100%;
	max-width: 900px;

	aspect-ratio: 16 / 9;
	height: auto;

	border-radius: 12px;
}


.responsive-table {
	width: 100%;
	border-collapse: collapse;
	overflow-wrap: anywhere;
}

.responsive-table th, 
.responsive-table td {
	border: 1px solid #ccc;
	padding: 10px;
	text-align: left;
}

.responsive-table th {
	width:30%;
	background:var(--primary-green);
	color:#fff;
}
.responsive-table td {
	width:70%;
	background:#fff;
}



/* --- スマホ用の設定 --- */
@media (max-width: 767px) {
  /* テーブルの構造を解除してブロック化 */
  .responsive-table, 
  .responsive-table thead, 
  .responsive-table tbody, 
  .responsive-table th, 
  .responsive-table tr, 
  .responsive-table td {
    display: block;
    width: 100%;
  }

  /* ヘッダー(項目名)を非表示にする（任意） */
  .responsive-table thead {
    display: none;
  }

  
  .responsive-table th {
    width: calc( 100% - 22px );
  }
.responsive-table tr {
    margin-bottom: 10px; /* 行ごとの隙間 */
  }

  .responsive-table td {
    box-sizing: border-box;
    border-bottom: none;
  }

  .responsive-table td:last-child {
    border-bottom: 1px solid #ccc; /* 最後のセルだけ下線を引く */
  }
}



.responsive-table_jyoho{}

.responsive-table_jyoho {
	width: 100%;
	font-size:0.8em;
	border-collapse: collapse;
	overflow-wrap: anywhere;
}

.responsive-table_jyoho th, 
.responsive-table_jyoho td {
	border-top: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
	padding: 10px;
	text-align: left;
}

.responsive-table_jyoho th {
	width:11em;
	color:#444;
/*	background:#fafafa;*/
}
.responsive-table_jyoho td {
	width: calc( 100% - 11.5em );
/*	background:#fff;*/
}



/* --- スマホ用の設定 --- */
@media (max-width: 767px) {
  /* テーブルの構造を解除してブロック化 */
  .responsive-table_jyoho, 
  .responsive-table_jyoho thead, 
  .responsive-table_jyoho tbody, 
  .responsive-table_jyoho th, 
  .responsive-table_jyoho tr, 
  .responsive-table_jyoho td {
    display: block;
    width: 100%;
  }

  /* ヘッダー(項目名)を非表示にする（任意） */
  .responsive-table_jyoho thead {
    display: none;
  }

  
  .responsive-table_jyoho th {
    width: calc( 100% - 22px );
  }
.responsive-table_jyoho tr {
    margin-bottom: 10px; /* 行ごとの隙間 */
  }

	.responsive-table_jyoho th,
  .responsive-table_jyoho td {
    box-sizing: border-box;
    border-bottom: none;
  }
/*
  .responsive-table_jyoho td:last-child {
    border-bottom: 1px solid #ccc; /* 最後のセルだけ下線を引く */
 /* }
*/
}


  .container-res {
    display: flex;
    width: 100%;
  }

  .box-6 { flex: 6;
	padding:1em;
	 }
  .box-4 { flex: 4;
	padding:1em;

}

  /* 画面幅が768px以下のとき（スマホなど）は縦並びにする */
  @media (max-width: 768px) {
    .container-res {
      display: block;
    }
    .box-6, .box-4 {
      width: calc ( 100% - 2em ) ; /* 横幅いっぱいに広げる */
    }
  }


/* ---------------------------
 * 検索結果（カード全体）
 * --------------------------- */
.kiji-list {
	display: inline-block;
	max-width: 400px;
	width: calc(100% - 15px);
	border-radius: 12px; /* 少しだけ角丸を滑らかに */
	background: #fff;
	text-align: center;
	margin: 8px 5px; /* 上下の間隔を少しプラス */
	padding: 20px 15px; /* 内側の余白を広げてパツパツ感を解消 */
	box-shadow: 0 4px 12px rgba(0,0,0,0.04); /* ほんのり影をつけてカードの立体感を出す */
	box-sizing: border-box;
	vertical-align: top; /* カード同士の高さが違っても上が綺麗に揃うようにする */
}

/* 店舗タイトル */
.kiji-list h3 {
	height: 2.8em; /* 2行分の高さを確保 */
	font-size: 18px;
	line-height: 1.4;
	margin-top: 0;
	margin-bottom: 15px;
	/* 👇 万が一、店名が3行以上になっても崩れないように3点リーダー「…」にする処理 */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 店舗画像（★ここが一番綺麗に揃うポイント！） */
.kiji-list img {
	width: 100%;
	max-width: 380px; /* 画像の横幅サイズをほんの少しアップ */
	height: 200px; /* 縦幅を固定する */
	object-fit: cover; /* 縦横比を崩さずに枠内に綺麗に収める（潰れ・伸び防止） */
	border-radius: 15px; /* カプセル型すぎず四角すぎない程よい角丸に */
	margin: 0 auto 20px auto;
	display: block;
}
.kiji-list .text{
	margin:0;
	padding:0;

}

/* タグ（バッジ）が並ぶエリアの余白調整 */
.kiji-list .text p {
	margin-top: 0;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px; /* タグとタグの間に程よい隙間をあける */
}


/* すでにあるバッジの margin を gap 制御のためにリセット */
.kiji-list .badge-gibier,
.kiji-list .tag-data_aria {
	margin: 0 !important;
}

/* ---------------------------
 * 詳細を見るボタン
 * --------------------------- */
.btn_syousai,
.btn_syousai a{
	padding: 10px 30px;
	background: #fff;
	color: #000 !important; /* 確実に文字を黒にする */
	display: block;
	border: 1px solid #000;
	border-radius: 30px; /* 完全に丸いカプセル型にして今っぽく */
	text-decoration: none;
	margin: 0 auto 10px auto;
	min-width: 250px;
	max-width: 300px;
	width: auto;
	text-align: center;
/*	font-weight: bold;*/
	transition: all 0.3s ease; /* マウスを乗せたときにふんわり変化させる */
}

/* ボタンにマウスを乗せたとき */
.btn_syousai:hover {
	background-color: var(--primary-green);
	color: #fff !important; /* 文字を白にする */
	border-color: var(--primary-green); /* 枠線も緑に変える */
}


/* ---------------------------
 * レシピ・その他（元の記述を維持）
 * --------------------------- */
.recipe-list {
	display: inline-block;
	max-width: 400px;
	width: calc(100% - 15px);
	border-radius: 10px;
	background: #FEF8EE;
	text-align: center;
	margin: 8px 5px; /* 上下の間隔を少しプラス */
	padding: 20px 15px; /* 内側の余白を広げてパツパツ感を解消 */
	box-shadow: 0 4px 12px rgba(0,0,0,0.04); /* ほんのり影をつけてカードの立体感を出す */
	box-sizing: border-box;
	vertical-align: top; /* カード同士の高さが違っても上が綺麗に揃うようにする */
}
.recipe-list h3 {
	height: 2.8em; /* 2行分の高さを確保 */
	font-size: 18px;
	line-height: 1.4;
	margin-top: 0;
	margin-bottom: 15px;
	/* 👇 万が一、店名が3行以上になっても崩れないように3点リーダー「…」にする処理 */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 3em;
}
.recipe-list img {
	width: 100%;
	max-width: 380px; /* 画像の横幅サイズをほんの少しアップ */
	height: 250px; /* 縦幅を固定する */
	object-fit: cover; /* 縦横比を崩さずに枠内に綺麗に収める（潰れ・伸び防止） */
	border-radius: 15px; /* カプセル型すぎず四角すぎない程よい角丸に */
	margin: 0 auto 20px auto;
	display: block;
}


/* イノシシ／シカ */
.tag-data_recipe a {
	display: inline-block;
	padding: 4px 12px;
	font-size: 13px;
	font-weight: bold;
	border-radius: 18px;
	margin-right: 6px;
	margin-bottom: 6px;
	text-align: center;
	background: var(--bg-enji);
	color: #fff;
	border: 1px solid var(--bg-enji);
	white-space: nowrap;
	text-decoration: none;
}
.tag-data_recipe a:hover {
	background-color:#fff;
	color:  var(--bg-enji);
}

.tag-data_recipe img{
	height:13px;
	width:auto;

}


.btn_recipe,
.btn_recipe a {
	padding: 10px 30px;
	background: #fff;
	color: #992D2E;
	display: block;
	border: 2px solid #992D2E;
	border-radius: 30px; /* 完全に丸いカプセル型にして今っぽく */
	text-decoration: none;
	margin: 0 auto 10px auto;
	min-width: 250px;
	max-width: 300px;
	width: auto;
	text-align: center;
/*	font-weight: bold;*/
	transition: all 0.3s ease; /* マウスを乗せたときにふんわり変化させる */

}
.btn_recipe:hover,
.btn_recipe a:hover {
	background: #992D2E;
	color: #fff;
}
/* レシピアイコンとテキストを綺麗に横並びにする */
img.recipe-icon {
    display: inline-block;
    vertical-align: middle; /* 文字の高さの中心に合わせる */
    width: auto;            /* 画像のサイズ（お好みで調整してください） */
    height: 40px;
    margin-right: 6px;      /* 画像と文字（span）の間のすき間 */
}

/* ついでにテキスト側も高さを合わせる */
.tag-data_recipe {
    display: inline-block;
    vertical-align: middle;
}
.pc_img { display: block; }
.sp_img { display: none; }
@media (max-width: 767px) {
	.pc_img { display: none; }
	.sp_img { display: block; }
}

.g_map{
	margin-top:1em;

}

#reset_button{
	padding:3px 10px;
	background:#fff;
	width: 250px;
	min-height: 60px;
	color:#444;
	border:1px solid #444;
	border-radius: 10px;
	text-decoration: none;
	margin-bottom:10px!important;
	font-size:0.9em;
	margin:5px;
}
#reset_button:hover{
	background:#e0e0e0;
}

/* エリアボタン */
.tag-data_aria a {
	display: inline-block;
	padding: 4px 12px;
	font-size: 13px;
	font-weight: bold;
	border-radius: 4px; /* 四角を残した少し丸みのある形 */
	margin-right: 6px;
	margin-bottom: 6px;
	text-align: center;
	background-color: var(--primary-green);
	color: #fff!important;
	border: 1px solid  var(--primary-green);
	white-space: nowrap;
	text-decoration: none;
}
.tag-data_aria a:hover {
	background-color:#fff;
	color:  var(--primary-green)!important;
}

/* 店舗・施設の形態ボタン */
.tag-shop_type a {
	display: inline-block;
	padding: 4px 12px;
	font-size: 13px;
	font-weight: bold;
	border-radius: 4px; /* 四角を残した少し丸みのある形 */
	margin-right: 6px;
	margin-bottom: 6px;
	text-align: center;
	background-color:var(--bg-kon);
	color: #fff!important;
	border: 1px solid var(--bg-kon);
	white-space: nowrap;
	text-decoration: none;
}
.tag-shop_type a:hover {
	background-color:#fff;
	color: var(--bg-kon)!important;
}

/* 取り扱いジビエの種類ボタン */
.tag-shop_meat a {
	display: inline-block;
	padding: 4px 12px;
	font-size: 13px;
	font-weight: bold;
	border-radius: 4px; /* 四角を残した少し丸みのある形 */
	margin-right: 6px;
	margin-bottom: 6px;
	text-align: center;
	background-color: var(--bg-enji);
	color: var(--primary-white)!important;
	border: 1px solid var(--bg-enji);
	white-space: nowrap;
	text-decoration: none;
}
.tag-shop_meat a:hover {
	background-color: var(--primary-white);
	color: var(--bg-enji)!important;
}
.shop_seach {}
.shop_seach {
	width: 100%;
}

.shop_seach td{
	padding: 2em;
}
.r-20 {
	margin-bottom: 10px;
}
.shop_seach label {
	margin-right: 5px;
}
.shop_seach label input {
	display: none;
}
.shop_seach label span {
	background: #fff;
	border: 1px solid #333;
	border-radius: 10px;
	padding: 5px 10px;
	display: block;
	text-align: center;
	font-size:0.8em;
}
.shop_seach label input:checked+span {
	color: #FFF;
	background: var(--primary-green);
	border: 1px solid var(--primary-green);
}
.r-20 {
    display: inline-block;
/*    min-width: 140px;*/
    min-width: 100px;
    margin-left: 5px;
}

/* --------------------------
 * レシピ詳細
 * --------------------------- */


.kiji_recipe{}
.kiji_recipe h2,
.kiji_recipe h3{
	color:#992D2E;
}
.kiji_recipe h3{
	border-bottom:3px solid #992D2E;
}
.recipe_img{
	margin:auto;
	text-align:center;
}
.recipe_img img{
	max-width:600px;
	width:100%;
	border-radius:10px;
}
.recipe_main {
  margin-bottom: 10px;
}
.recipe_side {
	font-size:70%;
}
.recipe_main,
.recipe_side {
	width:100%;
}

/* Responsive */
@media (min-width: 600px) {
  .flexbox {
    display: -webkit-flex;
    display: flex;
  }
  .recipe_main {
    margin: 0 10px 0 0;
  }
.recipe_side {
	width:40%;
	margin-top:2em;
}
.recipe_main {
	width:60%;
}
}

.recipe_rial{
	background:#FEEBBF;
	margin-bottom:1em;
}
.recipe_ma{
	background:#F9E6DB;

}
.recipe_rial,
.recipe_ma{
	border-radius:10px;
	padding:5px 10px;
}
/* ---------------------------
 * ページネーション
 * --------------------------- */
/* ページネーション全体のコンテナ */
.pagination {
    margin: 40px 0;
    text-align: center; /* 中央に配置 */
}

/* リストのスタイルをリセット */
.page-numbers {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px; /* 数字同士の間隔 */
    font-family: sans-serif;
}

/* 各要素（リンクと現在の数字共通） */
.page-numbers li a,
.page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
/*    padding: 0 5px;*/
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* マウスホバー時のスタイル */
.page-numbers li a:hover {
    background-color: #f0f0f0;
    border-color: #bbb;
    color: #000;
}

/* 現在のページのスタイル（強調） */
.page-numbers li span.current {
    background-color: var(--primary-green); /* メインカラー（自由に変更してください） */
    color: #fff;
    border-color: var(--primary-green);
    font-weight: bold;
}

/* 「…」ドット部分のスタイル */
.page-numbers li span.dots {
    border: none;
    background: transparent;
    cursor: default;
}

/* 次へ・前へボタンの微調整（» など） */
.page-numbers li a.next,
.page-numbers li a.prev {
    font-size: 18px;
    font-weight: bold;
}

/* スマホ対応：少し小さくする */
@media (max-width: 480px) {
    .page-numbers {
        gap: 4px;
    }
    .page-numbers li a,
    .page-numbers li span {
        min-width: 35px;
        height: 35px;
        font-size: 13px;
    }
}


.btn_bak a{
	display:inline-block;
	width:100px;
	padding:3px 10px;
	background:#fff;
	color:#000;
	border:1px solid #000;
	border-radius:24px;
	text-decoration: none;
	margin-bottom:10px!important;
	text-align:center;
}
.btn_bak a:hover{
	background-color: var(--primary-green);
	color:#fff;
}


/* バッジ全体の共通設定 */
.badge-gibier {
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px; /* 四角を残した少し丸みのある形 */
    margin-right: 6px;
    margin-bottom: 6px;
    text-align: center;
}



/* 認証店：濃い緑に白文字 */
.badge-gibier.is-cert {
    background-color: #feec96;
    color: #444;
    border: 1px solid #c3b2a3;
/*
    background-color: #3b7a57;
    color: #ffffff;
*/

}

/* 解体・処理：薄い緑に濃い緑文字 */
.badge-gibier.is-demo {
    background-color: #feec96;
    color: #444;
    border: 1px solid #c3b2a3;
/*
    background-color: #e2f0d9;
    color: #3b7a57;
    border: 1px solid #c5e1b5;
*/

}

/* 精肉・加工品：ベージュに焦げ茶文字 */
.badge-gibier.is-prod {
    background-color: #feec96;
    color: #444;
    border: 1px solid #c3b2a3;
/*
    background-color: #f7f1e5;
    color: #654321;
    border: 1px solid #e1d4be;
*/

}


/* カテゴリ */
.cate-gibier a {
	display: inline-block;
	padding: 4px 12px;
	font-size: 13px;
	font-weight: bold;
	border-radius: 4px; /* 四角を残した少し丸みのある形 */
	margin-right: 6px;
	margin-bottom: 6px;
	text-align: center;
    background-color: var(--bg-enji);
	color: var(--primary-white);
    border: 1px solid #e1d4be;
	white-space: nowrap;
	text-decoration: none;
}
.cate-gibier a:hover {
	background-color: var(--primary-white);
	color: var(--bg-enji);
}


/* ---------------------------
 * 店舗情報一覧テーブル用
 * --------------------------- */
.itiran_torikumi a {
	margin-right: 16px;
}
table.sortableTable {
	border-collapse: collapse;
	padding: 0;
	font-size:70%;
	width:100%;
}
table.sortableTable a {
	color: #000;
	text-decoration: none;
}
table.sortableTable a:hover {
	color: #2AB0C9;
}
table.sortableTable>thead>tr>th {
	cursor: pointer;
	border-top: 2px solid #eed;
	border-bottom: 3px solid #99715b;
	border-right: 1px solid #aa9;
	border-left: 1px solid #fff;
	background: var(--primary-green);
	color: #fff;
	margin: 0;
	padding: 0.5em 2em;
	position: relative;
	text-align: center;
	font-weight: bold;
	vertical-align: middle;
	font-size: 1.2em;
	min-width:5em;
}
table.sortableTable>thead>tr>th::after {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	content: "";
}
table.sortableTable>thead>tr>th.up::after {
	position: absolute;
	right: 0.5em;
	top: 0.5em;
	bottom: 0;
	content: "▼";
}
table.sortableTable>thead>tr>th.down::after {
	position: absolute;
	right: 0.5em;
	top: 0.5em;
	bottom: 0;
	content: "▲";
}
table.sortableTable>thead>tr>th:hover {
	border-top: 2px solid #d2ab2d;
	background: #4c8166;
}
table.sortableTable>tbody {
	background: #fff;
}
table.sortableTable>tbody>tr>td {
	margin: 0px;
	padding: 10px;
	border: 1px solid #eee;
	vertical-align: middle;
}
table.sortableTable>tbody>tr:nth-child(2n+1) {
	background: rgba(255, 238, 169, 0.3);
}
.light-table-filter {
	display: block;
	width: 250px !important;
	margin-bottom: 0.5em;
	margin-left: auto;
	margin-right: 0;
}
.td_cm {
	white-space: nowrap;
	text-align: center;
	line-height: 2.5;
}

/* ソート用列非表示 
.order-table td:first-child,
.order-table th:first-child {
	display: none;
}

*/

.point{}

/* 案内文ボックス全体の装飾 */
.point {
    background-color: var(--bg-white);
    border: 1px solid #d4af37; /* 全体を薄い枠線で囲む */
    border-top: 4px solid #d4af37; /* 上側に太めの鮮やかなオレンジ線 */
    padding: 22px 24px;
    margin: 25px 0;
    border-radius: 6px;
}

/* リストの調整 */
.point ul {
    margin: 0;
    padding-left: 0;
    list-style: none; /* 一旦標準の点を消す */
}

/* 各行の先頭にアイコン風の記号をつける */
.point ul li {
    font-size: 0.8em;
    line-height: 1.7;
    color: #333;
    /* margin-bottom: 12px; */
    position: relative;
    padding-left: 30px;/* 記号の分だけ左を空ける */
}

.point ul li:last-child {
    margin-bottom: 0;
}

/* 点の代わりに丸をCSSで配置 */
.point ul li::before {
    content: "●";
    color: var(--primary-green);
/*    font-size: 10px;*/
    position: absolute;
    left: 0;
    top: -1px;
}

/* リンクを矢印付きのボタンっぽく見せる */
.point ul li a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
}


.point ul li a:hover {
    text-decoration: underline;
}


.recent-posts-new {
    background: #FF0000;
    color: #fff;
    padding: 1px 10px;
    border-radius: 5px;
    font-size: 0.7em;
    font-weight: 700;
}






/* PC環境での左右割りの設定（画面幅が768px以上の場合） */
@media (min-width: 768px) {
  .container {
    display: flex;
    justify-content: space-between; /* 左右の両端に寄せて配置 */
    align-items: flex-start;        /* 上揃え */
    gap: 15px;                      /* 左右の間の余白（好みに合わせて調整） */
  }

/* bodyに .home クラスが「ついていない」ときだけ適用 */
body:not(.home) .container > * {
  width: 100%;
}


}
/* スマホ環境（画面幅が767px以下）のときは自動で縦並びになります */





input[type="search"]{
    font-size: 1.25rem;       /* 文字の大きさをアップ（好みに合わせて変更） */
    padding: 1rem 1.2rem;   /* 内側の余白（上下 左右） */
    width: 100%;              /* 横幅を親要素いっぱいに広げる場合 */
    max-width: 800px;         /* 広がりすぎないように上限を設定 */
    box-sizing: border-box;   /* paddingを含めたサイズ計算にする */
}

.breadcrumbs{
	display:none;
}
/* ---------------------------
 * single.php 
 * イベント開始日と終了日の表示
 * --------------------------- */
.event-period-box{
	background: #fff;
	border: 1px solid var(--primary-green);
	border-left: 5px solid var(--primary-green);
	padding: 15px 20px;
	margin: 20px 0;
	border-radius: 4px;
}
.event-period-box p{
	margin: 0;
/*	font-size: 14px;*/
	color: #666;
	font-weight: bold;
	margin-bottom: 5px;
}
.event-period-box div{
	font-size: 18px;
	color: #333;
	font-weight: bold;
}


.cat-data a{
	display: inline-block;
	background: #4c8166;
	color: #fff;
	font-size: 0.8rem;
	padding: 3px 10px;
	border-radius: 999px;
	text-decoration: none;
	font-weight:bold;
	margin-bottom:4px;
}

/* 「お知らせ(news)」の時の背景色 */
.cat-data a[href*="/category/news/"] {
    background: #99715b;
    border: 1px solid #99715b;
}
.cat-data a[href*="/category/news/"]:hover {
    background: #fff;
    color: #99715b;
}





/* 「イベント(event)」の時の背景色 */
/* ※実際のイベントカテゴリーのURLスラッグに合わせて変更してください */
.cat-data a[href*="/category/event/"] {
    background: #4c8166;
    border: 1px solid #4c8166;
}

.cat-data a[href*="/category/event/"]:hover {
    background: #fff;
    color: #4c8166;
}






/* 親要素をFlexboxにして、日付とタグをきれいに横並び＆中央揃えにする */
.kiji-info {
    display: flex;
justify-content: flex-end; /* 要素をすべて右寄せにする */
    align-items: center; /* 上下の中央を揃える */
    gap: 12px;           /* 日付とタグの間の隙間 */
}

/* 日付（time）のデザイン */
.kiji-date time {
    font-family: "Helvetica Neue", Arial, sans-serif; /* 数字がきれいに見えるフォント */
    /*font-size: 0.85rem;      /* 文字サイズを少し小さくして上品に */
    color: #666666;          /* 真っ黒ではなく、少しマイルドなグレーに */
    font-weight: 500;        /* ほんの少しだけ太くして視認性を確保 */
    letter-spacing: 0.05em;  /* 文字の間隔をわずかに広げてスッキリ見せる */
}



.event-meta{}
.event-meta{
	margin-bottom: 15px;
/*
	font-size: 14px;
	color: #555;
*/
}


  @media (max-width: 768px) {

.menu-button {
    background: var(--bg-enji);
    color: #fff !important;
    text-decoration: none;
    border-radius: 0;
    font-weight: bold;
    transition: opacity 0.3s ease;
padding-top: 18px !important;
}

.menu-button-shop {
    background: var(--bg-kon);
    color: #fff !important;
    text-decoration: none;
    border-radius: 0;
    font-weight: bold;
    transition: opacity 0.3s ease;
padding-top: 18px !important;
}
}




/* 通常時のナビゲーションメニュー（例：文字が黒、背景が白） */
#nav-menu ul li a {
	color: #333333;
	background-color: #ffffff;
	transition: all 0.3s ease;
}

/* 現在開いているページのメニュー項目を反転（例：文字が白、背景が黒） */
#nav-menu li.current-menu-item a,
#nav-menu ul li.current_page_item a {
	color: #ffffff !important;
	background: var(--primary-green) !important;
}


/* ★「ジビエを食べる」ボタンがアクティブな時の反転設定 */
.menu-button.is-active {
	color: #ffffff !important;
	background: var(--primary-green) !important;
}

/* ★「フェア参加申し込み」ボタンがアクティブな時の反転設定 */
.menu-button-shop.is-active {
	color: #ffffff !important;
	background: var(--primary-green) !important;
}


/* 現在開いているページ、またはその親・関連階層のメニュー項目をすべて反転（決定版） */
#nav-menu li.current-menu-item a,
#nav-menu li.current_page_item a,
#nav-menu li.current-menu-ancestor a,
#nav-menu li.current-page-ancestor a,
#nav-menu li.current-category-ancestor a {
	color: #ffffff !important;
	background: var(--primary-green) !important;
}


.tablescroll{}

.tablescroll{}


.tablescroll {
  overflow-x: auto;
}
.tablescroll .table {
	min-width:800px;
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

.p_mame{
	display:none;
}


/* ---------------------------
 * スライドショー
 * --------------------------- */
.shop-slider {
    width: 100%;
    max-width: 800px; /* サイトに合わせて調整 */
    height: auto;
    margin: 20px auto;
}

.shop-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.shop-slider .swiper-button-prev,
.shop-slider .swiper-button-next {
    color: #fff; /* 矢印の色 */
    border: 1px solid #fff; /* 白い枠線 */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-shadow: 0 0 5px rgba(0,0,0,0.3); /* 写真に埋もれないよう影を */
}

.shop-slider .swiper-button-prev:after,
.shop-slider .swiper-button-next:after {
    font-size: 20px;
}

.shop-slider .swiper-button-prev:hover,
.shop-slider .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.2);
}
/* スマホ時（767px以下）は矢印を非表示 */
@media screen and (max-width: 767px) {
    .shop-slider .swiper-button-prev,
    .shop-slider .swiper-button-next {
        display: none !important;
    }
}

/* Google Mapを囲う要素 */
.map {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 75%; /* 比率を4:3に固定 */
}

/* Google Mapのiframe */
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* NEWバッジのスタイル例 */
.new_icon {
	display: inline-block;
	background-color: #e53935; /* 赤色 */
	color: #ffffff;            /* 白文字 */
	font-size: 10px;           /* 小さめの文字 */
	font-weight: bold;
	padding: 2px 6px;          /* 内側の余白 */
	margin-left: 8px;          /* タイトルとの間隔 */
	border-radius: 3px;        /* 角を少し丸める */
	vertical-align: middle;
}

/* ボタンの基本デザイン（画面右下に固定） */
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--bg-kon);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  transition: opacity 0.3s, transform 0.3s; /* ふわっと動かす設定 */
  z-index: 9999;
}

/* 非表示の状態（透明で、少し下に下げておく） */
#page-top.hide {
  opacity: 0;
  pointer-events: none; /* 非表示の時はクリックできないようにする */
  transform: translateY(20px);
}

/* スムーズスクロールの設定 */
html {
  scroll-behavior: smooth;
}


