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

body {
	background: #1c1b1b;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}

.pc-only {
	display: none;
}

html {
	font-size: 16px;
	font-size: 3.7209302326vw;
}

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

html {
	scroll-padding-top: 5.0625rem;
}

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

footer {
	margin-top: auto;
}

/* ドロワー表示時、背景を固定してスクロールできないようにする
   iOS は body の overflow:hidden を無視する＆ハッシュ遷移直後は visual viewport が
   layout viewport と同期しないため、body 自体を position:fixed + top:-scrollY で
   固定する古典パターンを採用。これで position:fixed のドロワーが安定する。 */

body.is-fixed {
	left: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	top: var(--lock-scroll-y, 0);
	width: 100%;
}

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

/* ホバー */

a,
button {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: 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,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults
   ※ かつて `html { scroll-behavior: smooth; }` を入れていたが、ドロワー閉時の
      位置復元 (window.scrollTo) まで滑らかにアニメ化されて UX を損ねるため撤廃。
      サイト内ハッシュリンクも即時ジャンプの方針。 */

/* Set core body defaults */

body { /* 実機端末を横向きにした際のブラウザの自動拡大をオフ */
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%; /* 上記のSafari用 */
	-webkit-text-size-adjust: 100%; /* フォントを滑らかに（GoogleFontsがデザインより太く見える時の対処） */
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	text-rendering: optimizeSpeed;
}

/* 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: inline-block;
	max-width: 100%;
	vertical-align: bottom;
	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;
}

address {
	font-style: normal;
}

summary {
	cursor: pointer;
	list-style: none;
}

summary::-webkit-details-marker {
	display: none;
}

summary::marker {
	display: none;
}

fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

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

/*       Reveal: 左斜め上から blur 解除      */

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

/*
 * 使い方:
 *   <div data-js-fade>...</div>                  // 基本
 *   <div data-js-fade data-js-fade-delay="120">  // 120ms 遅延
 *
 * 背景動画（緩やかな波）と調和するよう、translate と blur を組み合わせて
 * 「ぼんやり斜めから滲み出てくる」雰囲気にしている。
 * IO で .is-shown が付くと CSS transition で出現。
 */

[data-js-fade] {
	filter: blur(0.5rem);
	opacity: 0;
	transform: translate3d(-1.5rem, -1.5rem, 0);
	transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform, filter;
}

[data-js-fade].is-shown {
	filter: blur(0);
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* slow: 縦移動なし。左 → 右 に流れ込みつつ blur が解ける（STATEMENT などの読み物向け） */

[data-js-fade=slow] {
	filter: blur(0.875rem);
	transform: translate3d(-2rem, 0, 0);
	transition-duration: 2.4s, 2.4s, 2.4s;
}

/* zoom: 左右移動なし。少し小さい状態 + blur から、スケールを戻しつつ滲みが解ける（WORKS など画像向け） */

[data-js-fade=zoom] {
	filter: blur(0.875rem);
	transform: scale(0.94);
	transition-duration: 1.6s, 1.6s, 1.6s;
}

[data-js-fade=zoom].is-shown {
	transform: scale(1);
}

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

/*    Stroke draw: SVG の path を線で描いていく    */

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

/*
 * 使い方:
 *   <div class="js-stroke-draw"> ... <svg><path pathLength="1" .../></svg> ... </div>
 * IO で .is-drawing が付くと stroke が引かれていき、最後に fill が入る。
 */

.js-stroke-draw svg path {
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 1;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	fill-opacity: 0;
}

.js-stroke-draw.is-drawing svg path {
	animation: js-stroke-draw 3s cubic-bezier(0.55, 0, 0.1, 1) forwards, js-stroke-fill 1.5s ease-out 1.5s forwards;
}

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

/*                    Button                   */

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

.c-btn {
	-webkit-text-decoration: none;
	align-items: center;
	background: #1c1b1b;
	border: 0;
	border-radius: 0.125rem;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-family: "Noto Serif JP", serif;
	font-size: 1.125rem;
	font-weight: 400;
	height: 3.1875rem;
	justify-content: center;
	letter-spacing: 0.15em;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.2s;
	white-space: nowrap;
	width: 6.1875rem;
}

.c-btn--back {
	background: #1c1b1b;
}

.c-btn--submit {
	background: #631d1d;
}

.c-btn__label {
	padding-bottom: 0.25rem;
}

.c-content--layout {
	margin-bottom: 3.75rem;
}

.c-content .c-content__inner > *:last-child {
	margin-bottom: 0;
}

.c-content .c-content__inner ol {
	list-style: decimal;
}

.c-content .c-content__inner ul {
	list-style: disc;
}

.c-content .c-content__inner > ol,
.c-content .c-content__inner > ul {
	margin-bottom: 1.875rem;
}

.c-content .c-content__inner > ol ol,
.c-content .c-content__inner > ol ul,
.c-content .c-content__inner > ul ol,
.c-content .c-content__inner > ul ul {
	padding-left: 0.625rem;
}

.c-content .c-content__inner > ol > li {
	margin-bottom: 1.25rem;
}

.c-content .c-content__inner ol > li,
.c-content .c-content__inner ul > li {
	list-style-position: inside !important;
}

.c-content .c-content__inner ol > li,
.c-content .c-content__inner ul > li {
	font-size: 0.875rem;
	line-height: 1.5em;
}

.c-content .c-content__inner > ol > li > ul ul,
.c-content .c-content__inner > ol > li > ol ul,
.c-content .c-content__inner > ul > li > ul ul,
.c-content .c-content__inner > ul > li > ol ul {
	list-style: circle;
}

.c-content .c-content__inner > p {
	font-size: 0.875rem;
	line-height: 1.5em;
	margin-bottom: 1.25rem;
}

.c-content .c-content__inner > p + h2,
.c-content .c-content__inner > p + h3,
.c-content .c-content__inner > p + h4,
.c-content .c-content__inner > p + figure {
	margin-top: 0.625rem;
}

.c-content a:not(.wp-element-button) {
	-webkit-text-decoration: underline;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
}

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

/*  Cursor follower（WORKS の動画サムネイルに */

/*  ホバー時、細い円と "PLAY" を表示。PC のみ）*/

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

.c-cursor {
	align-items: center;
	background: transparent;
	border: 1px solid #fff;
	border-radius: 50%;
	display: grid;
	height: 7.5rem;
	justify-items: center;
	left: 0;
	margin-left: -3.75rem;
	margin-top: -3.75rem;
	mix-blend-mode: difference;
	opacity: 0;
	place-items: center;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scale(0.5);
	transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	width: 7.5rem;
	will-change: transform, top, left;
	z-index: 999;
}

.c-cursor.is-active {
	opacity: 1;
	transform: scale(1);
}

.c-cursor__label {
	-webkit-user-select: none;
	-moz-user-select: none;
	color: #fff;
	font-family: "Josefin Slab", serif;
	font-size: 1.125rem;
	font-weight: 400;
	letter-spacing: 0.15em;
	opacity: 0;
	text-indent: 0.15em;
	text-transform: uppercase;
	transition: opacity 0.35s ease 0.1s;
	user-select: none;
}

.c-cursor.is-active .c-cursor__label {
	opacity: 1;
}

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

/*                Section Heading              */

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

.c-heading {
	grid-row-gap: 0.625rem;
	display: grid;
	row-gap: 0.625rem;
}

.c-heading__text {
	color: #fff;
	font-family: "Josefin Slab", serif;
	font-weight: 100;
	letter-spacing: 0.01em;
	line-height: 1;
}

.c-heading--lg .c-heading__text {
	font-size: 3.75rem;
}

.c-heading--md .c-heading__text {
	font-size: 3.75rem;
}

.c-heading__line {
	background: #fff;
	display: block;
	height: 1px;
	width: 100%;
}

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

/*               Modal Video                   */

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

.c-modal-video {
	bottom: 0;
	display: none;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 300;
}

.c-modal-video.is-open {
	align-items: center;
	display: grid;
	justify-items: center;
	place-items: center;
}

.c-modal-video__overlay {
	background: rgba(0, 0, 0, 0.85);
	bottom: 0;
	cursor: pointer;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.c-modal-video__dialog {
	aspect-ratio: 16/9;
	background: #000;
	position: relative;
	width: min(92vw, 1200px);
}

.c-modal-video__frame {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.c-modal-video__frame iframe {
	border: 0;
	height: 100%;
	width: 100%;
}

.c-modal-video__close {
	background: none;
	border: 0;
	cursor: pointer;
	height: 2rem;
	position: absolute;
	right: 0;
	top: -2.5rem;
	width: 2rem;
}

.c-modal-video__close span {
	background: #fff;
	height: 1.5px;
	left: 0;
	position: absolute;
	top: 50%;
	width: 100%;
}

.c-modal-video__close span:nth-of-type(1) {
	transform: rotate(45deg);
}

.c-modal-video__close span:nth-of-type(2) {
	transform: rotate(-45deg);
}

body.is-modal-open {
	overflow: hidden;
}

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

/*          サイト共通背景（fixed 背後）         */

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

.l-site-bg {
	background: #1c1b1b;
	bottom: 0;
	left: 0;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 0;
}

.is-webkit .l-site-bg {
	isolation: isolate;
}

.is-webkit .l-site-bg::after {
	background: rgba(0, 0, 0, 0.68);
	bottom: 0;
	content: "";
	left: 0;
	mix-blend-mode: plus-darker;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
}

.l-site-bg__media {
	-o-object-fit: cover;
	filter: url(#js-plus-darker);
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.is-webkit .l-site-bg__media {
	filter: none;
}

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

/*                 Video / BG                  */

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

.c-video-bg {
	background: #000;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.c-video-bg--fv {
	aspect-ratio: 1370/876;
	width: 100%;
}

.c-video-bg--bg {
	height: 100%;
	width: 100%;
}

.c-video-bg--autoplay {
	aspect-ratio: 1440/600;
}

.c-video-bg__media {
	-o-object-fit: cover;
	bottom: 0;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.c-video-bg__media--iframe {
	border: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
}

.c-video-bg--fv .c-video-bg__media--iframe {
	height: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(1.5);
	transform-origin: center;
	width: 113.6739659367%;
}

.c-video-bg--autoplay .c-video-bg__media--iframe {
	height: 135%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

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

/*                   Footer                    */

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

.l-footer {
	background: #1c1b1b;
	color: #fff;
	padding-bottom: 1.625rem;
	padding-top: 1.625rem;
	position: relative;
}

.l-footer__inner {
	grid-row-gap: 5.625rem;
	display: grid;
	justify-items: center;
	row-gap: 5.625rem;
	text-align: center;
}

.l-footer__logo {
	color: #fff;
	display: inline-flex;
	line-height: 0;
}

.l-footer__logo svg {
	height: auto;
	width: 6.25rem;
}

.l-footer__meta {
	grid-row-gap: 0.9375rem;
	display: grid;
	font-family: "Niramit", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	justify-items: center;
	letter-spacing: 0.02em;
	row-gap: 0.9375rem;
}

.l-footer__policy {
	-webkit-text-decoration: underline;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
}

.l-footer__copyright {
	color: #fff;
	opacity: 0.9;
}

.grecaptcha-badge {
	visibility: hidden;
}

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

/*                   Header                    */

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

.l-header {
	background: transparent;
	color: #fff;
	height: 5.0625rem;
	left: 0;
	mix-blend-mode: difference;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 200;
}

body.is-fixed .l-header {
	mix-blend-mode: normal;
}

.l-header__inner {
	grid-gap: 1.25rem;
	align-items: center;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: auto auto;
	height: 5.0625rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	position: relative;
	z-index: 41;
}

/* ---- Logo ---- */

.l-header__logo {
	align-items: center;
	display: flex;
	line-height: 0;
	margin: 0;
}

.l-header__logo-link {
	align-items: center;
	color: #fff;
	display: inline-flex;
}

.l-header__logo-link svg {
	height: auto;
	width: 5.3125rem;
}

/* ---- Nav（PC） ---- */

.l-header__nav {
	display: none;
}

/* ---- Util（右側） ---- */

.l-header__util {
	grid-column-gap: 0.75rem;
	-moz-column-gap: 0.75rem;
	align-items: center;
	column-gap: 0.75rem;
	display: grid;
	grid-auto-flow: column;
	justify-self: end;
}

.l-header__lang {
	display: none;
}

.l-header__lang-btn {
	background: none;
	border: 0;
	color: inherit;
	font-family: "Josefin Slab", serif;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0;
	opacity: 0.5;
	padding: 0;
	transition: opacity 0.2s;
}

.l-header__lang-btn.is-active {
	opacity: 1;
}

.l-header__lang-sep {
	background: currentColor;
	height: 2.8125rem;
	opacity: 0.4;
	width: 1px;
}

/* ---- SNS（右端 Instagram） ---- */

.l-header__sns {
	display: none;
}

/* ---- Hamburger（SPのみ） ---- */

.l-header__hamburger {
	grid-gap: 1rem;
	align-content: center;
	background: none;
	color: #fff;
	display: grid;
	gap: 1rem;
	height: 2.625rem;
	padding: 0;
	position: relative;
	width: 2.625rem;
	z-index: 50;
}

.l-header__hamburger span {
	background: currentColor;
	display: block;
	height: 0.0625rem;
	transition: transform 0.3s;
	width: 2.6875rem;
}

.l-header__hamburger.is-open span:nth-of-type(1) {
	transform: translateY(0.546875rem) rotate(45deg);
}

.l-header__hamburger.is-open span:nth-of-type(2) {
	transform: translateY(-0.546875rem) rotate(-45deg);
}

/* ---- Drawer（SPのみ） ---- */

.l-header__drawer {
	background: rgba(28, 27, 27, 0.9);
	display: none;
	height: 100vh;
	height: 100dvh;
	left: 0;
	overflow-y: auto;
	padding: 9.75rem 2.5rem 2.5rem;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 40;
}

.l-header__drawer-list {
	grid-row-gap: 4rem;
	display: grid;
	justify-items: center;
	row-gap: 4rem;
	text-align: center;
}

.l-header__drawer-item a {
	color: #fff;
	display: inline-block;
	font-family: "Josefin Slab", serif;
	font-size: 1.875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
}

.l-header__drawer-util {
	grid-row-gap: 2rem;
	display: grid;
	justify-items: center;
	margin-top: 4rem;
	row-gap: 2rem;
}

.l-header__drawer-lang {
	grid-column-gap: 1.8125rem;
	-moz-column-gap: 1.8125rem;
	align-items: center;
	color: #fff;
	column-gap: 1.8125rem;
	display: grid;
	grid-auto-flow: column;
}

.l-header__drawer-lang .l-header__lang-btn {
	font-size: 1.25rem;
	letter-spacing: 0;
}

.l-header__drawer-lang .l-header__lang-sep {
	height: 4.3125rem;
}

.l-header__drawer-sns {
	align-items: center;
	color: #fff;
	display: inline-grid;
	height: 2rem;
	justify-items: center;
	place-items: center;
	transition: opacity 0.2s ease;
	width: 2rem;
}

.l-header__drawer-sns svg {
	height: auto;
	width: 100%;
}

.l-inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	width: 100%;
}

.l-inner-sm {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	width: 100%;
}

.l-main {
	margin-top: 5.0625rem;
	position: relative;
	z-index: 1;
}

.is-loader-skip .p-loader {
	display: none;
}

.p-loader {
	align-items: center;
	background: #1c1b1b;
	bottom: 0;
	display: grid;
	justify-items: center;
	left: 0;
	opacity: 1;
	place-items: center;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1), filter 1.6s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, filter;
	z-index: 1000;
}

.p-loader.is-leaving {
	filter: blur(1.5rem);
	opacity: 0;
}

.p-loader__logo {
	height: auto;
	width: 7.5rem;
}

.p-loader__logo svg {
	color: #fff;
	height: auto;
	overflow: visible;
	width: 100%;
}

.p-loader__logo svg path {
	fill: #fff;
	stroke: #fff;
	stroke-width: 0.5;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	fill-opacity: 0;
	animation: p-loader-stroke 3s cubic-bezier(0.55, 0, 0.1, 1) forwards, p-loader-fill 1.5s ease-out 1.5s forwards;
}

.p-page-fv {
	padding-top: 3.5rem;
	position: relative;
	z-index: 1;
}

.p-page-fv__inner {
	position: relative;
}

.p-page-fv__heading {
	border-bottom: 1px solid #fff;
	color: #fff;
	font-family: "Josefin Slab", serif;
	font-size: 3.75rem;
	font-weight: 100;
	line-height: 1;
	padding-bottom: 0.625rem;
}

/* page-fv 直後の section 余白を modifier で表現 */

.p-confirm--layout {
	margin-bottom: 3.125rem;
	margin-top: 2.5rem;
}

.p-confirm__inner {
	font-family: "Noto Serif JP", serif;
	font-weight: 300;
}

.p-confirm__lead {
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.11em;
	line-height: 1.5;
	margin-bottom: 2.875rem;
}

.p-confirm__view {
	grid-row-gap: 1rem;
	border-bottom: 1px solid #484848;
	border-top: 1px solid #484848;
	display: grid;
	margin-bottom: 3.125rem;
	padding-bottom: 2.25rem;
	padding-top: 2.1875rem;
	row-gap: 1rem;
}

.p-confirm__view .p-contact-form__field {
	grid-row-gap: 0.625rem;
	border-bottom: 1px dashed #484848;
	display: grid;
	padding-bottom: 1.1875rem;
	row-gap: 0.625rem;
}

.p-confirm__view .p-contact-form__field--textarea {
	border-bottom: none;
}

.p-confirm__view .p-contact-form__label {
	font-size: 0.875rem;
	font-weight: 300;
	letter-spacing: 0.11em;
	white-space: nowrap;
}

.p-confirm__view .p-contact-form__value {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
}

.p-confirm__view .p-contact-form__value--name {
	grid-column-gap: 0.25rem;
	-moz-column-gap: 0.25rem;
	column-gap: 0.25rem;
	display: grid;
	grid-template-columns: repeat(2, auto);
	justify-content: left;
}

.p-confirm__view .p-contact-form__value--pre {
	align-items: flex-start;
	line-height: 1.7857142857;
	white-space: pre-wrap;
}

.p-confirm__buttons {
	display: flex;
	gap: 1.375rem;
	justify-content: center;
}

/* page-fv 直後の section 余白を modifier で表現 */

.error--layout {
	margin-bottom: 3.125rem;
	margin-top: 2.5rem;
}

.error__inner {
	font-family: "Noto Serif JP", serif;
	font-weight: 300;
}

.error__text {
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.11em;
	line-height: 1.4375;
}

.error__buttons {
	border-top: 1px solid #484848;
	display: flex;
	justify-content: center;
	margin-top: 3.125rem;
	padding-top: 2.5rem;
}

/* page-fv 直後の section 余白を modifier で表現 */

.p-thanks--layout {
	margin-bottom: 3.125rem;
	margin-top: 2.5rem;
}

.p-thanks__inner {
	font-family: "Noto Serif JP", serif;
	font-weight: 300;
}

.p-thanks__message {
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.11em;
	line-height: 1.4375;
}

.p-thanks__message + .p-thanks__message {
	margin-top: 2rem;
}

.p-thanks__buttons {
	border-top: 1px solid #484848;
	display: flex;
	justify-content: center;
	margin-top: 3.125rem;
	padding-top: 2.5rem;
}

/* ========== FV（インライン。1370x876 比率、横余白あり） ========== */

.p-fv {
	margin-bottom: 6.25rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	position: relative;
}

/* ========== STATEMENT ========== */

.p-statement {
	margin-bottom: 6.875rem;
	text-align: left;
}

.p-statement__text {
	font-feature-settings: "palt";
	font-family: "Shippori Mincho B1", serif;
	font-size: 1.4375rem;
	font-weight: 400;
	letter-spacing: 0.13em;
	line-height: 1.9;
}

.p-statement__text + .p-statement__text {
	margin-top: 1.5rem;
}

/* ========== WORKS ========== */

.p-works {
	margin-bottom: 9.375rem;
}

.p-works__heading {
	margin-bottom: 4.1875rem;
}

.p-works__list {
	grid-row-gap: 2.6875rem;
	display: grid;
	row-gap: 2.6875rem;
}

.p-works__trigger {
	aspect-ratio: 1240/698;
	background: none;
	border: 0;
	cursor: pointer;
	display: block;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: 100%;
}

.p-works__thumb {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.p-works__thumb img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	width: 100%;
}

.p-works__note {
	color: rgba(255, 255, 255, 0.85);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	line-height: 1.75;
	margin-top: 1rem;
}

/* ========== PRODUCTION ========== */

.p-production {
	margin-bottom: 5.125rem;
}

.p-production__heading {
	margin-bottom: 2.25rem;
}

.p-production__body {
	grid-row-gap: 3.625rem;
	display: grid;
	row-gap: 3.625rem;
}

.p-production__logo {
	align-items: center;
	color: #fff;
	display: grid;
	justify-items: center;
	place-items: center;
}

.p-production__logo svg {
	height: auto;
	width: 12.4375rem;
}

.p-production__text {
	font-family: "Shippori Mincho B1", serif;
	font-size: 1.25rem;
	letter-spacing: 0.06em;
	line-height: 2.35;
}

.p-production__link {
	-moz-column-gap: 0.625rem;
	align-items: center;
	color: #fff;
	column-gap: 0.625rem;
	display: inline-grid;
	font-family: "Niramit", sans-serif;
	font-size: 0.8125rem;
	grid-template-columns: auto auto;
	letter-spacing: 0.02em;
	margin-top: 1.5rem;
}

.p-production__link-icon {
	align-items: center;
	display: inline-grid;
	justify-items: center;
	place-items: center;
}

.p-production__link-icon svg {
	height: 1rem;
	transition: transform 0.25s ease;
	width: 2.0625rem;
}

/* ========== Autoplay Video ========== */

.p-autoplay-video {
	margin-bottom: 10.3125rem;
}

/* ========== CREATOR ========== */

.p-creator {
	margin-bottom: 10rem;
}

.p-creator__heading {
	margin-bottom: 5.5rem;
}

.p-creator__list {
	grid-row-gap: 5rem;
	display: grid;
	row-gap: 5rem;
}

.p-creator__item {
	grid-row-gap: 1rem;
	display: grid;
	row-gap: 1rem;
}

.p-creator__head {
	grid-column-gap: 0.75rem;
	-moz-column-gap: 0.75rem;
	grid-row-gap: 0.375rem;
	column-gap: 0.75rem;
	display: grid;
	grid-template-columns: 1fr auto;
	row-gap: 0.375rem;
}

.p-creator__name {
	font-family: "Josefin Slab", serif;
	font-size: 3.125rem;
	font-weight: 400;
	grid-column: 1;
	grid-row: 1;
	letter-spacing: 0.01em;
	line-height: 1;
}

.p-creator__name sup {
	font-size: 0.55em;
	line-height: 0;
	position: relative;
	top: -0.1em;
}

.p-creator__role {
	font-family: "Niramit", sans-serif;
	font-size: 0.6875rem;
	grid-column: 1/-1;
	grid-row: 2;
	text-transform: uppercase;
}

.p-creator__sns {
	align-items: center;
	align-self: end;
	color: #fff;
	display: inline-grid;
	grid-column: 2;
	grid-row: 1;
	height: 1.5rem;
	justify-items: center;
	place-items: center;
	transition: opacity 0.2s ease;
	width: 1.5rem;
}

.p-creator__sns svg {
	height: auto;
	width: 100%;
}

.p-creator__photo {
	aspect-ratio: 1/1;
	display: block;
	overflow: hidden;
}

.p-creator__photo img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-creator__profile {
	color: rgba(255, 255, 255, 0.85);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	line-height: 1.75;
}

/* ========== CONTACT ========== */

.p-contact {
	margin-bottom: 3.4375rem;
}

.p-contact__heading {
	margin-bottom: 2.5rem;
}

.p-contact__body {
	grid-row-gap: 2rem;
	display: grid;
	row-gap: 2rem;
}

.p-contact__lead {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 300;
	letter-spacing: 0.11em;
	line-height: 1.43;
}

.p-contact-form {
	font-family: "Noto Serif JP", serif;
	font-weight: 300;
}

.p-contact-form .wpcf7-form {
	grid-row-gap: 1.0625rem;
	display: grid;
	row-gap: 1.0625rem;
}

.p-contact-form .p-contact-form__field {
	grid-row-gap: 0.5rem;
	display: grid;
	row-gap: 0.5rem;
}

.p-contact-form .p-contact-form__name-fieldset {
	border: 0;
	display: contents;
	margin: 0;
	min-width: 0;
	padding: 0;
}

.p-contact-form .p-contact-form__name-group {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr 1fr;
}

.p-contact-form .p-contact-form__label {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.875rem;
	letter-spacing: 0.11em;
	white-space: nowrap;
}

.p-contact-form a {
	-webkit-text-decoration: underline;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.0625rem;
}

.p-contact-form input[type=text],
.p-contact-form input[type=email],
.p-contact-form input[type=tel],
.p-contact-form select,
.p-contact-form textarea {
	background: #1c1b1b;
	border: 0;
	border-radius: 2px;
	box-sizing: border-box;
	color: #fff;
	font: inherit;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	line-height: 1.3;
	padding: 0.625rem;
	width: 100%;
}

.p-contact-form input[type=text]::-moz-placeholder,
.p-contact-form input[type=email]::-moz-placeholder,
.p-contact-form input[type=tel]::-moz-placeholder,
.p-contact-form select::-moz-placeholder,
.p-contact-form textarea::-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.p-contact-form input[type=text]::placeholder,
.p-contact-form input[type=email]::placeholder,
.p-contact-form input[type=tel]::placeholder,
.p-contact-form select::placeholder,
.p-contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.p-contact-form input[type=text]:focus,
.p-contact-form input[type=email]:focus,
.p-contact-form input[type=tel]:focus,
.p-contact-form select:focus,
.p-contact-form textarea:focus {
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
	outline: 0;
}

.p-contact-form input[type=text],
.p-contact-form input[type=email],
.p-contact-form input[type=tel],
.p-contact-form select {
	height: 2.3125rem;
}

.p-contact-form select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7" viewBox="0 0 12 7"><polygon points="0,0 12,0 6,7" fill="%23d9d9d9"/></svg>');
	background-position: right 0.75rem center;
	background-repeat: no-repeat;
	padding-right: 2.25rem;
}

.p-contact-form select:has(option[value=""]:checked) {
	color: rgba(255, 255, 255, 0.5);
}

.p-contact-form textarea {
	min-height: 13.5rem;
	resize: vertical;
}

.p-contact-form .p-contact-form__agree {
	border-top: 1px solid #484848;
	font-size: 0.875rem;
	line-height: 1.423;
	margin-top: 0.625rem;
	padding-top: 3.125rem;
	text-align: center;
}

.p-contact-form .p-contact-form__submit {
	position: relative;
	text-align: center;
}

.p-contact-form .wpcf7-submit {
	background: #1c1b1b;
	border: 0;
	border-radius: 0.125rem;
	color: #fff;
	cursor: pointer;
	font-family: "Noto Serif JP", serif;
	font-size: 1.125rem;
	font-weight: 400;
	height: 3.1875rem;
	letter-spacing: 0.15em;
	min-width: 10.0625rem;
	padding-bottom: 0.25rem;
	transition: opacity 0.2s;
}

.p-contact-form .p-contact-form__recaptcha {
	font-size: 0.75rem;
	letter-spacing: 0.11em;
	line-height: 1.6;
	text-align: center;
}

.p-contact-form .p-contact-form__recaptcha a {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

.p-contact-form .wpcf7-spinner {
	position: absolute;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-contact-form .wpcf7-not-valid-tip {
	color: #ff8a8a;
	display: none;
	font-size: 0.75rem;
	margin-top: 0.25rem;
}

.p-contact-form .wpcf7-form-control-wrap.is-show .wpcf7-not-valid-tip {
	display: block;
}

.p-contact-form .p-contact-form__field.is-invalid .wpcf7-form-control {
	box-shadow: 0 0 0 1px #ff8a8a;
}

.p-contact-form .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
	display: none;
	margin-top: 10px;
}

.p-contact-form .wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
	display: block;
}

@media (prefers-reduced-motion: reduce) {

[data-js-fade] {
	filter: none;
	opacity: 1;
	transform: none;
	transition: none;
}

.js-stroke-draw svg path {
	stroke-dashoffset: 0;
	fill-opacity: 1;
	animation: none;
}

.c-cursor {
	transition: none;
}

.c-cursor__label {
	transition: none;
}

.c-video-bg__media {
	visibility: hidden;
}

.p-loader {
	transition: none;
}

.p-loader__logo svg path {
	stroke-dashoffset: 0;
	fill-opacity: 1;
	animation: none;
}

}

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

.c-btn:hover {
	opacity: 0.8;
}

.l-footer__policy:hover {
	opacity: 0.8;
}

.l-header__nav-item a:hover {
	opacity: 0.7;
}

.l-header__lang-btn:hover {
	opacity: 1;
}

.l-header__drawer-sns:hover {
	opacity: 0.7;
}

.p-works__trigger:hover .p-works__thumb img {
	transform: scale(1.04);
}

.p-production__link:hover {
	opacity: 0.8;
}

.p-production__link:hover .p-production__link-icon svg {
	transform: translateX(0.1875rem);
}

.p-creator__sns:hover {
	opacity: 0.7;
}

.p-contact-form a:hover {
	opacity: 0.8;
}

.p-contact-form .wpcf7-submit:hover {
	opacity: 0.8;
}

.p-contact-form .p-contact-form__recaptcha a:hover {
	opacity: 0.7;
}

}

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

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

html {
	font-size: 1.191362621vw;
}

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

body.is-fixed {
	position: static;
	position: initial;
	top: auto;
}

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

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

.c-content--layout {
	margin-bottom: 6.25rem;
}

.c-content .c-content__inner > ol ol,
.c-content .c-content__inner > ol ul,
.c-content .c-content__inner > ul ol,
.c-content .c-content__inner > ul ul {
	margin-bottom: 2.5rem;
	padding-left: 1.25rem;
}

.c-content .c-content__inner > ol > li {
	margin-bottom: 1.875rem;
}

.c-content .c-content__inner ol > li,
.c-content .c-content__inner ul > li {
	font-size: 1rem;
}

.c-content .c-content__inner > p {
	font-size: 1rem;
	margin-bottom: 1.875rem;
}

.c-content .c-content__inner > p + h2,
.c-content .c-content__inner > p + h3,
.c-content .c-content__inner > p + h4,
.c-content .c-content__inner > p + figure {
	margin-top: 1.25rem;
}

.c-heading--lg .c-heading__text {
	font-size: 6.5rem;
}

.c-heading--md .c-heading__text {
	font-size: 4.9375rem;
}

.c-modal-video__close {
	height: 2.5rem;
	top: -3rem;
	width: 2.5rem;
}

.l-footer {
	padding-bottom: 2.0625rem;
	padding-top: 1.625rem;
}

.l-header {
	height: 6.6875rem;
}

.l-header__inner {
	grid-template-columns: auto 1fr auto;
	height: 6.6875rem;
	padding-left: 2.1875rem;
	padding-right: 2.1875rem;
}

.l-header__logo-link svg {
	width: 6.25rem;
}

.l-header__nav {
	display: flex;
	justify-content: center;
}

.l-header__nav-list {
	grid-column-gap: 4rem;
	-moz-column-gap: 4rem;
	align-items: center;
	column-gap: 4rem;
	display: grid;
	grid-auto-flow: column;
}

.l-header__nav-item a {
	color: #fff;
	display: inline-block;
	font-family: "Josefin Slab", serif;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	transition: opacity 0.4s;
}

.l-header__util {
	-moz-column-gap: 3.75rem;
	column-gap: 3.75rem;
}

.l-header__lang {
	grid-column-gap: 1.1875rem;
	-moz-column-gap: 1.1875rem;
	align-items: center;
	color: #fff;
	column-gap: 1.1875rem;
	display: grid;
	grid-auto-flow: column;
}

.l-header__sns {
	align-items: center;
	color: #fff;
	display: inline-grid;
	height: 1.25rem;
	justify-items: center;
	place-items: center;
	transition: opacity 0.2s ease;
	width: 1.25rem;
}

.l-header__sns svg {
	height: auto;
	width: 100%;
}

.l-header__hamburger {
	display: none;
}

.l-header__drawer {
	display: none !important;
}

.l-header__drawer-util {
	display: none;
}

.l-inner {
	max-width: 88.9375rem;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.l-inner-sm {
	max-width: 82.5625rem;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.l-main {
	margin-top: 6.6875rem;
}

.p-loader__logo {
	width: 10rem;
}

.p-page-fv {
	padding-top: 8.875rem;
}

.p-page-fv__heading {
	font-size: 4.9375rem;
	padding-bottom: 0.9375rem;
}

.p-confirm--layout {
	margin-bottom: 4rem;
	margin-top: 5.25rem;
}

.p-confirm__container {
	margin-left: auto;
	margin-right: auto;
	max-width: 42rem;
}

.p-confirm__lead {
	margin-bottom: 2rem;
}

.p-confirm__view {
	margin-left: auto;
	margin-right: auto;
	max-width: 42rem;
	padding-bottom: 3.625rem;
	padding-top: 4.3125rem;
	row-gap: 1.625rem;
}

.p-confirm__view .p-contact-form__field {
	-moz-column-gap: 3.4375rem;
	align-items: center;
	column-gap: 3.4375rem;
	grid-template-columns: 7.6875rem 1fr;
	padding-bottom: 1.9375rem;
	row-gap: 0;
}

.p-confirm__view .p-contact-form__field--textarea {
	align-items: start;
}

.p-confirm__view .p-contact-form__field--textarea .p-contact-form__label {
	padding-top: 0.3125rem;
}

.p-confirm__view .p-contact-form__value {
	background: transparent;
	border-radius: 0;
	display: block;
	min-height: 0;
	padding: 0;
}

.error--layout {
	margin-bottom: 4rem;
	margin-top: 5.25rem;
}

.error__container {
	margin-left: auto;
	margin-right: auto;
	max-width: 42rem;
}

.p-thanks--layout {
	margin-bottom: 4rem;
	margin-top: 5.25rem;
}

.p-thanks__container {
	margin-left: auto;
	margin-right: auto;
	max-width: 42rem;
}

.p-fv {
	margin-bottom: 16.625rem;
	padding-left: 2.1875rem;
	padding-right: 2.1875rem;
}

.p-statement {
	margin-bottom: 19.5rem;
}

.p-statement__inner {
	padding-left: 6.5rem;
}

.p-statement__text {
	font-size: 2.4375rem;
	letter-spacing: 0.23em;
	line-height: 1.9;
}

.p-statement__text + .p-statement__text {
	margin-top: 2.5rem;
}

.p-works {
	margin-bottom: 18.75rem;
}

.p-works__heading {
	margin-bottom: 7.8125rem;
}

.p-works__list {
	padding-left: 6.5rem;
	row-gap: 6.4375rem;
}

.p-production {
	margin-bottom: 16.875rem;
}

.p-production__heading {
	margin-bottom: 6.25rem;
}

.p-production__body {
	-moz-column-gap: 9.6875rem;
	align-items: center;
	column-gap: 9.6875rem;
	grid-template-columns: 21.1875rem minmax(0, 38.75rem);
	justify-content: end;
}

.p-production__logo svg {
	width: 21.1875rem;
}

.p-production__text {
	font-size: 1.25rem;
	letter-spacing: 0.122em;
	line-height: 2.35;
}

.p-production__link {
	font-size: 0.9375rem;
	margin-top: 3.875rem;
}

.p-autoplay-video {
	margin-bottom: 21.25rem;
}

.p-creator {
	margin-bottom: 21.25rem;
}

.p-creator__heading {
	margin-bottom: 8.125rem;
}

.p-creator__list {
	-moz-column-gap: 4.5rem;
	align-items: start;
	column-gap: 4.5rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: auto auto 1fr;
	padding-left: 6.5rem;
	row-gap: 1rem;
}

.p-creator__item {
	grid-row: span 3;
	grid-template-rows: subgrid;
}

.p-creator__head {
	align-self: start;
}

.p-creator__name {
	font-size: 3.125rem;
}

.p-creator__role {
	font-size: 0.6875rem;
}

.p-creator__sns {
	height: 1.375rem;
	width: 1.375rem;
}

.p-creator__photo {
	align-self: start;
}

.p-contact {
	margin-bottom: 16.875rem;
}

.p-contact__inner {
	align-items: start;
	display: grid;
	grid-template-columns: 29.0625rem 1fr;
	padding-left: 9rem;
}

.p-contact__inner .c-heading__line {
	display: none;
}

.p-contact__heading {
	margin-bottom: 0;
	padding-top: 2.125rem;
}

.p-contact__body {
	border-left: 1px solid #fff;
	grid-template-columns: 1fr;
	padding-bottom: 4.0625rem;
	padding-left: 6.25rem;
	padding-top: 3.375rem;
	row-gap: 5.25rem;
}

.p-contact__lead {
	font-size: 1rem;
}

.p-contact-form .wpcf7-form {
	row-gap: 2.5rem;
}

.p-contact-form .p-contact-form__field {
	-moz-column-gap: 3.4375rem;
	align-items: center;
	column-gap: 3.4375rem;
	grid-template-columns: 7.6875rem 1fr;
	row-gap: 0;
}

.p-contact-form .p-contact-form__field:has(textarea) {
	align-items: start;
}

.p-contact-form .p-contact-form__field:has(textarea) .p-contact-form__label {
	padding-top: 0.75rem;
}

.p-contact-form .p-contact-form__input {
	max-width: 20.125rem;
}

.p-contact-form .p-contact-form__input:has(select) {
	max-width: 16rem;
}

.p-contact-form .p-contact-form__input:has(textarea) {
	max-width: 30.9375rem;
}

.p-contact-form .p-contact-form__name-group {
	gap: 1rem;
	max-width: 20.125rem;
}

}

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

.l-header__sns:hover {
	opacity: 0.7;
}

}

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

html {
	scroll-padding-top: 6.6875rem;
}

}

@media (min-width: 1343px) {

html {
	font-size: 16px;
}

}

@media (max-width: 767px), (hover: none), (pointer: coarse) {

.c-cursor {
	display: none;
}

}

@media (max-width: 767px) {

.c-video-bg--autoplay {
	aspect-ratio: 375/200;
}

.c-video-bg--autoplay .c-video-bg__media--iframe {
	height: 105.46875%;
}

}

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

.p-contact-form .p-contact-form__recaptcha {
	margin-top: 1.125rem;
}

}

@keyframes js-stroke-draw {

to {
	stroke-dashoffset: 0;
}

}

@keyframes js-stroke-fill {

to {
	fill-opacity: 1;
}

}

@keyframes p-loader-stroke {

to {
	stroke-dashoffset: 0;
}

}

@keyframes p-loader-fill {

to {
	fill-opacity: 1;
}

}


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