@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;
	--bgPrimary: #000;
	--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);
}

body.is-loading {
	overflow: hidden;
}

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-image {
	overflow: hidden;
	background-color: #000;
	position: relative;
}

.js-image img {
	width: 100%;
	height: auto;
	display: block;
	transform: scale(1.2);
	filter: brightness(0);
	will-change: transform, filter;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50%);
	pointer-events: none;
	z-index: 1;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100svh;
	background: var(--bgPrimary);
	z-index: 99999;
	transform-origin: center;
}

.loading .loading__image {
	display: grid;
	place-items: center;
	width: 300px;
	width: clamp(10rem, 6.919rem + 13.15vw, 18.75rem);
	margin-inline: auto;
	height: inherit;
	opacity: 0;
	transform: scale(0.6);
}

.inner__padding {
	padding-inline: 12px;
}

.title__primary {
	position: relative;
	z-index: 30;
	font-size: 2.5rem;
	font-family: var(--fontEn);
	color: var(--textSecondary);
	line-height: 100%;
}

.title__secondary {
	position: relative;
	padding-bottom: 10px;
	text-align: center;
	font-size: 1.5625rem;
	font-family: var(--fontEn);
	color: var(--textSecondary);
	line-height: 100%;
}

.title__secondary::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 222px;
	height: 8px;
	background: url(../image/_common/icon_border.png) no-repeat center center/contain;
}

.--common-table {
	margin-top: 37px;
	max-width: 277px;
	width: 100%;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 27px;
}

.--common-table div {
	display: flex;
	justify-content: space-between;
}

.--common-table div dt {
	font-weight: normal;
	font-size: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.--common-table div dd {
	font-size: 0.75rem;
}

.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;
	z-index: -1;
}

.gird .grid__main {
	background: var(--bgPrimary);
}

.grid__right {
	position: relative;
}

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

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

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

.header {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 70px;
	max-width: 430px;
	width: 100%;
	padding: 10px;
	background: transparent;
	z-index: 10000;
}

.header .header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .header__logo {
	width: 78px;
}

.header .header__hamburger {
	width: 46px;
	height: 46px;
	background: #a41a1a;
	border-radius: 50%;
	border: 1px solid #765c0b;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.header .header__hamburger.is-active {
	background: #333;
}

.header .header__hamburger.is-active .header__hamburger--bars span:nth-of-type(2) {
	opacity: 0;
}

.header .header__hamburger.is-active .header__hamburger--bars span:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.header .header__hamburger.is-active .header__hamburger--bars span:nth-of-type(3) {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
}

.header .header__hamburger--bars {
	position: relative;
	width: 27px;
	height: 13px;
	display: inline-block;
	transition: all 0.3s ease;
}

.header .header__hamburger--bars span {
	position: absolute;
	right: 0;
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 100vmax;
	background: #765c0b;
}

.header .header__hamburger--bars span:nth-of-type(1) {
	top: 0;
}

.header .header__hamburger--bars span:nth-of-type(2) {
	top: 50%;
}

.header .header__hamburger--bars span:nth-of-type(3) {
	bottom: 0;
}

.header__hamburger-menu {
	padding-top: 200px;
	text-align: center;
	position: fixed;
	top: 0;
	transform: translateY(-100%);
	height: 100dvh;
	background: #333;
	max-width: 430px;
	width: 100%;
	transition: all 0.3s ease;
	z-index: 9999;
}

.header__hamburger-menu.is-active {
	transform: translateY(0);
	visibility: visible;
}

.header__hamburger-menu nav ul li a {
	width: 100%;
	padding: 20px;
	font-size: 1.375rem;
	font-family: var(--fontEn);
	color: var(--textSecondary);
	letter-spacing: 2px;
}

.fv {
	position: relative;
	z-index: 100;
}

.fv img {
	height: 100%;
	object-fit: cover;
}

.story {
	position: relative;
	padding-top: 58px;
}

.story::before {
	content: "";
	position: absolute;
	top: -83px;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../image/index/cafe/bg.png) no-repeat center center/cover;
	z-index: 90;
}

.story::after {
	content: "";
	position: absolute;
	top: 125px;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../image/index/cafe/story_bg.png) no-repeat center center/cover;
	z-index: 800;
}

.story .story__inner {
	position: relative;
	z-index: 900;
}

.story .story__head {
	text-align: center;
}

.story .story__head--title {
	position: relative;
	z-index: 30;
	font-size: 2.5rem;
	font-family: var(--fontEn);
	color: var(--textSecondary);
	line-height: 100%;
}

.story .story__head--text {
	margin-top: 23px;
	font-size: 0.8125rem;
}

.story .story__head--text-en {
	margin-top: 15px;
	font-size: 0.625rem;
	opacity: 0.8;
}

.story .story__body {
	margin-top: 70px;
	max-width: 350px;
	width: 100%;
	margin-inline: auto;
	text-align: center;
}

.story .story__body--title {
	font-size: 2.5rem;
	font-family: var(--fontMincho);
	color: var(--textSecondary);
	line-height: 1.5;
}

.story .story__body--text {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	font-size: 0.875rem;
}

.story .story__body--text p span {
	padding: 2px;
	background: var(--AccentRed);
}

.story .story__body--logo {
	margin-top: 46px;
	width: 130px;
	margin-inline: auto;
}

.story .story__body--image {
	margin-top: 55px;
}

.menu {
	position: relative;
	margin-top: 45px;
	z-index: 999;
}

.menu .menu__bg {
	position: absolute;
	top: 60px;
	left: 50%;
	transform: translateX(-50%);
	width: 400px;
	max-width: 100%;
	z-index: 1;
}

.menu .menu__inner {
	position: relative;
	z-index: 10;
}

.menu .menu__head {
	text-align: center;
}

.menu .menu__names {
	font-family: var(--fontEn);
	color: var(--textSecondary);
	line-height: 1.1;
}

.menu .menu__names--name01 {
	margin-top: 76px;
	font-size: 4.4375rem;
}

.menu .menu__names--name02 {
	margin-top: 155px;
	text-align: right;
	font-size: 3.4375rem;
}

.menu .menu__body {
	max-width: 320px;
	width: 100%;
	margin-inline: auto;
	margin-top: 84px;
}

.menu .menu__body--others {
	margin-top: 84px;
}

.menu .menu__body--others ul {
	font-size: 0.75rem;
	color: var(--textSecondary);
}

.menu .menu__body--items {
	margin-top: 64px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.menu .menu__body--number {
	font-size: 0.875rem;
	color: var(--AccentRed);
	font-weight: bold;
}

.menu .menu__body--text {
	font-size: 0.75rem;
}

.location {
	margin-top: 67px;
}

.location .location__head {
	text-align: center;
}

.location .location__content {
	margin-top: 22px;
}

.location .location__map {
	margin-top: 22px;
	aspect-ratio: 16/9;
}

.location .location__map iframe {
	width: 100%;
	height: 100%;
}

.location .location__address {
	margin-top: 29px;
	max-width: 277px;
	width: 100%;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 23px;
}

.location .location__address--head {
	font-size: 0.8125rem;
}

.location .location__address--head p:nth-of-type(1) {
	color: var(--textSecondary);
}

.location .location__address--head p:nth-of-type(2) {
	margin-top: 4px;
	letter-spacing: 1px;
}

.location .location__address--body {
	font-size: 0.8125rem;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.location .location__address--body p {
	letter-spacing: 1px;
}

.location .location__address--body p:nth-of-type(2) {
	margin-top: 6px;
}

.location .location__address--body ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer {
	padding-bottom: 50px;
	text-align: center;
	margin-top: 90px;
	margin-bottom: 20px;
}

.footer .copy-right small {
	font-size: 0.625rem;
	letter-spacing: 1px;
}

.sidebar {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) translateY(100%);
	width: 100%;
	height: auto;
	max-width: 430px;
	width: 100%;
	z-index: 3000;
	opacity: 0;
	transition: transform 0.4s ease-out, opacity 0.4s ease-out;
	pointer-events: none;
}

.sidebar.is-active {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.sidebar .sidebar__inner {
	display: flex;
	align-items: center;
}

.sidebar .sidebar__link {
	padding-block: 12px;
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	line-height: 100%;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.sidebar .sidebar__link.--instagram {
	background: #775a0b;
}

.sidebar .sidebar__link.--tel {
	background: #a41a1a;
}

@media (any-hover: hover),
(hover: hover) and (pointer: fine) {

	.sidebar .sidebar__link:hover,
	.sidebar .sidebar__link:focus {
		opacity: 0.8;
	}
}

.sidebar .sidebar__link--icon {
	width: 24px;
	height: 24px;
}