@charset "utf-8";
/* CSS Document */


/*==========
MV
==========*/
.hero {}

.hero video {
	width: 100%;
}



/*==========
スクロールボタン
==========*/
.scroll_btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 36px;
	padding: 5rem 0;
}

.scroll_btn a {
	width: 18%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
}

.scroll_btn a span {
	font-size: 1.6rem;
	color: var(--font_color2);
}


/*==========
メッセージ
==========*/
.top_message {
	padding-bottom: 5rem;
}

.top_message .container {
	width: 90%;
	margin: 0 auto;
}

.top_message h1 {
	font-size: 3.6rem;
	text-align: center;
	margin-bottom: 3rem;
	line-height: 1.3;
}

.top_message .en {
	font-size: 1.65rem;
	line-height: 1.7;
}

.top_message .jp {
	font-size: 1.35rem;
	line-height: 1.7;
	margin-top: 2rem;
}

@media (min-width: 768px) {
	.top_message h1 {
		font-size: 4.8rem;
	}

	.top_message .en {
		font-size: 1.8rem;
	}

	.top_message .jp {
		font-size: 1.5rem;
	}

}


/*==========
料金
==========*/
.price {
	padding: 5rem 0;
}


/*==========
タブ
==========*/
.tabs {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin-bottom: 2rem;
}

.tabs div {
	background-color: #000;
}

.tabs img {
	width: 60px;
	cursor: pointer;
	opacity: 0.3;
	transition: 0.3s;
}

.tabs img.active {
	opacity: 1;
}

.tab_content {
	display: none;
}

.tab_content.active {
	display: block;
}

.tab_content table {
	width: 100%;
}

.tab_content table caption {
	font-size: 2.4rem;
	font-weight: 600;
	color: #cb3333;
	text-align: center;
	margin-top: 3rem;
	padding-left: 9px;
}

.tab_content table tr {
	border-bottom: 1px solid var(--border_color1);
}

.tab_content table th,
.tab_content table td {
	padding: 24px 9px;
}

.tab_content table th p {
	font-size: 1.6rem;
	line-height: 1.6;
}

.tab_content table td {
	text-align: right;
}

.tab_content table td p {
	font-size: 1.7rem;
}

@media (min-width: 768px) {

	.tab_content table th,
	.tab_content table td {
		padding: 30px 18px;
	}

	.tab_content table th p {
		font-size: 1.8rem;
	}

	.tab_content table td p {
		font-size: 1.9rem;
	}

}


/*==========
メニュー
==========*/
.menu {
	padding: 5rem 0;
}



/*==========
MAP
==========*/
.map {
	padding: 5rem 0 9rem;
}

.map iframe {
	width: 100%;
	height: 42vh;
	margin-bottom: 2rem;
}

.map h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.map address {
	margin-bottom: 1rem;
	line-height: 1.5;
}

.map .btn_tel {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 60px;
	gap: 6px;
	background-color: #b70642;
	inline-size: fit-content;
	margin-top: 24px;
	height: 60px;
}

.map .btn_tel:hover,
.map .btn_tel:active {
	background-color: var(--a_color);
}


.map .btn_tel img {
	height: 30px;
	width: auto;
}

.map .btn_tel span {
	font-size: 2rem;
	color: #FFF;
	transform: translateY(-1px);
}




/*==========
パララックス
==========*/
.parallax_box {
	clip-path: inset(0);
	width: 100%;
	height: 42vh;
}

.parallax_box::after {
	content: '';
	position: fixed;
	top: 24%;
	left: 0;
	z-index: -10;
	width: 100%;
	height: 100%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.parallax_box.photo1::after {
	background-image: url(../img/interior1.jpg);
}

.parallax_box.photo2::after {
	background-image: url(../img/interior2.jpg);
}

.parallax_box.photo3::after {
	background-image: url(../img/interior3.jpg);
}

.parallax_box.photo4::after {
	background-image: url(../img/interior4.jpg);
}

@media (min-width: 768px) {
	.parallax_box::after {
		top: 36%;
		left: 50%;
		transform: translateX(-50%);
		max-width: 600px;
	}


}
