/* reset */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	line-height: 1.8em;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}
body {
	line-height: 1.5;
}
ol,ul {
	list-style: none;
}
blockquote,q {
	quotes: none;
}
blockquote:before,blockquote:after,q:before,q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
	word-break: break-all;
}
a,a:link,a:visited,a:hover,a:active {
	text-decoration: none;
	color: inherit;
}
/* resetここまで */

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body{
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #393e41;
	font-family: 'Zen Maru Gothic',"游ゴシック",YuGothic,"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-line-pack: start;
	align-content: flex-start;
}
.trans,.trans * {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.f_min{
	font-family: 游明朝, YuMincho, "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.bold{
	font-weight: 900;
}
strong{
	font-weight: 700;
}
.fw500{
	font-weight: 500;
}
.fw600{
	font-weight: 600;
}
.f_small{
	font-size: 0.5em;
}
.color_blue,a.color_blue{
	color: #058bb0;
}
.color_red,a.color_red{
	color: #e94709;
}
.color_renga,a.color_renga{
	color: #bf363d;
}
.center{
	text-align: center;
}
.right{
	text-align: right;
}
.center_item{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.m_auto{
	margin: auto;
}
.dib{
	display: inline-block;
}
.u_line,a.u_line{
	text-decoration: underline;
}
.youtube ,.wp-block-embed__wrapper{
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube iframe,.wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 60%;
	position: relative;
}
.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.obf_cover{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.obf_cover img{
	position: absolute;
	width: auto;
	height: auto;
	top: 50%;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	max-width: 1000%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
	.obf_cover img {
		position: static;
		height: 100%;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
		-webkit-transform: none;
		transform: none;
	}
}

@media only screen and (min-width:1025px) {
	.pc {
		display: block;
	}
	.pc_di {
		display: inline;
	}
	.sp {
		display: none;
	}
	.w500{
		width: 100%;
		max-width: 500px;
		margin: auto;
	}
	.w1000 {
		width: 100%;
		max-width: 1000px;
		margin: auto;
	}
	.w1080 {
		width: 100%;
		max-width: 1080px;
		margin: auto;
	}
	.w1200 {
		width: 100%;
		max-width: 1200px;
		margin: auto;
	}
	.w1280 {
		width: 100%;
		max-width: 1280px;
		margin: auto;
	}
}

@media only screen and (max-width:1024px) {
	body{
		font-size: 14px;
	}
	.pc,.pc_di {
		display: none;
	}
	.sp {
		display: block;
	}
	.w500,.w1000,.w1080 ,.w1200,.w1280{
		max-width: 100%;
	}
}

/* header */
header{
	padding: 15px 40px;
	position: relative;
	z-index: 100;
}

.head_logo a{
	transition: 0.3s ease-in-out;
	display: inline-block;
}
.head_nav_item{
	margin: 0 10px;
	padding: 10px 0;
}
.head_nav_item a{
	position: relative;
	padding-bottom: 5px;
	transition: 0.3s ease-in-out;
}
.head_nav_item a span{
	position: relative;
	z-index: 10;
}
.head_nav_item a::after{
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 1px;
	background: #bf363d;
	bottom: 0;
	left: 0;
	transition: 0.3s ease-in-out;
}
.side_bnr{
	position: fixed;
	right: 0;
	top: 150px;
	width: 40px;
	background: #fff;
	writing-mode: vertical-rl;
	border: solid 3px #bf363d;
	border-right: none;
	border-radius: 10px 0 0 10px;
	padding: 10px 5px;
	z-index: 1;
	transition: .3s ease-in-out;
	font-weight: 700;
}
/*開閉ボタン*/
#nav_toggle{
	position: fixed;
	right: 0px;
	top: 0px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 10000;
	padding: 11px 9px;
	display: block;
	background: #393e41;
	border-radius: 0 0 0 5px;
	transition: .3s ease-in-out;
}
#nav_toggle div {
	position: relative;
}
#nav_toggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #fff;
	color: #fff;
	right: 0;
	text-align: center;
	font-size: 0;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
#nav_toggle span:nth-child(1) {
	top: 0px;
}
#nav_toggle span:nth-child(2) {
	top: 8px;
}
#nav_toggle span:nth-child(3) {
	top: 16px;
    width: 70%;
}

.open#nav_toggle{
	background: #bf363d;
}
.open#nav_toggle span:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.open#nav_toggle span:nth-child(2) {
	width: 0;
	right: 50%;
}
.open#nav_toggle span:nth-child(3) {
	top: 8px;
	width: 100%;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.modal_nav_container{
	width: 100%;
	height: 100%;
	padding: 100px 0;
	position: fixed;
	overflow-y: scroll;
	z-index: 90;
	top: 0;
	right: 0;
	transition: 0.3s ease-in-out;
	transform: translateY(-100%);
	background: rgba(256,256,256,0.95);
}
.open.modal_nav_container{
	transform: translateY(0);
}

@media only screen and (min-width:1025px) {
	.head_logo a:hover{
		opacity: 0.7;
	}
	.head_nav_item a:hover{
		color: #bf363d;
	}
	.head_nav_item a:hover::after{
		width: 100%;
	}
	#nav_toggle:hover{
		background: #bf363d;
	}
	#nav_toggle:hover span:nth-child(3) {
		width: 100%;
	}
	.side_bnr:hover{
		background: #bf363d;
		color: #fff;
	}
}

@media only screen and (max-width:1024px) {
	header{
		padding: 5px 10px;
	}
	.head_inner{
		padding: 0;
	}
	.head_nav{
		display: none;
	}
	.modal_nav_container{
		padding: 40px 0;
	}
	.side_bnr{
		top: 60px;
	}
}

/* footer */
footer{
	padding-top: 50px;
}
.foot_logo_wrap{
	padding: 0 40px;
}
.foot_logo{
	font-size: 1.9em;
    font-weight: bold;
    letter-spacing: 0.2em;
}
.foot_logo a{
	display: inline-block;
	transition: 0.3s ease-in-out;
}
.foot_logo img{
	vertical-align: sub;
	margin-right: 10px;
	display: inline-block;
}
.foot_sns{
	font-size: 2em;
}
.foot_sns_icon{
	margin-left: 10px;
	transition: 0.3s ease-in-out;
}
.foot_nav,.foot_nav02{
	flex-wrap: wrap;
	justify-content: flex-start;
}
.foot_nav{
	margin-top: 60px;
}
.foot_nav02{
	margin-top: 20px;
}
.foot_nav_wrap{
	justify-content: flex-start;
	gap: 10px 25px;
	padding: 10px 0;
	border-bottom: 1px dashed #393e41;
	margin-bottom: 50px;
	flex-wrap: wrap;
	width: 100%;
}
.foot_nav_item a,.foot_nav_ttl a{
	position: relative;
	padding: 0 5px;
	transition: 0.3s ease-in-out;
}
.foot_nav_item a span,.foot_nav_ttl a span{
	position: relative;
	z-index: 10;
}
.foot_nav_item a::after,.foot_nav_ttl a::after{
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 1px;
	background: #bf363d;
	bottom: 0;
	left: 0;
	transition: 0.3s ease-in-out;
}
.foot_nav_ttl{
	width: 100%;
	font-weight: bold;
}
.copyright{
	margin-top: 100px;
	padding: 0 0 20px;
}

@media only screen and (min-width:1025px) {
	.foot_logo a:hover{
		opacity: 0.5;
	}
	a.foot_sns_icon:hover{
		color: #bf363d;
	}
	.foot_nav_item a:hover,.foot_nav_ttl a:hover{
		color: #bf363d;
	}
	.foot_nav_item a:hover::after,.foot_nav_ttl a:hover::after{
		width: 100%;
	}
}

@media only screen and (max-width:1024px) {
	footer{
		padding: 50px 0 0;
	}
	.foot_logo_wrap{
		padding: 0 15px;
		flex-wrap: wrap;
	}
	.foot_logo{
		width: 100%;
		text-align: center;
		font-size: 1.7em;
	}
	.foot_sns{
		margin: 10px 0 0 auto;
	}
	.foot_nav{
		margin-top: 30px;
		padding: 0 15px;
	}
	.foot_nav_wrap{
		margin-bottom: 30px;
	}
	.foot_nav_item a>span{
		border-bottom: 1px solid #000;
	}
	.foot_nav02{
		padding: 0 15px;
	}
}

/* ヤマダイの酢 */
