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

/*

使用フォント

font-family: "avenir-lt-pro", sans-serif;

Light : 200
Book: 300
Roman: 400
Medium: 500
Heavy: 700
Black: 800


Alternate Gothic ATF 
font-family: "alternate-gothic-atf", sans-serif;
Light: 100
Semilight: 200
Book: 300
Regular: 400
Medium: 500
Demi: 600
Bold: 700
Heavy: 800
Black: 900

Alternate Gothic ATF Thin
font-family: "alternate-gothic-atf-thin", sans-serif;
font-weight: 100;

*/

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

/*マージン*/

.mt10{
	margin-top:10px;
}

.mt20{
	margin-top:20px;
}

.mt30{
	margin-top:30px;
}

.mt40{
	margin-top:40px;
}

.mt50{
	margin-top:50px;
}

.mt60{
	margin-top:60px;
}

.mt70{
	margin-top:70px;
}

.mt80{
	margin-top:80px;
}

.mt90{
	margin-top:90px;
}

.mt100{
	margin-top:100px;
}

.mb10{
	margin-bottom:10px;
}

.mb20{
	margin-bottom:20px;
}

.mb30{
	margin-bottom:30px;
}

.mb40{
	margin-bottom:40px;
}

.mb50{
	margin-bottom:50px;
}

.mb60{
	margin-bottom:60px;
}

.mb70{
	margin-bottom:70px;
}

.mb80{
	margin-bottom:80px;
}

.mb90{
	margin-bottom:90px;
}

.mb100{
	margin-bottom:100px;
}

/*マージン*/

/*IMG*/

.img_ma{
	margin-right:auto;
	margin-left:auto;
	display:block;
	max-width: 100%;
}

img{
	max-width: 100%;
	height:auto;
}

/*IMG*/

a{
	transition:.2s;
}

body{
	font-family: "avenir-lt-pro", sans-serif;
	font-size:18px;
	line-height:1.7;
	font-weight: 300;
}

.fs50{
	font-size: 50px;
	line-height: 1.2;
	font-weight: 800;
}

@media screen and (max-width:600px) {
	body{
		font-size: 14px;
	}
	
	.fs50{
		font-size: 30px;
	}
}

/*ハンバーガー*/

header{
	width:100%;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top:0;
	left: 0;
	z-index: 10;
	background: #fff;
	transition: .3s;
	transform: translateY(-100%);
}

.header_on{
	transform: translateY(0);
}

.h_logo{
	width:290px;
	position: absolute;
	top:50%;
	left: 20px;
	transform: translateY(-50%);
}

.h_nav{
	display: flex;
	padding-top: 10px;
}

.h_nav > li{
	margin:0 20px;
	display: flex;
	align-items: center;
	position: relative;
}

.h_nav > li a{
	color:#333;
	text-decoration: none;
}

.h_nav > li a::before{
	content:"";
	display: block;
	height: 1px;
	width:100%;
	position: absolute;
	bottom:4px;
	left: 0;
	background: #3366cc;
	transition: .2s;
	transform: scaleX(0)
}

.h_nav > li a:hover::before{
	transform: scaleX(1)
}

.h_nav > li a img{
	height: 16px;
}

.h_nav_lang{
	padding-bottom: 2px;
}

.ham_btn{
	width:70px;
	position: absolute;
	top:50%;
	right: 20px;
	transform: translateY(-50%);
	cursor: pointer;
}

header img{
	display: block;
}

@media screen and (max-width:1550px) {
	header{
		justify-content: flex-start;
		padding-left: 20px;
	}
	
	.h_logo{
		position: static;
		transform: none;
		margin-right: 20px;
	}
}

@media screen and (max-width:1300px) {
	header{
		height: 70px;
	}
	
	.h_logo{
		width:220px;
	}
	
	.h_nav{
		padding-top: 6px;
	}
	
	.h_nav > li{
		margin:0 15px;
	}
	
	.h_nav > li a{
		font-size: 16px;
	}
	
	.h_nav_lang{
		padding-bottom: 4px;
	}
	
	.ham_btn{
		width:50px;
	}
}

@media screen and (max-width:1100px) {
	.h_nav{
		display: none;
	}
}

.ham_bg{
	position: fixed;
	top:0;
	left:0;
	z-index: 40;
	background:rgba(51,102,204,0.98);
	width:100%;
	height: 100dvh;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: .3s;
}

.ham_open .ham_bg{
	opacity: 1;
	pointer-events: auto;
}

.ham_open header{
	background: #fff !important;
}

.ham_open .h_logo a img:nth-of-type(1){
	display: block !important;
}

.ham_open .h_logo a img:nth-of-type(2){
	display: none !important;
}

.ham_wrap{
	position: fixed;
	right:0;
	top:0;
	z-index: 50;
	width:100%;
	height: 100dvh;
	padding-top:0;
	transition: .4s;
	cursor: default;
	opacity: 0;
	pointer-events: none;
}

.ham_open .ham_wrap{
	opacity: 1;
}

.ham_open .ham_box{
	opacity: 1;
	pointer-events: auto;
}

.ham_box{
	width:100%;
	height: 100%;
	overflow-y: auto;
	padding:80px 10px 60px;
}

.ham_box_wrap{
	max-width: 1220px;
	margin:0 auto;
}

.ham_logo_wrap{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.ham_logo_wrap > a{
	display: block;
	width:300px;
	margin-right: 60px;
}

.ham_logo_wrap > div{
	margin:20px 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.ham_logo_wrap > div > a{
	display: block;
	margin-right: 36px;
}

.ham_logo_wrap > div > a:hover{
	opacity: 0.6;
}

.ham_logo_wrap > div > a img{
	display: block;
	height: 18px;
}

.ham_nav{
	display: flex;
	flex-wrap: wrap;
}

.ham_nav > li{
	width:32%;
	margin-bottom: 40px;
	padding-right: 20px;
	margin-right: 2%;
}

.ham_nav > li:nth-of-type(3n){
	margin-right: 0;
}

.ham_nav > li a{
	display: flex;
	align-items: flex-start;
	color:#fff;
	text-decoration: none;
}

.ham_nav > li a:hover{
	opacity: 0.6;
}

.ham_nav > li a img{
	width:calc( 100% - 125px );
}

.ham_nav > li a p{
	width:125px;
	padding-left: 15px;
}

.ham_box .ft_con{
	border:1px solid #fff;
	margin-top: 50px;
	background: #fff;
}

.ham_box .ft_con_h{
	background: #3366cc;
	height: 110px;
}

.ham_box .ft_con_list{
	border:0;
}

.ham_box .ft_con_list li{
	height: 50px;
}

.ham_box .ft_con_list a{
	color:#333;
	font-size: 18px;
	line-height: 30px;
}

.ham_box .ft_con_list a p{
	padding-left: 40px;
}

.ham_box .ft_con_list .ft_con_tel p{
	background-image: url("images/ham_tel.webp");
}

.ham_box .ft_con_list .ft_con_mail p{
	background-image: url("images/ham_mail.webp");
}

.ham_ft{
	display: block;
	width:100%;
	margin-top: 50px;
}

.ham_close{
	width:60px;
	position: absolute;
	top:30px;
	right: 30px;
	z-index: 5;
	cursor: pointer;
}

.ham_open .ham_close{
	pointer-events: auto;
}

@media screen and (max-width:900px) {
	.ham_box .ft_con_h{
		height: 80px;
	}
}

@media screen and (max-width:800px) {
	.ham_box .ft_con_h{
		height: 50px;
		font-size: 18px;
		padding:0 15px;
		justify-content: flex-start;
	}
	
	.ham_box .ft_con_list{
		padding:15px;
		margin:0;
	}
	
	.ham_box .ft_con_list li{
		height: auto;
	}
	
	.ham_box .ft_con_list > li + li{
		padding-top: 0;
		border-top: 0;
	}
	
	.ham_box .ft_con_list a{
		font-size: 16px;
		line-height: 24px;
	}
	
	.ham_box .ft_con_list a p{
		padding-left: 32px;
	}
	
	.ham_box{
		padding:20px 10px 40px;
	}
	
	.ham_logo_wrap{
		margin-bottom: 25px;
	}
	
	.ham_logo_wrap > a{
		width:auto;
	}
	
	.ham_logo_wrap > a img{
		display: block;
		height: 50px;
	}
	
	.ham_logo_wrap > div{
		width: 100%;
		margin:20px 0 0;
	}
	
	.ham_logo_wrap > div > a{
		margin-right: 15px;
	}
	
	.ham_logo_wrap > div > a img{
		height: 16px;
	}
	
	.ham_nav > li{
		width:100%;
		margin-bottom: 15px;
	}
	
	.ham_nav > li a img{
		width:100px;
	}
	
	.ham_nav > li a p{
		line-height: 1.3;
	}
	
	.ham_box .ft_con{
		margin-top: 15px;
	}
	
	.ham_ft{
		display: none;
	}
	
	.ham_close{
		top:20px;
		right: 20px;
		width: 40px;
	}
}

.top_main{
	width:100%;
	height: 100dvh;
	position: relative;
}

.top_main_slider{
	width:100%;
	height: 100dvh;
}

.top_main_slide{
	width:100%;
	height: 100dvh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.top_main_slider .slick-dots{
	z-index: 10;
	bottom:10px;
	display: flex;
	justify-content: center;
}

.top_main_slider .slick-dots li{
	width:14px;
	height: 14px;
	padding:0;
	margin:0 4px;
}

.top_main_slider .slick-dots li button{
	width:14px;
	height: 14px;
	padding:0;
	margin:0;
	background: #fff;
	border-radius: 10px;
}

.top_main_slider .slick-dots li.slick-active button{
	background: #3366cc;
}

.top_main_slider .slick-dots li button::before{
	display: none;
}

.top_main_logo{
	width:75%;
	max-width: 340px;
	position: absolute;
	top:30px;
	left: 50%;
	transform: translateX(-50%)
}

.top_main_text{
	width:90%;
	max-width: 700px;
	position: absolute;
	top:50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-height:800px) {
	.top_main_logo{
		width:auto;
		max-width: 9999px;
		height: 24%;
	}
	
	.top_main_text{
		width:auto;
		max-width: 9999px;
		height: 30%;
	}
}

@media screen and (max-width:900px) {
	.top_main_logo{
		width:50%;
		max-width: 200px;
		height: auto;
	}
	
	.top_main_text{
		width:90%;
		max-width: 700px;
		height: auto;
	}
}

.top_abo_wrap{
	width:100%;
	min-height: 540px;
	padding:70px 10px;
	position: relative;
}

.top_abo_bg{
	width:70%;
	max-width: 530px;
	position: absolute;
	top:0;
	right: 0;
}

.top_abo{
	width:100%;
	max-width: 1200px;
	margin:0 auto;
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.top_abo_h{
	width:48%;
	color:#3366cc;
}

.top_abo_text{
	width:48%;
}

.top_abo_text p + p{
	margin-top: 20px;
}

.btn1{
	width:auto;
	display: table;
	background: #3366cc;
	border-radius: 15px;
	padding:0 40px;
	color:#fff;
	text-decoration: none;
}

.btn1:hover{
	transform: scale(0.9);
}

.btn1 > div{
	height: 64px;
	display: flex;
	align-items: center;
}

.btn1 > div > p{
	line-height: 22px;
	background: url("images/btn_ar.webp") no-repeat right/contain;
	padding-right: 34px;
}

.top_abo_text .btn1{
	margin-top: 60px;
}

@media screen and (max-width:750px) {
	.top_abo_h{
		width:100%;
		margin-bottom: 30px;
	}
	
	.top_abo_text{
		width:100%;
	}
}

@media screen and (max-width:600px) {
	.top_abo_wrap{
		min-height: 0;
		padding:40px 10px 60px;
	}
	
	.top_abo_h{
		margin-bottom: 20px;
	}
	
	.top_abo_text p + p{
		margin-top: 14px;
	}
	
	.top_abo_text .btn1{
		margin-top: 40px;
	}
	
	.top_abo_bg{
		max-width: 350px;
	}
	
	.btn1 > div{
		height: 54px;
	}
	
	.btn1 > div > p{
		line-height: 16px;
		padding-right: 24px;
	}
}

.top_room_wrap{
	min-height: 650px;
	padding:40px 10px;
	background: url("images/top_room_bg.webp") no-repeat center/cover;
}

.top_acc_wrap{
	background: url("images/top_acc_bg.webp") no-repeat center/cover;
}

.top_room{
	max-width: 1200px;
	margin:0 auto;
	color:#fff;
}

.top_room_h{
	margin-bottom: 30px;
}

.top_room_text{
	width:100%;
	max-width: 550px;
}

.top_acc_text{
	width:100%;
	max-width: 540px;
}

@media screen and (max-width:600px) {
	.top_room_wrap{
		min-height: 550px;
	}
	
	.top_room_h{
		margin-bottom: 20px;
	}
}

.top_faci_wrap{
	padding:100px 10px;
	position: relative;
}

.top_faci{
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	overflow: hidden;
	margin:0 auto;
	position: relative;
	z-index: 2;
}

.top_faci_l{
	width:46%;
}

.top_faci_text{
	width: 100%;
}

.top_faci_text .btn1{
	margin-top: 40px;
}

.top_faci_r{
	width:50%;
}

.top_faci_bg{
	width:45%;
	max-width: 460px;
	position: absolute;
	top:50%;
	left: 0;
	transform: translateY(-50%);
}

@media screen and (max-width:750px) {
	.top_faci{
		position: relative;
		padding-bottom: 110px;
	}
	
	.top_faci_l{
		width:100%;
		margin-bottom: 40px;
	}
	
	.top_faci_text .btn1{
		position: absolute;
		bottom:0;
		left: 0;
	}
	
	.top_faci_r{
		width:100%;
		display: flex;
		flex-wrap: wrap;
	}
	
	.top_faci_r > div{
		width:50%;
	}
	
	.top_faci_bg{
		width:60%;
		top:100px;
		transform: none;
	}
}

@media screen and (max-width:600px) {
	.top_faci_wrap{
		padding:80px 10px 60px;
	}
	
	.top_faci{
		padding-bottom: 90px;
	}
	
	.top_faci_l{
		margin-bottom: 30px;
	}
	
	.top_faci_r > div{
		width:100%;
	}
	
	.top_faci_bg{
		top:80px;
	}
}

.no_smoke{
	width: calc( 100% - 20px );
	max-width: 700px;
	margin:80px auto;
	border:10px solid #eeeeee;
	padding:10px 25px;
	display: flex;
	align-items: center;
}

.no_smoke > div{
	width:98px;
	margin-right: 30px;
}

.no_smoke > p{
	flex: 1;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 500;
}

@media screen and (max-width:600px) {
	.no_smoke{
		padding:10px 20px;
		margin:60px auto;
	}
	
	.no_smoke > div{
		width:90px;
		margin-right: 20px;
	}
	
	.no_smoke > p{
		font-size: 18px;
	}
}

.ft_con{
	display: flex;
	flex-wrap: wrap;
}

.ft_con_h{
	width:30%;
	height: 160px;
	background: #333333;
	color:#fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	line-height: 1;
	font-weight: 800;
}

.ft_con_list{
	width:70%;
	display: flex;
	align-items: center;
	align-content: center;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.ft_con_list > li{
	width:50%;
	height: 80px;
}

.ft_con_list > li:first-of-type{
	border-right: 1px solid #ccc;
}

.ft_con_list > li > a{
	width:100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color:#333;
	text-decoration: none;
	font-size: 30px;
	line-height: 40px;
	font-weight: 500;
}

.ft_con_list > li > a:hover{
	color:#3366cc;
}

.ft_con_list > li > a p{
	padding-left: 56px;
}

.ft_con_tel > a p{
	background: url("images/tel.webp") no-repeat left/contain;
}

.ft_con_mail > a p{
	background: url("images/mail.webp") no-repeat left/contain;
}

@media screen and (max-width:1300px) {
	.ft_con_h{
		width:230px;
	}
	.ft_con_list{
		width:calc( 100% - 230px );
	}
}

@media screen and (max-width:1100px) {
	.ft_con_list > li > a{
		font-size: 22px;
		line-height: 34px;
	}
	
	.ft_con_list > li > a > p{
		padding-left: 44px;
	}
}

@media screen and (max-width:900px) {
	.ft_con_h{
		width:100%;
		height: 100px;
	}
	
	.ft_con_list{
		width:100%;
		height: 100px;
	}
}

@media screen and (max-width:700px) {
	.ft_con_list{
		display: table;
		width:auto;
		height: auto;
		margin:40px auto;
		border:0;
	}
	
	.ft_con_list > li{
		display: table;
		width: auto;
		height: auto;
		border:0;
	}
	
	.ft_con_list > li:first-of-type{
		border:0;
	}
	
	.ft_con_list > li + li{
		margin-top: 12px;
		padding-top: 12px;
		border-top: 1px solid #ccc;
	}
	
	.ft_con_list > li a{
		display: table;
	}
}

@media screen and (max-width:600px) {
	.ft_con_h{
		height: 70px;
		font-size: 24px;
	}
	
	.ft_con_list > li > a{
		font-size: 18px;
		line-height: 26px;
	}
	
	.ft_con_list > li > a > p{
		padding-left: 36px;
	}
}

footer{
	padding:60px 10px;
	background: #eeeeee;
}

.footer{
	max-width: 1200px;
	margin:0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer img{
	display: block;
	width:290px;
}

@media screen and (max-width:950px) {
	footer{
		padding:60px 10px 20px;
	}
	
	.footer{
		display: block;
		text-align: center;
	}
	
	.footer img{
		margin:0 auto 20px;
	}
	
	.footer > p:last-of-type{
		margin-top: 80px;
	}
}

@media screen and (max-width:600px) {
	footer{
		padding:30px 10px 10px;
	}
	
	.footer img{
		width:200px;
		margin-bottom: 15px;
	}
	
	.footer > p:last-of-type{
		margin-top: 60px;
	}
}

.page_title{
	width:100%;
	height: 100svh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 100px;
	line-height: 1.2;
	font-weight: 500;
	font-family: "alternate-gothic-atf", sans-serif;
	color: #fff;
}

.about_h{
	background: url("images/about_h.webp") no-repeat 30% center;
	background-size: cover;
}

.faci_h{
	background: url("images/faci_h.webp") no-repeat center center;
	background-size: cover;
	background-position: 10% center;
}

.room_h{
	background: url("images/room_h.webp") no-repeat center center;
	background-size: cover;
}

.as_h{
	background: url("images/as_h.webp") no-repeat center center;
	background-size: cover;
}

.page_wrap{
	margin-bottom: 150px;
}

.abo_wrap{
	padding:75px 10px 0;
	position: relative;
}

.abo_snow{
	position: absolute;
	top:0;
	right: 0;
	z-index: 1;
	width:70%;
	max-width: 540px;
}

.abo{
	max-width: 930px;
	margin:0 auto;
	position: relative;
	z-index: 2;
}

.abo_pro{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.abo_pro_img{
	width:50%;
	padding-right: 50px;
}

.abo_pro_text{
	width:50%;
	padding-top: 15px;
}

.abo_pro_name{
	margin-bottom: 60px;
}

.abo_pro_name p:nth-of-type(1){
	line-height: 1.1;
	border-bottom: 1px solid #999;
	display: table;
	margin-bottom: 18px;
}

.abo_pro_name p:nth-of-type(2){
	font-size: 24px;
	line-height: 1.1;
	font-weight: 800;
}

.abo_text{
	margin-top: 55px;
}

.abo_text > p + p{
	margin-top: 35px;
}

@media screen and (max-width:600px) {
	.page_wrap{
		margin-bottom: 80px;
	}
	
	.page_title{
		font-size: 48px;
	}
	
	.abo_wrap{
		padding-top: 50px;
	}
	
	.abo_pro_img{
		padding-right: 0;
		width:60%;
	}
	
	.abo_pro_text{
		padding-top: 20px;
		width:100%;
	}
	
	.abo_pro_name{
		margin-bottom: 10px;
	}
	
	.abo_pro_name p:nth-of-type(1){
		margin-bottom: 7px;
	}
	
	.abo_pro_name p:nth-of-type(2){
		font-size: 18px;
	}
	
	.abo_text{
		margin-top: 50px;
	}
	
	.abo_text > p + p{
		margin-top: 30px;
	}
}

.faci{
	max-width: 1200px;
	margin:0 auto;
	position: relative;
	z-index: 2;
}

.faci_top{
	max-width: 1160px;
	margin:0 auto 100px;
}

.faci_top_h{
	font-size: 36px;
	line-height: 1.3;
	font-weight: 800;
	color:#3366cc;
	text-align: center;
	margin-bottom: 40px;
}

.faci1{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 90px;
}

.faci1_img{
	width:50%;
}

.faci1_text{
	width:50%;
	padding-left: 20px;
}

.faci1_h{
	font-size: 24px;
	line-height: 1.3;
	font-weight: 900;
	margin-bottom: 35px;
}

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

.faci2 > li{
	width: 23%;
	text-align: center;
	font-size: 16px;
	line-height: 1.3;
	margin-bottom: 25px;
}

.faci2 > li p{
	margin-top: 8px;
}

.faci_parking{
	width:360px;
	height: 90px;
	background: #ebeff1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 16px;
	margin:40px auto 0
}

@media screen and (max-width:600px) {
	.faci_top{
		margin-bottom: 70px;
	}
	
	.faci_top_h{
		font-size: 18px;
		margin-bottom: 25px;
	}
	
	.faci1{
		width:100vw;
		margin-left: -10px;
		margin-bottom: 40px;
	}
	
	.faci1_img{
		width:100%;
	}
	
	.faci1_text{
		width:100%;
		padding:0 10px;
		margin-top: 20px;
	}
	
	.faci1_h{
		font-size: 16px;
		margin-bottom: 13px;
	}
	
	.faci2 > li{
		width:48%;
		font-size: 14px;
	}
	
	.faci_parking{
		width:100%;
		max-width: 320px;
		height: 60px;
		font-size: 14px;
		margin-top: 25px;
	}
}

.room_wrap{
	padding-right:0;
	padding-left:0;
}

.room{
	position: relative;
	z-index: 2;
}

.room_box{
	position: relative;
	z-index: 2;
}

.room_top{
	max-width: 1130px;
	margin:0 auto 100px;;
}

.room_box_wrap{
	position: relative;
	padding:0 10px;
}

.room_box{
	max-width: 1200px;
	margin:0 auto;
}

.room_box_h{
	font-size: 36px;
	line-height: 1.2;
	font-weight: 900;
	text-align: center;
	margin-bottom: 10px;
}

.room_box_h_p{
	font-size: 24px;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 50px;
}

.room_box_img{
	display: block;
	width:100%;
	margin-bottom: 40px;
}

.room_box_img::before{
	display: block;
	content:"";
	padding-top: 41.6%;
}

.room1 .room_box_img{
	background: url("images/room1_1.webp") no-repeat center/cover;
}

.room_info{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.room_info_l{
	width:50%;
}

.room_info_r{
	width:46%;
}

.room_info_box{
	display: flex;
	align-items: flex-start;
}

.room_info_box + .room_info_box{
	margin-top: 12px;
}

.room_info_img{
	width:50px;
	padding-right: 10px;
}

.room_info_text{
	width:calc( 100% - 50px );
	font-weight: 900;
	line-height: 1.4;
}

.room_info_img img{
	display: block;
	margin:0 auto;
}

.room_info1 .room_info_img img{
	width:24px;
}

.room_info2 .room_info_img img{
	width:24px;
}

.room_info3 .room_info_img img{
	width:24px;
	margin-top: 2px;
}

.room_info4 .room_info_img img{
	width:22px;
}

.room_info_text table{
	width:100%;
}

.room_info_text table th{
	white-space: nowrap;
	width:1px;
	font-weight: 900;
	vertical-align: top;
	padding-right: 6px;
}

.room_info_text table td{
	vertical-align: top;
}

.room_faci{
	display: flex;
	margin-bottom: 45px;
}

.room_faci_h{
	width:120px;
	border-right: 1px solid #ccc;
}

.room_faci_text{
	width:calc( 100% - 120px );
	padding-left: 40px;
}

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

.room_img2 > img{
	display: block;
	width:23.5%;
	margin-bottom: 14px;
}

.room2{
	padding-top: 200px;
	margin-top: 30px;
}

.room2 .room_box_img{
	background: url("images/room2_1.webp") no-repeat center/cover;
}

.room2_snow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 70%;
    max-width: 540px;
}

@media screen and (max-width:600px) {
	.room_top{
		margin-bottom: 50px;
	}
	
	.room_box_h{
		font-size: 24px;
	}
	
	.room_box_h_p{
		font-size: 16px;
		margin-bottom: 25px;
	}
	
	.room_box_img{
		width: 100vw;
		margin-left: -10px;
		margin-bottom: 20px;
	}
	
	.room_box_img::before{
		padding-top: 300px;
	}
	
	.room1 .room_box_img{
		background-image: url("images/room1_1_sp.webp");
	}
	
	.room2 .room_box_img{
		background-image: url("images/room2_1_sp.webp");
	}
	
	.room_info{
		margin-bottom: 30px;
	}
	
	.room_info_l{
		width:100%;
		margin-bottom: 20px;
	}
	
	.room_info_img{
		width:30px;
		padding-right: 10px;
	}
	
	.room_info_text{
		width:calc( 100% - 30px );
	}
	
	.room_info1 .room_info_img img{
		width:18px;
	}

	.room_info2 .room_info_img img{
		width:18px;
	}

	.room_info3 .room_info_img img{
		width:18px;
		margin-top: 1px;
	}

	.room_info4 .room_info_img img{
		width:18px;
	}
	
	.room_info_r{
		width:100%;
	}
	
	.room_faci{
		margin-bottom: 40px;
	}
	
	.room_faci_h{
		width:70px;
	}
	
	.room_faci_text{
		width:calc( 100% - 70px );
		padding-left: 14px;
	}
	
	.room_img2 > img{
		width:48%;
	}
	
	.room2{
		padding-top: 100px;
	}
}

.room_sec{
	width:calc( 100% - 20px );
	max-width: 1200px;
	margin:100px auto 0;
	border:10px solid #eeeeee;
	padding:40px 30px;
}

.room_sec_h{
	font-size: 30px;
	line-height: 1.2;
	font-weight: 900;
	text-align: center;
	margin-bottom: 5px;
}

.room_sec_h_p{
	text-align: center;
	line-height: 1.3;
	margin-bottom: 40px;
}

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

.room_sec_box{
	width:48%;
}

.room_sec_box_h{
	text-align: center;
	font-weight: 900;
	line-height: 1.3;
	margin:15px 0 10px;
}

.room_sec_box p{
	line-height: 1.4;
	text-align: center;
}

.room_sec_last_p{
	display: table;
	margin:50px auto 0;
	text-align: center;
}

.room_sec_last_p p{
	display: inline;
	line-height: 1.3;
	border-bottom: 1px solid #333;
}

@media screen and (max-width:600px) {
	.room_sec{
		padding: 30px 10px 40px;
	}
	
	.room_sec_h{
		font-size: 24px;
	}
	
	.room_sec_h_p{
		font-size: 16px;
		margin-bottom: 30px;
	}
	
	.room_sec_box{
		width:100%;
		max-width: 350px;
		margin:0 auto;
	}
	
	.room_sec_box + .room_sec_box{
		margin-top: 30px;
	}
	
	.room_sec_box_h{
		margin:10px 0 5px;
	}
	
	.room_sec_last_p{
		margin-top: 30px;
	}
}

.as{
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin:0 auto;
}

.as_top{
	max-width: 950px;
	font-size: 60px;
	line-height: 1.2;
	font-weight: 900;
	text-align: center;
	color:#3366cc;
	margin:0 auto 80px;
}

.as1{
	margin-bottom: 120px;
}

.as1_1{
	margin-bottom: 20px;
}

.as1_1_img{
	width:100%;
	height: 300px;
	background: url("images/as1_1.webp") no-repeat center/cover;
	margin-bottom: 25px;
}

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

.as1_1_h{
	width:32%;
	max-width: 330px;
}

.as1_h{
	font-size: 24px;
	line-height: 1.3;
	font-weight: 900;
	margin-bottom: 15px;
}

.as1_1_text > p{
	width:66%;
	max-width: 750px;
}

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

.as1_2_box{
	width:48%;
	margin-top: 80px;
}

.as1_2_box img{
	display: block;
	margin-bottom: 20px;
}

@media screen and (max-width:600px) {
	.as_top{
		font-size: 24px;
		max-width: 380px;
		margin-bottom: 50px;
	}
	
	.as1{
		margin-bottom: 60px;
	}
	
	.as1_1{
		margin-bottom: 10px;
	}
	
	.as1_1_img{
		margin-bottom: 15px;
	}
	
	.as1_h{
		font-size: 18px;
		margin-bottom: 10px;
	}
	
	.as1_1_h{
		width:100%;
		max-width: 100%;
	}
	
	.as1_1_text > p{
		width:100%;
		max-width: 100%;
	}
	
	.as1_2_box{
		width: 100%;
		margin-top: 40px;
	}
	
	.as1_2_box img{
		margin-bottom: 15px;
	}
}

.acs_img{
	width:100%;
	height: 380px;
	background: url("images/as2.webp") no-repeat center/cover;
	margin-bottom: 80px;
}

.acs_h{
	font-size: 100px;
	line-height: 1;
	font-weight: 500;
	text-align: center;
	font-family: "alternate-gothic-atf", sans-serif;
	margin-bottom: 70px;
}

.acs_box + .acs_box{
	margin-top: 120px;
}

.acs_box_h{
	width:260px;
	font-size: 24px;
	line-height: 1;
	text-align: center;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
	font-weight: 300;
	margin: 0 auto 50px;
}

.acs_box_img{
	display: block;
	width:100%;
	max-width: 700px;
	margin:0 auto;
}

.acs_box_img_sp{
	display: none;
	width:100%;
	max-width: 500px;
	margin:0 auto;
}

.acs_ul1{
	margin-top: 50px;
}

.acs_ul1 li{
	position: relative;
	padding-left: 24px;
	line-height: 1.4;
}

.acs_ul1 li::before{
	content:"●";
	display: block;
	position: absolute;
	top:0;
	left: 0;
}

.acs_ul1 li + li{
	margin-top: 6px;
}

.acs_ul1_flex li{
	position: relative;
	padding-left: 24px;
	line-height: 1.4;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.acs_ul1_flex li + li{
	margin-top: 35px;
}

.acs_ul1_flex li > p{
	width:320px;
}

.acs_ul1_flex li > div{
	width:calc( 100% - 320px );
}

.acs_ul1_flex li > div > p + p{
	margin-top: 20px;
}

.acs_ul1_flex li > div > p span{
	font-size: 14px;
}

.acs_box_p1{
	max-width: 1060px;
	margin:0 auto 50px;
}

.acs_notes{
	padding:30px;
	border:1px solid #ccc;
	margin:70px auto 90px;
}

.acs_notes_h{
	display: table;
	font-weight: 900;
	margin:0 auto 20px;
	border-bottom: 2px solid #adadad;
	line-height: 1.5;
}

.acs_notes > p{
	display: table;
	margin:0 auto;
	line-height: 1.5;
}

.google-maps {
	position: relative;
	padding-bottom: 500px;
	height: 0;
	overflow: hidden;
	filter: grayscale(1);
}

.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

@media screen and (max-width:1200px) {
	.google-maps{
		width:100vw;
		margin-left: -10px;
	}
}

@media screen and (max-width:600px) {
	.acs_img{
		height: 300px;
		margin-bottom: 40px;
	}
	
	.acs_h{
		font-size: 48px;
		margin-bottom: 30px;
	}
	
	.acs_box_h{
		width:150px;
		font-size: 18px;
		margin-bottom: 30px;
	}
	
	.acs_box + .acs_box{
		margin-top: 50px;
	}
	
	.acs_box_img{
		display: none;
	}
	
	.acs_box_img_sp{
		display: block;
	}
	
	.acs_ul1{
		margin-top: 25px;
	}
	
	.acs_ul1 li{
		padding-left: 20px;
	}
	
	.acs_ul1_flex li > p{
		width:100%;
		margin-bottom: 6px;
	}

	.acs_ul1_flex li > div{
		width:100%;
	}
	
	.acs_ul1_flex li > div > p + p{
		margin-top: 10px;
	}
	
	.acs_ul1_flex li > div > p span{
		font-size: 12px;
	}
	
	.acs_notes{
		padding:20px 10px;
		margin:40px auto 60px;
	}
	
	.google-maps {
		padding-bottom: 300px;
	}
}

.top_main_slide1{
	background-image: url("images/top_slide1.webp");
}

.top_main_slide2{
	background-image: url("images/top_slide2.webp");
}

.top_main_slide3{
	background-image: url("images/top_slide3.webp");
	background-position: 20% center;
}

.top_main_slide4{
	background-image: url("images/top_slide4.webp");
}

.top_main_slide5{
	background-image: url("images/top_slide5.webp");
}

.top_main_slide6{
	background-image: url("images/top_slide6.webp");
}

.top_main_slide7{
	background-image: url("images/top_slide7.webp");
	background-position: bottom;
}

@media screen and (max-width:700px) {
	.top_main_slide1{
		background-image: url("images/top_slide1_sp.webp");
	}

	.top_main_slide2{
		background-image: url("images/top_slide2_sp.webp");
	}

	.top_main_slide3{
		background-image: url("images/top_slide3_sp.webp");
		background-position: center;
	}

	.top_main_slide4{
		background-image: url("images/top_slide4_sp.webp");
	}

	.top_main_slide5{
		background-image: url("images/top_slide5_sp.webp");
	}

	.top_main_slide6{
		background-image: url("images/top_slide6_sp.webp");
	}

	.top_main_slide7{
		background-image: url("images/top_slide7_sp.webp");
	}
}























