@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700,900&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese');

@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Lora:400,700');
body {
	font-size: 14px;
	font-family: 'Noto Serif JP', serif;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	color: #000000;
	font-size: 14px;
	background-color: #FFFFFF;
	line-height: 1.8em;
	text-justify: inter-ideograph;
	text-align: justify;
	font-weight: 400;
}
img {
	width:100%;
	height:auto;
	}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
a:link {
	text-decoration: none;
	color: #000;
}
a:visited {
	text-decoration: none;
	color: #000;
}
a:hover {
	color: #000000;
	text-decoration: none;
}
a:active {
	color: #000000;
	background-color: #FFF;
}
.pc_no {
	display: none;
}

.flex {
	display: -webkit-box;/*--- Android驛｢譎�§�主ｸｷ�ｹ�ｧ�ｽ�ｦ驛｢�ｧ�ｽ�ｶ鬨ｾ蛹�ｽｽ�ｨ ---*/
	display: -ms-flexbox;/*--- IE10 ---*/
	display: -webkit-flex;/*--- safari�ｽ�ｽ�ｽ�ｽPC�ｽ�ｽ髢ｾ�･騾｡�ｽ ---*/
	display: flex;
	-webkit-box-pack: justify;/*--- Android驛｢譎�§�主ｸｷ�ｹ�ｧ�ｽ�ｦ驛｢�ｧ�ｽ�ｶ鬨ｾ蛹�ｽｽ�ｨ ---*/
	-ms-flex-pack: justify;/*--- IE10 ---*/
	-webkit-justify-content: space-between;/*--- safari�ｽ�ｽ�ｽ�ｽPC�ｽ�ｽ髢ｾ�･騾｡�ｽ ---*/
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex_c {
	display: -webkit-box !important;/*--- Android郢晄じﾎ帷ｹｧ�ｦ郢ｧ�ｶ騾包ｽｨ ---*/
	display: -ms-flexbox !important;/*--- IE10 ---*/
	display: -webkit-flex !important;/*--- safari�ｽ�ｽPC�ｽ閾･逡� ---*/
	display: flex !important;
	-webkit-justify-content: center;/*--- safari�ｽ�ｽ�ｽ�ｽPC�ｽ�ｽ髢ｾ�･騾｡�ｽ ---*/
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
/*---トップ ---*/
#wrap {
	overflow: hidden;
}
.ih_100 {
	height:100vh;
	}
header {
	display: block;
	width: 100%;
	overflow: hidden;
	
}

#demo-1 {
	overflow: hidden;
	width: 100vw;
	min-height: 99vh;
	background-color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
}
.inner-content h1 img {
	height: auto;
	width: 25vw;
	
}

.inner-content h1 {
	display:block;
	overflow:hidden;
	text-align:center;
	padding-bottom:100px;
	
	
}
#head_2 {
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2000;
	bottom:0;

}

#head_2 .scl {
	padding: 15px;
	width: 100px;
	margin-right: auto;
	margin-left: auto;
	display: block;
}


header #head {
	position: relative;
}


.blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

/*ハンバーガー*/


#nav-open {
	display: inline-block;
	width: 70px;
	height: 67px;
	vertical-align: middle;
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
	background-color: #000;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.menu_moji {
	font-size: 18px;
	position: fixed;
	z-index: 9999;
	width: 70px;
	text-align: center;
	color: #000;
	top: 90px;
	right: 20px;
	display: inline-block;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  transition: all 0.4s;
  height: 5px;/*線の太さ*/
  width: 50px;/*長さ*/
  border-radius: 3px;
  background: #ffffff;
  display: block;
  content: '';
  cursor: pointer;
  z-index: 9999;/*最前面*/
}

#nav-open span:before {
  bottom: -16px;
}

#nav-open span:after {
  bottom: -32px;
}


/*中身*/
#nav-content {
	display: none;
	position: fixed;
	top: 0;
	transition: .2s ease-in-out;
	
	right: 0;
}

#nav-content.open {
	display: block;
	opacity: 1;
	overflow: auto;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9998;
	max-height: 95vh;
	background: rgba(250, 250, 250, 0.9);/*背景色*/
	padding-top: 80px;
	padding-right: 80px;
	padding-bottom: 60px;
	padding-left: 80px;
}


/*:beforeにぼかし効果を設定する*/
#nav-content.open:before {
  content: '';
  overflow: hidden;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  z-index: -1;/*重なり順序を一番下にしておく*/
}


/*チェックが入ったら表示する内容*/

.hamburger-top {
  height: 40px;/*×ボタンと被らないように*/
}

.category {
	text-align: left;
}

.category-title {
}

.category-title a {
	text-decoration: none;
	font-size: 20px;
	display: block;
	
	padding-bottom: 20px;
	clear: both;
}
.sub_m_en {
	float: right;
	width: 40%;
	font-size: 14px;
	padding-top: 4px;
}
.sub_m_en2 {
	width: 100%;
	font-size: 14px;
	padding-top: 10px;
	display: block;
	text-align: center;
}
.menu_inbox1 {
	display: block;
	font-size: 24px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #000;
	border-bottom-color: #000;
	text-align: center;
	padding-right: 45px;
	padding-left: 45px;
	overflow: hidden;
}
.menu_inbox1 .tel {
	display: block;
	clear: both;
	font-size: 30px;
	padding-top: 10px;
	text-align: center;
}


/*三本線を動かす*/
#nav-open.active span {
  -webkit-transform: translateY(16px) rotate(-45deg);
  transform: translateY(16px) rotate(-45deg);
}
.menu_inbox2 {
	display: block;
	clear: both;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	font-size: 20px;
	letter-spacing: 0.2em;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	text-indent: -0.2em;
	padding-right: 50px;
	padding-left: 50px;
}
.menu_inbox2 a {
}
.menu_inbox3 {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}
.menu_inbox3 .flex_c li {
	width: 50px;
	margin-right: 5px;
	margin-left: 5px;
}
.menu_inbox3 .flex_c li a img {
	width: 25px;
}

#nav-open.active span:before {
  -webkit-transform: translateY(-16px) rotate(45deg);/*打ち消す*/
  transform: translateY(-16px) rotate(45deg);/*打ち消す*/
  opacity: 0;
}

#nav-open.active span:after {
  -webkit-transform: translateY(-32px) rotate(45deg);
  transform: translateY(-32px) rotate(90deg);
}

/*ハンバーガー*/

.box1 {
	clear: both;
	display: block;
	overflow: hidden;
	padding-bottom: 160px;
	text-align: center;
	width: 100%;
}
.contents1s {
	 text-align: center;
	
	clear: both;
	max-width: 1200px;
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
}
.contents1s h1 {
	 -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
	margin-right: auto;
	margin-left: auto;
	 display: inline-block;
	/* 追加 */
	transform: rotate(.03deg);
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 56px;
	line-height: 1.8em;
	text-align: center;
	letter-spacing: 0.2em;
}

.contents1 {
	display:block;
	
	clear: both;
	max-width: 1200px;
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
}
.top_news {
	margin-right: auto;
	margin-left: auto;
	text-align: left;
	clear: both;
	display: block;
	width: 50%;
}
.top_news dl {
	clear: both;
	margin-bottom: 25px;
	font-size: 16px;
	overflow: hidden;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	display: block;
	line-height: 2em;
}
.top_news dl dt {
	float: left;
	display: block;
	width: 25%;
}
.top_news dl dd {
	float: left;
	display: block;
	width: 75%;
}
.top_subb {
	width: 40%;
	margin-right: auto;
	margin-left: auto;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #000;
	border-bottom-color: #000;
	font-size: 22px;
	display: block;
	clear: both;
	overflow: hidden;
	padding: 20px;
}
.en_sub_t {
	color: #666;
	margin-bottom: 56px;
	display: block;
	text-align: center;
}
.top_pot1 li {
	width: 49%;
	margin-bottom: 25px;
}
.contents1 h3 {
	font-size: 18px;
	line-height: 2.2em;
	display: block;
	padding-top: 24px;
	text-align: center;
}
.contents1 h2 {
	font-size: 30px;
	line-height: 30px;
	margin-bottom: 5px;
	letter-spacing: 0.3em;
	text-align: center;
	display: block;
}
.contents1 .t_btn {
	font-size: 18px;
	line-height: 60px;
	display: block;
	width: 300px;
	margin-top: 56px;
	margin-right: auto;
	margin-left: auto;
	letter-spacing: 0.2em;
	text-align: center;
	border: 1px solid #000;
}
.contents1 .t_btn:hover {
	color: #FFF;
	background-color: #7F6F68;
}
.box50 li {
	width: 48%;
}
.top_pot2 li {
	width: 50%;
}
.box2 {
	background-image: url(../img/k_top/t_11.jpg);
	background-size: cover;
	padding-top: 160px;
	padding-bottom: 160px;
	margin-bottom: 160px;
}
.box2_in {
	background: rgba(255, 255, 255, 0.9);/*背景色*/
	display: block;
	padding-top: 80px;
	padding-bottom: 80px;
}
.contents2s {
	
	text-align: center;
	clear: both;
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;

}
.contents2s h1 {
	 -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
	margin-right: auto;
	margin-left: auto;
	display: inline-block;
	/* 追加 */
	transform: rotate(.03deg);
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 30px;
	line-height: 1.8em;
	text-align: center;
	letter-spacing: 1em;
}



.contents1 .t_btn2 {
	font-size: 22px;
	line-height: 70px;
	display: block;
	width: 40%;
	margin-top: 56px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	olor: #FFF;
	background-color: #7F6F68;
	color: #FFF;
}
.contents1 .t_btn2:hover {
	color: #FFF;
	background-color: #000000;
}
.sp_32 {
	margin-top: 40px;
	text-align: left;
	width: 75%;
	margin-right: auto;
	margin-left: auto;
}
footer {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
	padding-bottom: 30px;
	text-align: center;
	font-size: 16px;
	line-height: 2em;
	letter-spacing: 0.1em;
}
footer h1 {
	width: 20%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 40px;
}
footer .copyr {
	font-size: 14px;
	line-height: 14px;
	margin-top: 32px;
	letter-spacing: 0em;
}
/*---トップ ---*/
/*---フォーム ---*/
.info_mm {
	display: block;
	font-size: 14px;
}
input[type="text"], input[type="email"], input[type="tel"] {
	border: 0;
	padding: 10px;
	font-size: 16px;
	border: solid 1px #ccc;
	margin: 0;
	width: 100%;
}
textarea {
	width: 100%;
	height: 13em;
	font-size: 16px;
	border: 1px solid #CCC;
}
input[type="submit"] {
	font-size: 16px;
	background-color: #FFFFFF;
	
	padding-top: 15px;
	padding-right: 60px;
	padding-bottom: 15px;
	padding-left: 60px;
	margin-right: auto;
	margin-left: auto;
	border: 1px solid #405328;
}
input[type="submit"]:hover {
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	color: #FFF;
	background-
	font-weight: 700;
}
.wpcf7-form-control-wrap {
	margin: 0;
}

/*---フォーム ---*/

/*---ページトップ ---*/

#page-top {
	position: fixed;
	bottom: 20px;
	right: 45px;
}
#page-top a img {
	height: 50px;
	width: 50px;
}
#page-top a:hover img {
	opacity: 0.9;
	filter: alpha(opacity=90);
	-ms-filter: "alpha( opacity=90 )";
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

/*---ページトップ ---*/

/*---フェード ---*/
.fade {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.fade:hover {
	opacity: 0.4;
	filter: alpha(opacity=80);
}
/*---フェード ---*/


/*---メニュー ---*/

#spm {
	display: none;
}

#header_in22 {
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
	display: block;
}
#header_in22.fixed nav {
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
	display: block;
}
#header_in22.fixed {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	display: block;
	padding-top: 15px;
	background-color: rgba(255,255,255,0.95);
}
#header_in22.fixed #dropmenu {
	list-style-type: none;
	font-family: A1 Mincho, 'Sawarabi Mincho';
	padding-top: 22px;
	position: relative;
	padding-top: 0px;
	display: -webkit-box !important;/*--- Androidブラウザ用 ---*/
	display: -ms-flexbox !important;/*--- IE10 ---*/
	display: -webkit-flex !important;/*--- safari（PC）用 ---*/
	display: flex !important;
	-webkit-justify-content: space-between;
*--- safari��PC�臥畑 ---*/  justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#dropmenu {
	list-style-type: none;
	font-family: A1 Mincho, 'Sawarabi Mincho';
	position: relative;
	font-weight: 400;
	display: -webkit-box !important;/*--- Androidブラウザ用 ---*/
	display: -ms-flexbox !important;/*--- IE10 ---*/
	display: -webkit-flex !important;/*--- safari（PC）用 ---*/
	display: flex !important;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 22px;
	padding-bottom: 22px;
	overflow: hidden;
}
#dropmenu li {
	float: left;
	text-align: center;
	display: block;
	font-size: 16px;
	line-height: 32px;
	position: relative;
	z-index: 10000;
	margin: 0px;
	padding: 0;
	
}
#dropmenu li a {
	display: block;
	padding: 0;
	text-decoration: none;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	font-size: 16px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	
}
#dropmenu li a:hover {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #000;
}
#dropmenu .current a {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-
}
#dropmenu li .mimg:hover {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #fff !important;
}
#dropmenu .mimg1 img {
	margin-top: -3px;
	height: 27px;
	width: auto;
	margin-left: 5%;
}
#dropmenu .mimg2 img {
	margin-top: -3px;
	height: 27px;
}
#dropmenu li:hover > a {
}
#dropmenu > li:hover > a {
}
#dropmenu li ul {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	z-index: 20000;
}
#dropmenu li:last-child ul {
	left: -100%;
	width: 100%
}
#dropmenu li ul li {
	overflow: hidden;
	width: 200%;
	height: 0;
	color: #fff;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
	margin-top: 1px;
	margin-bottom: 1px;
}
#dropmenu li ul li a {
	text-align: left;
	font-size: 14px;
	line-height: 44px;
	color: #000;
	background-color: #EFEEE8;
	padding-right: 15px;
	padding-left: 15px;
}
#dropmenu li ul li a:hover {
	background-color: #CCCCCC;
}
#dropmenu li:hover ul li {
	overflow: hidden;
	display: block;
	height: 44px;
	line-height: 44px;
}
#dropmenu li:hover ul li:first-child {
	border-top: 0;
}
#dropmenu li:hover ul li:last-child {
	border-bottom: 0;
	line-height: 44px;
}
#dropmenu li:hover ul li:last-child a {
	line-height: 44px;
}
.fixed {
	position: fixed;
	top: 0;
	z-index: 1;
}
/*---メニュー ---*/


.map.filter-Grayscale iframe{
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}
 
.map.filter-Grayscale  iframe:hover {
 　transition: filter 0.8s ease;
　-webkit-filter: grayscale(0) saturate(2);
　filter: grayscale(0) saturate(2);
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
.inner-content_page h1 {
	width: 15%;
	position: absolute;
	left: 20px;
	top: 20px;
}
.box_p {
	margin-top: 112px;
	margin-bottom: 112px;
}
.contents1 .ws_b {
	width: 960px;
	padding-top: 48px;
	margin-right: auto;
	margin-left: auto;
}


/*タブ1*/
/*タブ切り替え全体のスタイル*/
.type .tabs {
	margin-top: 48px;
	padding-bottom: 40px;
	background-color: #fff;
	width: 100%;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/*タブのスタイル*/
.type .tab_item {
	width: calc(50%/2);
	height: 50px;
	background-color: #F8F8F7;
	line-height: 50px;
	font-size: 20px;
	text-align: center;
	color: #565656;
	display: block;
	text-align: center;
	
	transition: all 0.2s ease;
	float: left;
	margin-right: auto;
	margin-left: auto;
}
.type .lm50 {
	margin-left: 25%;
}
.type .tab_item:hover {
  opacity: 0.75;
}


/*タブ切り替えの中身のスタイル*/
.type .tab_content {
	clear: both;
	overflow: hidden;
	text-align: left;
	font-size: 16px;
	display: none;
	padding-top: 20px;
	padding-right: 40px;
	padding-bottom: 0;
	padding-left: 40px;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#summer:checked ~ #summer_content,
#winter:checked ~ #winter_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
	background-color: #7F6F68;
	color: #fff;
}
.type .tab_content_description p {
	font-size: 14px;
}
.type .tab_content_description dl {
	display: flex;
	clear: both;
	margin-bottom: 5px;
	overflow: hidden;
}
.type .tab_content_description dl dt {
	background-color: #EDEBEA;
	text-align: center;
	float: left;
	width: 24.5%;
	padding: 15px;
	margin-right: 0.5%;
}
.type .tab_content_description dl dd {
	padding: 15px;
	float: left;
	width: 75%;
	background-color: #F8F8F7;
}

/*タブ切り替え全体のスタイル*/
/*タブ1*/


/*タブ2*/
/*タブ切り替え全体のスタイル*/
.price .tabs2 {
	margin-top: 48px;
	padding-bottom: 40px;
	background-color: #fff;
	width: 100%;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/*タブのスタイル*/
.price .tab_item2 {
    width: calc(90%/6);
    height: 50px;
    background-color: #F8F8F7;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    color: #565656;
    display: block;
    text-align: center;
    transition: all 0.2s ease;
    float: left;
    margin-right: auto;
    margin-left: auto;
    border-left: 1px solid #eee;
}
.price .lm502 {
    margin-left: 5%;
}
.price .tab_item2:hover {
  opacity: 0.75;
}


/*タブ切り替えの中身のスタイル*/
.price .tab_content2 {
	clear: both;
	overflow: hidden;
	text-align: left;
	font-size: 16px;
	padding-top: 20px;
	padding-right: 40px;
	padding-bottom: 0;
	padding-left: 40px;
	display: none;
}

/*ラジオボタンを全て消す*/
input[name="tab_item2"] {
  display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#day:checked ~ #day_content2,
#hday:checked ~ #hday_content2,
#day2:checked ~ #day2_content2,
#hday2:checked ~ #hday2_content2,
#day3:checked ~ #day3_content2,
#hday3:checked ~ #hday3_content2 {
  display: block;
}



.price .tab_content_description2 p {
	font-size: 14px;
}
.price .tab_content_description2 dl {
	display: block;
	margin-bottom: 5px;
	overflow: hidden;
	float: left;
	width: 21%;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #999;
	border-bottom-color: #999;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999;
}
.price .tab_content_description2 .d_fst {
	float: left;
	width: 16%;
	text-align: center;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #999;
}
.price .tab_content_description2 dl dt {
	text-align: center;
	padding: 10px;
	margin-right: 0.5%;
	display: block;
	height: 80px;
	 display: flex;
  justify-content: center;
  align-items: center;
}
.price .tab_content_description2 dl dd {
	padding: 15px;
	display: block;
	text-align: center;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999;
}

/*選択されているタブのスタイルを変える*/
.tabs2 input:checked + .tab_item2 {
	background-color: #7F6F68;
	color: #fff;
    
}
/*タブ切り替え全体のスタイル*/
/*タブ2*/
.cancel {
	font-size: 14px;
	clear: both;
	background-color: #EDEBEA;
	padding-top: 30px;
	padding-right: 60px;
	padding-bottom: 20px;
	padding-left: 60px;
}
.cancel li {
	width: 50%;
	 display: flex;
  align-items: center;
}
.can_in .can_t {
	font-size: 18px;
	display: block;
	margin-bottom: 15px;
	clear: both;
}
.yoyaku1 {
	display: block;
	clear: both;
	margin-top: 48px;
	font-size: 22px;
}
.yoyaku2 {
	display: block;
	clear: both;
	margin-top: 48px;
	font-size: 50px;
	line-height: 50px;
}
.yoyaku3 {
	display: block;
	clear: both;
	margin-top: 32px;
	font-size: 22px;
}.yoyaku4 {
	display: block;
	clear: both;
	margin-top: 32px;
	font-size: 22px;
}
.yoyaku_w {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 64px;
	margin-top: 64px;
}
.cashless {
	width: 800px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 64px;
}
.cashless p {
	font-size: 18px;
	line-height: 2.2em;
}
.yoyaku_card {
	width: 400px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 24px;
	display: -webkit-box !important;/*--- Android郢晄じﾎ帷ｹｧ�ｦ郢ｧ�ｶ騾包ｽｨ ---*/
	display: -ms-flexbox !important;/*--- IE10 ---*/
	display: -webkit-flex !important;/*--- safari�ｽ�ｽPC�ｽ閾･逡� ---*/
	display: flex !important;
	-webkit-justify-content: center;/*--- safari�ｽ�ｽ�ｽ�ｽPC�ｽ�ｽ髢ｾ�･騾｡�ｽ ---*/
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.yoyaku_card li {
	width:48%;
	padding-right: 15px;
	padding-left: 15px;
}

.yoyaku_card2 {
	width: 500px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 24px;
	display: -webkit-box !important;/*--- Android郢晄じﾎ帷ｹｧ�ｦ郢ｧ�ｶ騾包ｽｨ ---*/
	display: -ms-flexbox !important;/*--- IE10 ---*/
	display: -webkit-flex !important;/*--- safari�ｽ�ｽPC�ｽ閾･逡� ---*/
	display: flex !important;
	-webkit-justify-content: center;/*--- safari�ｽ�ｽ�ｽ�ｽPC�ｽ�ｽ髢ｾ�･騾｡�ｽ ---*/
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.yoyaku_card2 li {
	width:33%;
	padding-right: 15px;
	padding-left: 15px;
}
.yoyaku_w li {
	width: 32%;
}
.sp_bm88 {
	padding-bottom: 44px;
}
.box1200_l {
	width: 720px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 54px;
	margin-bottom: 54px;
}
.box1200_l .tt h1 {
	font-size: 24px;
	margin-bottom: 5px;
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
}
.box1200_l .daysn {
	display: block;
	text-align: right;
	font-style: normal;
	margin-bottom: 44px;
}
.box1200_l .daysn i {
	font-style: normal;
}
.box1200_l .kiji_1 {
	font-size: 16px;
	line-height: 2em;
}
.button_all a {
	text-align: center;
	display: block;
	padding: 15px;
	border: 1px solid #999;
	margin-top: 44px;
}
.button_all a:hover {
	color: #FFF;
	background-color: #7F6F68;
	}
.kz_tt {
	text-align: center;
	margin-top: 64px;
	font-size: 36px;
	color: #7F6F68;
	letter-spacing: 0.3em;
	text-indent: 0.3em;
}
.sp_bot64 {
	margin-bottom: 64px !important;
}
.foods1 {
	position: relative;
	text-align: left;
	overflow: hidden;
}
.foods1 .foods1_im  {
	width: 65%;
	position: absolute;
	top: 0px;
	right: 0px;
}
.foods1 .foods1_in1 {
	width: 50%;
	float: left;
}
.foods1 .foods1_in1 h4 {
	font-size: 30px;
	padding-top: 112px;
	padding-bottom: 88px;
	padding-right: 32px;
	padding-left: 32px;
	width: 60%;
	line-height: 1.6em;
}
.foods1 .foods1_in1 .foods1_in2 {
	background-color: #E9E7E6;
	padding-top: 64px;
	padding-right: 32px;
	padding-bottom: 64px;
	padding-left: 32px;
}
.foods1 .foods1_in2 h5 {
	font-size: 18px;
	line-height: 2em;
	margin-bottom: 24px;
	width: 60%;
}
.foods1 .foods1_in2 h6 {
	font-size: 15px;
	line-height: 2em;
	width: 60%;
}

.foods2 {
	position: relative;
	text-align: left;
	overflow: hidden;
}
.foods2 .foods1_im  {
	width: 65%;
	position: absolute;
	top: 0px;
	left: 0px;
}

.foods2 .foods1_in1 {
	width: 50%;
	float: right;
}
.foods2 .foods1_in1 h4 {
	font-size: 30px;
	padding-top: 72px;
	padding-bottom: 72px;
	padding-right: 32px;
	margin-left: 38%;
	line-height: 1.6em;
}
.foods2 .foods1_in1 .foods1_in2 {
	background-color: #E9E7E6;
	padding-top: 64px;
	padding-right: 32px;
	padding-bottom: 64px;
	padding-left: 32px;
}
.foods2 .foods1_in2 h5 {
	font-size: 18px;
	line-height: 2em;
	margin-bottom: 24px;
	margin-left: 38%;
}
.foods2 .foods1_in2 h6 {
	font-size: 16px;
	line-height: 2em;
	margin-left: 38%;
}
.ftt_sub {
	font-size: 22px;
}

.foods3 {
	position: relative;
	text-align: left;
	overflow: hidden;
}
.foods3 .foods1_im  {
	width: 65%;
	position: absolute;
	top: 0px;
	right: 0px;
}
.foods3 .foods1_in1 {
	width: 50%;
	float: left;
}
.foods3 .foods1_in1 h4 {
	font-size: 30px;
	padding-top: 64px;
	padding-bottom: 64px;
	padding-right: 32px;
	padding-left: 32px;
	width: 60%;
	line-height: 1.6em;
}
.foods3 .foods1_in1 .foods1_in2 {
	background-color: #E9E7E6;
	padding-top: 54px;
	padding-right: 32px;
	padding-bottom: 54px;
	padding-left: 32px;
}
.foods3 .foods1_in2 h5 {
	font-size: 18px;
	line-height: 2em;
	margin-bottom: 24px;
	width: 60%;
}
.foods3 .foods1_in2 h6 {
	font-size: 15px;
	line-height: 2em;
	width: 60%;
}
.box_cefe {
	background-color: #F4F4F3;
	margin-bottom: 160px;
	padding-top: 64px;
	padding-bottom: 64px;
	font-size: 17px;
	line-height: 2em;
}

/*タブ3*/
/*タブ切り替え全体のスタイル*/
.price .tabs3 {
	margin-top: 48px;
	padding-bottom: 40px;
	background-color: #fff;
	width: 100%;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/*タブのスタイル*/
.price .tab_item3 {
	width: calc(80%/3);
	height: 50px;
	background-color: #F8F8F7;
	line-height: 50px;
	font-size: 20px;
	text-align: center;
	color: #565656;
	display: block;
	text-align: center;
	
	transition: all 0.2s ease;
	float: left;
	margin-right: auto;
	margin-left: auto;
}
.price .lm503 {
	margin-left: 10%;
}
.price .tab_item3:hover {
  opacity: 0.75;
}


/*タブ切り替えの中身のスタイル*/
.price .tab_content3 {
	clear: both;
	overflow: hidden;
	text-align: left;
	font-size: 16px;
	padding-top: 20px;
	padding-right: 40px;
	padding-bottom: 0;
	padding-left: 40px;
	display: none;
}

/*ラジオボタンを全て消す*/
input[name="tab_item3"] {
  display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#rental1:checked ~ #rental1_content3,
#rental2:checked ~ #rental2_content3,
#rental3:checked ~ #rental3_content3 {
  display: block;
}



.price .tab_content_description3 p {
	font-size: 14px;
}


/*選択されているタブのスタイルを変える*/
.tabs3 input:checked + .tab_item3 {
	background-color: #7F6F68;
	color: #fff;
}
/*タブ切り替え全体のスタイル*/
/*タブ3*/
.tabs3 table tr td {
	text-align: center;
	padding-top: 15px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 5px;
	border: 1px solid #999;
	vertical-align: middle !important; 
	
}
.tabs3 p {
	text-align: center;
	display: block;
}
.bk_gray {
	background-color: #E4E1E2;
}
.contents2s .tks_tt {
	margin-right: auto;
	margin-left: auto;
	display: inline-block;
	/* 追加 */
	font-size: 35px;
	margin-bottom: 30px;
	line-height: 1.8em;
	text-align: center;
	letter-spacing: 0.2em;
	text-indent: 0.2em;
}
.tks_tt2 {
	color: #000;
	margin-bottom: 56px;
	display: block;
	text-align: center;
	letter-spacing: 0.2em;
	text-indent: 0.2em;
}
.box_insta {
	max-width: 1040px;
	margin-right: auto;
	margin-left: auto;
	display: block;
	overflow: hidden;
	background-color: #f0f0f0;
}
.t_btn i img {
	width: 24px;
	padding-top: 18px;
	padding-bottom: 18px;
	padding-right: 5px;
}

#head_3 {
	position: absolute;
	left: 20px;
	top: 20px;
	z-index: 200;
	font-size: 26px;
	line-height: 26px;
	color: #FFF;
}
#head_3 a {
	font-size: 26px;
	line-height: 26px;
	color: #FFF;
}
#cart_b {
	position: fixed;
	bottom: 90px;
	right: 10px;
}
#cart_b a img {
	height: 120px;
	width: 120px;
}
#cart_b a:hover img {
		opacity: 0.9;
		filter: alpha(opacity=90);
		-ms-filter: "alpha( opacity=90 )";
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
		
}
.block_1050_n {
	text-align: center;
	display: block;
	padding-bottom: 10px;
	padding-top:10px;
	overflow: hidden;
	}
.sp_b72 {
	margin-bottom: 24px;
}
.p_mm {
    padding-top: 48px;
}