@charset "UTF-8";
/* Web Font */
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;700&display=swap");
/* Custom Properties */
:root {
	/* color */
	--color-default: #232323;
	/* font */
	--font-default: "Zen Old Mincho", serif;
}

/*-------------------------
reset
---------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
	overflow-x: clip;
}

html {
	-webkit-text-size-adjust: 100%;
}

body, input, textarea {
	font-size: 16px;
}

body {
	color: var(--color-default);
	font-family: var(--font-default);
	font-size: 16px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	text-align: justify;
	line-height: 1.75;
	margin: 0;
	position: relative;
}

img, a, ul, li, iframe, fieldset {
	border: none;
	outline: none;
}

a, img {
	display: block;
	width: 100%;
}

a.inline, img.inline {
	display: inline;
	width: auto;
}

img {
	line-height: 0;
}

a {
	color: var(--color-text);
	text-decoration: none;
	transition: 0.2s ease-out;
}

h1, h2, h3, h4, ol, ul, li, dl, dt, dd, p, figure, from, iframe, fieldset, legend {
	margin-block-start: 0;
	margin-block-end: 0;
	margin: 0;
	padding: 0;
}

ol, ul {
	list-style: none;
}

h1, h2, h3, h4 {
	font-size: 100%;
	font-weight: normal;
}

em {
	font-style: normal;
}

article, aside, footer, header, main, nav, section {
	display: block;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

textarea {
	resize: vertical;
}

input, textarea, select {
	font-size: 16px;
	padding: 3px;
	border: 1px solid #b2b2b2;
	border-radius: 5px;
}

select {
	padding: 2.5px 3px;
}

label {
	display: -webkit-box;
	display: flex;
}

label input {
	display: block;
}

/* iOSでのデフォルトスタイルをリセット */
input:focus {
	outline: none;
}

input[type=submit],
input[type=button] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
	display: inline-block;
	height: 2em;
	font-size: 16px;
	margin: 0 5px 0 0;
	cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
	display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
	outline-offset: -2px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	margin-left: 5px;
	opacity: 0.5;
}

@media (width <= 640px) {
	.pc {
		display: none !important;
	}
}
@media (width > 640px) {
	.sp {
		display: none !important;
	}
}
/* サイド */
.box-side {
	padding-inline: 35px;
}

/* 横幅 */
.w1100 {
	width: 100%;
	max-width: 1100px;
}
.w1100.box-side {
	max-width: 1170px;
}

/* 背景色 */
/* セクション */
/* パディング */
.pt180-60 {
	padding-top: clamp(60px, -2.566rem + 15.79vw, 180px) !important;
}

/* マージン */
.c-mt-s {
	margin-top: 30px !important;
}
@media (width <= 640px) {
	.c-mt-s {
		margin-top: 20px !important;
	}
}

.c-mt-m {
	margin-top: 60px !important;
}
@media (width <= 640px) {
	.c-mt-m {
		margin-top: 40px !important;
	}
}

.c-mt-l {
	margin-top: 100px !important;
}
@media (width <= 640px) {
	.c-mt-l {
		margin-top: 80px !important;
	}
}

.m-auto {
	margin-inline: auto !important;
}

/* リスト */
.c-list01 > li {
	padding-left: 1em;
	position: relative;
}
.c-list01 > li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.c-list01--notes > li::before {
	content: "※";
}
.c-list01--circle > li::before {
	content: "●";
	font-size: 0.75em;
	top: 0.25em;
}

/* 汎用タイトル */
.c-title01 span {
	display: block;
}
.c-title01__ja {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	background-color: #232323;
	padding-left: 20px;
	margin-top: 25px;
	position: relative;
	z-index: 1;
	clip-path: inset(0 100% 0 0);
}
@media (width <= 350px) {
	.c-title01__ja {
		font-size: 22px;
	}
}
.c-title01__ja::before {
	content: "";
	display: block;
	background-color: #232323;
	position: absolute;
	inset: 0;
}
.c-title01__ja + .c-title01__ja {
	margin-top: 10px;
}
.c-title01.animated .c-title01__ja {
	animation: text-clip 0.8s cubic-bezier(0.85, 0.01, 0.4, 1) forwards;
}
.c-title01.animated .c-title01__ja::before {
	animation: text-clip-cover 0.8s cubic-bezier(0.85, 0.01, 0.4, 1) forwards;
	animation-delay: 0.8s;
}

@keyframes text-clip {
	from {
		clip-path: inset(0 100% 0 0);
	}
	to {
		clip-path: inset(0 0 0 0);
	}
}
@keyframes text-clip-cover {
	from {
		clip-path: inset(0 0 0 0);
	}
	to {
		clip-path: inset(0 0 0 100%);
	}
}
/* 汎用テキスト */
.c-text-j {
	text-align: justify !important;
}

.c-text-r {
	text-align: right !important;
}

.c-text-c {
	text-align: center !important;
}

.c-fw-b {
	font-weight: bold !important;
}

/* 汎用ボタン */
/* フェードイン */
.c-feed {
	translate: 0 100px;
	opacity: 0;
	transition: opacity 1s, translate 1s;
}
.c-feed.animated {
	translate: 0 0;
	opacity: 1;
}

.header {
	position: relative;
	z-index: 100;
}
.header__title, .header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: calc(100vh - 80px);
	position: fixed;
	top: 50%;
	translate: 0 -50%;
}
.header__title::before, .header__title::after, .header__nav::before, .header__nav::after {
	content: "";
	display: block;
	width: 6px;
	height: 1px;
	background-color: #7b7b7b;
	position: absolute;
}
.header__title::before, .header__nav::before {
	top: 0;
}
.header__title::after, .header__nav::after {
	bottom: 0;
}
@media (width <= 640px) {
	.header__title, .header__nav {
		display: none;
	}
}
.header__title {
	border-left: 1px solid #7b7b7b;
	right: 0;
}
.header__title::before, .header__title::after {
	left: -3.5px;
}
.header__title-link {
	width: 36px;
}
.header__nav {
	border-right: 1px solid #7b7b7b;
	left: 0;
}
.header__nav::before, .header__nav::after {
	right: -3.5px;
}
.header__nav-list {
	display: flex;
	flex-direction: column;
	gap: 2em;
}
.header__nav-link {
	writing-mode: vertical-rl;
	font-weight: 500;
}
@media (any-hover: hover) {
	.header__nav-link:hover {
		color: #a01428;
	}
}

.spNavi__icon {
	font-size: 0;
	width: 60px;
	aspect-ratio: 1;
	position: fixed;
	inset: 0 0 auto auto;
	z-index: 100;
	cursor: pointer;
	/*ボタン内側*/
}
.spNavi__icon::before, .spNavi__icon::after,
.spNavi__icon span {
	display: block;
	background: #232323;
	height: 1px;
	width: 20px;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	position: absolute;
	transform: translate(-50%, 0);
}
.spNavi__icon::before {
	content: "";
	inset: calc(50% - 6px) auto auto 50%;
}
.spNavi__icon::after {
	content: "";
	inset: calc(50% + 6px) auto auto 50%;
}
.spNavi__icon span {
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
}
.spNavi__icon--active::before, .spNavi__icon--active::after {
	background-color: #fff;
	width: 50%;
}
.spNavi__icon--active::before {
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.spNavi__icon--active::after {
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.spNavi__icon--active span {
	opacity: 0;
}
.spNavi__menu {
	background-color: #232323;
	position: fixed;
	inset: 0 0 auto auto;
	z-index: 99;
	translate: 100% 0;
	transition: translate 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.spNavi__menu * {
	color: #fff;
}
.spNavi__menu ul {
	padding: 70px 35px 40px;
}
.spNavi__menu ul > li + li {
	margin-top: 1em;
}
.spNavi__menu--active {
	translate: 0 0;
}

.footer {
	position: relative;
	z-index: 200;
}
.footer__tel {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	writing-mode: vertical-rl;
	letter-spacing: 0.1em;
	width: 40px;
	background-color: #a01428;
	padding: 12px 0;
	position: fixed;
	inset: auto 0 0 auto;
	z-index: 200;
}
@media (width <= 640px) {
	.footer__tel {
		writing-mode: horizontal-tb;
		width: auto;
		padding: 5px 15px;
	}
}
.footer__tel::before {
	content: "";
	display: block;
	width: 16px;
	aspect-ratio: 1;
	background: url(../img/common/icon_tel01.svg) center/contain no-repeat;
}

.main {
	padding-inline: 80px;
}
@media (width <= 640px) {
	.main {
		padding-inline: 0;
	}
}

/* fv */
.fv {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(60px, 2.697rem + 2.63vw, 80px);
	padding-top: clamp(80px, -1.316rem + 15.79vw, 200px);
}
.fv__title {
	width: clamp(111px, 5.569rem + 3.42vw, 137px);
	margin-left: 45px;
}
.fv__img {
	width: 100%;
	max-width: 700px;
}

/* concept */
.concept__img {
	height: clamp(160px, -6.842rem + 42.11vw, 480px);
	clip-path: inset(0 100% 0 0);
	transition: clip-path 1s cubic-bezier(0.85, 0.01, 0.4, 1);
}
.concept__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.concept__img.animated {
	clip-path: inset(0 0 0 0);
}
.concept__box {
	display: flex;
	flex-direction: column;
	gap: 90px;
	writing-mode: vertical-rl;
	margin: 60px auto 0;
	position: relative;
}
@media (width <= 1200px) {
	.concept__box {
		gap: 20px;
	}
}
@media (width <= 960px) {
	.concept__box {
		gap: 80px;
		writing-mode: horizontal-tb;
		max-width: 500px;
	}
}
.concept__box > * {
	padding-inline: 20px;
	position: relative;
}
@media (width <= 960px) {
	.concept__box > * {
		padding-inline: 0;
	}
}
.concept__box > * + *:not(.concept__img01)::before {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background-color: #7b7b7b;
	position: absolute;
	inset: 0 -45px auto auto;
}
@media (width <= 1200px) {
	.concept__box > * + *:not(.concept__img01)::before {
		right: -10px;
	}
}
@media (width <= 960px) {
	.concept__box > * + *:not(.concept__img01)::before {
		width: calc(100% + 35px);
		height: 1px;
		inset: -40px auto auto -35px;
	}
}
.concept__title {
	font-size: clamp(28px, 1.329rem + 1.05vw, 36px);
	font-weight: bold;
	letter-spacing: 0.2em;
}
@media (width <= 350px) {
	.concept__title {
		font-size: 20px;
	}
}
.concept__text {
	line-height: 2.25;
}
.concept__img01 {
	width: 690px;
	position: absolute;
	inset: 160px auto auto -35px;
}
@media (width <= 960px) {
	.concept__img01 {
		width: 507px;
		inset: -85px -200px auto auto;
	}
}
@media (width <= 640px) {
	.concept__img01 {
		width: 507px;
		inset: -85px -262px auto auto;
	}
}

/* menu */
.menu {
	padding-top: 180px;
	position: relative;
}
.menu__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 50px 30px;
	max-width: 1125px;
	padding-left: 35px;
	margin-left: auto;
}
@media (width <= 767px) {
	.menu__inner {
		flex-direction: column-reverse;
		align-items: flex-start;
		padding-right: 35px;
	}
}
.menu__box {
	width: 480px;
}
@media (width <= 960px) {
	.menu__box {
		width: 300px;
	}
}
@media (width <= 767px) {
	.menu__box {
		width: 100%;
	}
}
.menu__box > * + * {
	margin-top: clamp(40px, 1.974rem + 1.32vw, 50px);
}
.menu__text + .menu__text {
	margin-top: 1em;
}
@media (width <= 960px) {
	.menu__text-tab {
		display: none;
	}
}
.menu__img {
	flex: 1;
	width: 100%;
	max-width: 610px;
}
@media (width <= 767px) {
	.menu__img {
		flex: 0 1 auto;
		width: calc(100% + 35px);
		height: 160px;
		margin-left: -35px;
	}
	.menu__img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/* reserve */
.reserve {
	padding-top: clamp(60px, -2.566rem + 15.79vw, 180px);
	position: relative;
}
.reserve__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 50px 30px;
	max-width: 1125px;
	padding-right: 35px;
}
@media (width <= 767px) {
	.reserve__inner {
		flex-direction: column-reverse;
		align-items: flex-start;
		padding-left: 35px;
	}
}
.reserve__box {
	width: 360px;
}
@media (width <= 960px) {
	.reserve__box {
		width: 300px;
	}
}
@media (width <= 767px) {
	.reserve__box {
		width: 100%;
	}
}
.reserve__box > * + * {
	margin-top: clamp(40px, 1.974rem + 1.32vw, 50px);
}
.reserve__img {
	flex: 1;
	width: 100%;
	max-width: 610px;
}
@media (width <= 767px) {
	.reserve__img {
		flex: 0 1 auto;
		width: calc(100% + 35px);
		height: 160px;
		margin-right: -35px;
	}
	.reserve__img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
@media (width <= 960px) {
	.reserve__text-tab {
		display: none;
	}
}
.reserve__tel {
	display: flex;
	align-items: baseline;
	gap: 5px;
}
@media (width <= 767px) {
	.reserve__tel {
		justify-content: center;
		margin-top: 30px;
	}
}
@media (width <= 350px) {
	.reserve__tel {
		font-size: 13px;
	}
}
.reserve__tel::before {
	content: "";
	display: block;
	width: 20px;
	aspect-ratio: 1;
	background: url(../img/common/icon_tel02.svg) center/contain no-repeat;
}
.reserve__tel-bangou {
	display: block;
	font-size: 30px;
	letter-spacing: 0.08em;
}
@media (width <= 350px) {
	.reserve__tel-bangou {
		font-size: 25px;
	}
}

/* access */
.access {
	padding-top: clamp(100px, 2.039rem + 10.53vw, 180px);
}
@media (width <= 640px) {
	.access {
		margin-bottom: 42px;
	}
}
.access__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1140px;
	padding-inline: 20px;
	margin-inline: auto;
}
.access__title {
	width: 100px;
	margin-left: 25px;
}
.access__text {
	text-align: center;
	margin-top: 60px;
}
.access__text + .access__text {
	margin-top: 1em;
}
.access__copy {
	font-size: 12px;
	font-weight: 500;
	text-align: right;
	width: 100%;
	margin-top: 50px;
}
.access__map {
	max-width: 1100px;
	height: clamp(260px, 4.671rem + 28.95vw, 480px);
	margin: clamp(15px, -0.905rem + 4.61vw, 50px) auto 0;
	filter: grayscale(100%);
}
.access__map iframe {
	width: 100%;
	height: 100%;
}/*# sourceMappingURL=style.css.map */