@charset "UTF-8";
/* PCページ */
@media screen and (min-width: 768px){
*{
	box-sizing: border-box;
}
html{
	scroll-padding-top: 118px;
}
body{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-weight: 500;
       margin: 0;
       padding: 0;
       font-size: 16px;
       color: #222;
	width: 100%;
	max-width: 1920px;
	display: none;
}
a{
       text-decoration: none;
       color: #222;
	font-weight: 500;
}
/* ヘッダー */
header{
	position: fixed;
	display: flex;
	width: 100%;
	top: 0;
	z-index: 9999999;
	background: #fff;
	justify-content: space-between;
	box-shadow: 0 0 2px #c1c1c1;
	padding: 5px 0 0;
	display: grid;
	grid-template-columns: auto 1fr;
}
/* タイトル */
.top1{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 15px 20px 0 30px;
}
.top1 img{
	width: 100%;
	max-width: 260px;
}
/* トップメニュー */
.top2-out{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	row-gap: 15px;
	padding: 10px 30px 0 0;
	width: 100%;
}
.top2-in1{
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 20px 2.5vw;
	width: 100%;
}
.top2-in1 div{
	display: flex;
	gap: 0 25px;
}
.top2-in1 div:first-child{
	font-size: 12px;
	line-height: 0.8em;
	display: flex;
}
.top2-in1 div span a{
	display: inline-block;
	color: #545454;
	position: relative;
	padding-left: 0.8em;
}
.top2-in1 div span a:hover{
	opacity: 0.8;
	transition: .3s;
}
.top2-in1 div span a::before{
	position: absolute;
	content: "";
	background: #8b837c;
	clip-path:polygon(0 0, 100% 50%, 0 100%);
	width: 5px;
	height: 7px;
	left: 0;
}
.top2-in1 p{
	margin: 0;
}
.top2-in1 div p:first-child{
	font-family: "Century Gothic" , Verdana,Arial , sans-serif;
	color: #8b837c;
	font-size: 29px;
	font-weight: bold;
}
.top2-in1 div:nth-child(2) p span:first-child{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.top2-in1 div:nth-child(2) p:first-child{
	text-align: center;
}
.top2-in1 div:nth-child(2) p span:first-child{
	display: block;
	font-size: 12px;
	font-weight: 500;
	line-height: 0.8em;
}
.top2-in1 div:nth-child(2) p span:nth-child(2){
	font-size: 20px;
	font-weight: bold;
}
.top2-in1-btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #8b837c;
	color: #fff;
	width: 180px;
	padding: 8px 10px;
	transition: all .3s;
	position: relative;
	z-index: 1;
}
.top2-in1-btn a::before{
	position: absolute;
	content: "";
	background: #68615c;
	width: 0%;
	height: 100%;
	opacity: 0;
	left: 0;
	overflow: hidden;
	transition: .3s;
	z-index: -1;
}
.top2-in1-btn a:hover::before{
	width: 100%;
	opacity: 1;
}
.top-menu{
	display: flex;
	margin: 0 -20px;
	position: relative;
}
.top-menu a{
	display: inline-block;
	padding: 0 1.5vw;
	font-size: min(1.5vw, 16px);
}
.top-menu label{
	display: flex;
	position: relative;
	align-items: center;
}
.top-menu label a{
	display: flex;
	align-items: center;
	padding-bottom: 12px;
}
.top-menu label:not(label[for="menu-input1"])::after{
	position: absolute;
	content: "";
	background: #d8d8d8;
	height: 1rem;
	width: 1px;
	left: 0;
	top: calc(50% - 6px);
	transform: translateY(-50%);
}
.top-menu label a::before,.top-menu ul li:not(.top-menu ul li ul li)::before{
	position: absolute;
	content: "";
	background: #8b837c;
	width: 0;
	height: 2px;
	left: 50%;
	bottom: 9px;
	transform: translateX(-50%);
	transition: 0.5s;
	display: inline-block;
}
.top-menu label a:hover::before,.top-menu ul li:not(.top-menu ul li ul li):hover::before{
	position: absolute;
	content: "";
	background: #8b837c;
	width: calc(100% - 3vw);
	height: 2px;
	bottom: 9px;
}
.top-menu ul{
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}
.top-menu ul li ul{
	position: absolute;
	overflow: hidden;
	height: 0;
	opacity: 0;	
	border: 1px solid #e7e7e7;
}
.top-menu ul li:hover > ul{
	height: auto;
	opacity: 1;
	background: #fff;
	white-space: nowrap;
}
.top-menu ul li ul li a{
	display: flex;
	padding: 6px 15px;
}
.top-menu ul li ul li + li{
	border-top: 1px solid #e7e7e7;
}
.top-menu ul li ul li{
	transition: 0.8s;
}
.top-menu ul li ul li:hover{
	background: #f2f2f2;
}
/* メインページ */
.main-out{
	padding-top: 50px;
	background: #fff;
}
.haikei{
	background: #f9f8f8;
	transition: opacity 1.4s, transform 1s;
	transform: translateY(20px);
	opacity: 0;
}
.haikei.run{
	opacity: 1;
	transform: translateY(0);
}
.main-title{
	display: flex;
	padding: 0 20px 30px;
	margin: 0 auto;
	width: 100%;
	max-width: 1380px;
	justify-content: center;
	text-align: center;
	color: #8b837c;
	transition: opacity 1.4s, transform 1s;
	opacity: 0;
	transform: translateY(20px);
}
.main-title.run{
	opacity: 1;
	transform: translateY(0);
}
.main-title p{
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 20px;
}
.main-title span{
	display: block;
	font-family: "Century Gothic" , Verdana,Arial , sans-serif;
	font-size: 45px;
}
/* ボタン */
.main-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 1.4s, transform 1s;
	opacity: 0;
	transform: translateY(20px);
}
.main-btn.run{
	opacity: 1;
	transform: translateY(0);
}
.main-btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	background: #8b837c;
	border: 1px solid #8b837c;
	border-radius: 4px;
	color: #fff;
	padding: 15px 10px;
	position: relative;
	z-index: 1;
}
.main-btn a::before{
	position: absolute;
	content: "";
	background: #fff;
	border-radius: 4px;
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	overflow: hidden;
	opacity: 0;
	transition: .3s;
}
.main-btn a:hover::before{
	width: 100%;
	opacity: 1;
}
.main-btn a::after{
	position: absolute;
	content: "";
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: skew(45deg);
	width: 25px;
	height: 4px;
	right: 10px;
	transition: .3s;
}
.main-btn a:hover{
	color:#8b837c;
	transition: .3s;
}
.main-btn a:hover::after{
	right: -0.8em;
	border-color: #8b837c;
}
/* ページタイトル */
.page-title{
	display: flex;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	background: rgba(34, 34, 34, 0.3);
}
.page-title::after{
	position: absolute;
	content: "";
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.page-title p{
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 10px;
	text-align: center;
	padding: 6.5vw 4vw;
	color: #fff;
}
.page-title span:first-child{
	font-family: "Century Gothic" , Verdana,Arial , sans-serif;
	font-size: 45px;
}
.page-title span:last-child{
	font-size: 20px;
}
/* ページトップテキスト */
.page-text{
	padding: 3vw 4vw;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	text-align: center;
	width: 100%;
	max-width: 1920px;
	position: relative;
}
.page-text p{
	display: grid;
	justify-items: center;
	row-gap: 15px;
	text-align: center;
}
.page-text span:not(.guest1 span){
	margin: 0;
	display: grid;
	transition: opacity 1.4s, transform 1s;
	opacity: 0;
	transform: translateY(20px);
	text-align: left;
}
.page-text span:not(.guest1 span).run{
	opacity: 1;
	transform: translateY(0);
}
.page-text span:not(.guest1 span){
	display: block;
}
.page-text span:not(.guest1 span):nth-child(2){
	transition-delay: 0.3s;
}
.page-text span:not(.guest1 span):nth-child(3){
	transition-delay: 0.6s;
}
/* サブタイトル */
.sub-title{
	font-size: 28px;
	font-weight: bold;
	color: #545454;
	display: grid;
	position: relative;
	padding-bottom: 10px;
}
.sub-title span{
	font-family: "Century Gothic" , Verdana,Arial , sans-serif;
	color: #8b837c;
	font-size: 22px;
}
/* サブタイトル1 */
.sub-title1{
	margin: 0 auto;
	display: inline-grid;
	justify-content: center;
	font-size: 23px;
	position: relative;
	padding-bottom: 5px;
	transition: opacity 1.4s, transform 1s;
	opacity: 0;
	transform: translateY(20px);
}
.sub-title1.run{
	opacity: 1;
	transform: translateY(0);
}
.sub-title1::after{
	position: absolute;
	content: "";
	background: linear-gradient(90deg, #8b837c 0, #8b837c 50%, #d8d8d8 50%, #d8d8d8 100%);
	width: 100%;
	height: 1px;
	bottom: 0;
}
/* 客室情報 */
.info1{
	display: grid;
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	transition: opacity 1.4s, transform 1s;
	opacity: 0;
	transform: translateY(20px);
}
.info1.run{
	transform: translateY(0);
	opacity: 1;
}
.info1 li{
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 3fr;
	padding: 30px 10px;
	gap: 0 2vw;
}
.info1 li span:not(.info1 span span):first-child{
	font-weight: bold;
	color: #545454;
	min-width: 14em;
}
.info1 li + li{
	border-top: 1px dotted #d8d8d8;
}
.info1 span span{
	display: block;
}
/* フッター */
footer{
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding-top: 80px;
}
/* アネックス住所 */
.footer1{
	width: 100%;
	max-width: 1100px;
	display: grid;
	justify-items: center;
	margin: 0 auto;
	align-items: center;
	padding: 0 4vw;
}
.footer1 img{
	width: 100%;
	max-width: 300px;
}
.footer1 p{
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, auto);
	column-gap: 15px;
	padding-top: 10px;
}
/* 予約ボタン */
.footer2{
	display: grid;
	grid-template-columns: minmax(300px, auto) 2fr;
	justify-content: space-between;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 30px 4vw;
	gap: 0 10px;
}
.footer2 p{
	margin: 0;
}
.footer2 p:first-child{
	line-height: 1.8em;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}
.footer2 p span:first-child{
	display: block;
}
.footer2 p span:nth-last-child(-n+2){
	font-family: "Century Gothic" , Verdana,Arial , sans-serif;
	font-weight: bold;
	color: #545454;
}
.footer2 p span:nth-child(2){
	font-size: 21px;
}
.footer2 p span:last-child{
	font-size: 36px;
}
.footer2-in1{
	display: grid;
	grid-template-columns: repeat(2, minmax(250px, 310px));
	justify-content: start;
	gap: 0 30px;
}
.footer2-in1 p{
	display: grid;
	justify-items: center;
	align-items: center;
	border-radius: 5px;
	border:1px solid #8b837c;
	position: relative;
	width: 100%;
}
.footer2-in1 p a{
	display: grid;
	justify-items: center;
	align-items: center;
	padding: 15px 10px;
	z-index: 1;
	width: 100%;
}
.footer2-in1 p:first-child a{
	color: #fff;
}
.footer2-in1 p:last-child a{
	color: #8b837c;
}
.footer2-in1 p:last-child a:hover{
	color: #fff;
	transition: .3s;
}
.footer2-in1 p:first-child{
	background: #8b837c;
}
.footer2-in1 p::before{
	position: absolute;
	content: "";
	background: #68615c;
	width: 0;
	height: 100%;
	left: 0;
	opacity: 0;
	overflow: hidden;
	transition: .3s;
}
.footer2-in1 p:hover::before{
	opacity: 1;
	width: 100%;
}
.footer2-in1 p a::before{
	position: absolute;
	content: "";
	width: 24px;
	height: 1px;
	right: 10px;
	transition: .3s;
}
.footer2-in1 p:first-child a::before,.footer2-in1 p:first-child a::after{
	background: #fff;
}
.footer2-in1 p:last-child a::before,.footer2-in1 p:last-child a::after{
	background: #8b837c;
}
.footer2-in1 p a::after{
	position: absolute;
	content: "";
	width: 6px;
	height: 1px;
	transform: rotate(45deg) translateY(-50%);
	right: 10px;
	top: calc(50% - 2px);
	transition: .3s;
}
.footer2-in1 p a:hover::before{
	right: -12px;
	background: linear-gradient(90deg, #fff 0%, #fff 50%, #63615c 50%, #63615c 100%);
}
.footer2-in1 p a:hover::after{
	right: -12px;
	background: #63615c;
}
/* カテゴリ */
.footer3{
	width: 100%;
	background: #8b837c;
	padding: 0 4vw;
	margin-top: 10px;
}
.footer3 ul{
	list-style: none;
	padding: 5px 4vw;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1180px;
}
.footer3 ul li{
	display: grid;
	justify-items: center;
	align-items: center;
	position: relative;
	width: fit-content;
}
.footer3 ul li + li::before{
	position: absolute;
	content: "";
	background: #fff;
	height: 1em;
	width: 1px;
	left: 0;
}
.footer3 ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: #fff;
	width: 100%;
	padding: 5px 1vw;
}
.footer3 ul li a:hover{
	opacity: 0.8;
	transition: .3s;
}
/* コピーライト */
.footer4{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 4vw;
	margin: 0 auto;
	width: 100%;
	color: #fff;
	font-size: 13px;
	column-gap: 10px;
	position: relative;
}
.footer4::before{
	position: absolute;
	content: "";
	border-top: 1px solid #fff;
	width: 100vw;
	left: 50%;
	top: 0;
	margin-left: calc(-50vw - 10px);
}
.footer4 a{
	color: #fff;
}
/* トップへ戻るボタン */
.pagetop{
	color: #fff;
	background-color: rgba(0,0,0,0.3);
	text-decoration: none;
	display: none;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	font-size: 1.0rem;
	width: 4.3rem;
	height:4.3rem;
	line-height: 5.3rem;
	border-radius: 4.3rem;
	text-align: center;
	cursor: pointer;
	font-family: "Century Gothic" , Verdana,Arial , sans-serif;
	font-weight: 600;
	z-index: 9999999;
}
.pagetop::before{
	content: "";
	margin: auto;
       position: absolute;
       top: 17px;
	left: 28px;
	width: 8px;
	height: 8px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(-45deg);
}
.pagetop:hover{
	color: #fff !important;
	background-color: rgba(0,0,0,0.6);
	text-decoration: none;
	transition: 0.3s;
}
/* 非表示 */
input,.sp-f,.sp-q{
	display: none;
}
@media screen and (min-width: 1024px) and (max-width: 1920px){
label[for="menu-input8"]{
	display: none;
}
}
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px){
body{
	margin: 0;
       padding: 0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-weight: 500;
       font-size: 16px;
       color: #222;
}
header{
	position: fixed;
	top: 0;
	width: 100%;
	padding: 0;
	margin: 0;
	z-index: 999;
}
.top1{
	margin: 0;
	padding: 15px 20px;
}
.top1 a{
	display: block;
	width: 100%;
	max-width: 235px;
}
.top1-in1{
	display: flex;
	flex-direction: column;
}
.top1 img{
	width: 100%;
	max-width: 235px;
}
.top2-out{
	display: flex;
	flex-direction: column;
	opacity: 0;
	overflow: hidden;
	height: 0;
	position: absolute;
	top: 0;
	margin-top: -20px;
	width: 100%;
	transition: 0.3s ease-in-out;
}
.top2 input:checked ~ .top2-out{
	opacity: 1;
	height: 100vh;
	background: rgba(255,255,255,0.8);
}
label[for="button-toggle"]{
	position: absolute;
	width: 44px;
	height: 46px;
	top: 18px;
	right: 20px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	margin: 0;
	pading: 0;
	z-index: 99999999;
}
label[for="button-toggle"] span{
	position: absolute;
	height: 1px;
	width: 33px;
	left: 4px;
	background: #222;
	border-radius: 4px;
}
label[for="button-toggle"],label[for="button-toggle"] span{
	display: inline-block;
	transition: all .5s;
	box-sizing: border-box;
}
label[for="button-toggle"] span:nth-child(1){
	top: 10px;
}
label[for="button-toggle"] span:nth-child(2){
	top: 22px;
}
label[for="button-toggle"] span:nth-child(3){
	bottom: 11px;
}
.top2 input:checked ~ label span:nth-child(1){
       -webkit-transform: translateY(12px) rotate(-45deg);
	transform: translateY(12px) rotate(-45deg);
}
.top2 input:checked ~ label span:nth-of-type(2) {
	opacity: 0;
}
.top2 input:checked ~ label span:nth-of-type(3) {
	-webkit-transform: translateY(-12px) rotate(45deg);
	transform: translateY(-12px) rotate(45deg);
}
.top2-in1{
	order: 2;
	display: flex;
	justify-content: center;
	margin: -15px auto 0;
	width: 100%;
	background: #fff;
	padding: 20px 0;
}
.top2-in1 div:first-child{
	display: none;
}
.top2-in1-btn a{
	width: 200px;
}
.top2-in1 div p:first-child{
	font-family: 'Arial' , 'Hiragino Sans' , 'MS Gothic' , sans-serif;
	line-height: 1.4em;
}
.top2-in1 div p span:first-child{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.top3{
	order: 1;
}
.top2-out{
	position: absolute;
	opacity: 0;
	height: 0;
	overflow: hidden;
	top: 93px;
	left: 0;
	padding: 0;
	width: 100%;
}
.top2 input:checked ~ .top2-out{
	opacity: 1;
	height: 100vh;
	background: rgba(255,255,255,0.8);
	transition: 0.5s;
}
.top3{
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.top-menu{
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
	width: 100%;
	background: #fff;
}
.top-menu label:not(.top-menu ul li label){
	border-bottom: 1px solid #d8d8d8;
}
label[for="menu-input3"]{
	border-top: 1px solid #d8d8d8;
}
.top-menu label{
	position: relative;
}
.top-menu label a{
	display: block;
	position: absolute;
	all: unset;
	padding: 10px 20px;
	cursor: pointer;
}
.top-menu label a:not(.top-menu ul li label a){
	display: block;
	width: 100%;
}
.top-menu label a:hover::before,.top-menu ul li:not(.top-menu ul li ul li):hover::before{
	content: initial;
}
.top-menu ul{
	all: unset;
}
.top-menu ul li ul{
	all: unset;
}
.top-menu ul li:hover > ul{
	all: unset;
}
.top-menu ul{
	list-style: none;
	padding: 0;
	margin: 0;
	all: unset;
}
.top-menu ul li{
	all: unset;
}
.top-menu-in ul li ul li a{
	all: unset;
	border: none;
	opacity: 0;
	overflow: hidden;
	height: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	transition: 0.8s;
	padding: 0 2.5em;
	cursor: pointer;
}
label[for="menu-input2"]{
	cursor: pointer;
	position: relative;
}
label[for="menu-input2"]::before{
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	border-left: 1px solid #222;
	border-bottom: 1px solid #222;
	right: 30px;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all .5s;
}
.top-menu-in input:checked ~ label[for="menu-input2"]::before{
	transform: rotate(135deg);
}
.top-menu-in input:checked ~ ul li a{
	opacity: 1;
	height: auto;
	padding: 10px 2.5em;
	position: relative;
}
.top-menu-in input:checked ~ ul li a:not(.top-menu-in ul li ul li:last-child a)::after{
	position: absolute;
	content: "";
	border-bottom: 1px dotted #d8d8d8;
	width: calc(100% - 2em);
	height: 1px;
	left: 1em;
	bottom: 0;
}
.top-menu ul li ul li + li{
	border: none;
	all: unset;
}
.top-menu label:not(label[for="menu-input1"])::after{
	all: unset;
	border: none;
}
/* フッター */
footer{
	position:relative;
	margin-top: 80px;
}
footer::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background: #d8d8d8;
	top: 0;
}
/* 予約ボタン */
.footer2{
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
	row-gap: 20px;
}
.footer2-in1{
	display: grid;
	grid-template-columns: repeat(2, minmax(auto, 310px));
	justify-content: center;
}
/* 非表示 */
input{
	display: none;
}
label[for="menu-input7"]{
	display: block !important;
}
}
/*スマホページ */
@media screen and (max-width: 768px){
*{
	box-sizing: border-box;
}
html{
	scroll-padding-top: 50px;
}
body{
	margin: 0;
	padding: 0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-weight: 500;
	font-size: 15px;
	color: #222;
	line-height: 1.8em;
	display: none;
}
a{
	-webkit-tap-highlight-color: transparent;
	text-decoration: none;
	color: #222;
}
.button-toggle{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
header{
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
	padding: 0;
	margin: 0;
	background: #fff;
}
.top1{
	display: flex;
	align-items: center;
	margin: 0;
	padding: 15px 20px;
	box-shadow: 0 0 2px #c1c1c1;
}
.top1 a{
	display:block;
}
.top1-in1{
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 200px;
}
.top1 img{
	width: 100%;
	max-width: 200px;
}
.top2-out{
	display: flex;
	flex-direction: column;
	opacity: 0;
	overflow: hidden;
	height: 0;
	top: 70px;
	position: absolute;
	width: 100%;
	background: rgba(255,255,255,0.8);
	padding: 0;
	transition: all .5s;
	-webkit-tap-highlight-color: transparent;
}
.top2 input:checked ~ .top2-out{
	opacity: 1;
	height: 100vh;
}
label[for="button-toggle"]{
	position: absolute;
	width: 30px;
	height: 30px;
	top: 20px;
	right: 20px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
	z-index: 9999;
	-webkit-tap-highlight-color: transparent;
}
label[for="button-toggle"] span{
	position: absolute;
	height: 1px;
	width: 22px;
	left: 4px;
	background: #222;
	border-radius: 4px;
}
label[for="button-toggle"],label[for="button-toggle"] span{
	display: inline-block;
	transition: all .5s;
	box-sizing: border-box;
}
label[for="button-toggle"] span:nth-child(1){
	top: 5px;
}
label[for="button-toggle"] span:nth-child(2){
	top: 15px;
}
label[for="button-toggle"] span:nth-child(3){
	bottom: 4px;
}
.top2 input:checked ~ label span:nth-child(1){
       -webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
.top2 input:checked ~ label span:nth-of-type(2) {
	opacity: 0;
}
.top2 input:checked ~ label span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}
.top3{
	display: flex;
	width: 100%;
	justify-content: space-between;
	order: 1;
}
.top-menu{
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
	width: 100%;
	background: #fff;
}
.top-menu label{
	display: flex;

}
.top-menu label a:not(label[for="menu-input2"] a){
	display: block;
	width: 100%;
	padding: 10px 1em;
	border-bottom: 1px solid #d8d8d8;
}
label[for="menu-input2"]{
	cursor: pointer;
	padding: 10px 1em;
	position: relative;
}
label[for="menu-input2"]::after{
	position: absolute;
	content: "";
	border-left: 1px solid #222;
	border-bottom: 1px solid #222;
	transform: translateY(-50%) rotate(-45deg);
	width: 5px;
	height: 5px;
	right: 25px;
	top: 50%;
	transition: all .5s;
}
.top2 input:checked ~ label[for="menu-input2"]::after{
	transform: rotate(-225deg);
}
label[for="menu-input3"] a{
	border-top: 1px solid #d8d8d8;
}
.top-menu ul:not(.top-menu ul li ul){
	list-style: none;
	padding: 0;
	margin: 0;
}
.top-menu ul li ul{
	padding: 0;
}
.top-menu ul li ul li{
	opacity: 0;
	overflow: hidden;
	height: 0;
	margin: 0;
	text-indent: 2em;
}
.top-menu ul li ul li a{
	display: block;
	width: 100%;
	position: relative;
	transition: all .5s;
}
.top-menu ul li ul li a:not(.top-menu ul li ul li:last-child a)::after{
	position: absolute;
	content: "";
	border-bottom: 1px dotted #d8d8d8;
	bottom: 0;
	left: 1em;
	width: calc(100% - 2em);
}
.top-menu-in input:checked ~ ul li{
	opacity: 1;
	height: auto;
	display: flex;
}
.top-menu-in input:checked ~ ul li a{
	display: block;
	padding: 10px 0;
	text-indent: 2em;
}
/* 電話番号 */
.top2-in1{
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	align-items: center;
	padding: 15px 20px;
	row-gap: 10px;
	background: #fff;
	width: 100%;
	order: 2;
}
.top2-in1 p{
	font-size: 23px;
	font-family: 'Arial' , 'Hiragino Sans' , 'MS Gothic' , sans-serif;
	color: #a27468;
	font-weight: bold;
	margin: 0;
}
.top2-in1 span{
	font-size: 15px;
}
/* メインページ */
.main-title{
	margin: 0 auto;
	padding: 50px 20px 20px;
	display: flex;
	justify-content: center;
}
.main-title p{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	color: #8b837c;
	font-size: 15px;
}
.main-title span{
	font-family: 'Arial' , 'Hiragino Sans' , 'MS Gothic' , sans-serif;
	font-size: 22px;
}
/* 背景 */
.haikei{
	background: #f9f8f8;
	z-index: -99999;
}
/* メインボタン */
.main-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}
.main-btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #8b837c;
	color: #fff;
	width: 100%;
	max-width: 230px;
	border-radius: 4px;
	padding: 10px;
	position: relative;
}
.main-btn a::after{
	position: absolute;
	content: "";
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: skew(45deg);
	width: 20px;
	height: 4px;
	right: 10px;
}
.main-btn a:hover{
	opacity: 0.8;
	transition: .3s;
}
/* ページタイトル */
.page-title{
	display: flex;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	background: rgba(34, 34, 34, 0.3);
}
.page-title::after{
	position: absolute;
	content: "";
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.page-title p{
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 10px;
	text-align: center;
	padding: 9vw 20px;
	color: #fff;
	line-height: 1.2em;
}
.page-title span:first-child{
	font-family: 'Arial' , 'Hiragino Sans' , 'MS Gothic' , sans-serif;
	font-size: 25px;
}
.page-title span:last-child{
	font-size: 15px;
}
/* ページトップテキスト */
.page-text{
	padding: 40px 20px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
}
.page-text p{
	margin: 0;
	display: block;
	text-align: left;
}
.page-text span:not(.guest1 span){
	display: block;
}
/* サブタイトル */
.sub-title{
	font-size: 19px;
	font-weight: bold;
	color: #545454;
	display: grid;
	position: relative;
	line-height: 1.2em;
	padding-bottom: 5px;
}
.sub-title span{
	font-family: 'Arial' , 'Hiragino Sans' , 'MS Gothic' , sans-serif;
	color: #8b837c;
	font-size: 14px;
}
.sub-title1{
	font-size: 18px;
	display: inline-grid;
	position: relative;
	line-height: 1.2em;
	padding-bottom: 5px;
}
.sub-title1::after{
	position: absolute;
	content: "";
	background: linear-gradient(90deg, #8b837c 0%, #8b837c 50%, #d8d8d8 50%, #d8d8d8 100%);
	width: 100%;
	height: 1px;
	bottom: 0;
}
/* インフォメーション */
.info1{
	list-style: none;
	padding: 0;
	margin: -10px 0 0;
	display: grid;
	justify-content: start;
}
.info1 li{
	display: grid;
	padding: 10px 0;
}
.info1 li span:not(.info1 span span):first-child{
	font-weight: bold;
	color: #545454;
}
.info1 li span span{
	display: block;
}
.info1 li + li{
	border-top: 1px dotted #d8d8d8;
}
/* フッター */
footer{
	padding: 0 0 72px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	border-top: 1px solid #d8d8d8;
}
.footer1{
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
	margin: 0 auto;
	padding: 50px 20px 0;
	text-align: center;
}
.footer1 img{
	width: 100%;
	max-width: 200px;
}
.footer1 p{
	padding: 10px 0 20px;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	line-height: 1.4em;
}
/* 予約ボタン */
.footer2{
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
	padding: 0 20px 30px;
	margin: 0 auto;
}
.footer2 p{
	margin: 0;
	text-align: center;
}
.footer2 p span:first-child{
	display: block;
	font-size: 14px;
}
.footer2 p span:nth-last-child(-n+2){
	font-family: 'Arial' , 'Hiragino Sans' , 'MS Gothic' , sans-serif;
	font-weight: bold;
	color: #545454;
}
.footer2 p span:last-child{
	font-size: 30px;
}
/*　フッターカテゴリ */
.footer3{
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: #8b837c;
}
.footer3 ul{
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	margin: 0 auto;
}
.footer3 ul li{
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer3 ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	color: #fff;
	font-size: 14px;
	padding: 12px 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer3 ul li:last-child{
	grid-column: 1 / 3;
}
.footer3 ul li:not(.footer3 ul li:last-child):nth-child(odd){
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.footer3 ul li a:hover{
	opacity: 0.8;
	transition: .3s;
}
.footer3 img{
	width: 100%;
	max-width: 18px;
	margin-right: 5px;
}
/* コピーライト */
.footer4{
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 13px;
	color: #fff;
	line-height: 1.6em;
	padding: 10px 20px;
}
.footer4 a{
	color: #fff;
	text-decoration: underline;
}
.footer4 a:hover{
	opacity: 0.8;
	transition: .3s;
}
/* スマホ固定フッター */
.sp-f{
	position: fixed;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	width: 100%;
	background: #68615c;
	padding: 0;
	z-index: 9999999;
}
.sp-f ul{
	display: flex;
	justify-content: space-between;
	list-style: none;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border-top: 1px solid #fff;
}
.sp-f ul li{
	width: calc(100% / 3);
}
.sp-f ul li a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 11px;
	row-gap: 3px;
	padding: 15px 0 10px;
}
.sp-f ul li + li{
	border-left: 1px solid #fff;
}
.sp-f img{
	width: 100%;
	max-width: 17px;
}
.sp-f ul li a:hover{
	opacity: 0.8;
}
/* トップへ戻るボタン */
.pagetop{
	color: #fff;
	background-color: rgba(0,0,0,0.3);
	text-decoration: none;
	display: none;
	position: fixed;
	bottom: 5.5rem;
	right: 1rem;
	font-size: 1.0rem;
	width: 4.3rem;
	height: 4.3rem;
	line-height: 5.3rem;
	border-radius: 4.3rem;
	text-align: center;
	cursor: pointer;
	font-family: 'Arial' , 'Hiragino Sans' , 'MS Gothic' , sans-serif;
	font-weight: bold;
	z-index: 10000;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.pagetop::before{
	content: "";
	margin: auto;
       position: absolute;
       top: 17px;
	left: 28px;
	width: 8px;
	height: 8px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(-45deg);
}
.pagetop:hover{
	color: #fff !important;
	background-color: rgba(0,0,0,0.6);
	text-decoration: none;
	transition: 0.3s;
}
/* 非表示 */
input,.top2-in1,.footer2-in1{
	display: none;
}
}
