@import url("import/attachment.css");
@import url("import/inview.css");

/***********************************************
  01.common
***********************************************/

*::selection {
	background-color: rgba(238, 94, 112, 1);
	color: #fff;
}

*::-moz-selection {
	background-color: rgba(34, 148, 168, 0.6);
	color: #fff;
}

* {
	margin: 0px;
	padding: 0px;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

html {
	height: auto;
}

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.4em;
	height: auto;
	margin: 0px;
	padding: 0px;
	color: #6e6f71;
	-webkit-print-color-adjust: exact !important;
	-moz-print-color-adjust: exact !important;
}


/***********************************************
 
***********************************************/

figure {
	display: flex;
}

figure, img {
	width: 100%;
}

button {
	border: none;
}

.col {
	display: flex;
}

.mv {
	position: relative;
}

.video-wrap {
	width: 66.5%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 1280px;
	z-index: 50;
}

video {
	width: 100%;
	display: block;
	aspect-ratio: 16 / 9;
}

.play-btn {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	border: none;
	cursor: pointer;
	background: transparent;
	display: none;
}

.ptBtn {
	border: none;
	width: 100px;
	height: 100px;
	position: fixed;
	z-index: 200;
	right: 20px;
	bottom: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.ptBtn.is-show {
	opacity: 1;
	pointer-events: auto;
}

/* ===== Loading ===== */
#loading {
	position: fixed;
	inset: 0;
	background: #fff;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

#loading img {
	width: 40%;
	max-width: 160px;
	/* ロゴサイズ調整 */
}

/* 非表示用 */
#loading.is-hidden {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s ease;
}


/* pc ver */

/* .sp-layout {
	display: none;
} */

.pc-layout {
	position: relative;
}

.pc-layout figure {
	min-width: 751px;
}

.pc-layout::before,
.pc-layout::after {
	content: "";
	display: block;
	width: calc(33% / 2);
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 100;
}

.pc-layout::before {
	left: 0;
}

.pc-layout::after {
	right: 0;
}

@media screen and (max-width: 750.55px) {
	.sp-layout {
		display: block;
	}

	/* .pc-layout {
		display: none;
	} */

	.video-wrap {
		width: 90%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
		max-width: 1280px;
		z-index: 50;
	}

	.f-banner {
		display: flex;
		width: 100%;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 200;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease;
	}

	.f-banner.is-show {
		opacity: 1;
		pointer-events: auto;
	}


	.f-banner button {
		width: 15%;
	}

	.f-banner .col {
		width: calc(100% - 15%);
		gap: 1px;
		justify-content: space-between;
		background: #000;
	}

	.f-banner figure {
		background: #fff;
	}

	.f-banner .col img {
		width: 100%;
		object-fit: contain;
	}

	footer {
		background: #000;
		padding-bottom: 12vw;
	}


}