/* リキッドレイアウト対応 */

body {
	background-color: #0C0A09;
	color: #EDEDED;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
}

.pc-only {
	display: none;
}

html {
	font-size: 16px;
}

/* 画面の高さに合わせてフッターを下に広げる */

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

footer {
	margin-top: auto;
}

/* ヘッダー固定した場合、ページ内リンクの遷移先がズレる問題解消 */

html {
	scroll-padding-top: 48px;
}

/* ドロワー表示時、 背景を固定してスクロールできないようにする */

body.fixed {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

/* pcの電話番号発信対応 */

/* ホバー */

a,
button {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}

/* 非表示設定（視覚的に隠しつつスクリーンリーダーでは読み上げられる） */

/* https://gist.github.com/roatnek/c24d5257c4f6d5b1ef0f2328609a0221 */

.visually-hidden {
	clip: rect(1px, 1px, 1px, 1px) !important;
	height: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	width: 1px !important;
}

.wbr {
	display: inline-block;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%; /* 実機端末を横向きにした際のブラウザの自動拡大をオフ */
	-webkit-text-size-adjust: 100%;
	line-height: 1;
	min-height: 100vh;
	text-rendering: optimizeSpeed; /* 上記のSafari用 */
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

hr {
	border: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

/* js-triggerと一緒に使う */

/* =========================================== */

/*                 inview                      */

/* =========================================== */

.inview {
	opacity: 0;
	transform: translateY(30px);
	transition: transform 2s, opacity 2s;
}

.inview.show {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================== */

/*                slide-up                     */

/* =========================================== */

.slide-up {
	display: inline-block;
	overflow: hidden;
}

.slide-up * {
	display: inline-block;
	opacity: 0;
	transform: translateY(100%);
}

.slide-up.show * {
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-name: slideInFromBottom;
}

/* =========================================== */

/*               anime-zoom                    */

/* =========================================== */

.anime-zoom__img {
	overflow: hidden;
}

/* =========================================== */

/*                   Header                    */

/* =========================================== */

.header {
	width: 100%;
}

.header__nav {
	background-color: #0C0A09;
	height: 3rem;
	transition: all 0.3s ease;
	width: inherit;
	z-index: 200;
}

.header__nav.is-fixed {
	background-color: #0C0A09;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
}

.header__inner {
	display: grid;
	height: 100%;
}

.header__logo {
	display: block;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.header__logo-link {
	align-items: center;
	display: flex;
	height: 100%;
	width: 8.125rem;
}

.header__logo-link:hover {
	opacity: 1;
}

.header__logo-link img {
	-o-object-fit: cover;
	aspect-ratio: 130/36;
	object-fit: cover;
}

.header__fv-img img {
	-o-object-fit: cover;
	aspect-ratio: 375/530;
	object-fit: cover;
}

/* =========================================== */

/*                  PC Header                  */

/* =========================================== */

.header__pc-nav {
	display: none;
}

/* =========================================== */

/*                  SP Header                  */

/* =========================================== */

.header__drawer {
	background-color: #0C0A09;
	display: block;
	height: 100vh;
	height: 100dvh;
	left: 0;
	max-width: 25rem;
	overflow-y: auto;
	padding-bottom: 5.5rem;
	padding-top: 5.5rem;
	position: absolute;
	top: 0; /* スライド初期状態：画面外へ */
	transform: translateX(-100%);
	transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	width: 80%;
	will-change: transform;
	z-index: 2;
}

.header__drawer.is-open {
	transform: translateX(0);
}

.header__drawer::before {
	align-items: center;
	background-color: rgba(12, 10, 9, 0.85);
	bottom: 0;
	color: #fff;
	content: "Coming Soon...";
	display: grid;
	font-family: "Libertinus Serif", serif;
	font-size: 2rem;
	justify-items: center;
	left: 0;
	place-items: center;
	pointer-events: none;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	z-index: 2;
}

/* 画面の残り30%に被る暗幕（クリックで閉じる） */

.header__backdrop {
	background: rgba(0, 0, 0, 0.3);
	bottom: 0;
	left: 0;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 0.3s ease;
	visibility: hidden;
	z-index: 1;
}

.header__backdrop.is-open {
	opacity: 1;
	visibility: visible;
}

/* hidden制御（アニメ用に必須） */

[hidden] {
	display: none !important;
}

.header__sp-nav-items {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.header__sp-nav-item {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.header__sp-nav-item:nth-of-type(odd) {
	border-bottom: 0.125rem solid #004A68;
	border-top: 0.125rem solid #AF262D;
}

.header__sp-nav-item:last-child {
	background-color: rgba(175, 38, 45, 0.7);
	border-bottom: none;
	border-top: none;
}

.header__sp-nav-item a {
	align-content: center;
	display: inline-flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 0.125rem;
	height: inherit;
	justify-content: center;
	padding-bottom: 1.5rem;
	padding-top: 1.5rem; /* 無効化 */
	pointer-events: none;
	text-align: center;
	width: 100%;
	word-break: keep-all;
}

.header__sp-nav-item a span.-en {
	color: #EDEDED;
	font-family: "Libertinus Serif", serif;
	font-size: 1.5rem;
	text-transform: uppercase;
}

.header__sp-nav-item a span.-ja {
	color: #E2B465;
	font-family: "Shippori Mincho", serif;
	font-size: 0.75rem;
}

/* =========================================== */

/*                 Hamburger                   */

/* =========================================== */

.header__hamburger {
	color: #EDEDED;
	display: block;
	height: inherit;
	margin-left: auto;
	max-width: 3.875rem;
	padding-left: 1rem;
	padding-right: 1rem;
	position: relative;
	width: 100%;
	z-index: 50;
}

.header__hamburger:hover {
	opacity: 1;
}

.header__hamburger span {
	background-color: currentColor;
	display: block;
	height: 0.125rem;
	margin-left: auto;
	position: relative;
	transition: 0.5s;
	width: 1.875rem;
}

.header__hamburger span:nth-of-type(2) {
	top: -0.25rem;
}

.header__hamburger span:nth-of-type(3) {
	top: 0.125rem;
}

.header__hamburger.is-open span:nth-of-type(2) {
	background-color: #AF262D;
	top: 0.125rem;
	transform: rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(3) {
	background-color: #004A68;
	top: 0rem;
	transform: rotate(-45deg);
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 632px;
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}

.other-info--layout {
	margin-bottom: 4.5rem;
	margin-top: 4.5rem;
}

.other-info__outline {
	grid-gap: 4rem;
	display: grid;
	gap: 4rem;
	margin-bottom: 4.5rem;
}

.other-info__outline-item {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
}

.other-info__outline-item-title {
	grid-gap: 0.875rem;
	display: grid;
	font-family: "Shippori Mincho", serif;
	font-size: 2rem;
	font-weight: 700;
	gap: 0.875rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	text-align: center;
	width: -moz-fit-content;
	width: fit-content;
}

.other-info__outline-item-title::before {
	background-color: currentColor;
	content: "";
	height: 0.0625rem;
	left: 0;
	position: absolute;
	top: 2.375rem;
	width: 100%;
}

.other-info__outline-item-title span {
	display: block;
	font-size: 0.875rem;
	font-weight: 400;
}

.other-info__outline-item-content {
	grid-gap: 0.75rem;
	display: grid;
	gap: 0.75rem;
	justify-content: center;
}

.other-info__outline-item-content.-flex {
	align-items: center;
	display: flex;
}

.other-info__outline-item-text {
	font-family: "Shippori Mincho", serif;
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
}

.other-info__outline-item-text.-slash {
	align-self: end;
}

.other-info__outline-item-text span.-fs-28 {
	font-size: 1.75rem;
}

.other-info__outline-item-text span.-fs-32 {
	font-size: 2rem;
}

.other-info__btn {
	text-align: center;
}

.other-info__btn a {
	align-items: center;
	display: inline-grid;
	width: 100%;
}

@media (hover: hover) and (pointer: fine) {

.anime-zoom:hover .anime-zoom__img img {
	transform: scale(1.12, 1.12);
}

}

@media screen and (min-width: 768px) {

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

html {
	font-size: 1.5384615385vw;
}

main {
	margin-top: 0;
}

body.fixed {
	position: static;
	position: initial;
}

a[href^="tel:"] {
	pointer-events: none;
}

a:not([href]):hover {
	opacity: 1;
}

.anime-zoom__img img {
	transition: 0.5s all;
}

.header {
	display: flex;
	flex-direction: column-reverse;
}

.header__nav {
	border-bottom: 0.125rem solid #004A68;
	border-top: 0.125rem solid #AF262D;
	height: 5.125rem;
	position: relative;
}

.header__nav::before {
	align-items: center;
	background-color: #0C0A09;
	content: "Coming Soon...";
	display: flex;
	font-family: "Libertinus Serif", serif;
	font-size: 2rem;
	height: 100%;
	justify-content: center;
	left: 0;
	opacity: 0.85;
	position: absolute;
	text-align: center;
	top: 0;
	width: 100%;
}

.header__inner {
	align-items: center;
	gap: 1.25rem;
}

.header__logo {
	display: none;
}

.header__fv-img img {
	aspect-ratio: 1440/800;
}

.header__pc-nav {
	display: block;
	height: 100%;
}

.header__pc-nav-items {
	display: flex;
	gap: 1rem;
	height: inherit;
	justify-content: space-between;
}

.header__pc-nav-item {
	height: inherit;
}

.header__pc-nav-item.-accent a {
	background-color: rgba(175, 38, 45, 0.7);
}

.header__pc-nav-item a {
	align-content: center;
	cursor: default;
	display: inline-flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 0.125rem;
	height: inherit;
	justify-content: center;
	padding-left: 1.125rem;
	padding-right: 1.125rem; /* 無効化 */
	pointer-events: none;
	text-align: center;
	width: inherit;
	word-break: keep-all;
}

.header__pc-nav-item a span.-en {
	color: #EDEDED;
	font-family: "Libertinus Serif", serif;
	font-size: 1.5rem;
	text-transform: uppercase;
}

.header__pc-nav-item a span.-ja {
	color: #E2B465;
	font-family: "Shippori Mincho", serif;
	font-size: 0.75rem;
}

.header__hamburger {
	display: none;
}

.header__drawer {
	display: none;
}

.header__backdrop {
	display: none;
}

.header__hamburger {
	display: none;
}

.inner {
	max-width: 1120px;
	padding-left: 40px;
	padding-right: 40px;
}

.other-info--layout {
	margin-bottom: 5.5rem;
	margin-top: 5.5rem;
}

.other-info__btn a {
	height: 10rem;
	max-width: 56.25rem;
}

}

@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {

.header__pc-nav-item.-accent a:hover {
	background-color: rgba(175, 38, 45, 0.5);
}

.header__pc-nav-item:not(.-accent) a:hover {
	background-color: rgba(237, 237, 237, 0.15);
}

.other-info__btn a:hover {
	opacity: 0.8;
}

}

@media screen and (min-width: 1024px) {

html {
	scroll-padding-top: 82px;
}

}

@media (min-width: 1040px) {

html {
	font-size: 16px;
}

}

@media screen and (max-width: 767px) {

.header__inner {
	grid-template-columns: auto 1fr;
	max-width: none;
	max-width: initial;
	padding-left: 0;
	padding-right: 3.4375rem;
}

.header__fv-img {
	margin-top: 3rem;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes slideInFromBottom {

to {
	opacity: 1;
	transform: translateY(0);
}

}


/*# sourceMappingURL=style.css.map */
