
html {
	scroll-behavior: smooth;
}
body{
    background-color: #fff;
	color: #333;
	font-family: "Noto Serif JP", serif;
	-webkit-font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
}
input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}
ul {
	padding: 0;
	margin: 0;
}
ul li {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
a {
	text-decoration: none;
	color: #333;
}
img {
	width: 100%;
}
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

/* ========================================================================
全体ｃｓｓ
======================================================================== */
/* -----------------------要素少ない時の調整 */
.wrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* -----------------------------カラー調整 */
:root {
	--subcolor : #fdf5e6;
	--gray : #c0c0c0;
	--point : #aaa;
	--green : #006633;
	--blue : #005a78;
}

/* --------------------------------汎用性 */
.sp_br {
	display: none;
}
@media screen and (max-width:465px) {
	.sp_br {
		display: block;
	}	
	.br_sp {
		display: none;
	}
}

/* ----------------------------ボーダー */
.border {
	border-bottom: 1px solid #333;
}

/* ----------------------リンクボックス */
.button-link a,
.button-link_W a {
	font-family: 'Noto Serif JP', serif;
	font-size: 14px;
	letter-spacing: 0.1em;
	font-weight: 400;
	display: block;
	position: relative;
	box-sizing: border-box;
	max-width: 300px;
	text-align: center; 
	padding: 16px 64px;
	margin: 24px;
	margin-inline: auto;
	text-decoration: none;
	cursor: pointer;
	z-index: 99;
	transition: all 0.3s;
	color: #333;
}
.button-link a {
	outline: 1px solid #333;
}
.button-link_W a {
	outline: 1px solid var(--point);
}
.button-link a::before,
.button-link_W a::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	width: 100%;
	height: 100%;
	z-index:-999;
	transition: all 0.3s ease;
}
.button-link a::before {
	background: #eee9e6;
}
.button-link_W a::before {
	background: #fff;
}
.button-link a:hover::before,
.button-link_W a:hover::before {
	top: 0;
	left: 0;
	transition: all 0.3s;
}

/* -------------------------------フェードイン */
.fadeIn_block {
    opacity: 0; /* 最初は非表示にしておく */
    transition: all 2s; /* 動きを滑らかに */
}
.fadeIn {
    opacity: 1;
}


/* ---------------------------------TOP PAGE */
/***追従するトップへ戻るボタン***/
#page-top {
    position: fixed;
	z-index: 100;
    right: 10px;
    bottom: 10px;
    font-size: 1rem;
    line-height: 1rem;
    background: #fff;
    color: #737373;
    padding: 20px;
    border: solid 1px;
    border-radius: 50%;
    box-shadow: 0 2px 10px -6px rgba(0,0,0,.5), 0 3px 10px -4px rgba(0,0,0,.2);
}
/* =======================================================================
ヘッダー
======================================================================== */

/* --------------------------------nav */
nav.navigation_area {
	position: fixed;
	width: 100%;
	background-color: #ece9e2c4;
	backdrop-filter: blur(9px);
	z-index: 9999;
}
nav.navigation_area ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
nav.navigation_area ul li {
	padding: 1rem 2rem;
}
nav.navigation_area ul li a,
nav.navigation_area ul li a i {
	color: #707070;
}
nav.navigation_area ul li i {
	font-size: 1em;
	padding: 0.5rem;
}
nav.navigation_area ul li.sns_icon {
	font-size: 2em;
}
@media(max-width: 765px) {
	nav.navigation_area ul {
		justify-content: center;
	}
	nav.navigation_area ul li.sns_icon {
		margin: 0 auto;
	}
}

/* ハンバーガーメニュー */
.mobile_head {
	position: fixed;
}
/***** 真ん中のバーガー線 *****/
.btn {
	display: none;
	/* ボタンの配置位置  */
	position: relative;
	/* ボタンの大きさ  */
	width: 35px;
	height: 35px;
    padding: 3px 2px 3px 7px;
    z-index: 20;	/* 最前面に */
    cursor: pointer;
}
@media(max-width: 765px) {

	.menu {
		position: fixed;
		right: -100%;
		top: 0;    
		flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		-moz-flex-direction: column;
			justify-content: center;
	}		
	.menu .menu-list {
		/* width: 45%; */
		height: 12%;
		/* メニューテキスト位置をリスト内中心に */
		/* margin: 0 auto; */
		/* text-align: center; */
		/* border-bottom: #fff solid 1px; */
	}
	.menu .sns_icon {
		border-top: #fff solid 1px;
	}
	.menu_box .menu:nth-of-type(1) {
		justify-content: flex-start;
			-webkit-justify-content: flex-start;
			-ms-justify-content: flex-start;
			-o-justify-content: flex-start;
			-moz-justify-content: flex-start;
		flex-direction: column;
			-webkit-flex-direction: column;
			-ms-flex-direction: column;
			-o-flex-direction: column;
			-moz-flex-direction: column;
		background-color: #f5f5f5;
		width: 100%;
		height: 100%;
	}
	.btn {
		display: block;
		position: fixed;
		top: 13px;
		right: 20px;
		background: #ffffffb6;
		width: 40px;
		height: 40px;
		padding: 15px 12px 17px 3px;
		z-index: 99999;
	}
	nav.navigation_area ul li a,
	nav.navigation_area ul li a i {
		color: #fff;
	}
	/* -------- ハンバーガーメニュー背景色スライド -------- */
	.menu-list a {
		background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(150,150,150,150) 50%);
		background-position: 0 0;
		background-size: 200% auto;
		align-items: center;
		color: #fff;
		text-shadow: 0 0 0;
			-webkit-text-shadow: 0 0 0;
			-ms-text-shadow: 0 0 0;
			-o-text-shadow: 0 0 0;
			-moz-text-shadow: 0 0 0;
	}
	.menu-list a:hover {
		background-position: -100%, 0;
		color: #fff;
		transform: scale(1, 1);
			-webkit-transform: scale(1, 1);
			-ms-transform: scale(1, 1);
			-o-transform: scale(1, 1);
			-moz-transform: scale(1, 1);
	}
	/* -------- ハンバーガーメニュー背景色スライド -------- */
	span.btn-line {
		display: flex;
		width: 85%;
		height: 2px;
	}
	span.btn-line::before,
	span.btn-line::after {
		width: 100%;
		height: 100%;
	}
	span.btn-line,
	span.btn-line::before,
	span.btn-line::after {
		position: absolute;
		background: #333;	/* バーガー線の色 */
		content: "";
		background: #333;
		transition: .5s;
			-ms-transition: .5s;
			-o-transition: .5s;
			-moz-transition: .5s;
	}	
	.btn-line::before {
		transform: translateY(-8px);	
			-webkit-transform: translateY(-8px);
			-ms-transform: translateY(-8px);
			-o-transform: translateY(-8px);
			-moz-o-transform: translateY(-8px);
			/* 上の線の位置(「position」指定だと崩れやすいため
			「transform: translateY」で指定 )*/    
	}
	.btn-line::after {
		transform: translateY(8px);	/* 下の線の位置 */
			-webkit-transform: translateY(8px);
			-ms-transform: translateY(8px);
			-o-transform: translateY(8px);
			-moz-transform: translateY(8px);
	}
	.menu.open {
		right: 0;	/* 非表示のメニューを表示させている */
		opacity: 1;
		transition: .8s;
		-ms-transition: .8s;
		-o-transition: .8s;
		-moz-transition: .8s;
		background: #339966;	
		height: 100vh;
		z-index: 20;
		padding: 0 4em;
		align-items: flex-start;
	}	
	/***** メニューオープン時 *****/
	.btn-line.open {
		background: transparent;	/* 真ん中の線を透明に */
	}	
	.btn-line.open::before , .btn-line.open::after {
		content: "";
		background: #fff;
		transition: .5s;
	}	
	.btn-line.open::before {
		transform: rotate(45deg);	/* 上の線を傾ける */
			-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
			-o-transform: rotate(45deg);
			-moz-transform: rotate(45deg);
	}	
	.btn-line.open::after {
		transform: rotate(-45deg);	/* 下の線を傾ける */
			-webkit-transform: rotate(-45deg);
			-ms-transform: rotate(-45deg);
			-o-transform: rotate(-45deg);
			-moz-transform: rotate(-45deg);
	}
}

/* =======================================================================
フッター
======================================================================== */
.footer{
    margin-top: auto;
}
.footer_inner {
	background-color: #ece9e2;
	padding: 1em 10px;
}
.fot_toyamaLogo {
	max-width: 150px;
	width: 100%;
	margin: 1.5em auto;
}
.toyama_acceses {
	text-align: center;
	padding: 1em 0;
	line-height: 2em;
	letter-spacing: 5px;
	font-size: clamp(14px, 1vw, 16px);
}



/* =======================================================================
メイン（index.html）
======================================================================== */
/* --------------------------トップイメージビデオ */
main .video_wrapper {
	position: relative;
} 
.video-box {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
}
.video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.movie_sp {
	display: none;
}
@media screen and (max-width:750px) {
	.movie_pc {
		display: none;
	}	
	.movie_sp {
		display: block;
	}
}


/* -------------------コンテンツ重なりエリア */
#container{
	background-color: #fff;
}

/* ----------------------------------hero */
.gibier-hero {
	padding: 5em 10px;
}
.gibier-hero_inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2em;
	flex-direction: column;
}
.gibier-hero_txt {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 1.5em;
}
.gibier-hero_txt h3 {
	display: inline-block;
	text-align: left;
	font-size: clamp(18px, 1.4375vw, 23px);
	border-bottom: 2px solid var(--point);
	padding: 0 .5em .3em;
}
.gibier-hero_txt h3 span {
	font-size: 14px;
	color: var(--point);
}
.gibier-hero_txt p {
	text-align: left;
	padding: 2em;
	line-height: 1.8em;
}
.gibier-hero_txt p span {
	font-size: clamp(18px, 1.4375vw, 23px);

}
@media screen and (min-width:765px) {
	.gibier-hero_inner {
		flex-direction: row;
	}
}

/* カルーセルの外枠 */
.carousel {
	max-width: 500px;
	width: 100%;
	height: auto;
	display: flex;
	overflow: hidden;
	margin: 0 auto;
}
  /* カルーセル内の画像 */
.carousel img {
	margin: 0;
	padding: 0;
	display: block;
}
  /* スクロールアニメーションのキーフレーム */
@keyframes carousel-scroll {
	0% { margin-left: 0; }      
	20% { margin-left: -100%; }
	25% { margin-left: -100%; }
	45% { margin-left: -200%; }
	50% { margin-left: -200%; }
	70% { margin-left: -300%; }
	75% { margin-left: -300%; }
	95% { margin-left: -400%; }
	100% { margin-left: -400%; }
}
  /* カルーセルの子要素にスクロールアニメーションを設定 */
.carousel > :first-child {
	animation-name: carousel-scroll;
	animation-duration: 20s;
	animation-delay: 0s;
	animation-iteration-count: infinite;
}


/* ----------------------------ウィークスバナー */
.shop-bunner {
	background-color: var(--subcolor);
	padding: 5em 10px;
}
.shop-bunner_inner {
	text-align: center;
}
.shop-bunner_img-Wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2em;
}
.shop-bunner_inner h3 {
	display: inline-block;
	text-align: left;
	font-size: clamp(16px, 1.4375vw, 23px);
	border-bottom: 2px solid var(--point);
	padding: 0 .5em .3em;
	margin: 0 0 2em;
}
.shop-bunner_inner h3 span {
	font-size: 14px;
	color: var(--point);
}
.shop-bunner_img {
	max-width: 700px;
	width: 100%;
	margin: 0 auto;
}
.shop-bunner_img a {
	transform: .3s;
}
.shop-bunner_img a:hover {
	transition: .3s;
	opacity: .8;
}

@media screen and (min-width:765px) {
	
}

/* バナーモーダル */
.shop-bunner_img button {
	transform: .3s;
}
.shop-bunner_img button:hover {
	transition: .3s;
	opacity: .8;
}
.modal-open {
	border: none;
	cursor: pointer;
}
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 5px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
}
.modal:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	margin-left: -0.2em;
}
.modal.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 99999;
}
.modal-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 1000px;
	width: 90%;
}
.modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -20px;
	right: -20px;
	width: 40px;
	height: 40px;
	color: #fff;
	background: #000;
	border-radius: 50%;
	cursor: pointer;
}  
.modal-content {
	background: #fff;
	text-align: left;
	line-height: 1.8;
	padding: 20px;
}
.modal-content div {
	margin: 1em 0;
}
/* モーダルテキスト */
.modal_cont-txt {
	text-align: center;
}
.modal_cont-txt h3 {
	padding-bottom: 5px;
	border-bottom: 1px solid var(--point);
}
.modal_application {
	font-size: clamp(18px, 1.25vw, 20px);
}
.modal_application h2 {
	color: red;
}
p.modal_tel {
	line-height: 1em;
	color: #cf3737;
	font-weight: bold;
}
p.modal_tel span {
	font-size: 14px;
	background: none;
	color: #333;
	font-weight: lighter;
}
/* --------- */
.modal_cont-attention {
	border: 1px solid #cf3737;
	padding: 0 5px 1.5em;
}
.modal_cont-attention h4 {
	font-size: clamp(18px, 1.25vw, 20px);
	color: #cf3737;
	margin: .5em 0;
}
.modal_cont-attention h4::before,
.modal_cont-attention h4::after {
	content: '\f04d';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	padding: 0 7px 0;
}
.modal_cont-attention ul {
	line-height: 2em;
	display: inline-block;
	text-align: left;
}
.modal_cont-attention ul li {
	font-size: clamp(14px, 1.125vw, 18px);
}
.modal_cont-attention ul li::before {
	content: "\02714";
}
.modal_cont-attention ul li span {
	color: #cf3737;
}

/* ------- */
.modal_cont-fairInner {
	padding: 1em 0 0;
	font-size: clamp(14px, 1.125vw, 18px);
}
.modal_cont-fairInner p {
	text-align: left;
}
.modal_cont-fairInner table {
	margin: 1em auto;
	text-align: left;
}
.modal_cont-fairInner div.modal_cont-detail {
	display: flex;
	gap: 1em;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

@media screen and (max-width:576px) {
	.modal_cont-fairInner table th,
	.modal_cont-fairInner table td {
		display: block;
	}
}

/* ------- */
.modal_btn a {
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.modal_btn a:hover {
    background: #313131;
    color: #FFF;
}
.modal_btn a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.modal_btn a:hover:after {
    border-color: #FFF;
}


/* -------------------------------------動画ギャラリー */
.movie-gallery {
	padding: 5em 15px;
	text-align: center;
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
}
.movie-gallery_wrap {
	display: flex;
	flex-direction: column;
}

.movie-gallery_inner h3 {
	display: inline-block;
	text-align: left;
	font-size: clamp(18px, 1.4375vw, 23px);
	border-bottom: 2px solid var(--point);
	padding: 0 .5em .3em;
	margin: 1.5em 0 2em;
}
.movie-gallery_inner h3 span {
	font-size: 14px;
	color: var(--point);
}
.movie-gallery_cont {
	display: flex;
	flex-direction: column;
	/* align-items: center; */
	gap: 1em;
	padding: 50px 0;
	border-bottom: 1px solid var(--point);
}
.movie-gallery_cont:last-child {
	border: none;
}
.movie-gallery_mv {
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}
.movie-gallery_mv h2 {
	display: flex;
	align-items: center;
	/* justify-content: center; */
	line-height: 1;
	color: #ffffff;
	font-size: 50px;
	text-shadow: 0px 0px 6px rgba(51, 51, 51, 1);
	font-weight: bold;
	padding: 0 0 10px;
}
.movie-gallery_txt {
	background-color: var(--green);
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	padding: 1.5em 1em;
	text-align: center;
	color: #fff;
	box-shadow: 6px 7px 5px rgb(158, 161, 159);
}
.movie-gallery_txt h4 {
	text-align: left;
	font-size: clamp(18px, 1.375vw, 22px);
	font-weight: normal;
	padding-bottom: 15px;
	border-bottom: 1px solid #fff;
}
.movie-gallery_txt p {
	display: inline-block;
	text-align: left;
	font-size: 16px;
	line-height: 2em;
	font-weight: normal;
	padding: 1em;
}
@media screen and (min-width:765px) {
	.movie-gallery_cont {
		display: flex;
		flex-direction: row;
		gap: 0;
		justify-content: center;
		align-items: center;
		padding: 150px 0;
	}
	.movie-gallery_cont:nth-child(even) {
		flex-direction: row-reverse;
	}
	.movie-gallery_mv {
		flex-basis: 40%;
		margin: 0;
	}
	.movie-gallery_mv h2 {
		padding: 0 0 .5em 1em;
	}
	.movie-gallery_txt {
		flex-basis: 50%;
		position: relative;
		left: -3%;
		z-index: 0;
		margin: 0;
		padding: 1.5em 1em 1.5em 2em;
	}
	.movie-gallery_cont:nth-child(even) .movie-gallery_txt {
		flex-basis: 50%;
		position: relative;
		left: 3%;
		z-index: 0;
		margin: 0;
		padding: 1.5em 2em 1.5em 1.5em;
	}
	.movie-gallery_cont:nth-child(even) .movie-gallery_mv h2 {
		justify-content: flex-end;
		padding: 0 1em .5em 0;
	}
}

/* 複数埋め込み */
.md_iframe_image {
    background: #fff;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transition:1s all;
	box-shadow: 6px 7px 5px rgb(158, 161, 159);
}
.md_iframe_image a {
    /* border: 2px solid #fff; */
    display: block;
    position: relative;
	z-index: 2;
	width: 100%;
}
.md_iframe_image a:hover {
    transform:scale(1.2,1.2);
	transition:1s all;
}
.md_iframe_image a::before {
    background: url(../images/youtube_btn.png) center center / 64px 64px no-repeat;
    content: "";
    display: block;
    width: 64px;
    height: 64px;
    margin: -32px auto 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 3;
}
.md_iframe_image a img {
    width: 100%;
}
@media screen and (min-width:765px) {
	.md_iframe_image {
		width: 90%;
		margin: 0 auto;
	}
}

/* -------------------------------------メディアギャラリー */
.media-gallery {
	padding: 5em 10px;
	text-align: center;
	background-color: var(--subcolor);
}
.media-gallery_inner h3 {
	display: inline-block;
	text-align: left;
	font-size: clamp(18px, 1.4375vw, 23px);
	border-bottom: 2px solid var(--point);
	padding: 0 .5em .3em;
	margin: 1.5em 0 2em;
}
.media-gallery_inner h3 span {
	font-size: 14px;
	color: var(--point);
}

h1.media_cap {
	position: relative;
	color: #333;
	font-size: clamp(18px, 1.375vw, 22px);
	text-align: center;
	line-height: 1.4;
	-webkit-box-reflect: below -10px -webkit-linear-gradient(top,rgba(185, 185, 185, 0),rgba(185, 185, 185, 0) 10%,rgba(185, 185, 185, 0.171));
}


.media_cont {
	margin: 4em auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.5em;
}
.media_contBox {
	background-color: var(--blue);
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	padding: 2em 0;
	color: #fff;
}
.media_line {
	position: relative;
    width: 400px;
    height: 1px;
    background: #fff;
    margin: 30px auto;
}
.media_line:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 174px;
    transform: rotate(45deg);
    background: #fff;
    width: 30px;
    height: 1px;
}
.media_line:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 174px;
    transform: rotate(-45deg);
    background: #fff;
    width: 30px;
    height: 1px;
}
.media_line-inner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #005a78;
    width: 41px;
    height: 1px;
}
@media(max-width: 745px) {
    .media_line {
        width: 320px;
        margin: 20px auto;
    }

    .media_line:before {
        top: 9px;
        left: 138px;
        width: 26px;
    }

    .media_line:after {
        top: 9px;
        right: 138px;
        width: 26px;
    }

    .media_line-inner {
        width: 35px;
    }
}

@media(max-width: 475px) { 
    .media_line {
        width: 260px;
        margin: 20px auto;
    }

    .media_line:before {
        top: 8px;
        left: 111px;
        width: 22px;
    }

    .media_line:after {
        top: 8px;
        right: 111px;
        width: 22px;
    }

    .media_line-inner {
        width: 31px;
    }
}


/* リンクボタン */
.media_btn {
    margin-top: 1.5em;
    display: inline-block;
}
.media_btn a {
    position: relative;
    display: inline-block;
	width: fit-content;
	margin: 0 auto;
    padding: .5em 0.6em;
    background: #fff;
    background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, #967c27 50%);
    background-position: 0 0;
    background-size: auto 200%;
    transition: .3s;
    line-height: 1.3;
	font-size: clamp(15px, 1.125vw, 18px);
}
.media_btn a:hover {
	background-position: 0 100%;
	color: #fff;
}
.media_btn a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #555 transparent;
}
.media_btn a:hover::after {
	border-color: transparent transparent #f2f2f2 transparent;
}

/* =======================================================================
下層ヘッダー　共通css
======================================================================== */
.other_header {
	position: relative;
	background: url(../images/header_top.jpg);
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.other_header p {
	position: absolute;
	top: 33%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: clamp(18px, 1.4375vw, 23px);
	color: #fff;
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
	border-bottom: 1px solid #fff;
	width: 200px;
	text-align: center;
}
.other_header-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 200px;
	width: 100%;
	margin: 0 auto;
}
/* スクロールダウン */
.scroll {
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translate(-50%, -50%);
	writing-mode: vertical-rl;
	z-index: 90;
	color: #fff;
	font-size: 20px;
}
  /* 線のアニメーション部分 */
.scroll::before {
	animation: scroll 2s infinite;
	background-color: #ffffff;
	bottom: -110px;
	content: "";
	height: 100px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	width: 2px;
}
  /* 線のアニメーション */
@keyframes scroll {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	51% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}


/* =======================================================================
メイン（gibier.html）
======================================================================== */
/* --------------------------------------------------hero */

.gibierCont-hero {
	padding: 5em 10px;
	text-align: center;
}

.gibierCont-hero_inner h3 {
	display: inline-block;
	text-align: left;
	font-size: clamp(18px, 1.4375vw, 23px);
	border-bottom: 2px solid var(--point);
	padding: 0 .5em .3em;
	margin: 1.5em 0 2em;
}
.gibierCont-hero_inner h3 span {
	font-size: 14px;
	color: var(--point);
}


.gibierCont-hero_innerTxt p {
	display: inline-block;
	text-align: left;
	line-height: 2em;
	font-size: clamp(16px, 1.25vw, 20px);
	margin: 0 2em 1.5em;
}

.gibierCont-hero_inner figure {
	max-width: 1000px;
	width: 100%;
	margin: 1em auto 0;
}
/* ---------------------------- */
.gibierCont-hero_imageTxt {
	max-width: 750px;
	width: 100%;
	height: 100%;
	margin: 2em auto 0;
	padding: 1em;
	background-image: url(../images/header_img1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
.gibierCont-hero_imageTxt p {
	text-align: center;
	font-size: clamp(14px, 1.125vw, 18px);
	background-color: #ffffffdc;
	padding: 2em 1em;
	line-height: 2em;
}
@media screen and (min-width:765px) {
	.gibierCont-hero_imageTxt {
		padding: 2em 1em;
	}
	.gibierCont-hero_imageTxt p {
		line-height: 3em;
	}
}

p.gibierCont-hero_attention {
	display: inline-block;
	text-align: left;
	font-size: 14px;
}

/* =======================================================================
メイン（fair_shop.html）
======================================================================== */
.fair_shop_hero {
	padding: 0 10px 2.5em;
	background-color: var(--green);
	text-align: center;
}

.fair_shop_hero h3 {
	display: inline-block;
	text-align: left;
	font-size: clamp(18px, 1.4375vw, 23px);
	border-bottom: 2px solid var(--point);
	padding: 0 .5em .3em;
	margin: 1.5em 0 0;
	color: #fff;
}
.fair_shop_hero h3 span {
	font-size: 14px;
	color: var(--point);
}

.fair_shop_hero p {
	font-size: clamp(14px, 1.125vw, 18px);
	margin: 0 0 1em;
	color: #fff;
	line-height: 2em;
	font-weight: normal;
}

@media screen and (max-width:765px) {
	.fair_shop_hero p {
		display: inline-block;
		text-align: left;
	}	
}

/* ---------------------------------ショップ一覧 */
.fair_shop-contWrapper {
	padding: 5em 10px;
}
.fair_shop-contWrapper h2 {
	text-align: center;
	border-bottom: 4px double var(--point);
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding-bottom: .5em;
}

/* nav */
.city_nav {
	max-width: 1000px;
	width: 100%;
	margin: 4em auto;
	text-align: center;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(4, 1fr);
	grid-column-gap: 2em;
	grid-row-gap: 2.5em;
}
.city_nav a{
	display: inline-block;
	text-decoration:none;
	position: relative;
	transition: .3s;
	width: fit-content;
	margin: 0 auto;
	padding: 0 10px 5px;
}
.city_nav a::after{
	position: absolute;
	bottom: .5em;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background-color: var(--point);
	opacity: 0;
	transition: .3s;
}
.city_nav a:hover::after{
	bottom: 0;
	opacity: 1;
}
@media screen and (min-width:765px) {
	.city_nav {
		grid-template-columns: repeat(5, 1fr);
		grid-template-rows: repeat(2, 1fr);
	}	
}

/* 店舗一覧 */
.fair_shop-cont {
	max-width: 1000px;
	width: 100%;
	margin: 5em auto;
	display: flex;
	flex-direction: column;
	gap: 5em;
}
.fair_shop-contInner h2 {
	margin: 6em auto 4em;
}

.shop-cont_item {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
	gap: 1em;
	background-color: #fff;
	box-shadow: 7px 7px 3px rgba(211, 211, 211, 0.767);
	border-radius: 10px;
	padding: 1em;
}
.shop-cont_item:nth-child(odd) {
	flex-direction: column-reverse;
}
.shop-cont_txt {
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1em;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
}
.shop-cont_item p.yoyaku {
	width: 100px;
	background-color: #967c27;
	padding: .5em;
	color: #fff;
	margin-right: auto;
	border-radius: 100vh;
	font-size: 14px;
}
.shop-cont_item h4 {
	max-width: 500px;
	width: 100%;
	font-size: clamp(18px, 1.375vw, 22px);
	font-weight: normal;
	text-align: left;
	padding: 0 0 10px 10px;
	border-bottom: 1px solid #967c27;
	line-height: 1em;
}
.shop-cont_item h4 span {
	font-size: 14px;
}
.shop-cont_item h4 span table {
	border-collapse: separate;
	border-spacing: 10px 5px;
	margin: 10px 0;
}
.shop-cont_item h4 span th {
	text-align-last: justify;
	/* background-color: #667e29; */
	/* background-color: #a7b386; */
	background-color: var(--green);
	border-radius: 5px;
	color: #fff;
	padding: 1px 5px;
	width: 120px;
}

@media screen and (max-width:765px) {
	.shop-cont_item h4 span td {
		margin-bottom: 5px;
	}
	.shop-cont_item h4 span th,
	.shop-cont_item h4 span td {
		display: block;
	}
}

.shop-cont_item ul.shop_information {
	font-size: clamp(16px, 1.125vw, 18px);
	text-align: left;
	padding: 0 1em;
}
.shop-cont_item ul li {
	line-height: 1.5em;
	/* padding-bottom: 1.5em; */
}
.shop-cont_item ul.shop_information li.adress::before {
	content: '\f3c5';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	padding: 0 7px 0 0
}
.shop-cont_item ul.shop_information li.tel::before {
	content: '\f095';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	padding: 0 7px 0 0
}
.shop-cont_txt a {
	background-color: var(--blue);
	color: #fff;
	max-width: 150px;
	width: 100%;
	margin: 0 auto;
	padding: .5em;
	border-radius: 10px;
}
.shop-cont_txt a:hover {
	opacity: .5;
}
.shop-cont_img {
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
}
.shop-cont_img div {
	max-width: 450px;
	width: 100%;
	margin: 0 auto;
	border-radius: 10px;
	overflow: hidden;
}
.shop-cont_img p {
	text-align: center;
	font-size: 14px;
	padding-top: 5px;
}
@media screen and (min-width:765px) {
	.fair_shop-cont {
		gap: 150px;
	}
	.shop-cont_item {
		flex-direction: row;
		align-items: flex-start;
		background-color: none;
		box-shadow: none;
		border-radius: 0;
		padding: 0;
	}
	.shop-cont_item:nth-child(odd) {
		flex-direction: row-reverse;
	}
	.shop-cont_item ul.shop_information {
		padding: 0 1.5em;
	}
}

/* =======================================================================
メイン（video_gallery.html）
======================================================================== */

.video-gallery {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	padding: 5em 10px 2em;
	text-align: center;
}
.video-gallery h3 {
	display: inline-block;
	text-align: left;
	font-size: clamp(18px, 1.4375vw, 23px);
	border-bottom: 2px solid var(--point);
	padding: 0 .5em .3em;
	margin: 1.5em 0 2em;
}
.video-gallery h3 span {
	font-size: 14px;
	color: var(--point);
}

@media screen and (min-width:765px) {
	.video-gallery {
		width: 80%;
	}
}

/* ------------------------------------ */

.youtube {
	width: 100%;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
}
.youtube iframe {
	width: 100%;
	height: 100%;
}

@media screen and (min-width:765px) {
	.youtube {
		width: 50%;
	}
}

/* ------------------------------------ */
.gallery_new h4 {
	font-size: clamp(18px, 1.375vw, 22px);
	padding-bottom: 1em;
}

.video-gallery_cont {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(18, 1fr);
	grid-column-gap: 50px;
	grid-row-gap: 120px;
	margin: 2em 0;
}

@media screen and (min-width:500px) {
	.video-gallery {
		width: 100%;
	}
	.video-gallery_cont {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(9, 1fr);
	}
}
@media screen and (min-width:1000px) {
	.video-gallery_cont {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(6, 1fr);
	}
}


.video_banner div {
	max-width: 500px;
	width: 100%;
	margin: 2em auto 4em;
}
.video_banner div:hover {
	opacity: .5;
}

/* もっとみる */
/* ===========クリックもっとみる==================== */
.txt-hide {
	display: none;
	}	
button.more {
	width: 200px;
	margin: 20px auto;
	display: block;
	background-color: #666;
	color: #fff;
	padding:10px 15px;
	border: none;
	outline: 0;
	transition: .5s;
	-erbkit-transition: .5s;
	border-radius: 10px;
}
button.more::after {
	content: "Archive";
	transition: .2s;
	-erbkit-transition: .2s;
}
button.more.on-click::after{
	content: "閉じる";
}


.Archive_wrapper {
	display: flex;
	flex-direction: column;
	gap: 2em;
}
.Archive_wrapper ul li {
	line-height: 2em;
}
.Archive_wrapper ul li a:hover {
	opacity: .5;
}
.dott_line {
	border-bottom: 3px dotted var(--point);
	width: 50%;
	margin: 0 auto;
}