
/**** header ***/
#wrapper{
	padding-top: 0;
}
header{
	/* transform: translate3d(0,-100%,0); */
	top: -5rem !important;
	transition: top 0.3s ease;
}
header.show,
body.menu_active .header{
	/* transform: translate3d(0,0,0); */
	top: 0 !important;
}

@media (max-width: 768px) {
	header{
		top: -50px !important;
	}
}

/**** message ****/
#message{
	background: url(../images/top/message-bg.jpg) center center no-repeat;
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	height: 100vh;
	height: 100lvh;
}
#message::before{
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.30);
}
.message_block{
	display: flex;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
	height: calc( 100vh - 20rem - 5rem);
}
.message_head{
	/* flex: 1; */
}
.message_head h2{
	font-size: 7.5rem;
	line-height: 1.3;
	color: #FFFFFF;
}
.message_content {
	flex: 1;
}
.message_content p{
	font-size: 2.4rem;
	line-height: 1.8;
	color: #FFFFFF;
	margin: 0;
}
.message_content p:last-child{
	margin-bottom: 0;
}
.message_btn_wrap{
	display: flex;
	gap: 2rem;
	margin-top: 4rem;
}
.message_btn_01{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 17.6rem;
	height: 6rem;
	border: 2px solid #FFFFFF;
	background-color: #FFFFFF;
	border-radius: 9999px;
	color: #1c398e;
	font-size: 1.13em;
	font-weight: 500;
}
.message_btn_02{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 17.6rem;
	height: 6rem;
	border: 2px solid #FFFFFF;
	background-color: transparent;
	border-radius: 9999px;
	color: #FFFFFF;
	font-size: 1.13em;
	font-weight: 500;
}
.message_btn_02:hover{
	background-color:rgba(255, 255, 255, 0.1);
}
.message_arrow_down{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	text-align: center;
	margin-bottom: 3rem;
	animation: bounce 1s infinite;
}
.message_arrow_down svg{
	width: 3.2rem;
	height: 3.2rem;
	color: #FFFFFF;
}

@keyframes bounce{0%,to{animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}

@media (max-width: 768px) {
	#message{
		background-image: url(../images/top/message-bg.jpg);
		/* min-height: auto;
		background-attachment: unset; */
	}
	.message_block{
		/* gap: 4rem;
		flex-direction: column;
		align-items: flex-start;
		height: auto; */
	}
	.message_head h2{
		font-size: 7.5rem;
	}
	.message_content p{
		font-size: 3rem;
	}
	.message_btn_wrap{
		flex-direction: column;
	}
	.message_btn_01{
		width: 100%;
		height: 11rem;
	}
	.message_btn_02{
		width: 100%;
		height: 11rem;
	}
}

/**** ceo_message_block ****/
.ceo_message_block{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4em;
	align-items: center;
}
.ceo_message_title{
	font-size: 2em;
	font-weight: 500;
	margin-bottom: 2rem;
}
.ceo_message_content p{
	font-size: 1em;
	margin-bottom: 2rem;
}
.ceo_message_content p:last-child{
	margin-bottom: 0;
}
.ceo_message_image img{
	border-radius: 1rem;
	box-shadow: 1rem 1rem 5rem rgba(0, 0, 0, 0.2);
}
.ceo_message_image_btn{
	margin-top: 4rem;
	text-align: center;
}

@media (max-width: 768px) {
	.ceo_message_block{
		grid-template-columns: 1fr;
	}
	.ceo_message_title{
	}
	.ceo_message_content p{
	}
}

/**** business ****/
.business_list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}
.business_list_item{
	border-radius: 1rem;
	box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.1);
	overflow: hidden;
	/* transition: box-shadow 0.3s ease; */
}
.business_list_item:hover{
	box-shadow: 1rem 1rem 5rem rgba(0, 0, 0, 0.2);
}
.business_list_item_image_inner{
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 50%;
}
.business_list_item_image_inner img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.business_list_item_content{
	background-color: #FFFFFF;
	padding: 2rem;
}
.business_list_item_icon{
	width: 56px;
	height: 56px;
	margin-bottom: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 1rem;
	color: #fca519;
	background-color: #fcf0dc;
}
.business_list_item_title{
	font-size: 1.25em;
	font-weight: 600;
	margin-bottom: 1rem;
}
.business_list_item_description{
	font-size: 1em;
}

@media (max-width: 768px) {
	.business_list{
		grid-template-columns: 1fr;
		gap: 6rem;
	}
	.business_list_item_content{
		padding: 4rem;
	}
}

/**** strength ****/
.strength_wrap{
	background-color: #f8f4ed;
	padding: 6rem 4rem;
	border-radius: 1rem;
	margin-top: 6rem;
}
.strength_title{
	font-size: 1.75em;
	font-weight: 600;
	text-align: center;
	margin-bottom: 6rem;
}
.strength_list{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	gap: 4rem 3rem;
}
.strength_list_item{
	text-align: center;
}
.strength_list_item_icon{
	width: 64px;
	height: 64px;
	margin-bottom: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 9999px;
	color: #fca519;
	background-color: #FFFFFF;
	margin: 0 auto 1.5rem;
	box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
}
.strength_list_item_title{
	font-size: 1.25em;
	font-weight: 600;
	margin-bottom: 1rem;
	text-align: center;
}
.strength_list_item_description{
	font-size: 1em;
}

@media (max-width: 768px) {
	.strength_list{
		grid-template-columns: 1fr;
		gap: 6rem;
	}
	/* .strength_list_item_icon{
		width: 5.6rem;
		height: 5.6rem;
	} */
}

/**** flow ****/
#flow{
	background: url(../images/top/flow_bg@2x.jpg) center center no-repeat;
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	color: #FFFFFF;
}
#flow::before{
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.30);
}

@media (max-width: 768px) {
	#flow{
		background-attachment: unset;
	}
}


/**** service ****/
.service_list_box a{
	display: block;
	position: relative;
}
.service_list_box a:after{
	content: "";
	display: inline-block;
	background: url("../images/common/arrow_right_white.svg") left top no-repeat;
	background-size: contain;
	width: 30px;
	height: 15px;
	position: absolute;
	right: 20px;
	bottom: 20px;
}
.service_list_box img{
	width: 100%;
}
.service_list_box .text_wrap{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.service_list_box .text_wrap .section_title{
	color: #FFFFFF;
	margin-bottom: 0;
}
.service_list_box .text_wrap .section_title .f_en{
	color: #FFFFFF;
}
.service_list_box .text_wrap .section_title .f_en:before{
	background-color: #FFFFFF;
}


/*** information ***/
#information .cat_list{
	display: flex;
}

#information .cat_list li{
	margin-right: 10px;
}


#information .cat_list a{
  padding: 10px 15px;
  border: 1px solid #787878;
  background: #fff;
  color: #000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

#information .cat_list a:hover {
  background: #787878;
  color: #fff;
}

@media (max-width: 768px) {
	#information .container{
		display: flex;
		flex-direction: column;
	}
	#information .container .section_title_block{
		display: contents !important;
	}
	#information .container .section_title_block .section_btn{
		order: 1;
		margin-top: 40px;
	}
	.information_title{
		margin-bottom: 30px;
	}
}





/***　検索 ****/
.reserve_form{
	text-align: left;
	background-color: rgba(255,255,255,1);
	padding: 20px 20px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	grid-gap: 20px 30px;
	flex-wrap: wrap;
}
.reserve_form_content{
	display: flex;
	align-items: center;
	justify-content: center;
	grid-gap: 20px;
	flex-wrap: wrap;
}
.reserve_form_content form{
	display: contents;
}
.reserve_title .f_en{
	display: block;
	font-size: 1.13rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #644132;
}
.reserve_title .f_ja{
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #a7745e;
}
.reserve_form select{
	border: 1px solid #644132;
	border-radius: 10px;
	padding: 5px 10px 5px 10px;
	font-size: 0.94rem;
	letter-spacing: 0.04em;
	line-height: 1.7;
	color: #644132;
	width: 3.5em;
	  -webkit-appearance: none;
  appearance: none;
}
.reserve_form select.obj_year{
	width: 4.5em;
}
.reserve_form select:focus{
	outline: none;
}
.reserve_form dt{
	font-size: 0.81rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
}
.reserve_form dd{
	display: flex;
	align-items: baseline;
	grid-gap: 5px;
	font-size: 0.81rem;
	letter-spacing: 0.04em;
}
.reserve_form .btn_search{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.reserve_form button{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	max-width: 100%;
	width: 260px;
	height: 50px;
	background-color: #644132;
	font-size: 0.81rem;
	letter-spacing: 0.04em;
	color: #FFFFFF;
}
.reserve_link{
	border-left: 1px solid rgb(99 66 51 / 27%);
	padding-left: 20px;
	margin-left: 20px;
}
.reserve_link p a{
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-decoration: underline;
	white-space: nowrap;
}
.btn_search_sp{
  display: none;
}

@media (max-width: 1200px) and (min-width: 1001px) {
	.reserve_form {
    padding: 20px 15px;
    grid-gap: 20px 20px;
	}
	.reserve_title .f_en{
		font-size: 1.06rem;
	}
	.reserve_form_content{
		grid-gap: 15px;
	}
	.reserve_form button{
		width: 180px;
	}
	.reserve_link {
    padding-left: 8px;
    margin-left: 13px;
	}
	.reserve_form select{
		font-size: 0.91rem;
	}
	.reserve_form select{
		width: 3em;
	}
	.reserve_form select.obj_year {
    width: 4em;
	}
}

@media (max-width: 1000px) {
	/*.reserve_form{
		padding: 20px 20px;
		border-radius: 5px;
		display: block;
		background-color: #FFFFFF;
	}
	.reserve_form_label{
		margin-bottom: 15px;
	}
	.reserve_form_content{
		display: block;
	}
	.reserve_form .con_day{
		margin-bottom: 10px;
	}
	.reserve_form .con_person{
		margin-bottom: 15px;
	}
	.reserve_form .btn_search{
		display: block;
	}
	.reserve_link {
		margin-top: 10px;
		border-left: none;
		padding-left: 0px;
		margin-left: 0px;
	}*/
	.top_slider .slider_box img{
		width: 100%;
		//height: calc( 100vh - 50px - 80px );
		object-fit: cover;
	}
	.mv_reserve_form{
		padding: 10px;
		/*background-color: transparent!important;*/
	}
  .reserve_form{
    display: none;
  }
  .btn_search_sp{
    display: block;
  }
  .btn_search_sp a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: 100%;
    height: 60px;
    background-color: #644132;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #FFFFFF;
  }
}



/**** アニメーション ****/
/*.loaded_mv{
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	z-index: 11;
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
}
.loaded_mv_logo{
	width: 100%;
	text-align: center;
	position: absolute;
	left: 0;
	top: calc( 26vh + 70px );
	opacity: 0;
	transition: opacity 1.6s ease 0.2s;
}
@media (max-width: 1000px){
	.loaded_mv_logo{
		top: calc( 26vh + 50px );
	}
}
body.loaded .loaded_mv_logo{
	animation: loading-logo 4s ease 1 forwards;
	animation-delay: 0.5s;
}
@keyframes loading-logo {
  to {opacity: 1;}
}
body.loaded .loaded_mv{
	animation: loading-off 2s ease 1 forwards;
	animation-delay: 3s;
}
@keyframes loading-off {
  to {
		opacity: 0;
		visibility: hidden;
		display: none;
	}
}


.top_slider.slick-initialized .slider_box img{
	-webkit-filter: blur(20px);
	filter: blur(20px);
	transform: scale(1);
	transition: transform 0.6s ease 1s;
}

.top_slider.slick-initialized .slider_box.slick-current img{
	-webkit-filter: blur(20px);
	filter: blur(20px);
	animation: scale 6s ease 0s forwards;
	}
.top_slider.slick-initialized .slider_box.slick-active img{
  -webkit-filter: blur(0px);
  filter: blur(0px);
	animation: scale 6s ease 0s forwards;
}

@keyframes scale{
 to {
		transform: scale(1.1);
	}
}


@media (max-width: 768px) {
	.loaded_mv_logo{
		top: 50px;
		bottom: 0px;
		display: flex;
		justify-content: center;
		align-items: center;
		padding-bottom: 50px;
	}
	.loaded_mv_logo img{
		zoom: 0.75;
	}
}
*/


/**** section_title ****/
.f_bg_line {
    background: url(../images/top/room_recomended_border.png) left bottom repeat-x;
    background-size: 160px 6px;
    padding-bottom: 15px;
}


.cat_icon{
  background: #ebebeb;
  padding: 5px 10px;
  font-size: 0.75em;
}
@media (max-width: 768px) {
.news_cat{
	margin-bottom: 10px;
}
}



/**** animation ****/
.opening_text01{
	position: absolute;
	left: calc( 0 / 1200 * 100%);
	top: calc( 0 / 700 * 100% );
	width: calc( 136 / 1200 * 100% );
}
.opening_text02{
	position: absolute;
	left: calc( 156 / 1200 * 100%);
	top: calc( 0 / 700 * 100% );
	width: calc( 639 / 1200 * 100% );
}
.opening_text03{
	position: absolute;
	left: calc( 300 / 1200 * 100%);
	top: calc( 314 / 700 * 100% );
	width: calc( 899 / 1200 * 100% );
}
.opening_text04{
	position: absolute;
	left: calc( 72 / 1200 * 100%);
	top: calc( 556 / 700 * 100% );
	width: calc( 1066 / 1200 * 100% );
}
@media (max-width: 768px) {
	.opening_text01{
		position: absolute;
		left: calc( 40 / 750 * 100%);
		top: calc( 40 / 805 * 100% );
		width: calc( 353 / 750 * 100% );
	}
	.opening_text02{
		position: absolute;
		left: calc( 40 / 750 * 100%);
		top: calc( 141 / 805 * 100% );
		width: calc( 670 / 750 * 100% );
	}
	.opening_text03{
		position: absolute;
		left: calc( 40 / 750 * 100%);
		top: calc( 477 / 805 * 100% );
		width: calc( 670 / 750 * 100% );
	}
	.opening_text04{
		position: absolute;
		left: calc( 40 / 750 * 100%);
		top: calc( 677 / 805 * 100% );
		width: calc( 670 / 750 * 100% );
	}
}

.opening_text{
	opacity: 0;
	transform: scale(2.5);
}
.opening_text.active{
	animation: fadeInAnime 0.8s ease-in forwards;
}

@keyframes fadeInAnime{
	0% {
	  opacity: 0;
	  transform: scale(2.5);
	}
  
	100% {
	  opacity: 1;
	  transform: scale(1);
	}
}

.opening_animate_wrap{
	position: relative;
	width: 100%;
	height: 100%;
	transform: scale(0.8);
}
.opening_animate_wrap.active{
	animation: scale_nomal 0.3s ease-out 1.6s forwards;
}

