@charset "utf-8";

/*------------------------------------------------------------------------
index
--------------------------------------------------------------------------*/
.hero_img{
	width: calc( 100% - 40px );
	margin: 0 auto;
}
.hero_img img{
	width: 100%;
}
@media screen and (max-width: 780px) {
	.hero_img{
		width: 95%;
	}
}

/*- index 共通 ------------------------------------------*/
.index_btn_en{
	font-family: "Castoro", serif;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1;
}
.index_btn_jp{
	margin-top: 24px;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1;
}

.index_btn_link{
	display: block;
	width: 220px;
	max-width: 80%;
	margin: 100px auto 0;
	padding: 15px 0;
	font-size: 1.3rem;
	text-align: center;
	border: 1px solid #1a1d13;
}
@media (hover: hover) and (pointer: fine){
	.index_btn_link:hover{
		background: rgba(255, 255, 255, .9);
	}
}
@media screen and (max-width: 580px) {
	.index_btn_en{
		font-size: 1.6rem;
	}
	.index_btn_jp{
		margin-top: 20px;
		font-size: 2.6rem;
	}

	.index_btn_link{
		margin: 60px auto 0;
	}
}

/*- お部屋 ------------------------------------------*/
.index_room_area{
	width: 1100px;
	max-width: 90%;
	margin: 100px auto 0;
	padding: 40px 1.5%;
	background: url(../img/index/index_room.webp) center center;
	background-size: cover;
}
.index_room_txt{
	display: flex;
	align-items: center;

	width: 400px;
	height: 400px;
	margin: 0 0 0 auto;
	text-align: center;
	background: rgba(255, 255, 255, .8);
}
.index_room_inner{
	width: 100%;
}
@media screen and (max-width: 580px) {
	.index_room_area{
		width: 1100px;
		max-width: 90%;
		margin: 100px auto 0;
		padding: 60px 1.5%;
	}
	.index_room_txt{
		width: 75%;
		height: auto;
		margin: 0 auto;
		padding: 40px 0;
	}
}

/*- 周辺 ------------------------------------------*/
.index_around_area{
	width: 1100px;
	max-width: 90%;
	margin: 80px auto 0;
	padding: 0 5% 42px;
	background: #a9bf85;
}
.index_around_movie{
	width: 100%;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	background: #ccc;
}

.index_around_txt_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;

	width: 100%;
	margin-top: 32px;
}
.index_around_txt{
	width: 60%;
}
.index_around_btn{
	width: 40%;
}
.index_around_btn a{
	margin: 0 0 0 auto;
}
@media screen and (max-width: 580px) {
	.index_around_area{
		padding: 0 0 42px;
	}
	.index_around_txt_wrap{
		display: block;
		margin-top: 32px;
	}
	.index_around_txt{
		width: 100%;
		text-align: center;
	}
	.index_around_btn{
		width: 100%;
	}
	.index_around_btn a{
		margin: 60px auto 0;
	}
}

/*------------------------------------------------------------------------
お部屋について
--------------------------------------------------------------------------*/
.room_txt{
	margin-bottom: 32px;
}

.room_photo_box + .room_photo_box{
	margin-top: 60px;
}
.room_photo_box + .room_photo_list{
	margin-top: 16px;
}

.room_photo_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 行の高さは「小画像のaspect-ratio」に委ねるので、行はautoでOK */
  gap: 16px;
}
/* 左に大サイズ写真 */
.room_photo_box_l1 { grid-area: 1 / 1 / 3 / 3; }
.room_photo_box_s1 { grid-area: 1 / 3 / 2 / 4; }
.room_photo_box_s2 { grid-area: 2 / 3 / 3 / 4; }
/* 右に大サイズ写真 */
.room_photo_box_l2 { grid-area: 1 / 2 / 3 / 4; }
.room_photo_box_s3 { grid-area: 1 / 1 / 2 / 2; }
.room_photo_box_s4 { grid-area: 2 / 1 / 3 / 2; }

.room_photo_box_s1,
.room_photo_box_s2,
.room_photo_box_s3,
.room_photo_box_s4 {
	aspect-ratio: 3 / 2;
}

/* すべてのセル共通 */
.room_photo_box > div {
	position: relative;
	height: 100%;
	overflow: hidden;
}

/* 画像は枠いっぱいに、歪ませずカバー */
.room_photo_box img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.room_photo_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;

	width: 100%;
}
.room_photo_list li{
	width: calc( (100% - 32px) / 3 );
	margin: 0 16px 16px 0;
}
.room_photo_list li:nth-of-type(3n){
	margin-right: 0;
}

@media screen and (max-width: 580px) {
	.room_photo_box + .room_photo_list{
		margin-top: 8px;
	}

	.room_photo_box {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
	.room_photo_box_l1,
	.room_photo_box_l2 { grid-area: 1 / 1 / 2 / 3; }
	.room_photo_box_s1,
	.room_photo_box_s3 { grid-area: 2 / 1 / 3 / 2; }
	.room_photo_box_s2,
	.room_photo_box_s4 { grid-area: 2 / 2 / 3 / 3; }

	.room_photo_list li{
		width: calc( (100% - 8px) / 2 );
		margin: 0 8px 8px 0;
	}
	.room_photo_list li:nth-of-type(3n){
		margin-right: 8px;
	}
	.room_photo_list li:nth-of-type(2n){
		margin-right: 0 !important;
	}
}
/* 360度photo */
.if_panorama{
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 1;
}
.if_panoramawrap{
	width: 100%;
	margin: 0 auto;
}

/*------------------------------------------------------------------------
周辺エリア
--------------------------------------------------------------------------*/
.around_movie {
  width: 100%;
  aspect-ratio: 16 / 9;
	background: #ccc;
}
.around_movie iframe {
  width: 100% !important;
  height: 100% !important;
}