@charset "utf-8";
/*------------------------------------------------------------------------
基本
--------------------------------------------------------------------------*/
*{
	margin: 0;
	padding: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}

html, body{
	min-height: 100dvh;
}
html{
	font-size: 62.5%;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body{
	overflow-x: hidden;
	position: relative;

	min-height: 100dvh;
	color: #1a1a1a;
	font-size: 1.4rem;
	font-family: "Noto Sans JP", sans-serif;
	font-style:normal;
	font-weight: 400;
	font-feature-settings: "pwid";
	letter-spacing: 0.05em;
	background: #fff;

	-ms-word-wrap: break-word;
	word-wrap: break-word;
	line-break: strict;/* 禁則処理 */
	-webkit-text-size-adjust: 100%;
}
body.fixed{ /* メニューオープン時背景固定 */
	position: fixed;
	width: 100%;
}

p{
	line-height:2;
	overflow-wrap: break-word;
}

a{		/* テキストリンク */
	color: currentColor;
	text-decoration:none;
	background-color: transparent;
	transition: .3s;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
a:active,
a:hover{
	text-decoration:none;
	outline-width: 0;
}

input, button, textarea, select {
  font: inherit;
}

table, tr, th, td {
	vertical-align: top;
	text-align: left;
	line-height: 2;
	font-weight: normal;
	border-collapse: collapse;
	border-spacing: 0;
	overflow-wrap: break-word;
}

li{
	list-style: none;
	line-height:1.8;
}

h1,h2,h3,h4,h5,h6,small,time{
	line-height:1.6;
	overflow-wrap: break-word;
}
em,strong{
	font-weight: normal;
	font-style: normal;
}
i,address{
	font-style: normal;
}
small{
	font-size: .8em;
}
img, picture, video, canvas, svg {
	max-width: 100%;
	height: auto;
	vertical-align:top;
}



/* 読み上げ用テキスト */
.txtHidden{
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}

/*------------------------------------------------------------------------
グローバルメニュー
--------------------------------------------------------------------------*/
.site_logo{
	z-index: 99;
	position: fixed;
	top: 40px;
	left: 40px;

	width: 130px;
	height: 74px;
}
@media screen and (max-width: 580px) {
	.site_logo{
		top: 20px;
		left: 5%;

		width: 40%;
		max-width: 240px;
	}
}
/*-- ハンバーガー -------------------------------------------------- */
.hamburger {
	z-index: 101;
	position: fixed;
	top: 0;
	right: 0;

	width: 80px;
	height: 80px;
	border: none;
	background: transparent;

	outline: none;
	appearance: none;
	transition: all .3s ease-in-out;
}


@media screen and (max-width: 1124px) {
	.hamburger {
		width: 70px;
		height: 70px;
		margin: auto;
	}
}
@media screen and (max-width: 580px) {
	.hamburger {
		width: 60px;
		height: 60px;
		background: #a2c4a0;
	}
}
	.hamburger__line {
		position: absolute;
		top: -2px;
		right: 0;
		bottom: 0;
		left: 0;

		margin: auto;
		width: 30px;
		height: 1px;
		background-color: #1a1a1a;

		transition: inherit;
	}
	.hamburger__line::before,
	.hamburger__line::after {
		position: absolute;
		display: block;
		content: '';

		width: 100%;
		height: 100%;
		background: inherit;

		transition: inherit;
	}
	.hamburger__line::before {
		top: -9px;
	}
	.hamburger__line::after {
		top: 9px;
	}

	.hamburger[aria-expanded="true"] .hamburger__line {
		background: transparent;
	}
	.hamburger[aria-expanded="true"] .hamburger__line::before,
	.hamburger[aria-expanded="true"] .hamburger__line::after {
		top: 0;
		background: #1a1a1a;
	}
	.hamburger[aria-expanded="true"] .hamburger__line::before {
		transform: rotate(45deg);
	}
	.hamburger[aria-expanded="true"] .hamburger__line::after {
		transform: rotate(-45deg);
	}

		.navToggle_menu__txtHidden{
			position: absolute;
			white-space: nowrap;
			width: 1px;
			height: 1px;
			overflow: hidden;
			border: 0;
			padding: 0;
			clip: rect(0 0 0 0);
			clip-path: inset(50%);
		}
@media screen and (max-width: 1124px) {
	.hamburger__line {
	}
}
@media screen and (max-width: 580px) {
	.hamburger__line {
		width: 24px;
	}
		.hamburger__line::before {
			top: -7px;
		}
		.hamburger__line::after {
			top: 7px;
		}
}
/*-- 固定アイコン -------------------------------------------------- */
.global_ico{
	z-index: 102;
	position: fixed;
	top: 90px;
	right: 0;

	width: 80px;
}
.global_ico li{
	width: 46px;
	margin: 0 auto;
}
.global_ico li + li{
	margin-top: 16px;
}
@media (hover: hover) and (pointer: fine){
	.global_ico li a:hover{
		opacity: .6;
	}
}
@media screen and (max-width: 1124px) {
	.global_ico{
		width: 70px;
	}
}
@media screen and (max-width: 580px) {
	.global_ico{
		top: 70px;
		right: 0;

		width: 50px;
	}

	.global_ico li{
		width: 44px;
	}
	.global_ico li + li{
		margin-top: 4px;
	}

}

/*-- 開店時間 -------------------------------------------------- */
.global_time{
	z-index: 103;
	position: fixed;
	bottom: 40px;
	right: 0;

	height: calc( 100dvh - 260px );
	font-size: 1.5rem;
	font-weight: 300;
	text-align: center;
	line-height: 80px;
	writing-mode: vertical-rl;

	overflow: hidden;
	white-space: nowrap;
}

@media screen and (max-width: 1124px) {
	.global_time{
		line-height: 70px;
	}
}
@media screen and (max-width: 580px) {
	.global_time{
		display: none;
		/*height: calc( 100dvh - 220px );
		font-size: 1.4rem;
		line-height: 50px;*/
	}
}

/*-- メニュー -------------------------------------------------- */
.navToggle_wrap{
	position: relative;
}
.gnav_wrap{
	opacity: 0;
	pointer-events: none;
	visibility: hidden;

	z-index: 100;
	position: fixed;
	top: 0;
	left: 0;

	width:  100%;
	height: 100vh;
	height: 100dvh;
	background:rgba( 255, 251, 237, 1);

	transition: opacity .5s;
}
.is-gnavActive .gnav_wrap{ /* アクティブ */
	opacity: 1;
	pointer-events: initial;
	visibility: visible;

	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
/* ロゴ */
.gnav__logo{
	position: absolute;
	top: 60px;
	left: 5%;

	width: 30%;
}
@media (hover: hover) and (pointer: fine){
	.gnav__logo a{
		transition: opacity .3s;
	}
	.gnav__logo a:hover{
		opacity: .7;
	}
}
/* 店舗情報 */
.gnav__info{
	position: absolute;
	bottom: 60px;
	left: 5%;

	width: 30%;
}
.gnav__info p{
	font-size: 1.5rem;
	line-height: 1.4;
	color: #2E5802;
}
.gnav__info_name{
	font-weight: 700;
}
.gnav__info_add{
	margin-top: 4px;
}

p.gnav__info_tel{
	margin-top: 14px;
	font-size: 2.8rem;
	font-weight: 700;
}
p.gnav__info_tel a{
	transition: auto;
}
p.gnav__info_open{
	margin-top: 7px;
	line-height: 1.5;
}
/* ナビゲーション */
.gnav__link_wrap{
	width: 50%;
	min-height: 100vh;
	min-height: 100dvh;
	margin: 72px 80px 0 auto;
}
.gnav__link{
}
.gnav__link > li{
	margin-top: 14px;

	border-bottom: 1px solid #1a1a1a;
}

.gnav__link > li > a{
	display: block;

	padding: 0 .5em;
	font-size: 2.0rem;
	line-height: 2;
	transition: background .5s;
}

.gnav_2nd{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

	margin: 2px 0 6px;
}
.gnav_2nd li{
	width: 32%;
}
.gnav_2nd li a{
	display: block;

	padding: 0 10px;
	line-height: 2;

	transition: auto;
}
@media (hover: hover) and (pointer: fine){
	.gnav__link > li a:hover,
	.gnav__link > li a:focus{
		color: #C30D23;
	}
}

@media screen and (max-width: 1124px) {
	/* ナビゲーション */
	.gnav__link_wrap{
		width: 50%;
		min-height: 100vh;
		min-height: 100dvh;
		margin: 72px 70px 0 auto;
	}
}
@media screen and (max-width: 580px) {
	/* ロゴ */
	.gnav__logo{
		position: relative;
		top: auto;
		left: auto;

		margin: 20px 5%;
		width: 40%;
		max-width: 240px;
	}
	/* 店舗情報 */
	.gnav__info{
		position: relative;
		bottom: auto;
		left: auto;

		width: 90%;
		margin: 0 auto 32px;
	}

	/* ナビゲーション */
	.gnav__link_wrap{
		width: 90%;
		min-height: auto;
		margin: 40px auto 60px;
		padding-right: 50px;
	}
	.gnav__link{
	}
	.gnav__link > li{
		margin-top: 14px;

		border-bottom: 1px solid #1a1a1a;
	}

	.gnav__link > li > a{
		font-size: 1.8rem;
		padding-bottom: 4px;
	}

	.gnav_2nd{
		display: block;
	}
	.gnav_2nd li{
		width: 100%;
		margin-top: 8px;
	}
	.gnav_2nd li a{
		display: block;

		padding: 0 10px 0 29px;
		font-size: 1.4rem;
	}
}

/*------------------------------------------------------------------------
パーツ
--------------------------------------------------------------------------*/
/*-- 見出し -------*/
.content_title{
	margin: 40px 0 20px;
	font-size: 2.4rem;
	color: #c30d23;
}
.content_sub_title{
	margin: 32px 0 16px;
	font-size: 2.2rem;
	color: #568c05;
}

/*-- リンク -------*/
.a_mark{
	border-bottom: 1px dotted currentColor;
}
@media (hover: hover) and (pointer: fine){
	.a_mark:hover,
	.a_mark:focus{
		border-bottom: 1px dotted transparent;
	}
}

.nw{
	display: inline-block;

	width: 11px;
	height: 11px;
	margin-left: 3px;
	background: url(../img/common/ico_nw.png) right center no-repeat;
	background-size: cover;
}
/*-- テーブル -------*/
.table_std{
	width: 100%;
}
.table_std th,
.table_std td{
	padding: 1em;
	line-height: 1.6;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	vertical-align: top;
}
.table_std th{
	width: 200px;
}
@media screen and (max-width: 580px) {
	.table_std {
		border-top: 1px solid #ccc;
	}
	.table_std th,
	.table_std td{
		display: block;

		width: 100%;
		padding: 1em;
		border-top: none;
	}
	.table_std th{
		padding-bottom: 0;
		font-weight: 700;
		color: #666;
		border-bottom: none;
	}
	.table_std td{
		padding-top: .5em;
	}
}
/*-- リスト -------*/
.list_disc{
	margin-left: 1.5em;
}
.list_disc li{
	list-style: disc outside;
}
.list_disc li::marker{
	color: #C30D23;
}
.list_disc li + li{
	margin-top: 4px;
}

/*-- ボタン -------*/
.p__btn{
	display: block;
	position: relative;

	width: 18.75vw;
	min-width: 240px;
	line-height: 3.75;
	padding-left: 2em;
	font-family: outfit, sans-serif;
	font-weight: 300;
	border: 1px solid currentColor;
	border-radius: 4em;
	transition: background .3s;
}
.p__btn::before{
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 11%;
	content: "";

	width: 10px;
	height: 10px;
	margin: auto 0;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: right .5s;
}
@media (hover: hover) and (pointer: fine){
	.p__btn:hover,
	.p__btn:focus{
		background: #ee7;
	}
	.p__btn:hover::before{
	    right: 10%;
	}
}
@media screen and (max-width: 580px) {
	.p__btn{
		font-size: .875rem; /* 14px */
	}
}

.content__btn{
	margin: 80px auto 0;
}

/*------------------------------------------------------------------------
ページ共通
--------------------------------------------------------------------------*/
/* ページタイトル */
.page_title{
	position: relative;

	width:-moz-fit-content;
	width:fit-content;
	padding: 190px 1em 45px 5%;
	margin: 0 0 85px;
	color: #666;
	font-size: 4.8rem;
	font-weight: 900;
}
.page_title::after{
	display: block;
	content: "";

	position: absolute;
	bottom: 0;
	right: 0;

	width: 100vw;
	height: 36px;
	background: #ffa995;
	border-radius: 0 1em 1em 0;
}
@media screen and (max-width: 580px) {
	.page_title{
		padding: 140px 1em 36px 5%;
		margin: 0 0 60px;
		font-size: 3.6rem;
	}
	.page_title::after{
		height: 24px;
	}
}

/* ボックスレイアウト */
.content_box{
	width: 1000px;
	max-width: 90%;
	margin: 0 auto;
}

@media screen and (max-width: 1110px) {
	.content_box{
		max-width: 85%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 580px) {
	.content_box{
		max-width: 90%;
	}
}


/*------------------------------------------------------------------------
footer
--------------------------------------------------------------------------*/
.footer{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

	margin-top: 140px;
	padding: 40px 5% 0;
	color: #fff;
	background: #86720E;
}
.footer_add_area{
	width: 35%;
}
.footer_add_area p{
	font-size: 1.4rem;
	line-height: 1.4;
}
	.footer_logo{
		width: 130px;
		margin-bottom: 32px;
	}
	.footer_info_name{
		font-weight: 700;
	}
	.footer_info_add{
		margin-top: 4px;
	}

	p.footer_info_tel{
		margin-top: 14px;
		font-size: 2.8rem;
		font-weight: 700;
	}
	p.footer_info_tel a{
		transition: auto;
	}
	p.footer_info_open{
		margin-top: 7px;
		line-height: 1.5;
	}
.footer_nav_area{
	width: 50%;
}
.footer_nav{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
.footer_nav li{
	width: 32%;
	margin-bottom: 24px;
	border-bottom: 1px solid #fff;
}
.footer_nav li a{
	display: block;
	font-size: 1.4rem;
	line-height: 2;
	color: #fff;
}
.footer_nav li.footer_nav_sns{
	width: 100%;
	text-align: right;
	border-bottom: none;
}
.footer_nav li.footer_nav_sns a{
	display: inline-block;
	margin-left: 16px;
}
@media screen and (max-width: 800px) {
	.footer{
		margin-top: 140px;
		padding: 48px 5% 0;
	}
	.footer_add_area{
		width: 100%;
	}
	.footer_add_area p{
		font-size: 1.4rem;
		line-height: 1.4;
	}
		.footer_logo{
			width: 130px;
			margin-bottom: 32px;
		}
		.footer_info_name{
			font-weight: 700;
		}
		.footer_info_add{
			margin-top: 4px;
		}

		p.footer_info_tel{
			margin-top: 14px;
			font-size: 2.8rem;
			font-weight: 700;
		}
		p.footer_info_tel a{
			transition: auto;
		}
		p.footer_info_open{
			margin-top: 7px;
		}

	.footer_nav_area{
		display: none;
	}
}
	.copy{
		width: 100%;
		margin-top: 40px;
		text-align: center;
		font-size: 1.2rem;
		line-height: 60px;
	}