@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;900&display=swap");

/* ===============================================
# Foundation
=============================================== */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	font-size: 100%;
}

body {
	background-color: #fff;
	font-family: "Zen Maru Gothic", sans-serif;
	overflow: hidden;
}

a {
	text-decoration: none;
	color: #111;
}

li {
	list-style: none;
}

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

/* ===============================================
# Layout
=============================================== */
.l-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 100;
	transform: translateY(-100%);
}

.l-header__nav {
	width: 100%;
	height: 100%;
}

.l-header__list {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.l-header__item {
	height: 100%;
}

.l-header__link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	padding: 10px 20px;
}

/* ===============================================
# Project
=============================================== */

/* p-hero
------------------------------------------------ */
.p-hero {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh; /* 動的ビューポート高さ（スマホブラウザ対応） */
	z-index: 1000;
}

.p-hero__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translate(0, 50%) scale(0.5);
	filter: grayscale(1);
	object-fit: cover;
}

.p-hero__content {
	position: absolute;
	left: 6%;
	bottom: 3%;
	width: fit-content;
	height: fit-content;
	padding: 40px;
}

.p-hero__title {
	font-size: 80px;
	color: #fff;
	/* font-weight: 900; */
	font-family: "Montserrat", sans-serif;
	margin-bottom: 20px;
	display: block;
}

.p-hero__text {
	font-size: 32px;
	color: #fff;
	/* font-weight: 900; */
	font-family: "Montserrat", sans-serif;
}

.p-hero__rightNav {
	position: absolute;
	top: 16%;
	right: 12%;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	z-index: 1001;
}

.p-hero__columnsTop,
.p-hero__columnsBottom {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
}

.p-hero__columnsTop-l,
.p-hero__columnsBottom-l {
	font-size: 24px;
	font-weight: bold;
	min-width: 30px;
}

.p-hero__columnsTop-lists,
.p-hero__columnsBottom-lists {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.p-hero__columnsTop-list span,
.p-hero__columnsBottom-list span {
	color: #fff;
	font-size: 21px;
}

/* p-gallery
------------------------------------------------ */
.p-gallery {
	width: 100%;
	margin-top: 100vh;
	margin-top: 100dvh; /* 動的ビューポート高さ（スマホブラウザ対応） */
	overflow: hidden;
}

.p-gallery__wrapper {
	width: 100%;
	max-width: none;
	height: 100vh;
	height: 100dvh; /* 動的ビューポート高さ（スマホブラウザ対応） */
	display: flex;
	align-items: center;
	margin: 0;
	position: relative;
}

.p-gallery__list {
	/* widthを決めていない */
	height: 100%;
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
}

.p-gallery__item {
	width: 100vw;
	height: 100vh;
	height: 100dvh; /* 動的ビューポート高さ（スマホブラウザ対応） */
	position: relative;
	flex-shrink: 0; /* 自動的に幅が縮まらないようにしている */
}

.p-gallery__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===============================================
# Utility
=============================================== */

/* アニメーション用のクラス */
.js-text-animation {
	overflow: hidden;
}

.js-text-animation span {
	display: inline-block;
	transform: translateY(100%);
}

/* レスポンシブ表示制御 */
.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

/* ブレークポイント用改行クラス */
br.pc-only {
	display: block;
}

br.sp-only {
	display: none;
}

/* pin-spacer */
/* .pin-spacer {
	z-index: 1000;
} */
.slide__container {
	position: absolute;
	left: 90px;
	bottom: 70px;
	color: white;
}
.slide__title {
	font-size: 40px;
	font-weight: bold;
	font-family: "Signika Negative", sans-serif;
	margin-top: 40px;
	span {
		font-size: 70px;
		padding-right: 20px;
	}
}
.slide__subTitle {
	display: inline-block;
	font-size: 24px;
	font-weight: bold;
	font-family: "Signika Negative", sans-serif;
}
.slide__text {
	font-size: 18px;
	margin-top: 20px;
	/* font-weight: bold; */
	line-height: 1.8;
}
.slide__logo {
	position: absolute;
	top: 5%;
	left: 6%;
}
.slide__QR {
	position: absolute;
	top: 5%;
	right: 6%;
	width: 174px;
	p {
		color: #fff;
		margin: 0 0 0 auto;
		display: block;
		text-align: right;
	}
}

#vdbanner {
	display: none;
}

@media screen and (max-width: 767px) {
	/* レスポンシブ表示制御 */
	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}

	/* SP用改行クラス */
	br.pc-only {
		display: none;
	}

	br.sp-only {
		display: block;
	}

	.p-hero__content {
		position: absolute;
		left: 0;
		bottom: auto;
		width: fit-content;
		height: fit-content;
		padding: 0px;
		top: calc(env(safe-area-inset-top) + 20px);
		left: 20px;
	}
	.p-hero__title {
		font-size: 10px;
		color: #fff;
		/* font-weight: 900; */
		font-family: "Montserrat", sans-serif;
		margin-bottom: 20px;
		width: 220px;
	}
	.p-hero__rightNav {
		position: absolute;
		top: auto;
		right: 0;
		color: #fff;
		font-family: "Montserrat", sans-serif;
		z-index: 1001;
		bottom: 5%;
	}
	.p-hero__columnsTop-list span,
	.p-hero__columnsBottom-list span {
		color: #fff;
		font-size: 14px;
	}
	.p-hero__rightNav {
		position: absolute;
		top: auto;
		right: auto;
		color: #fff;
		font-family: "Montserrat", sans-serif;
		z-index: 1001;
		bottom: calc(env(safe-area-inset-bottom) + 5%);
		left: 20px;
	}
	.p-hero__columnsTop,
	.p-hero__columnsBottom {
		display: flex;
		align-items: flex-start;
		gap: 20px;
		margin-bottom: 15px;
	}
	.slide__logo {
		position: absolute;
		top: calc(env(safe-area-inset-top) + 20px);
		left: 8%;
		width: 90px;
	}
	.slide__QR {
		position: absolute;
		top: calc(env(safe-area-inset-top) + 20px);
		right: 6%;
		width: 96px;
		color: #fff !important;
		font-size: 10px;
		p {
			color: #fff !important;
			margin: 0 0 0 auto;
			display: block;
			text-align: left;
			font-size: 10px;
			padding-top: 4px;
			overflow-wrap: break-word;
			word-wrap: break-word;
		}
	}
	.slide__container {
		position: absolute;
		left: 20px;
		bottom: calc(env(safe-area-inset-bottom) + 5%);
		color: white;
	}
	.slide__title {
		font-size: 18px;
		font-weight: bold;
		font-family: "Signika Negative", sans-serif;
		margin-top: 40px;
		span {
			font-size: 44px;
			padding-right: 20px;
		}
	}
	.slide__text {
		font-size: 12px;
		margin-top: 5px;
		/* font-weight: bold; */
		line-height: 1.7;
		font-weight: bold;
	}
}
