@charset "UTF-8";

:root {
	--fontBase: "HiraKakuStd-W1", "HiraginoSans-W1", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	--fontEn: "eloquent-jf-pro", serif;
	--fontMincho: "游明朝体",
		"Yu Mincho",
		YuMincho,
		"ヒラギノ明朝 Pro",
		"Hiragino Mincho Pro",
		"MS P明朝",
		"MS PMincho",
		serif;
	--textPrimary: rgba(255, 255, 255, 0.7);
	--textSecondary: #ffffff;
	--textTertiary: #000000;
	--bgPrimary: #f2f2f2;
	--bgSecondary: #000000;
	--AccentRed: #850e0f;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding: 80px;
}

body {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	font-family: var(--fontBase);
	color: var(--textPrimary);
	background: var(--bgPrimary);
}

a {
	display: inline-block;
	text-decoration: none;
	color: inherit;
}

li,
ol,
summary {
	list-style: none;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	font-style: italic;
	background-repeat: no-repeat;
	background-size: cover;
	shape-margin: 0.75rem;
}

button {
	touch-action: manipulation;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

button,
input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	text-transform: none;
	border-radius: 0;
}

.js-box,
.js-logo,
.js-title {
	visibility: hidden;
	opacity: 0;
}

.gird {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 430px 1fr;
}

@media (max-width: 430px) {
	.gird {
		grid-template-columns: 100%;
	}
}

.gird::before {
	content: "";
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	background: url(../image/_common/bg.jpg) no-repeat center center/cover;
}

.gird .gird__main {
	background: #000;
}

.gird .grid__right {
	position: relative;
}

.gird .grid__right .grid__right--inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.gird .grid__right .grid__right--logo {
	position: fixed;
	top: 40%;
	height: 100vh;
	text-align: center;
	width: 180px;
}

@media (max-width: 992px) {
	.gird .grid__right .grid__right--logo {
		display: none;
	}
}

.home {
	position: relative;
	height: 100dvh;
	overflow: hidden;
}

.home .home__inner {
	height: inherit;
}

.home .home__logo {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.home .home__boxes {
	display: flex;
	flex-direction: column;
	height: inherit;
}

.home .home__box {
	position: relative;
	width: 100%;
	height: 50%;
	will-change: transform;
	overflow: hidden;
}

.home .home__box:hover,
.home .home__box:focus {
	opacity: 0.8 !important;
}

.home .home__box--content {
	height: 100%;
}

.home .home__box--content--title {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 94px;
	height: 110px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: var(--fontEn);
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 0.02em;
	line-height: 1.3;
}

.home .home__box--content--title.is-cafe {
	bottom: 0;
	color: var(--textSecondary);
	background: var(--bgSecondary);
}

.home .home__box--content--title.is-bar {
	top: 0;
	color: var(--textTertiary);
	background: linear-gradient(to bottom, #a4814c, #f4d677);
}

.home .home__box--content--title span {
	display: block;
	font-size: 12px;
}

.home .home__box--content--image {
	height: 100%;
}

.home .home__box--content--image img {
	height: inherit;
	object-fit: cover;
}