@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
	--black: #000;
	--black-rgb: 0, 0, 0;
	--white: #fff;
	--white-rgb: 255, 255, 255;
	--bg: #f5f3ef;
	--bg-rgb: 245, 243, 239;

	--default-font-family: "Noto Sans JP";
	--default-font-weight: 400;

	--min-content-width: 80rem;
	--max-content-width: 120rem;
	--content-width: calc(var(--max-content-width) * 0.625);
	--gutter: calc(1.5rem * 0.625);
	--content-padding-inline: var(--gutter);
	--inner-padding-block: calc(30rem * 0.625);
	--header-height: calc(13rem * 0.625);
}
/* Box sizing rules */
:where(*, *::before, *::after) {
	box-sizing: border-box;
}
/* Remove default margin */
:where(body, h1, h2, h3, h4, p, figure, blockquote, dl, dd) {
	margin: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul[role="list"], ol[role="list"]) {
	list-style: none;
}
/* Set core root defaults */
:where(html:focus-within) {
	scroll-behavior: smooth;
}
/* Set core body defaults */
:where(body) {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}
/* A elements that don't have a class get default styles */
:where(a:not([class])) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
:where(img, picture) {
	max-width: 100%;
	display: block;
}
/* Inherit fonts for inputs and buttons */
:where(input, button, textarea, select) {
	font: inherit;
	width: 100%;
	-webkit-appearance: none;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
	:where(html:focus-within) {
		scroll-behavior: auto;
	}
	:where(*, *::before, *::after) {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
:where(*, *:before, *:after) {
	/*outline: 1px solid lime; */
}
:where(html) {
	scroll-behavior: smooth;
	/*scroll-padding-top: var(--header-height); */
}
:where(body) {
	background-color: var(--black);
	color: var(--white);
	font-family: var(--default-font-family), sans-serif;
	font-optical-sizing: auto;
	font-size: clamp(0.625rem, -0.125rem + 1.5vw, 1rem);
	font-style: normal;
	font-weight: var(--default-font-weight);
	letter-spacing: calc(50em / 1000);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 2;
	overflow-x: hidden;
	position: relative;
	min-width: calc(var(--min-content-width) * 0.625);
}
:where(h1, h2, h3, h4, h5, h6) {
	font-family: "Inter Tight", sans-serif;
	font-weight: 700;
	text-wrap: balance;
}
:where(a) {
	color: inherit;
	text-decoration: none;
	display: inline-block;
}
@media (min-width: 800px) {
	:where(a)[href^="tel"] {
		pointer-events: none;
	}
}
:where(figure) {
	margin: 0;
	padding: 0;
	max-width: 100%;
	display: block;
}
:where(img, svg) {
	vertical-align: middle;
	font-style: italic;
}
:where(img) {
	color: gray;
}
:where(svg) {
	max-width: 100%;
	height: auto;
}
:where(nav > ol, nav > ul) {
	list-style: none;
	margin-block: 0;
	padding-left: 0;
}
:where(ol[role="list"], ul[role="list"]) {
	list-style: none;
	margin-block: 0;
	padding-left: 0;
}
:where(input[type="submit"], input[type="button"], input[type="reset"], button) {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}
:where(input[type="text"], input[type="email"], input[type="password"], textarea) {
	width: 100%;
}
.site-main {
	position: relative;
	z-index: 0;
}
.main-wrapper {
	display: grid;
	grid-template-columns: auto var(--gutter) [content-start] minmax(
			calc(320px - var(--content-padding-inline) * 2),
			var(--content-width)
		) [content-end] var(--gutter) auto;
}
.main-wrapper > * {
	grid-column: content;
}
[class^="sec-"] > .inner,
[class^="post-sec-"] > .inner,
[class^="page-sec-"] > .inner {
	padding-block: var(--inner-padding-block);
}
.lay-hero {
	/*background-color: #ddd; */
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: subgrid;
}
.lay-hero > .inner {
	grid-column: content;
}
.tbl {
	width: 100%;
	border-collapse: collapse;
	table-layout: auto;
	border-bottom: 1px solid var(--color-primary);
}
.tbl tr {
}
.tbl th,
.tbl td {
	border-top: 1px solid var(--color-primary);
	padding: 1.1em;
}
.to-top-button {
	text-align: right;
	position: sticky;
	bottom: 0;
	height: 0;
	/*display: none; */
}
.link-to-top {
	display: inline-grid;
	place-items: center;
	line-height: 1.5;
	padding: 1em;
}
@view-transition {
	navigation: auto;
}
::view-transition-group(*) {
	animation-duration: 0.5s;
	animation-timing-function: ease-in-out;
}
.wp-post-image {
	/*view-transition-name: transition-img; */
}
.wp-block-image:first-child img {
	view-transition-name: transition-img;
}
.page-header {
	background-color: rgba(var(--black-rgb), 0);
	font-size: clamp(0.563rem, -0.188rem + 1.5vw, 0.938rem);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
}
.page-header.is-active {
	background-color: rgba(var(--black-rgb), 1);
	transition: 0.5s ease;
	--header-height: calc(7.5rem * 0.625);
}
.page-header.is-active .img-header-logo {
	transform: translateY(0);
	width: clamp(2rem, 0.125rem + 3.75vw, 2.938rem);
}
.page-header > .wrapper {
	--max-content-width: 123rem;
	max-width: calc(var(--max-content-width) * 0.625);
	min-width: calc(var(--min-content-width) * 0.625);
	margin-inline: auto;
	padding-inline: var(--content-padding-inline);
}
.page-header .site-navigation {
}
.page-header .lay-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--header-height);
	transition: 0.5s ease;
}
.page-header .header-logo {
	flex-shrink: 0;
}
.page-header .img-header-logo {
	width: clamp(3.125rem, 0.125rem + 6vw, 4.625rem);
	transition: 0.5s ease;
	transform: translateY(1em);
}
.page-header .menu-primary-wrapper ul {
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 3.5em;
	text-transform: uppercase;
}
.page-header .menu-primary-wrapper li:not(.link-instagram) {
	position: relative;
}
.page-header .menu-primary-wrapper li:not(.link-instagram):hover::before {
	width: 100%;
	transform: scaleX(1);
	transform-origin: left;
}
.page-header .menu-primary-wrapper li:not(.link-instagram)::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	opacity: 0.7;
	background-color: var(--white);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s;
}
.link-instagram a {
	width: 1.25em;
	height: 1.25em;
	display: inline-flex;
	place-content: center;
	place-items: center;
	line-height: 1;
	vertical-align: middle;
}
.page-footer {
	background-color: var(--black);
	padding-inline: var(--content-padding-inline);
	position: relative;
	font-size: clamp(0.563rem, -0.188rem + 1.5vw, 0.938rem);
}
.page-footer > .wrapper {
	max-width: var(--content-width);
	margin-inline: auto;
	padding-block: var(--inner-padding-block);
}
.page-footer .sub-navigation {
}
.page-footer .menu-secondary-wrapper ul {
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3.5em;
	text-transform: uppercase;
}
.page-footer .menu-secondary-wrapper li:not(.link-instagram) {
	position: relative;
}
.page-footer .menu-secondary-wrapper li:not(.link-instagram):hover::before {
	width: 100%;
	transform: scaleX(1);
	transform-origin: left;
}
.page-footer .menu-secondary-wrapper li:not(.link-instagram)::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	opacity: 0.7;
	background-color: var(--white);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s;
}
.page-footer .footer-logo {
	text-align: center;
	margin-top: 7em;
}
.page-footer .img-footer-logo {
	width: clamp(7.5rem, 1.375rem + 12.25vw, 10.563rem);
}
.page-footer .footer-address {
	text-align: center;
	margin-top: calc(10rem * 0.625);
}
.page-footer .footer-address dt {
	font-weight: 500;
}
.page-footer .footer-address dd {
	font-size: clamp(0.563rem, -0.063rem + 1.25vw, 0.875rem);
}
.page-footer .copyright {
	text-align: center;
	margin-top: calc(10rem * 0.625);
}
.page-footer .copyright small {
	font-size: clamp(0.5rem, 1vw, 0.75rem);
	letter-spacing: calc(50em / 1000);
}
.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 99999;
	transition: 1s ease;
	background-color: var(--black);
	overflow: hidden;
}
.loading.is-loaded {
	height: 0;
	visibility: hidden;
}
.loading > .inner {
	position: absolute;
	left: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	display: grid;
	place-content: center;
	place-items: center;
	animation: fade-in 0.3s 0.5s alternate forwards;
	opacity: 0;
}
@keyframes fade-in {
	to {
		opacity: 1;
	}
}
:where(.sec-contact) {
	background-color: #222;
	background-image: url("../img/common/bg-sec-contact.webp");
	background-size: cover;
	background-position: 50%;
	font-size: clamp(0.563rem, -0.188rem + 1.5vw, 0.938rem);
	text-align: center;
	position: relative;
}
:where(.sec-contact) > .inner {
	--max-content-width: 123rem;
	max-width: calc(var(--max-content-width) * 0.625);
	min-width: calc(var(--min-content-width) * 0.625);
	margin-inline: auto;
	padding-inline: var(--content-padding-inline);
}
:where(.sec-contact) .lay-sec-contact {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
:where(.sec-contact) .lay-contact-tel {
	display: flex;
	align-items: center;
	margin-top: 0.3em;
}
:where(.sec-contact) .list-tel {
	text-align: left;
	line-height: 1.5;
}
:where(.sec-contact) .list-tel dt {
}
:where(.sec-contact) .list-tel dd {
	margin-top: 0.2em;
}
:where(.sec-contact) .list-tel dd img {
	width: clamp(11.688rem, 0.063rem + 23.25vw, 17.5rem);
}
:where(.sec-contact) .list-hour {
	display: flex;
	align-items: center;
	gap: 0.2em;
	font-size: clamp(0.688rem, 0.438rem + 0.5vw, 0.813rem);
	letter-spacing: calc(50em / 1000);
}
:where(.sec-contact) .list-person {
	display: flex;
	align-items: center;
	font-size: clamp(0.688rem, 0.438rem + 0.5vw, 0.813rem);
}
:where(.sec-contact) .list-person dd::before {
	content: "：";
}
:where(.sec-contact) .ttl-sec-contact {
	font-size: clamp(3.75rem, 1.875rem + 3.75vw, 4.688rem);
	line-height: 1.2;
	letter-spacing: calc(30em / 1000);
}
:where(.sec-contact) .txt-sec-contact {
	text-align: left;
}
:where(.sec-contact) .button .btn {
	font-weight: 500;
	border: 1px solid;
	padding: 2.2em 5.8em;
	position: relative;
	z-index: 0;
}
:where(.sec-contact) .button .btn::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: -1;
	transform: scaleY(0);
	transform-origin: 50% 0;
	transition: transform 0.4s ease;
}
:where(.sec-contact) .button .btn:hover {
	color: #000;
	border-color: #fff;
}
:where(.sec-contact) .button .btn:hover::before {
	transform: scaleY(1);
	transform-origin: 50% 100%;
}
.main-visual {
	background-color: #222;
	display: grid;
	place-content: center;
	place-items: center;
	min-height: 100dvh;
	position: sticky;
	top: 0;
	z-index: -1;
}
.main-visual .scroll-down {
	position: absolute;
	bottom: 2em;
	left: 2.5em;
	z-index: 1;
	line-height: 1;
	display: flex;
	align-items: center;
}
.main-visual .arrow-scroll-down {
	position: relative;
	display: grid;
	place-items: center;
	width: 1em;
	height: 1.2em;
}
.main-visual .arrow-scroll-down::before {
	content: "";
	position: absolute;
	width: 7px;
	height: 7px;
	bottom: 0;
	border-left: 1px solid var(--white);
	border-bottom: 1px solid var(--white);
	transform: rotate(-45deg);
}
.main-visual .arrow-scroll-down::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background-color: var(--white);
	animation: elasticus 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes elasticus {
	0% {
		transform-origin: 0 0;
		transform: scale(1, 0);
	}
	50% {
		transform-origin: 0 0;
		transform: scale(1, 1);
	}
	50.1% {
		transform-origin: 0 100%;
		transform: scale(1, 1);
	}
	100% {
		transform-origin: 0 100%;
		transform: scale(1, 0);
	}
}
.main-visual .scroll-text {
	text-transform: uppercase;
	margin-left: 0.5em;
}
.main-visual .swiper {
	width: 100%;
	height: 100dvh;
	z-index: 1;
}
.main-visual .swiper-slide {
	width: 100%;
	height: 100%;
}
.main-visual .swiper-slide img {
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	width: 100%;
	height: 100%;
	transform: scale(1.03);
}
.main-visual .swiper-slide-active img {
	animation: 6s ease zoomimage;
}
@keyframes zoomimage {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.03);
	}
}
.main-visual .logo-mv {
	position: absolute;
	z-index: 1;
}
.sec-1 {
	background-color: var(--black);
	grid-template-columns: auto repeat(2, minmax(calc(40rem * 0.625), calc(72rem * 0.625))) auto;
	grid-template-rows: var(--inner-padding-block) auto var(--inner-padding-block);
	place-items: center;
	/*place-content: center; */
	position: sticky;
	top: 0; /* @TODO: Window の高さがコンテンツより低いとコンテンツがすべて表示されないため、Intersection Observer API で動的に値を HTML に付与する実装を検討 */
	z-index: -1;
}
.sec-1 .sec-title {
	font-family: var(--default-font-family), sans-serif;
	font-size: calc(9rem * 0.625);
	font-weight: 300;
	letter-spacing: calc(300em / 1000);
	line-height: 1.45;
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	margin-left: 0.2em;
}
.sec-1 .sec-title b {
	font-weight: 500;
}
.sec-1 .sec-title .rubi {
	position: relative;
	display: inline-block;
}
.sec-1 .sec-title .rubi::before {
	position: absolute;
	content: "SYA";
	font-family: "Inter Tight", sans-serif;
	font-weight: 700;
	font-size: calc(1.6rem * 0.625);
	letter-spacing: calc(100em / 1000);
	left: 0;
}
.sec-1 .sec-title .rubi.top::before {
	transform: translateY(0) translateX(77%);
	top: 0;
}
.sec-1 .sec-title .rubi.bottom::before {
	transform: translateY(0.9em) translateX(74%);
	bottom: 0;
}
.sec-1 .bg-sec-1 {
	grid-column: 1 / 3;
	grid-row: 1 / -1;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
}
.sec-1 .bg-sec-1 img {
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	width: 100%;
	height: 100%;
}
.sec-1 .col-intro {
	grid-column: 3/4;
	grid-row: 2 / 3;
}
.sec-1 p {
	margin-top: 2em;
}
.sec-1 .button {
	margin-top: 4em;
}
.sec-1 .link {
	--line-color: var(--white-rgb);
}
.sec-2 {
	background-color: var(--bg);
	color: var(--black);
	background-position: 50% 0;
	position: sticky;
	top: 0;
	z-index: 1;
}
.sec-2 .sec-title {
	text-align: center;
	font-size: clamp(5.438rem, 0.063rem + 10.75vw, 8.125rem);
	line-height: 1;
	letter-spacing: calc(30em / 1000);
}
.sec-2 .lay-src-artist {
	display: grid;
	grid-template-columns: 2fr 1fr;
	place-items: center;
	gap: 3em;
	min-height: 45em;
	margin-top: calc(15rem * 0.625);
}
.sec-2 .col-pics {
	display: grid;
	place-items: center;
	place-content: center;
	width: 100%;
	height: 100%;
	position: relative;
}
.sec-2 .col-pics > * {
	position: absolute;
}
.sec-2 .artists-img {
	width: calc(var(--img-width) * 0.625);
	transform: translate(var(--translate-x), var(--translate-y));
}
.sec-2 .fig01 {
	--img-width: 18.8rem;
	--translate-x: -12.5em;
	--translate-y: -11.4em;
}
.sec-2 .fig02 {
	--img-width: 14.3rem;
	--translate-x: -4.1em;
	--translate-y: -8.2em;
}
.sec-2 .fig03 {
	--img-width: 24.5rem;
	--translate-x: 0em;
	--translate-y: 16.9em;
}
.sec-2 .fig04 {
	--img-width: 21.8rem;
	--translate-x: 6.5em;
	--translate-y: -12em;
}
.sec-2 .fig05 {
	--img-width: 19.4rem;
	--translate-x: 9em;
	--translate-y: 3em;
}
.sec-2 .fig06 {
	--img-width: 42.6rem;
	--translate-x: -9.2em;
	--translate-y: 5.4em;
}
.sec-2 .fig07 {
	--img-width: 19rem;
	--translate-x: 17.2em;
	--translate-y: -7em;
}
.sec-2 .fig08 {
	--img-width: 18.2rem;
	--translate-x: 15.5em;
	--translate-y: 13.5em;
}
.sec-2 .artist-info {
}
.sec-2 .artist-title {
	font-family: "Inter", sans-serif;
	font-size: clamp(0.6875rem, -0.0625rem + 1.5vw, 1.0625rem);
	font-weight: 500;
	letter-spacing: calc(100em / 1000);
	text-transform: uppercase;
}
.sec-2 .artist-title::after {
	content: " /";
}
.sec-2 .artist-name-en {
	font-family: "Inter Tight", sans-serif;
	font-size: clamp(2.5rem, 0rem + 5vw, 3.75rem);
	letter-spacing: calc(50em / 1000);
	line-height: 1;
	margin-top: 0.4em;
}
.sec-2 .artist-name-en b {
	font-weight: 700;
}
.sec-2 .artist-name-ja {
	font-size: clamp(0.625rem, 0rem + 1.25vw, 0.9375rem);
	font-weight: 700;
	margin-top: 0.5em;
}
.sec-2 .button {
	margin-top: 2em;
}
.sec-2 .button + * {
	margin-top: 0.5em;
}
.link {
	font-weight: 500;
	--line-color: var(--black-rgb);
	display: inline-grid;
	grid-template-columns: 10em 1em;
	place-content: center;
	height: 3.5em;
	position: relative;
}
.link::after {
	content: "→";
}
.link::before {
	content: "";
	position: absolute;
	height: 1px;
	width: 100%;
	background-color: rgba(var(--line-color), 0.7);
	bottom: 0;
	left: 0;
}
.link:hover::before {
	width: 100%;
	animation: 0.7s ease alternate animation-underline;
}
@keyframes animation-underline {
	10% {
		opacity: 0;
		width: 0;
	}
	to {
		width: 100%;
		opacity: 1;
		left: auto;
	}
}
.sec-photo {
	position: sticky;
	top: 0;
	z-index: 1;
}
.sec-photo.photo1 .item-sec-photo:nth-child(3) {
	grid-column: 2 / -1;
	grid-row: 1 / 3;
}
.sec-photo.photo2 .item-sec-photo:nth-child(1) {
	grid-column: span 2;
}
.lay-sec-photo {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
:where(.page:not(.front-page)) .page-title {
	text-align: center;
	text-transform: uppercase;
	line-height: 1.3;
	font-size: clamp(3.313rem, -0.063rem + 6.75vw, 5rem);
	font-weight: 500;
	margin-bottom: 1em;
}
:where(.page:not(.front-page)) .page-heading .inner {
	padding-block: 15em;
}
:where(.page:not(.front-page)) .page-title {
	font-size: 100%;
	font-weight: 400;
	text-align: left;
}
:where(.page:not(.front-page)) .page-section {
	min-height: 100vh;
}
:where(.page:not(.front-page)).privacy-policy {
	--inner-padding-block: calc(25rem * 0.625);
	--content-width: calc(67rem * 0.625);
}
:where(.page:not(.front-page)).privacy-policy .page-title {
	font-size: clamp(3.313rem, -0.063rem + 6.75vw, 5rem);
	font-weight: 500;
	margin-bottom: 1.3em;
	letter-spacing: calc(80em / 1000);
	text-align: center;
	white-space: nowrap;
}
:where(.page:not(.front-page)).privacy-policy .wp-block-heading {
	font-family: var(--default-font-family), sans-serif;
	font-size: clamp(1.313rem, -0.063rem + 2.75vw, 2rem);
	margin-top: 3em;
	font-weight: 500;
	letter-spacing: calc(50em / 1000);
}
:where(.page:not(.front-page)).privacy-policy .wp-block-heading + * {
	margin-top: 1em;
}
:where(.page:not(.front-page)).privacy-policy .site-main p {
	letter-spacing: normal;
}
:where(.page:not(.front-page)).privacy-policy .site-main p + * {
	margin-top: 2.2em;
}
:where(.page:not(.front-page)).privacy-policy .site-main p + .wp-block-heading {
	margin-top: 2.6em;
}
:where(.company) .main-visual {
	background-image: url("../img/company/bg-main-visual@2x.webp");
	background-size: cover;
	background-position: 50%;
}
:where(.company) .page-title {
	font-size: clamp(6.688rem, 0.063rem + 13.25vw, 10rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: calc(30em / 1000);
}
:where(.company) .sec-title {
	line-height: 1;
	font-size: clamp(0.625rem, -0.125rem + 1.5vw, 1rem);
	letter-spacing: normal;
	display: grid;
}
:where(.company) .sec-title .en {
	font-size: clamp(3.313rem, -0.063rem + 6.75vw, 5rem);
	letter-spacing: calc(50em / 1000);
	font-weight: 100;
	font-style: italic;
	text-transform: uppercase;
}
:where(.company) .sec-title .en .small {
	display: block;
	font-size: clamp(2.375rem, 4.75vw, 3.563rem);
	letter-spacing: calc(50em / 1000);
}
:where(.company) .sec-title .ja {
	font-weight: 400;
	margin-top: 2em;
}
:where(.company) .page-sec-company-1 {
	background-color: var(--black);
	min-height: -moz-max-content;
	min-height: max-content;
	position: sticky;
	top: 0;
}
:where(.company) .page-sec-company-2 {
	background-color: var(--bg);
	color: var(--black);
	min-height: -moz-max-content;
	min-height: max-content;
	position: sticky;
	top: 0;
}
:where(.company) .page-sec-company-3 {
	background-color: var(--black);
	min-height: -moz-max-content;
	min-height: max-content;
	position: sticky;
	top: 0;
}
:where(.company) .page-sec-company-3 .lay-sec-company-1 {
	--gap: 7.4em;
}
:where(.company) .page-sec-company-3 p {
	letter-spacing: calc(10em / 1000);
}
:where(.company) .page-sec-company-3 p + * {
	margin-top: 5em;
}
:where(.company) .page-sec-company-4 {
	background-color: var(--bg);
	color: var(--black);
	/*min-height: max-content; */
	position: sticky;
	top: 0;
}
:where(.company) .lay-sec-company-1 {
	--gap: 8em;
	display: grid;
	grid-template-columns: minmax(max-content, 23em) 1fr;
	place-items: start;
	gap: var(--gap);
}
:where(.company) .tbl tr:not(:last-child) {
	border-bottom: 1px solid rgba(var(--white-rgb), 0.3);
}
:where(.company) .tbl th,
:where(.company) .tbl td {
	padding: 2.1em 0;
	vertical-align: top;
}
:where(.company) .tbl th {
	font-weight: normal;
	text-align: left;
}
:where(.company) .tbl td {
	padding-left: 1.5em;
}
:where(.company) .list-company-2 {
	position: relative;
	padding-left: 3.5em;
}
:where(.company) .list-company-2::before {
	content: "";
	display: block;
	width: 1em;
	height: 100%;
	background-color: currentColor;
	position: absolute;
	top: 0;
	left: 0;
}
:where(.company) .list-company-2 dt {
	font-size: clamp(1.25rem, 2.5vw, 1.875rem);
	letter-spacing: normal;
	line-height: 1.5;
}
:where(.company) .list-company-2 dd {
	margin-top: 1em;
	letter-spacing: normal;
	line-height: 2.2;
}
:where(.company) .list-company-2 + * {
	margin-top: 4.5em;
}
:where(.company) .list-company-3 {
	position: relative;
	padding-left: 3.5em;
}
:where(.company) .list-company-3::before {
	content: "";
	display: block;
	width: 0.9em;
	height: 100%;
	background-color: currentColor;
	position: absolute;
	top: 0;
	left: 0;
}
:where(.company) .list-company-3 dt {
	font-weight: 500;
	font-size: clamp(0.938rem, 0.062rem + 1.75vw, 1.375rem);
	letter-spacing: normal;
	line-height: 1.5;
}
:where(.company) .list-company-3 dd {
	margin-top: 0.5em;
	line-height: 2.2;
	letter-spacing: normal;
}
:where(.company) .list-company-3 + * {
	margin-top: 3em;
}
:where(.company) .list-company-4 {
	list-style: none;
	padding-left: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.76em 1em;
}
:where(.company) .list-company-4 li {
	background-color: rgba(var(--white-rgb), 1);
	padding: 0.5em 1em;
	font-size: clamp(0.563rem, 0.063rem + 1vw, 0.813rem);
	letter-spacing: normal;
}
:where(.company) .list-company-4 li:last-child {
	background-color: rgba(var(--black-rgb), 0);
	/*grid-column: 1 / -1; */
	text-align: right;
}
:where(.profile) .page-heading .inner {
	padding-block: 13em calc(15rem * 0.625);
}
:where(.profile) .page-title > * {
	display: block;
	line-height: 1;
}
:where(.profile) .page-title .title {
	font-size: clamp(0.688rem, -0.063rem + 1.5vw, 1.063rem);
	letter-spacing: calc(150em / 1000);
}
:where(.profile) .page-title .title::after {
	content: "/";
	display: inline-block;
	margin-inline: 0.5em;
}
:where(.profile) .page-title .name-en {
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	letter-spacing: calc(30em / 1000);
	margin-top: 0.6em;
}
:where(.profile) .page-title .name-ja {
	font-size: clamp(0.625rem, 1.25vw, 0.938rem);
	font-weight: 700;
	margin-top: 1em;
}
:where(.profile) .page-sec-1 {
	padding-bottom: calc(40rem * 0.625);
}
:where(.profile) .lay-sec-profile-1 {
	display: grid;
	grid-template-columns:
		1fr
		minmax(0, clamp(5rem, 10vw, 7.5rem))
		clamp(18.75rem, 0.25rem + 37vw, 28rem)
		minmax(5rem, clamp(8.125rem, -0.625rem + 17.5vw, 12.5rem))
		clamp(23.125rem, 0.375rem + 45.5vw, 34.5rem)
		minmax(0, clamp(5rem, 10vw, 7.5rem))
		1fr;
}
:where(.profile) .column {
	width: 100%;
	height: 100%;
	position: relative;
}
:where(.profile) .col-1 {
	grid-column: 1 / 4;
	display: grid;
	place-content: start;
	place-items: center;
}
:where(.profile) .col-2 {
	grid-column: 5 / 6;
}
:where(.profile) .fig-profile {
	position: relative;
}
:where(.profile) .cap-profile {
	position: absolute;
	bottom: -1.5em;
	right: -1.12em;
	z-index: 1;
	line-height: 1;
	font-family: "Inter Tight", sans-serif;
	font-style: italic;
	font-weight: 100;
	font-size: clamp(5rem, 10vw, 7.5rem);
	letter-spacing: calc(50em / 1000);
}
@media (max-width: 1024px) {
	:where(.profile) .cap-profile {
		right: auto;
	}
}
:where(.profile) .fig-1 {
	height: clamp(31.688rem, 0.438rem + 62.5vw, 47.313rem);
	/*left: -1em; */
}
:where(.profile) .img-1 {
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: left bottom;
	object-position: left bottom;
	width: 100%;
	height: 100%;
}
:where(.profile) .fig-2 {
	width: calc(32.6rem * 0.625 * 0.5);
	margin-top: 16em;
	left: -5em;
}
:where(.profile) .fig-3 {
	width: calc(34.4rem * 0.625 * 0.5);
	margin-top: -1em;
	left: 12em;
}
:where(.profile) .fig-4 {
	width: calc(61.4rem * 0.625 * 0.5);
	margin-top: -1.5em;
	left: -8.2em;
}
:where(.profile) .ttl-profile {
	font-family: var(--default-font-family), sans-serif;
	font-size: clamp(2.313rem, -0.063rem + 4.75vw, 3.5rem);
	font-weight: 100;
	line-height: 1.6;
	letter-spacing: calc(300em / 1000);
	max-width: -moz-max-content;
	max-width: max-content;
	position: relative;
	white-space: nowrap;
	margin-top: -0.45em;
}
:where(.profile) .ttl-profile::before,
:where(.profile) .ttl-profile::after {
	font-family: var(--default-font-family), sans-serif;
	font-size: clamp(3.75rem, 7.5vw, 5.625rem);
	font-weight: 600;
	position: absolute;
	opacity: 0.3;
	line-height: 1;
	display: block;
}
:where(.profile) .ttl-profile::before {
	content: "“";
	top: 0.1em;
	left: -0.9em;
}
:where(.profile) .ttl-profile::after {
	content: "”";
	right: -0.6em;
	bottom: -0.4em;
}
:where(.profile) .txt-profile-1 {
	margin-top: 5.5em;
	letter-spacing: calc(137em / 1000);
	line-height: 2.9;
}
:where(.profile) .txt-profile-2 {
	font-size: clamp(0.625rem, 0.375rem + 0.5vw, 0.75rem);
	margin-top: 7em;
	letter-spacing: normal;
	line-height: 2.8;
	padding-right: 8.1em;
}
:where(.profile) .button {
	margin-top: 5em;
}
:where(.profile) .button .link {
	--line-color: var(--white-rgb);
}
:where(.privacy-policy) .sec-privacy-photo {
}
:where(.privacy-policy) .lay-sec-privacy-photo {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
:where(.privacy-policy) .item-sec-privacy-photo {
}
:where(.archive, .private) .page-header {
	color: var(--black);
}
:where(.archive, .private) .page-heading {
	background-color: var(--bg);
	color: var(--black);
}
:where(.archive, .private) .page-heading .inner {
	padding-block: calc(30rem * 0.625) calc(10rem * 0.625);
	border-bottom: 2px solid;
}
:where(.archive, .private) .page-title {
	display: grid;
	place-items: center;
	place-content: center;
	line-height: normal;
	text-transform: uppercase;
	letter-spacing: normal;
	text-align: center;
}
:where(.archive, .private) .page-title .title {
	font-size: clamp(1.25rem, -0.125rem + 2.75vw, 1.938rem);
}
:where(.archive, .private) .page-title .lay-name-en {
	display: inline-grid;
	position: relative;
}
:where(.archive, .private) .page-title .name-en {
	font-size: clamp(8.125rem, -0.625rem + 17.5vw, 12.5rem);
	font-weight: normal;
	letter-spacing: calc(-5em / 1000);
	line-height: 1;
}
:where(.archive, .private) .page-title .name-en b {
	letter-spacing: calc(-10em / 1000);
}
:where(.archive, .private) .page-title .name-en.last {
	margin-top: -0.15em;
}
:where(.archive, .private) .page-title .lay-name-ja {
	position: absolute;
	display: grid;
	place-items: start;
	right: 0;
	top: 50%;
	transform: translate(100%, -90%);
}
:where(.archive, .private) .page-title .name-ja {
	font-size: clamp(0.813rem, -0.063rem + 1.75vw, 1.25rem);
	letter-spacing: 0.45em;
}
:where(.archive, .private) .page-title .button {
	font-size: clamp(0.625rem, 1.25vw, 0.938rem);
	margin-top: 0.3em;
}
:where(.archive, .private) .page-title .link {
	letter-spacing: calc(90em / 1000);
	grid-template-columns: max-content max-content;
	gap: 0 1.5em;
	height: auto;
}
:where(.archive, .private) .page-title .link::before {
	content: none;
}
:where(.archive, .private) .page-title .works {
	font-size: clamp(2.875rem, -0.125rem + 6vw, 4.375rem);
	letter-spacing: calc(-15em / 1000);
}
:where(.archive, .private) .site-main {
	background-color: var(--bg);
	color: var(--black);
}
:where(.archive, .private) .nav-tab {
	border-top: 2px solid var(--black);
	border-bottom: 2px solid var(--black);
	padding: 1.4em 0;
	margin-top: 4em;
}
:where(.archive, .private) .list-nav-tab {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4em;
	font-size: clamp(0.688rem, 0.188rem + 1vw, 0.938rem);
	letter-spacing: calc(15em / 1000);
}
:where(.archive, .private) .link-list-nav-tab.link-private {
	font-weight: 600;
	display: flex;
	align-items: center;
	position: relative;
}
:where(.archive, .private) .link-list-nav-tab.is-current {
	font-weight: 600;
	/*text-decoration: underline; */
	/*text-decoration-color: #333; */
	/*text-underline-offset: 8px; */
}
:where(.archive, .private) .link-list-nav-tab .icon {
	margin-left: 0.6em;
	position: absolute;
	right: -2em;
}
:where(.archive, .private) .link-list-nav-tab .icon-key {
	margin-bottom: 0.45em;
}
:where(.archive, .private) .post-contents {
	margin-top: 5em;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 10em 0;
	place-items: center;
	place-content: center;
}
:where(.archive, .private) .post-item {
	grid-column-start: var(--col-start);
	grid-column-end: var(--col-end);
}
:where(.archive, .private) .post-item:nth-child(10n + 0) {
	--col-start: 7;
	--col-end: 12;
}
:where(.archive, .private) .post-item:nth-child(10n + 1) {
	--col-start: 2;
	--col-end: 6;
}
:where(.archive, .private) .post-item:nth-child(10n + 2) {
	--col-start: 7;
	--col-end: 12;
}
:where(.archive, .private) .post-item:nth-child(10n + 3) {
	--col-start: 3;
	--col-end: 6;
}
:where(.archive, .private) .post-item:nth-child(10n + 4) {
	--col-start: 8;
	--col-end: 11;
}
:where(.archive, .private) .post-item:nth-child(10n + 5) {
	--col-start: 2;
	--col-end: 6;
}
:where(.archive, .private) .post-item:nth-child(10n + 6) {
	--col-start: 7;
	--col-end: 11;
}
:where(.archive, .private) .post-item:nth-child(10n + 7) {
	--col-start: 2;
	--col-end: 6;
}
:where(.archive, .private) .post-item:nth-child(10n + 8) {
	--col-start: 7;
	--col-end: 12;
}
:where(.archive, .private) .post-item:nth-child(10n + 9) {
	--col-start: 1;
	--col-end: 6;
}
:where(.archive, .private) .wp-block-image {
}
:where(.archive, .private) .wp-element-caption {
	display: none;
}
:where(.archive, .private) .fig-caption {
}
:where(.archive, .private) .post-categories {
	margin: 0;
	display: flex;
	padding-left: 0;
	list-style: none;
}
:where(.archive) .post-sec-coming-soon .inner {
}
:where(.archive) .ttl-coming-soon {
	font-size: clamp(2.875rem, -0.125rem + 6vw, 4.375rem);
	line-height: 1;
	letter-spacing: calc(-15em / 1000);
	text-align: center;
	text-transform: uppercase;
}
:where(.single) .page-header {
	color: var(--black);
}
:where(.single) .site-main {
	background-color: var(--bg);
	color: var(--black);
}
