/*
Theme Name: Wakayama Gibier Theme
Author: Your Name
Description: 和歌山の和牛公式テーマ
Version: 1.0
*/
/* ----------------------------
 * CSSリセット
 * ---------------------------- 
html, body, div, span, h1, h2, h3, p, img, ul, ol, li, table, tbody, tr, th, td, footer, header, nav.gnav {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	font-weight: normal;
}

明朝を使う時は「'Noto Serif JP', sans-serif」

/* @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;
}
body {
	line-height: 1;
	margin: 0;
	font-size: 1.2em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	background: #f7f2e8;
/*	background: #f2f2e9;*/
	/*min-width: 400px;*/
}
h1, h2, h3, h4, h5, bold, b, strong {
	/*margin: 0 0.2em;*/
	font-family: 'Noto Serif JP', sans-serif;
}
@media (max-width: 768px) {
h1 {
	font-size: 1.4em;
	margin: 0 0.2em;
	}
}
.header-container {
	width: 100%;
	border: 2px solid #000;
	box-sizing: border-box;
	background-color: #fff;
}
/* ヘッダーCSS（以前のコードをそのまま維持） */
.header-top {
	display: flex;
	background: #000;
	color: #fff;
	font-weight: bold;
	/*	border-bottom: 2px solid #fff;*/
	align-items: center;
	justify-content: space-between;
}
.title-area {
	flex: 1;
	padding: 5px;
	font-size: 1.5em;
	white-space: nowrap;
}
.title-area h1 {
	vertical-align: middle;
}
.title-area img {
/*	max-height: 72px;*/
	max-height: 55px;
	width: auto;
	padding-top: 10px;
}
.pc-links {
	display: flex;
	align-items: center;
	font-family: 'Noto Serif JP', sans-serif;
}
.pc-links div {
	padding: 10px 20px;
	/*border-left: 2px solid #000;*/
	cursor: pointer;
}
/*
.pc-links div:hover {
	background-color: rgba(0, 0, 0, 0.05);
}
*/
.pc-links a {
	text-decoration: none;
	color: #fff;		/* 文字色 */
	font-family: 'Noto Serif JP', sans-serif;
	display: inline-block;	/* これがないとリンク範囲が全幅になる */
	/*  font-size: 36px; 	/* 文字サイズ */
	position: relative;	/* 相対位置指定 */
	text-decoration: none;	/* デフォルトのテキストの下線を消す */
	cursor: pointer;
}
/* 下線のスタイル */
.pc-links a::after {
	background-color: #d4af37;
	/* 下線の色 */
	bottom: -4px;
	/* 要素の下端からの距離 */
	content: "";
	/* 要素に内容を追加 */
	height: 2px;
	/* 下線の高さ */
	left: 0;
	/* 要素の左端からの距離 */
	position: absolute;
	/* 絶対位置指定 */
	transform: scale(0, 1);
	/* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
	transform-origin: left top;
	/* 変形の原点を左上に指定 */
	transition: transform .3s;
	/* 変形をアニメーション化 */
	width: 100%;
	/* 要素の幅 */
}
/* リンクにホバーした際の下線の表示 */
.pc-links a:hover::after {
	/* transform: scale(1, 1);
	 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
.menu-btn {
	display: none;
	width: 50px;
	height: 50px;
	position: relative;
	cursor: pointer;
	border-left: 2px solid #fff;
	flex-shrink: 0;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
	display: block;
	height: 3px;
	width: 25px;
	background: #fff;
	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);
}
/* ナビゲーションメニュー */
.header-bottom {
	display: flex;
	border-bottom: 2px solid #000;
	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;
	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: 'Noto Serif JP', sans-serif;
}
.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;
	font-weight:700;
}
.menu-item:hover {
/*	background: #3d2b1f;*/
	background: #8c2f29;
	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: 420px;
		border-bottom: 2px solid #000;
	}
	.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: #4c8166;   /* グレーっぽい緑 */
	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: #526f8f;	 /* グレーっぽい紺色 */
/*	background: #b8860b;	 黄土色 */
	color: #fff !important;
	text-decoration: none;
	border-radius: 999px;
	font-weight: bold;
	transition: opacity 0.3s ease;
}
/* マウスオン */
.menu-button:hover {
	background-color: #8c2f29;
	/* opacity: 0.7;
	background-color: #99715b;
	background-color: #3d2b1f;
	background-color: #004b25;
	background-color: #8c2f29;*/
}
.menu-button-shop:hover {
/*	 opacity: 0.7; */
	background-color: #8c2f29;
}
/* スマホ時はボタン風を軽くする */
@media screen and (max-width: 768px) {
.menu-button {
	background: #4c8166;
	color: #fff !important;		/* 高さ維持 */
	padding: 10px 18px;		/* 丸ボタンだけ解除 */
	border-radius: 0;
	}
.menu-button:hover {
	color: #fff !important;
	background: #8c2f29;
/*	opacity:0.7; */
	}

.menu-button-shop {
	background: #526f8f;
	color: #fff !important;		/* 高さ維持 */
	padding: 10px 18px;		/* 丸ボタンだけ解除 */
	border-radius: 0;
	}

.menu-button-shop:hover {
	color: #fff !important;
	background: #8c2f29;
/*	opacity:0.7; */
	}
}

/* ---------------------------
 * フッター
 * --------------------------- */
.footer_wrap {
	max-width: 1500px;
	margin: 0 auto;
/*	background: #004b25;
	color: #fafff1;
*/
	border-radius: 20px;
	background-color: #1a1a1a;
	color: #d4af37;
	border-left: 4px solid #d4af37;
	padding: 20px;



}
.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: 10px 5px 10px 5px;
	}
}
.footer_informaiton_body {
	text-align: left;
}
.footer_logo img {
	width: 200px;
}
.footer_ttl {
	font-size: 1.2em;
	font-weight: 700;
	font-family: "新ゴ B", "Noto Sans JP", sans-serif;
	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;
}
.footer_links ul li a:hover {
/*	background: #f0f0f0;*/
}
@media (max-width: 768px) {
.footer_links {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	margin-left:-40px;
	}

.footer_links ul {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	}

}
.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: #fafff1;
*/
	padding: 1em;
	font-size: 0.8em;
	text-align: center;
}
footer a {
	color: #fafff1;
}
/* フッター画像 バナーリンク */
.banner-link img {
	transition: opacity 0.3s ease;
}

.banner-link:hover img {
	opacity: 0.85;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
@media (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}
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;
	margin: 0 auto;
}
.container3 {
	padding: 1em;
	text-align: center;
}
@media (max-width: 768px) {
.container3 {
	text-align: left;
	}
}


.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 10px 20px 10px;
	/*	padding: 20px;*/
	padding: 20px 40px;
	border-radius: 20px;
	/* background: #fff; */
	border:1px solid #d4af37;
	/* 必要に応じて：親要素の中でこのブロック自体を中央寄せする場合 */
	text-align: center;
	background-color: #ffffff;
	background-image: url('common/bg01.svg');
	background-repeat: no-repeat;
	overflow: hidden;
}
.sidebar img {
    width: 100%;
    border-radius: 20px;
    display: block;
}
.sidebar a:hover img {
    opacity: 0.7;
}
/* ボタン */
.search_btn {
    display: block;
    margin-top: 20px;
    padding: 14px 20px;
    border: 2px solid #4c8166;
    background: #4c8166;
    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: #8c2f29;
    border: 2px solid #8c2f29;
    color: #fff;
}
.heading_wrap small {
    display: block;
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.heading_wrap h2 {
    margin: 0;
}
/* スマホ表示の時だけ「縦並び」に戻す */
@media (max-width: 768px) {
.container {
	margin: 10px 0 10px 10px;
	flex-direction: column;		/* 縦積み（縦並び）に変更 */
	}
.content {
	margin: 20px 10px 20px 0;
	}
.sidebar {
	margin: 10px 10px 10px 0;
	}
}
.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: 2px solid #000;
}
.container2 .item img {
	max-width: 100%;
	border-radius: 0 0 8px 8px;
	margin-bottom: -8px;
}
/* 画像リンク */
.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;
	}

}

/* ---------------------------
 * お知らせ・イベント情報
 * --------------------------- */
/* dl自体を2列のグリッドにする */
dl.oshirase {
    display: grid;	/* 左側(dt)を190px、右側(dd)を残りの全幅に固定 */
    grid-template-columns: 190px 1fr; 
    width: 100%;
    max-width: 600px;
    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: #8c2f29;
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 999px;
}
/* イベントタグ */
.oshirase dt.event::before {
  content: "イベント";
  display: inline-block;
  background: #083260;
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 999px;
}

/* =========================
   店舗・施設の方へ
========================= */
.shop-info {
	display: flex;
	align-items: center;
	justify-content: center; 	/* space-between から center に変更 */
	gap: 30px;
	flex-wrap: wrap;
	/* 必要に応じて：親要素の中でこのブロック自体を中央寄せする場合
	text-align: center;  */
}

/* 左側 */
.shop-text {
	flex: 1;
	min-width: 300px;
}

/* 右側ボタン群 */
.shop-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* ボタン */
.btn01 {
	display: inline-block;
	padding: 20px 18px;
	min-width: 220px;
	font-size: 1rem;
	background: #526f8f;    /*グレーっぽい紺色 */
	/* background: #4c8166;    グレーっぽい緑*/
	/* background: #d4af37;         黄土色   */
	/* background: #083260;            紺色  */
	color: #fff !important;
	text-decoration: none;
	border-radius: 999px;
	font-weight: bold;
	text-align: center;
	transition: background-color 0.3s ease;
		font-size: 1.2rem;
}

/* マウスオン */
.btn01:hover {
/*	opacity: 0.7;*/
	background-color: #8c2f29; 
}


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

	.content h2 {
		text-align: center;
	}

}
@media (max-width: 768px) {

	.shop-buttons {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 10px;
		justify-content: center;
	}

	.btn01 {
		/* スマホだけ小さく 
		min-width: auto;
		padding: 20px 20px;*/
		font-size: 1.1em;
	}

}


/* 全体を囲む親要素：横並びにする */
.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;
}
#submit_button {
	width: 150px;
	padding: .3em 2em;
	border: none;
	border-radius: 10px;
	background-color: #2589d0;
	color: #fff;
	font-weight: 600;
	font-size: 1em;
	cursor: pointer;
}
#submit_button:hover {
	background-color: #1579c0;
}
/* ===============================================
 * swiper追加CSS
 * =============================================== */
/* --- Swiper 用のスタイル調整 --- */
/* 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%くらいの幅で見せる場合 */
    aspect-ratio: 16 / 9; /* ここで比率を固定（横：縦） */
    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時はスライドの幅を調整 */
    }
}

/* 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;
}
/* -------------------------------------------------------------------- */
/* スライド矢印のカスタマイズ */
/* -------------------------------------------------------------------- */
/* 矢印画像の高さと幅 */
.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;
}
/* ---------------------------
 * スマホ用
 * --------------------------- */
.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;
}
.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;
	}

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

}
/* Youtube 使っていない */
.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;			/* コンテンツの後ろに配置 *//* 背景色（白）と背景画像（svg）を重ねる */
	background-color: #ffffff;
	background-image: url('common/bg01.svg');
	background-repeat: no-repeat;

/*
	background-image: url('common/bg01.svg');
	background-repeat: no-repeat;
/*	opacity: 0.7; */		/* ここで背景の薄さを調整 */
}
/* ---------------------------
 * 背景色
 * --------------------------- */
.bg_01 {
/* クリーム色 */
/*	background: #fff7d5;*/
/* 薄桜（うすざくら） */
	background: radial-gradient(circle, #ffffff 0%, #fdfaf2 100%);
	padding: 2em 0;
}
.bg_02 {
/* 薄い黄色 / わかやまジビエ取り扱い店舗・施設*/
/*	background: #ffed96;*/
	background: linear-gradient(135deg, #fdfdfd 0%, #f2f2f2 100%);
	padding: 2em 0;
}
.bg_03 {
/* 薄いオレンジ */
/*	background: #e1b58f; */
/* サシ・ベージュ */
	background-color: #fdfaf2;
	padding: 2em 0;
}
.bg_04 {

	background-color: #3d2b1f;
	color: #f5f2ed; /* 先ほどの淡いベージュを文字色に */

/*	background: #fcfaf2;*/
	padding: 2em 0;
}

.bg_04 .item {
/*	color: #3d2b1f;*/
	color: #000;
}
.bg_green {
	background: #004825;
	color: #fff;
}
.mw1200_center {
	max-width: 1200px;
	margin: 2em auto;
	text-align: center;
}
.w100 {
	width: 100%;
}

/* =========================
   動画一覧
========================= */
.container.flex_center {
	display: grid;

	/* PC時：2列 */
	grid-template-columns: repeat(2, 1fr);

	gap: 30px;

	width: 100%;
	max-width: 100%;

	margin: 0 auto;
	padding: 0 20px;

	box-sizing: border-box;
}

/* iframe */
.container.flex_center iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;

	border-radius: 12px;
}

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

	.container.flex_center {
		grid-template-columns: repeat(2, 1fr);

		gap: 15px;

		padding: 0 10px;
	}

}


/* スマホのみで表示
 * ----------------------------------------------- */
.sp{
	display:none;
}
/* パソコンのみで表示
 * ----------------------------------------------- */
.pc{
	display:block;
}
@media screen and (max-width: 767px) {
	.sp{
		display:block;
	}
	.pc{
		display:none;
	}
}
