@charset "UTF-8";

/* 共通 */
body{
	box-sizing: border-box;
	font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	margin: 0 auto;
	overflow-wrap : break-word;
	text-align: center;
	word-wrap : break-word;
	word-break : break-all;
	color: #333333;
}
*{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
a{
	color: #333333;
	list-style: none;
	text-decoration: none;
	display: block;
}
.main {
	margin-top: 0;
}
.inner {
	width: 90%;
	max-width: 960px;
	margin: auto;
}
section h2 {
	display: inline-block;
	padding: 78px 0 10px;
	width: 70%;
	max-width: 326px;
	font-size: 25px;
	font-weight: 500;
	color: #FA8C1E;
	border-bottom: 2px dashed #FF824E;
}
/* ===== 767px以下 ===== */
@media(max-width:767px) {
	section h2 {
		display: inline-block;
		padding: 50px 0 10px;
		width: 75%;
		font-size: 20px;
	}
}
/* マウスオーバー時の透過 */
.mouseover:hover {
	filter:alpha(opacity=50); /* IE 6,7*/
	-ms-filter: "alpha(opacity=50)" !important; /* IE 8,9 */
	-moz-opacity:0.5 !important; /* FF , Netscape */
	-khtml-opacity: 0.5 !important; /* Safari 1.x */
	opacity:0.5 !important;
	transition: 0.7s !important;
}

/* =======header=========== */
.header {
	background-color: #FA8C1E;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
.header .inner {
	width: 100%;
	max-width: 100%;
	margin: auto;
	position: relative;
}
.header .inner > div {
	width: 70%;
	max-width: 850px;
	margin: auto;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 100px;
}
.header .inner > div > .pc_nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	max-width: 330px;
	padding-top: 10px;
}
.header .inner > div > .pc_nav:first-of-type {
	margin-left: -20px;
}
.header .inner > div > .pc_nav:last-of-type {
	max-width: 275px;
	margin-right: 35px;
}
.header .inner > div > .pc_nav a {
	font-size: 17px;
	color: #fff;
}
.header .site_logo a {
	width: 180px;
	height: auto;
	position: fixed;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
}
.header .site_logo a > .pc {
	width: 100%;
	height: auto;
	display: block;
}
.header .site_logo a > .sp {
	width: 100%;
	height: auto;
	display: none;
}
.header .header_contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header .inner > .pc_header_tel {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	color: #EA861E;
	width: 190px;
	padding-top: 10px;
	padding-bottom: 8px;
	border-radius: 9px;
}
.header .inner > .pc_header_tel > .text {
	display: block;
	font-size: 17px;
}
.header .inner > .pc_header_tel > .num {
	font-size: 20px;
	position: relative;
	display: inline-block;
	padding-left: 20px;
}
.header .inner > .pc_header_tel > .num::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	background: no-repeat url('../img/header_tel_icon.png') center center / contain;
	width: 15px;
	height: 20px;
}
.header_line {
	position: fixed;
	z-index: 99;
	top: 93px;
	right: -10px;
}
.header_line > .pc {
	display: block;
}
.header_line > .sp {
	display: none;
}
.header_line > a {
	max-width: 250px;
	height: auto;
}
.header_line > a > img {
	width: 100%;
	height: auto;
}
/* ===== 1300px以下 ===== */
@media(max-width: 1300px) {
	.header .inner > .pc_header_tel {
		right: 5px;
		transform: translate(0%, -50%);
	}
}
/* ===== 1150px以下 ===== */
@media(max-width: 1150px) {
	.header .inner > div {
		height: 60px;
		width: 90%;
		max-width: 1150px;
		margin: auto;
		position: relative;
	}
	.header > .inner > div > .pc_nav {
		display: none !important;
	}
	.header .site_logo a {
		top: -12px;
	}
	.header .site_logo a > .pc {
		display: none;
	}
	.header .site_logo a > .sp {
		display: block;
	}
	.header .inner > .pc_header_tel {
		display: none;
	}
	.header_line {
		top: 59px;
	}
	.header_line > .pc {
		display: none;
	}
	.header_line > .sp {
		display: block;
	}
}
/* spナビゲーション　ハンバーガー */
.header > div > div > .btn {
	display: none;
}
.header .sp_header_menu {
	display: none;
}
.header_fixed {
	display: none;
}

/* ===== 1150px以下 ===== */
@media(max-width: 1150px) {
	.header > div > div > .btn {
		display: block;
	}
	.header .inner > div > .btn {
		width: 30px;
		height: 22px;
		position: relative;
	}
	.header .inner > div > .btn:hover {
		cursor: pointer;
	}
	.header .inner > div > .btn > span {
		position: absolute;
		background-color: #fff;
		height: 2px;
		width: 30px;
		left: 50%;
		transform: translateX(-50%);
	}
	.header .inner > div > .btn > span:first-of-type {
		top: 0px;
	}
	.header .inner > div > .btn > span:nth-of-type(2) {
		top: 11px;
	}
	.header .inner > div > .btn > span:last-of-type {
		top: 22px;
	}
	.header .sp_header_menu {
		width: 100%;
		background-color: #F1A656 !important;
		position: fixed;
		z-index: 999;
		top: 0;
		left: 0;
		color: #fff;
		border: 2px solid #fff;
		padding-bottom: 40px;
	}
	.header .sp_header_menu .sp_header_menu_top {
		height: 60px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding-left: 5%;
		padding-right: 5%;
		border-bottom: 1px solid #fff;
	}
	.header .sp_header_menu .sp_header_menu_top > p {
		font-size: 21px;
		padding-top: 5px;
	}
	.header .sp_header_menu .sp_header_menu_top > a {
		position: relative;
		color: #fff;
		padding-right: 30px;
		padding-top: 5px;
	}
	.header .sp_header_menu .sp_header_menu_top > a::after {
		position: absolute;
		content: "";
		top: 60%;
		right: -5px;
		transform: translateY(-50%);
		background: no-repeat url('../img/sp/sp_header_close.png') center center / contain;
		width: 28px;
		height: 28px;
	}
	.header .sp_header_menu .sp_header_menu_top > a:hover {
		cursor: pointer;
	}
	.header .sp_header_menu ul li {
		line-height: 2em;
		border-bottom: 1px solid #fff;
	}
	.header .sp_header_menu ul li:first-of-type {
		position: relative;
		padding-left: 30px;
	}
	.header .sp_header_menu ul li:first-of-type::before {
		position: absolute;
		content: "";
		left: 5%;
		top: 50%;
		transform: translateY(-50%);
		background: no-repeat url('../img/sp/sp_header_menu.png') center center / contain;
		width: 20px;
		height: 17px;
	}
	.header .sp_header_menu ul li > a {
		color: #fff;
		text-align: left;
		padding-left: 5%;
		position: relative;
	}
	.header .sp_header_menu ul li > a::before {
		position: absolute;
		content: "";
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		background: no-repeat url('../img/sp/sp_header_arrow.png') center center / contain;
		width: 10px;
		height: 17px;
	}
	.header .sp_header_menu .sp_header_sns {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		max-width: 180px;
		margin: 23px auto 35px;	
	}
	.header .sp_header_menu > .sp_header_tel {
		display: inline-block;
		margin: auto;
		background-color: #fff;
		color: #EA861E;
		width: 90%;
		max-width: 400px;
		padding-top: 10px;
		padding-bottom: 8px;
		border-radius: 9px;
	}
	.header .sp_header_menu > .sp_header_tel > .text {
		display: block;
		font-size: 17px;
	}
	.header .sp_header_menu > .sp_header_tel > .num {
		font-size: 20px;
		position: relative;
		display: inline-block;
		padding-left: 20px;
	}
	.header .sp_header_menu > .sp_header_tel > .num::before {
		position: absolute;
		content: "";
		top: 50%;
		left: 0px;
		transform: translateY(-50%);
		background: no-repeat url('../img/header_tel_icon.png') center center / contain;
		width: 15px;
		height: 20px;
	}
}


/* =======top=========== */
.main .top {
	position: relative;
	overflow: hidden;
}
.main .top .top_img {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.main .top .top_img .pc {
	display: block;
	min-width: 800px;
}
.main .top .top_img .sp {
	display: none;
}
.main .top .top_img img {
	width: 100%;
	height: auto;
	max-height: 800px;
	overflow: hidden;
	object-fit: cover;
}
.main .top .top_img_text {
	position: absolute;
	left: 70%;
	top: 45%;
	transform: translateX(-50%);
	width: 476px;
	height: auto;
}
.main .top .top_img_text .pc {
	display: block;
}
.main .top .top_img_text .sp {
	display: none;
}
.main .top .top_img_text > img {
	width: 100%;
	height: auto;
}

/* ===== 900px以下 ===== */
@media(max-width: 900px) {
	.main .top .top_img_text {
		position: absolute;
		right: 20%;
		top: 45%;
		transform: translateX(-50%);
		width: 350px;
		height: auto;
	}
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
	.main .top .top_img_text {
		transform: translateX(-50%);
		width: 300px;
		height: auto;
	}
}
/* ===== 550px以下 ===== */
@media(max-width: 550px) {
	.main .top .top_img .pc {
		display: none;
	}
	.main .top .top_img .sp {
		display: block;
	}
	.main .top .top_img_text .pc {
		display: none;
	}
	.main .top .top_img_text .sp {
		display: block;
	}
	.main .top .top_img_text {
		top: 50%;
		width: 219px;
		height: auto;
	}
}

/* ===== 375px以下 ===== */
@media(max-width: 375px) {
	.main .top .top_img_text {
		top: 50%;
		width: 200px;
	}
}

/* =======news=========== */
.main .news {
	background-color: #F9E2C3;
	padding-bottom: 20px;
}
.main .news .inner {
	max-width: 930px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 35px;
	padding-bottom: 20px;
}
.main .news .inner > h2 {
	padding: 0;
	margin-right: 50px;
	min-width: 80px;
	width: auto;
	border-bottom: none;
	color: #323232;
	font-size: 20px;
}
.main .news .inner .news_contents {
	width: 100%;
	overflow: hidden;
}
.main .news .inner .news_contents > li > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 2em;
	border-bottom: 1px solid #FF804E;
}
.main .news .inner .news_contents > li > a .date {
	padding-right: 50px;
	font-size: 15px;
	color: #666666;
	padding-left: 5px;
	min-width: 150px;
}
.main .news .inner .news_contents > li > a .text {
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.main .news > .top_facebook {
	width: 90%;
	max-width: 930px;
	margin: auto;
	text-align: right;
}
.main .news > .top_facebook > a {
	color: #E1801E;
	padding-right: 30px;
	display: inline-block;
	position: relative;
}
.main .news > .top_facebook > a::after {
	position: absolute;
	content: "";
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: no-repeat url('../img/btn_arrow.png') center center / contain;
	width: 18px;
	height: 15px;
}
/* ===== 767px以下 ===== */
@media(max-width: 767px) {
	.main .news .inner {
		display: block;
		padding-top: 20px;
	}
	.main .news .inner > h2 {
		font-size: 18px;
		padding-bottom: 10px;
		margin: auto;
	}
	.main .news .inner .news_contents > li > a .date {
		font-size: 13px;
		padding-right: 20px;
		min-width: 110px;
	}
	.main .news .inner .news_contents > li > a .text {
		font-size: 14px;
	}
	.main .news > .top_facebook > a {
		font-size: 14px;
	}
}


/* =======about=========== */
.main .about {
	padding-bottom: 75px;
}
.main .about .about_catch {
	margin-top: 35px;
	font-size: 25px;
	text-align: left;
}
.main .about .about_catch > .sp {
	display: none;
}
.main .about .about_text {
	margin-top: 40px;
	text-align: left;
	font-size: 18px;
}
.main .about .about_text > p {
	line-height: 2em;
}
.main .about .about_text > p > .sp {
	display: none;
}
.main .about .about_item_wrap {
	margin-top: 65px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.main .about .about_item_wrap .about_item {
	width: calc(50% - 30px / 2);
	margin-right: 30px;
}
.main .about .about_item_wrap .about_item:last-of-type {
	margin-right: 0;
}
.main .about .about_item_wrap .about_item .about_item_img img {
	width: 100%;
	height: auto;
}
.main .about .about_item_wrap .about_item .item_title {
	position: relative;
	display: inline-block;
	font-size: 22px;
	padding: 20px 0 20px 30px;
	margin: auto;
}
.main .about .about_item_wrap .about_item .item_title::after {
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: no-repeat url('../img/black_deco.png') center center / contain;
	width: 21px;
	height: 21px;
}
.main .about .about_item_wrap .about_item .item_text {
	font-size: 16px;
	text-align: left;
	line-height: 1.8em;
}
.main .about .about_item_wrap .about_item > a {
	display: inline-block;
	position: relative;
	color: #E1801E;
	margin-top: 30px;
	font-size: 18px;
}
.main .about .about_item_wrap .about_item > a::after {
	position: absolute;
	content: "";
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
	background: no-repeat url('../img/btn_arrow.png') center center / contain;
	width: 18px;
	height: 15px;
}

/* ===== 767px以下 ===== */
@media(max-width:767px) {
	s.main .about {
		padding-bottom: 60px;
	}
	.main .about .about_catch {
		margin-top: 15px;
		font-size: 17px;
		text-align: center;
	}
	.main .about .about_catch > .sp {
		display: block;
	}
	.main .about .about_text {
		margin-top: 30px;
		font-size: 14px;
		letter-spacing: -.05em;
		text-align: center;
	}
	.main .about .about_text > p > .sp {
		display: block;
	}
	.main .about .about_item_wrap {
		margin-top: 30px;
		display: block;
	}
	.main .about .about_item_wrap .about_item {
		margin: auto !important;
		width: 90%;
	}
	.main .about .about_item_wrap .about_item:nth-of-type(2) {
		margin-top: 25px !important;
	}
	.main .about .about_item_wrap .about_item .item_title {
		font-size: 20px;
		padding: 20px 0 15px 25px;
	}
	.main .about .about_item_wrap .about_item .item_text {
		font-size: 14px;
	}
	.main .about .about_item_wrap .about_item > a {
		font-size: 15px;
		margin-top: 15px;
	}
}

/* =======salon_menu=========== */
.main .salon_menu {
	background: no-repeat url('../img/back1.png') center center / contain;
	background-size: cover;
	width: 100%;
	padding-bottom: 55px;
}
.main .salon_menu .salon_menu_catch {
	padding-top: 50px;
	padding-bottom: 40px;
	line-height: 2em;
	text-align: left;
	width: 90%;
	max-width: 880px;
	margin: auto;
	font-size: 18px;
}
.main .salon_menu .salon_menu_table {
	width: 100%;
	max-width: 880px;
	margin: auto;
	padding-top: 60px;
	background: rgba(243, 221, 198, .8);
	padding-bottom: 30px;
	border-radius: 20px;
	border: 3px solid #FA8C1E;
}
.main .salon_menu .salon_menu_table_item:nth-of-type(n + 2) {
	margin-top: -40px;
}
.main .salon_menu .salon_menu_table_item:nth-of-type(3) {
	margin-top: 0px;
}
.main .salon_menu .salon_menu_table h3 {
	border-bottom: 2px dashed #FA8C1E;
	color: #FA8C1E;
	font-size: 25px;
	padding-bottom: 15px;
	padding-left: 1.5em;
	text-align: left;
	position: relative;
	width: 90%;
	margin: 0 auto 20px;
}
.main .salon_menu .salon_menu_table h3::after {
	position: absolute;
	content: "";
	top: 40%;
	left: 0;
	transform: translateY(-50%);
	background: no-repeat url('../img/orange_deco.png') center center / contain;
	width: 25px;
	height: 25px;
}
.main .salon_menu .salon_menu_table .salon_menu_table_content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 88%;
	margin: auto;
}
.main .salon_menu .salon_menu_table .salon_menu_table_content .img {
	width: 100%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 35%;
	flex: 1 1 35%;
}
.main .salon_menu .salon_menu_table .salon_menu_table_item:nth-of-type(2n) .img {
	text-align: right;
}
.main .salon_menu .salon_menu_table .salon_menu_table_content .img .pc {
	display: block;
}
.main .salon_menu .salon_menu_table .salon_menu_table_content .img .sp {
	display: none;
}
.main .salon_menu .salon_menu_table .salon_menu_table_content .img > img {
	width: 100%;
	max-width: 201px;
	height: auto;
}
.main .salon_menu .salon_menu_table .salon_menu_table_content .item_text {
	text-align: left;
	width: 100%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 65%;
	flex: 1 1 65%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	line-height: 2em;
}
.main .salon_menu .salon_menu_table .salon_menu_table_content .item_text p {
	margin-right: 20px;
}
.main .salon_menu .salon_menu_table > a {
	display: inline-block;
	margin: 20px auto 0;
	width: 90%;
	max-width: 400px;
}
.main .salon_menu .salon_menu_table > a > img {
	width: 100%;
	height: auto;
}
.main .salon_menu .salon_menu_table .recommend_message {
	margin: 10px auto 0;
	font-size: 14px;
}
.main .salon_menu .salon_menu_table .recommend_message > .sp {
	display: none;
}
/* ===== 950px以下 ===== */
@media(max-width:950px) {
	.main .salon_menu .salon_menu_table_item:nth-of-type(n + 2) {
		margin-top: 0px;
	}
}
/* ===== 767px以下 ===== */
@media(max-width:767px) {
	.main .salon_menu .salon_menu_catch {
		text-align: center;
	}
	.main .salon_menu .salon_menu_table {
		padding-top: 30px;
	}
	.main .salon_menu .salon_menu_table_item {
		position: relative;
	}
	.main .salon_menu .salon_menu_table_item:nth-of-type(n + 2) {
		margin-top: 20px;
	}
	.main .salon_menu .salon_menu_table h3 {
		font-size: 18px;
		padding-bottom: 5px;
	}
	.main .salon_menu .salon_menu_table h3::after {
		width: 20px;
		height: 20px;
	}
	.main .salon_menu .salon_menu_table .salon_menu_table_content {
		display: block;
	}
	.main .salon_menu .salon_menu_table .salon_menu_table_content .item_text {
		display: block;
	}
	.main .salon_menu .salon_menu_table .salon_menu_table_content .item_text p {
		margin-right: 0;
	}
	.main .salon_menu .salon_menu_table .salon_menu_table_content .item_text p > span {
		display: none;
	}
	.main .salon_menu .salon_menu_table .salon_menu_table_content .img .pc {
		display: none;
	}
	.main .salon_menu .salon_menu_table .salon_menu_table_content .img .sp {
		display: block;
		position: absolute;
		top: 0;
		right: 30px;
		transform: translateY(-30%);
		width: 90px;
		height: auto;
	}
	.main .salon_menu .salon_menu_table .salon_menu_table_content .item_text p {
		font-size: 15px;
		line-height: 1.5em;
		letter-spacing: -.05em;
	}
	.main .salon_menu .salon_menu_table .recommend_message > .sp {
		display: block;
	}
}
/* ===== 380px以下 ===== */
@media(max-width:380px) {
	.main .salon_menu .salon_menu_table .salon_menu_table_content .img .sp {
		transform: translateY(-30%);
		width: 70px;
		height: auto;
		right: 10px;
	}
	.main .salon_menu .salon_menu_table .recommend_message {
		letter-spacing: -.05em;
		font-size: 13px;
	}
}

/* =======hotel_menu=========== */
.main .hotel_menu {
	padding-bottom: 115px;
	background: no-repeat url('../img/back2.png');
	background-size: cover;
}
.main .hotel_menu .hotel_menu_catch {
	padding-top: 30px;
	text-align: left;
	width: 100%;
	max-width: 800px;
	margin: auto;
}
.main .hotel_menu .hotel_menu_catch > p {
	line-height: 2em;
}
.main .hotel_menu .hotel_menu_catch > p > .sp {
	display: none;
}
.main .hotel_menu .hotel_menu_item_wrap {
	padding-top: 65px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	max-width: 800px;
	margin: 0 auto 30px;
}
.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item {
	width: calc(50% - 40px * 1 / 2);
	margin-right: 40px;
	text-align: left;
}
.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item:last-of-type {
	margin-right: 0px;
}
.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item img {
	width: 100%;
	height: auto;
}
.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .title {
	font-size: 18px;
}
.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .price {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding-top: 5px;
	line-height: 1.4em;
}
.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .price > p:first-of-type {
	font-size: 16px;
	color: #fff;
	background-color: #736357;
	border-radius: 10px;
	width: 78px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	margin-right: 10px;
}
.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .price > p:nth-of-type(2) {
	font-size: 20px;
}
.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .price > p:nth-of-type(2) .price_num {
	font-size: 25px;
	display: inline-block;
	padding: 0 5px;
}
.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .price > p:nth-of-type(2) .day {
	font-size: 18px;
	display: inline-block;
	margin-left: 10px;
}
.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .message {
	margin-top: 10px;
	font-size: 15px;
}
.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .message > p > span {
	font-size: 21px;
	padding-left: 5px;
}
.main .hotel_menu .off_hours {
	width: 100%;
	max-width: 800px;
	margin: 0 auto 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: left;
	background-color: #EFD9C2;
	border: 2px solid #E8841E;
	border-radius: 10px;
	padding: 20px 23px 15px;
	position: relative;
}
.main .hotel_menu .off_hours .title {
	font-size: 18px;
	padding-right: 30px;
}
.main .hotel_menu .off_hours .time {
	font-size: 17px;
}
.main .hotel_menu .off_hours .label {
	background: #E8841E;
	color: #fff;
	font-size: 17px;
	position: absolute;
	right: 70px;
	top: 50%;
	transform: translateY(-50%);
	text-align: left;
	width: 300px;
	padding: 5px 5px 3px;
}
.main .hotel_menu .inner > .pc {
	display: block;
}
.main .hotel_menu .inner > .sp {
	display: none;
}
.main .hotel_menu .note {
	width: 100%;
	max-width: 800px;
	margin: auto;
}
.main .hotel_menu .note > p {
	font-size: 15px;
	line-height: 2em;
	text-align: left;
}
/* ===== 850px以下 ===== */
@media(max-width:850px) {
	.main .hotel_menu .off_hours .label {
		right: 5%;
		width: 250px;
	}
	.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .message > p > span {
		display: block;
	}
}
/* ===== 767px以下 ===== */
@media(max-width:767px) {
	.main .hotel_menu {
		background: no-repeat url('../img/sp/back2.png') center center / contain;
		background-size: cover;
		padding-bottom: 130px;
	}
	.main .hotel_menu .hotel_menu_catch > p {
		font-size: 14px;
		text-align: center;
	}
	.main .hotel_menu .hotel_menu_catch > p > .sp {
		display: block;
	}
	.main .hotel_menu .hotel_menu_item_wrap {
		padding-top: 30px;
		width: 90%;
		margin: auto;
		display: block;
	}
	.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item {
		width: 100%;
		margin: auto !important;
	}
	.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item:nth-of-type(2) {
		margin-top: 30px !important;
	}
	.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .title {
		font-size: 17px;
	}
	.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .price > p:nth-of-type(2) {
		font-size: 16px;
	}
	.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .price > p:nth-of-type(2) .price_num {
		font-size: 22px;
	}
	.main .hotel_menu .hotel_menu_item_wrap .hotel_menu_item .price > p:nth-of-type(2) .day {
		font-size: 16px;
	}
	.main .hotel_menu .inner > .pc {
		display: none;
	}
	.main .hotel_menu .inner > .sp {
		display: block;
	}
	.main .hotel_menu .off_hours {
		margin: 20px auto 10px;
		width: 90%;
		display: block;
	}
	.main .hotel_menu .off_hours .title {
		font-size: 18px;
		padding-right: 30px;
	}
	.main .hotel_menu .off_hours .time {
		font-size: 17px;
	}
	.main .hotel_menu .off_hours .label {
		transform: translateY(0);
		font-size: 16px;
		position: static;
		width: 100%;
		padding: 5px 10px 3px;
		margin-top: 5px;
	}
	.main .hotel_menu .note {
		max-width: 500px;
		margin-top: 45px;
	}
	.main .hotel_menu .note > p {
		font-size: 14px;
		line-height: 1.5em;
		text-align: left;
	}
}

/* =======food=========== */
.main .food > .inner {
	width: 100%;
	max-width: 100%;
	padding-bottom: 90px;
}
.main .food .food_catch {
	padding-top: 45px;
	width: 90%;
	max-width: 870px;
	margin: auto;
	text-align: left;
	line-height: 2em;
}
.main .food .food_icon {
	padding-top: 45px;
	width: 90%;
	max-width: 770px;
	margin: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.main .food .food_icon > div {
	width: calc(25% - 35px * 3 / 4);
	margin-right: 35px;
	padding-bottom: 50px;
}
.main .food .food_icon > div:last-of-type {
	margin-right: 0;
}
.main .food .food_icon > div > img {
	width: 100%;
	height: auto;
}
.main .food .food_text {
	font-size: 22px;
	line-height: 1.8em;
}
.main .food .food_label {
	width: 100%;
	margin-top: 20px;
	background-color: #F6D6AA;
	font-size: 23px;
	line-height: 1.7em;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 60px;
}
.main .food .dog_food > p {
	font-size: 22px;
	margin-bottom: 45px;
}
.main .food .dog_food .dog_food_img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 90%;
	max-width: 750px;
	margin: auto;
}
.main .food .dog_food .dog_food_img .item {
	width: calc(33.333% - 40px * 2 / 3);
	margin: 40px 0 60px;
}
.main .food .dog_food .dog_food_img .item:last-of-type {
	margin-right: 0;
}
.main .food .dog_food .dog_food_img .item img {
	width: 100%;
	height: auto;
}
.main .food .dog_food .dog_food_img .item > p {
	font-size: 20px;
	padding-top: 10px;
}
.main .food .inner > .to_inline {
	display: inline-block;
	margin: auto;
	border: 2px solid #FA8C1E;
	color: #FA8C1E;
	width: 90%;
	max-width: 500px;
	height: 70px;
	line-height: 70px;
}
/* ===== 767px以下 ===== */
@media(max-width:767px) {
	.main .food > .inner {
		padding-bottom: 55px;
	}
	.main .food .food_catch {
		padding-top: 40px;
		margin: auto;
		text-align: center;
		line-height: 1.6em;
		font-size: 15px;
	}
	.main .food .food_icon {
		padding-top: 40px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.main .food .food_icon > div {
		width: calc(50% - 20px * 1 / 2);
		margin-right: 20px;
		padding-bottom: 15px;
	}
	.main .food .food_icon > div:nth-of-type(2n) {
		margin-right: 0;
	}
	.main .food .food_text {
		margin-top: 30px;
		font-size: 18px;
		line-height: 1.5em;
		width: 80%;
		margin: 30px auto;
	}
	.main .food .food_label {
		background-color: #F6D6AA;
		font-size: 18px;
		letter-spacing: -.05em;
	}
	.main .food .dog_food > p {
		font-size: 19px;
		margin-bottom: 35px;
	}
	.main .food .dog_food > p > span {
		display: block;
	}
	.main .food .dog_food .dog_food_img {
		display: block;
		margin-bottom: 30px;
	}
	.main .food .dog_food .dog_food_img .item {
		width: 80%;
		max-width: 300px;
		margin: 40px auto 35px;
	}
	.main .food .dog_food .dog_food_img .item:last-of-type {
		margin: auto;
	}
	.main .food .dog_food .dog_food_img .item > p {
		font-size: 18px;
		padding-top: 5px;
	}
}


/* =======contact=========== */
.main .contact {
	background-color: #FA8C1E;
	padding: 98px 0 89px;
}
.main .contact .inner {
	background-color: #fff;
	border-radius: 11px;
	padding-bottom: 60px;
}
.main .contact .inner h2 {
	padding-top: 60px;
	margin-bottom: 30px;
}
.main .contact .contact_text > p {
	font-size: 20px;
	line-height: 1.8em;
}
.main .contact .contact_item_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin: 46px auto 0;
	width: 90%;
	max-width: 810px;
}
.main .contact .contact_item_wrap .contact_item_tel {
	border: 2px solid #808080;
	border-radius: 8px;
	-webkit-box-flex: 1;
	-ms-flex: 1 50%;
	flex: 1 1 50%;
	padding: 18px 0 5px;
	margin-right: 20px;
}
.main .contact .contact_item_wrap .contact_item_tel .title {
	font-size: 18px;
	padding: 0 10px 7px;
	border-bottom: 2px dashed #323232;
	display: inline-block;
}
.main .contact .contact_item_wrap .contact_item_tel .num {
	margin-top: 10px;
	font-size: 28px;
	position: relative;
	font-weight: bold;
	display: inline-block;
	padding-left: 10px;
	margin-bottom: 5px;
}
.main .contact .contact_item_wrap .contact_item_tel .num::after {
	position: absolute;
	content: "";
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	background: no-repeat url('../img/tel_icon.png') center center / contain;
	width: 25px;
	height: 33px;
}
.main .contact .contact_item_wrap .contact_item_line {
	-webkit-box-flex: 1;
	-ms-flex: 1 50%;
	flex: 1 1 50%;
}
.main .contact .contact_item_wrap .contact_item_line .img {
	max-width: 380px;
	height: auto;
	margin-left: auto;
	margin-right: 0;
	padding-left: 30px;
}
.main .contact .contact_item_wrap .contact_item_line .img > img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
.main .contact .contact_item_wrap .contact_item_line > p {
	display: inline-block;
	text-align: right;
	margin-right: 0;
	margin-top: 5px;
	padding-left: 45px;
}
/* ===== 950px以下 ===== */
@media(max-width:950px) {
	.main .contact .contact_item_wrap .contact_item_line > p {
		padding-left: 0px;
		width: 100%;
		font-size: 15px;
		letter-spacing: -.05em;
	}
}

/* ===== 767px以下 ===== */
@media(max-width:767px) {
	.main .contact {
		padding: 45px 0;
	}
	.main .contact .inner {
		padding-bottom: 30px;
	}
	.main .contact .inner h2 {
		padding-top: 30px;
	}
	.main .contact .contact_text > p {
		width: 90%;
		margin: auto;
		font-size: 16px;
		letter-spacing: -.05em;
	}
	.main .contact .contact_item_wrap {
		display: block;
		margin: 30px auto 0;
	}
	.main .contact .contact_item_wrap .contact_item_tel {
		padding: 18px 0 5px;
		margin: auto;
		max-width: 350px;
	}
	.main .contact .contact_item_wrap .contact_item_tel .title {
		font-size: 16px;
		padding: 0 5px 7px;
	}
	.main .contact .contact_item_wrap .contact_item_tel .num {
		padding-left: 15px;
	}
	.main .contact .contact_item_wrap .contact_item_tel .num::after {
		left: -10px;
	}
	.main .contact .contact_item_wrap .contact_item_line {
		width: 100%;
		max-width: 350px;
		height: auto;
		margin: auto;
	}
	.main .contact .contact_item_wrap .contact_item_line .img {
		margin-left: auto;
		margin-top: 20px;
		padding-left: 0;
	}
	.main .contact .contact_item_wrap .contact_item_line > p {
		display: inline-block;
		text-align: center;
		padding-left: 0;
		font-size: 13px;
	}
}

/* =======gallary=========== */
.main .gallary {
	padding-bottom: 80px;
}
.main .gallary .gallary_img_wrap {
	padding-top: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.main .gallary .gallary_img_wrap > .img {
	width: calc(20% - 15px * 4 / 5);
	margin-right: 15px;
}
.main .gallary .gallary_img_wrap > .img:nth-of-type(5n) {
	margin-right: 0px;
}
.main .gallary .gallary_img_wrap > .img:nth-of-type(n + 6) {
	margin-top: 15px;
}
.main .gallary .gallary_img_wrap > .img > img {
	width: 100%;
	max-width: 180px;
	height: 180px;
	object-fit: cover;
}
.main .gallary .gallary_insta {
	margin: 35px auto 0;
	width: 133px;
	height: auto;
}
.main .gallary .gallary_insta > img {
	width: 100%;
	height: auto;
}
/* ===== 950px以下 ===== */
@media(max-width:950px) {
	.main .gallary .gallary_img_wrap > .img {
		width: calc(25% - 15px * 3 / 4);
		margin-right: 15px;
	}
	.main .gallary .gallary_img_wrap > .img:nth-of-type(5n) {
		margin-right: 15px;
	}
	.main .gallary .gallary_img_wrap > .img:nth-of-type(n + 5) {
		margin-top: 15px;
	}
	.main .gallary .gallary_img_wrap > .img:nth-of-type(4n) {
		margin-right: 0;
	}
}
/* ===== 767px以下 ===== */
@media(max-width:767px) {
	.main .gallary .inner {
		width: 95%;
	}
	.main .gallary .gallary_img_wrap {
		padding-top: 30px;
	}
	.main .gallary .gallary_img_wrap > .img {
		width: calc(33.3333% - 10px * 2 / 3);
		margin-right: 10px;
	}
	.main .gallary .gallary_img_wrap > .img:nth-of-type(5n) {
		margin-right: 10px;
	}
	.main .gallary .gallary_img_wrap > .img:nth-of-type(4n) {
		margin-right: 10px;
	}
	.main .gallary .gallary_img_wrap > .img:nth-of-type(n + 4) {
		margin-top: 15px;
	}
	.main .gallary .gallary_img_wrap > .img:nth-of-type(3n) {
		margin-right: 0;
	}
}
/* ===== 550px以下 ===== */
@media(max-width:550px) {
	.main .gallary .gallary_img_wrap > .img > img {
		max-width: 160px;
		height: 160px;
	}
	.main .gallary .gallary_img_wrap > .img:nth-of-type(5n) {
		margin-right: 10px;
	}
	.main .gallary .gallary_img_wrap > .img:nth-of-type(4n) {
		margin-right: 10px;
	}
	.main .gallary .gallary_img_wrap > .img:nth-of-type(n + 4) {
		margin-top: 0 !important;
	}
	.main .gallary .gallary_img_wrap > .img:nth-of-type(3n) {
		margin-right: 0;
	}
}
/* ===== 450px以下 ===== */
@media(max-width:450px) {
	.main .gallary .gallary_img_wrap > .img > img {
		max-width: 130px;
		height: 130px;
	}
}
/* ===== 390px以下 ===== */
@media(max-width:390px) {
	.main .gallary .gallary_img_wrap > .img > img {
		max-width: 120px;
		height: 120px;
	}
}


/* =======access=========== */
.main .access {
	background-color: #F8F8F8;
	padding-bottom: 56px;
}
.main .access .access_item_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 35px;
}
.main .access .access_item_wrap .map {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 50%;
	flex: 1 0 50%;
	padding-right: 30px;
}
.map > .iframe-wrap {
	position: relative;
	width: 100%;
	padding-top: 83%; /* = height ÷ width × 100 */
}
.map > .iframe-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.main .access .access_item_wrap > .access_text {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 50%;
	flex: 1 0 50%;
	text-align: left;
	margin-top: -10px;
}
.main .access .access_item_wrap .direct {
	margin-top: 50px;
}
.main .access .access_item_wrap .title {
	border-bottom: 1px solid #323232;
	padding-bottom: 5px;
	padding-left: 1em;
	margin-bottom: 10px;
}
.main .access .access_item_wrap .text {
	padding-left: 1em;
	line-height: 1.7em;
}
.main .access .access_item_wrap .locate > .text > p:nth-of-type(1) {
	margin-bottom: 5px;
}
.main .access .access_item_wrap .direct > .text,
.main .access .access_item_wrap .locate > .text > p:nth-of-type(2) {
	font-size: 15px;
}
/* ===== 767px以下 ===== */
@media(max-width:767px) {
	.main .access .access_item_wrap {
		display: block;
		margin-top: 35px;
	}
	.main .access .access_item_wrap .map {
		padding-right: 0;
	}
	.main .access .access_item_wrap > .access_text {
		margin-top: 30px;
	}
	.main .access .access_item_wrap .direct {
		margin-top: 30px;
	}
	.main .access .access_item_wrap .title {
		padding-left: 0em;
		font-size: 14px;
	}
	.main .access .access_item_wrap .text {
		padding-left: 0em;
		font-size: 14px;
	}
}

/* =======bottom_banner=========== */
.main .bottom_banner {
	padding-top: 40px;
	padding-bottom: 90px;
}
.main .bottom_banner > .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;	
}
.main .bottom_banner > .inner > .img {
	display: block;
	width: calc(25% - 15px * 3 / 4);
	margin-right: 15px;
}
.main .bottom_banner > .inner > .img:last-of-type {
	margin-right: 0;
}
.main .bottom_banner > .inner > .img > img {
	width: 100%;
	height: auto;
}
/* ===== 767px以下 ===== */
@media(max-width:767px) {
	.main .bottom_banner > .inner {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 95%;
	}
	.main .bottom_banner > .inner > .img {
		display: block;
		width: calc(50% - 15px * 1 / 2);
		margin-right: 15px;
	}
	.main .bottom_banner > .inner > .img:nth-of-type(2n) {
		margin-right: 0;
	}
	.main .bottom_banner > .inner > .img:nth-of-type(n + 3) {
		margin-top: 10px;
	}
	.main .bottom_banner > .inner > .img:last-of-type {
		margin-right: 0;
	}
}
/* =======footer=========== */
.footer {
	width: 100%;
	background-color: #FA8C1E;
	position: relative;
	padding-top: 75px;
}
.footer::before {
	position: absolute;
	content: "";
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background: no-repeat url('../img/logo.png') center center / contain;
	width: 113px;
	height: 113px;
}
.footer .footer_title {
	display: inline-block;
	max-width: 280px;
	height: auto;
	margin: auto;
}
.footer .footer_title > img {
	width: 100%;
	height: auto;
}
.footer .footer_tel {
	padding-top: 20px;
	font-size: 20px;
	color: #fff;
}
.footer .sns_logo {
	margin: 15px auto 30px;
	width: 100%;
	max-width: 180px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;	
}
.footer .sns_logo > a {
	display: block;
	max-width: 50px;
	height: auto;
}
.footer .sns_logo > a > img {
	width: 100%;
	height: auto;
}
.footer .copyright {
	font-size: 14px;
	color: #fff;
	padding-bottom: 25px;
}
/* ===== 767px以下 ===== */
@media(max-width:767px) {
	.footer {
		padding-top: 60px;
	}
	.footer::before {
		width: 100px;
		height: 100px;
	}
	.footer .footer_tel {
		padding-top: 15px;
	}
	.footer .copyright {
		font-size: 11px;
		padding-bottom: 10px;
	}
}