@charset "UTF-8";
/* CSS Document */

/* Font-Family 読み込み */
@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@300;500&family=Klee+One:wght@400;600&display=swap');
	
.linkarea {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}



.page_cover_block {
	position: relative;
	width: 100%;
	padding: 300px 0px 40px;
}
.page_cover_block img {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
}
.page_eg_title {
	font-family: 'Bitter', serif; /*英数字*/
	font-size: 12px;
	font-weight: 300;
	text-align: center;
	margin-bottom: 8px;
	letter-spacing: 1.4px;
	line-height: 1;
	color: white;
}
.page_jp_title {
	font-family: 'Klee One', cursive; /*日本語文字*/
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	color: white;
}

.page_h2 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	margin: auto auto 14px;
}
.page_h3 {
	padding: 2px 12px;
	border-left: 4px solid #8D883C;
	margin: auto auto 20px;
}

.page_contents {
	max-width: 1050px;
	width: 100%;
	margin: 80px auto;
}
.page_contents_inner {
	width: 92%;
	margin: auto;
}
.page_flex {
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
	width: 90%;
	margin: auto;
}
@media screen and (max-width:900px){
	.page_flex {
		display: block;
	}
}
.flex_text_block {
	width: 560px;
	flex-shrink: 0;
}
@media screen and (max-width:900px){
	.flex_text_block {
		width: 92%;
		margin: auto;
	}
}
.flex_photo_block {
	width: 100%;
}
@media screen and (max-width:900px){
	.flex_photo_block {
		margin: 60px auto;
	}
}
.flex_photo_block img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}
.page_tag {
	list-style: none;
	display: flex;
	column-gap: 12px;
	flex-wrap: wrap;
	padding: 0px;
	margin: 40px auto;
}
.page_tag li {
	font-size: 14px;
	padding: 6px 8px;
	background: #EDEDE7;
	margin-bottom: 6px;
	border-left: 3px solid #8D883C;
}
.menu_title {
	margin: auto;
}
.menu_price {
	text-align: right;
	padding-bottom: 14px;
	border-bottom: 1px dashed #222222;
}
.menu_price span {
	font-size: 22px;
	font-weight: bold;
	margin-right: 10px;
}
.page_ul {
	margin: auto auto 40px;
	list-style: none;
	padding: 0px;
}
.page_ol li {
	margin-bottom:12px;
}
.page_ol li:nth-last-child(1) {
	margin-bottom: 0px;
}
.page_notice {
	font-size: 14px;
	letter-spacing: 1.6px;
	margin: -20px auto 40px;
}
.page_line {
	margin: 80px auto;
	width: 100%;
	border: 1px dashed #EAEAEA;
}

.page_flexpanel {
	list-style: none;
	padding: 0px;
	margin: 40px auto;
}
.page_flexpanel li {
	padding: 40px;
	background: white;
	border-radius: 10px;
	filter: drop-shadow(0px 2px 10px rgba(0,0,0,0.14));
	margin: auto auto 20px auto;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
.page_flexpanel li .contents_block {
	width: 60%;
	flex-shrink: 0;
}
.page_flexpanel li .contents_block .title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 12px;
}
.page_flexpanel li .contents_block .btn {
	position: relative;
	font-size: 14px;
	text-align: center;
	padding: 12px 8px;
	background: #EDEDE7;
}
.page_flexpanel li .contents_block .btn p{
	margin: auto;
}
.page_flexpanel li .image {
	width: 100%;
	height: auto;
}
.page_flexpanel li .image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
@media screen and (max-width:850px){
	.page_flexpanel li {
		display: block;
	}
	.page_flexpanel li .contents_block {
		width: 100%;
		margin-bottom: 20px;
	}
}