@charset "UTF-8";
:root {
	--bp-sp: 767px;
}

:root {
	--bp-portrait: 1024px;
}

:root {
	--bp-pc: 1084px;
}

/******************************************************************
foundation - base
******************************************************************/
:where(html) {
	-webkit-text-size-adjust: 100%;
}

:where(body) {
	margin: 0;
}

:where(sub),
:where(sup) {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

:where(sub) {
	bottom: -0.2em;
}

:where(sup) {
	top: -0.4em;
}

:where(button, input, optgroup, select, textarea) {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.4;
	font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
	:where(button, input, optgroup, select, textarea) {
		font-size: 16px;
	}
}

:where(html) {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

:where(body) {
	min-width: 375px;
	font-family: "M PLUS Rounded 1c", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	overflow-wrap: break-word;
	overflow-y: scroll;
	color: #525252;
	line-height: 1.4;
	font-feature-settings: "palt";
	letter-spacing: 0.04em;
	font-size: 18px;
}
@media screen and (max-width: 767px) {
	:where(body) {
		font-size: 14px;
	}
}
@media print {
	:where(body) {
		width: 1024px;
		zoom: 0.8;
	}
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dd, figure) {
	margin: 0;
	padding: 0;
}

:where(li) {
	list-style: none;
}

:where(table) {
	border-collapse: collapse;
	border-spacing: 0;
}

:where(iframe) {
	border: 0;
}

:where(button) {
	background-color: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	appearance: none;
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	:where(button):hover {
		text-decoration: none;
	}
}
:where(button):focus {
	text-decoration: none;
}
:where(button) {
	outline-color: #999999;
}

:where(input, select) {
	outline-color: #999999;
}

:where(em) {
	font-style: normal;
	font-weight: bold;
}

:where(fieldset) {
	border: 0;
	padding: 0;
	margin: 0;
}

:where(address) {
	font-style: normal;
}

:where(a) {
	color: #3865e0;
	text-decoration: underline;
	text-decoration-thickness: 1px !important;
	text-underline-offset: 0.1em;
	outline-color: #999999;
}
@media (any-hover: hover) {
	:where(a):hover {
		text-decoration: none;
	}
}
:where(a):focus {
	text-decoration: none;
}

:where(img) {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

:where(svg) {
	vertical-align: middle;
}

:where(hr) {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
}

/******************************************************************
foundation - image-noselect
******************************************************************/
img {
	/* PCの右クリック禁止 */
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none; /* Prevents dragging of images/divs etc */
	user-drag: none;
	-webkit-touch-callout: none;
}

/******************************************************************
layout - wrapper
******************************************************************/
.l-wrapper {
	width: 100%;
	overflow: clip;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}
.l-wrapper main {
	flex-grow: 1;
	background: url(/assets/img/bg-main.png);
	background-attachment: fixed;
}

/******************************************************************
layout - header-fixed
******************************************************************/
html:has(.l-header-fixed) {
	scroll-padding-top: calc(var(--header-height) + 10px);
}

@media screen and (max-width: 1024px) {
	html:has(.l-header-fixed--portrait-over) {
		scroll-padding-top: initial;
	}
}

@media print, screen and (min-width: 1025px) {
	html:has(.l-header-fixed--portrait) {
		scroll-padding-top: initial;
	}
}
body:has(.l-header-fixed) {
	padding-top: var(--header-height);
}
@media print {
	body:has(.l-header-fixed) {
		padding-top: initial;
	}
}

@media screen and (max-width: 1024px) {
	body:has(.l-header-fixed--portrait-over) {
		padding-top: initial;
	}
}

@media print, screen and (min-width: 1025px) {
	body:has(.l-header-fixed--portrait) {
		padding-top: initial;
	}
}
body:has(.l-header-fixed) .l-wrapper {
	min-height: calc(100dvh - var(--header-height));
}

.l-header-fixed__inner[data-header-fixed=true] {
	position: fixed;
	z-index: 100;
	top: 0;
	width: 100%;
}
@media print {
	.l-header-fixed__inner[data-header-fixed=true] {
		position: relative;
	}
}

/******************************************************************
layout - header
******************************************************************/
:root {
	--header-height: 0;
}

.l-header {
	background-color: #000;
}
.l-header__content-inner {
	max-width: 1024px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.l-header__content-inner {
		padding-inline: 20px;
	}
}
.l-header__content-inner {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}
@media screen and (max-width: 1024px) {
	.l-header__content-inner {
		gap: 0.9rem;
	}
}
.l-header__head {
	flex-grow: 1;
	max-width: 30%;
	align-self: center;
	padding: 20px 10px 16px 0;
}
@media screen and (max-width: 1024px) {
	.l-header__head {
		padding: 16px 10px 12px 0;
	}
}
.l-header__logo {
	font-size: 18px;
}
.l-header__logo svg,
.l-header__logo img {
	max-width: 100%;
	width: 54px;
}
@media screen and (max-width: 1024px) {
	.l-header__logo svg,
	.l-header__logo img {
		width: 34px;
	}
}
.l-header__body-landscape {
	display: flex;
	align-items: center;
	padding-inline: 0.5rem;
}
.l-header__body-landscape > *:not(:last-child) {
	margin-bottom: 0.5rem;
}
@media screen and (max-width: 1024px) {
	.l-header__body-landscape {
		display: none;
	}
}
.l-header__body-portrait {
	display: none;
}
@media screen and (max-width: 1024px) {
	.l-header__body-portrait {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		gap: 0.9rem;
	}
}

/******************************************************************
layout - header-menu
******************************************************************/
.l-header-menu {
	color: #fff;
}
@media print, screen and (min-width: 1025px) {
	.l-header-menu {
		display: flex;
		flex-wrap: wrap;
		gap: 0.25em 2em;
		justify-content: flex-end;
		font-size: 17px;
	}
}
@media screen and (min-width: 1025px) and (max-width: 1084px) {
	.l-header-menu {
		font-size: 1.5682656827vw;
	}
}
@media print, screen and (min-width: 1025px) {
	.l-header-menu a {
		color: inherit;
		text-decoration: none;
		transition-property: opacity;
		transition-duration: 0.4s;
	}
}
@media print and (any-hover: hover), screen and (min-width: 1025px) and (any-hover: hover) {
	.l-header-menu a:hover {
		text-decoration: none;
	}
}
@media print, screen and (min-width: 1025px) {
	.l-header-menu a:focus {
		text-decoration: none;
	}
}
@media print and (any-hover: hover), screen and (min-width: 1025px) and (any-hover: hover) {
	.l-header-menu a:hover {
		opacity: 0.6;
	}
}
@media print, screen and (min-width: 1025px) {
	.l-header-menu a:focus {
		opacity: 0.6;
	}
}
@media screen and (max-width: 1024px) {
	.l-header-menu a {
		box-sizing: border-box;
		display: block;
		padding: 0.6em 0;
		font-weight: 600;
		font-size: 18px;
		color: inherit;
		text-decoration: none;
	}
}
@media screen and (max-width: 1024px) and (any-hover: hover) {
	.l-header-menu a:hover {
		text-decoration: none;
	}
}
@media screen and (max-width: 1024px) {
	.l-header-menu a:focus {
		text-decoration: none;
	}
}

/******************************************************************
layout - header-dropdown
******************************************************************/
body:has(.l-header-fixed:not(.l-header-fixed--portrait-over):not(.l-header-fixed--portrait) .l-header-dropdown > [aria-hidden=false]) {
	overflow: hidden;
}

@media print, screen and (min-width: 1025px) {
	body:has(.l-header-fixed--portrait-over .l-header-dropdown > [aria-hidden=false]) {
		overflow: hidden;
	}
}
@media screen and (max-width: 1024px) {
	body:has(.l-header-fixed--portrait .l-header-dropdown > [aria-hidden=false]) {
		overflow: hidden;
	}
}
.l-header__head > *,
.l-header__body > *:not(.l-header-dropdown),
.l-header-dropdown__button {
	position: relative;
	z-index: 111;
}

.l-header-dropdown__button {
	width: 30px;
	height: 26px;
	padding: 4px;
}
.l-header-dropdown__button > span {
	display: block;
	position: relative;
	width: 22px;
	height: 18px;
}
.l-header-dropdown__button > span span {
	position: absolute;
	display: block;
	margin: auto;
	width: 100%;
	height: 2px;
	background-color: #fff;
}
.l-header-dropdown__button > span span:first-child {
	top: 0;
}
.l-header-dropdown__button > span span:nth-child(2) {
	top: 0;
	bottom: 0;
}
.l-header-dropdown__button > span span:last-child {
	bottom: 0;
}
.l-header-dropdown__button > span span:first-child {
	transition: top 0.24s 0.16s, transform 0.16s;
}
.l-header-dropdown__button > span span:nth-child(2) {
	transition: opacity 0.24s 0.16s;
}
.l-header-dropdown__button > span span:last-child {
	transition: bottom 0.24s 0.16s, transform 0.16s;
}
.l-header-dropdown__button[aria-expanded=true] > span span:first-child {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: top 0.16s, transform 0.24s 0.16s;
}
.l-header-dropdown__button[aria-expanded=true] > span span:nth-child(2) {
	opacity: 0;
	transition: opacity 0.16s;
}
.l-header-dropdown__button[aria-expanded=true] > span span:last-child {
	bottom: 50%;
	transform: translateY(50%) rotate(45deg);
	transition: bottom 0.16s, transform 0.24s 0.16s;
}
.l-header-dropdown__close {
	display: block;
	width: fit-content;
	margin-inline: auto;
	padding-left: 16px;
	position: relative;
}
.l-header-dropdown__close::before, .l-header-dropdown__close::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.3, 2, 0.6, 1);
}
.l-header-dropdown__close::before {
	background-color: #333333;
	width: 12.1421356237px;
	height: 2px;
	transform: translateX(-1.0710678119px) rotate(45deg);
	top: 0;
	bottom: 0;
	left: 0;
}
.l-header-dropdown__close::after {
	background-color: #333333;
	width: 12.1421356237px;
	height: 2px;
	transform: translateX(-1.0710678119px) rotate(-45deg);
	top: 0;
	bottom: 0;
	left: 0;
}
.l-header-dropdown__body {
	display: none;
	position: absolute;
	inset-inline: 0;
	top: var(--header-height);
	z-index: 110;
	max-height: calc(100dvh - var(--header-height));
	overflow-y: auto;
	scroll-behavior: smooth;
	overscroll-behavior: contain;
	box-sizing: border-box;
	top: 0;
	height: 100dvh;
	max-height: 100dvh;
	padding-top: var(--header-height);
	background-color: rgba(51, 51, 51, 0.7);
	color: #fff;
}
.l-header-dropdown__body-inner {
	max-width: 500px;
	margin-inline: auto;
	padding: 3em;
}
@media screen and (max-width: 767px) {
	.l-header-dropdown__body-inner {
		padding: 1em;
	}
}
.l-header-dropdown__body-inner > *:not(:last-child) {
	margin-bottom: 2rem;
}
.l-header-dropdown__body-inner nav > *:not(:last-child) {
	margin-bottom: 2rem;
}
.l-header-dropdown__body-inner {
	min-height: calc(100% - var(--header-height));
	display: flex;
	align-items: center;
	justify-content: center;
}
.l-header-dropdown__body > * {
	transition-property: opacity, transform;
	transition-duration: 0.6s;
	opacity: 0;
	transform: translateY(-15px);
}
.l-header-dropdown__body[aria-hidden=false] > * {
	opacity: 1;
	transform: translateY(0);
}

.l-header-fixed:not(.l-header-fixed--portrait-over):not(.l-header-fixed--portrait) .l-header-dropdown::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	position: fixed;
	z-index: 109;
	inset-inline: 0;
	background-color: rgba(0, 0, 0, 0.7);
	top: var(--header-height);
	transition: opacity 0.4s, height 0s 0.4s;
	opacity: 0;
	height: 0;
}
.l-header-fixed:not(.l-header-fixed--portrait-over):not(.l-header-fixed--portrait) .l-header-dropdown:has(> [aria-hidden=false])::after {
	transition: opacity 0.4s, height 0s 0s;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	opacity: 1;
	height: 100vh;
	height: 100dvh;
}

@media screen and (max-width: 1024px) {
	.l-header-fixed--portrait .l-header-dropdown::after {
		position: absolute;
		content: "";
		margin: auto;
		box-sizing: border-box;
		vertical-align: middle;
		position: fixed;
		z-index: 109;
		inset-inline: 0;
		background-color: rgba(0, 0, 0, 0.7);
		top: var(--header-height);
		transition: opacity 0.4s, height 0s 0.4s;
		opacity: 0;
		height: 0;
	}
	.l-header-fixed--portrait .l-header-dropdown:has(> [aria-hidden=false])::after {
		transition: opacity 0.4s, height 0s 0s;
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		opacity: 1;
		height: 100vh;
		height: 100dvh;
	}
}
/******************************************************************
layout - top-visual
******************************************************************/
.l-top-visual {
	position: relative;
}
.l-top-visual img {
	width: 100%;
}

/******************************************************************
layout - pagetop
******************************************************************/
.l-pagetop {
	position: relative;
}
@media print {
	.l-pagetop {
		display: none !important;
	}
}
.l-pagetop:not([data-pagetop]) .l-pagetop__btn {
	transform: translatey(0);
	position: fixed !important;
}
.l-pagetop[data-pagetop=top] .l-pagetop__btn {
	transform: translatey(120px);
	position: fixed;
}
.l-pagetop[data-pagetop=scroll] .l-pagetop__btn, .l-pagetop[data-pagetop=top] .l-pagetop__btn:focus {
	transform: translatey(0);
	position: fixed;
}
.l-pagetop[data-pagetop=bottom] .l-pagetop__btn {
	position: absolute;
}
.l-pagetop__btn {
	z-index: 90;
	transition-property: transform, background;
	transition-duration: 0.4s;
	transition-timing-function: cubic-bezier(0.3, 1.6, 0.8, 1);
	will-change: transform;
	display: block;
	overflow: hidden;
}
.l-pagetop__btn {
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	position: relative;
}
.l-pagetop__btn::before {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 50px;
	height: 50px;
	background-color: #fff;
	border: 2px solid #333333;
	border-radius: 100vw;
}
.l-pagetop__btn::before {
	left: 0px;
	right: 0;
	top: 0px;
	bottom: 0;
}
.l-pagetop__btn {
	position: relative;
}
.l-pagetop__btn::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 16px;
	height: 16px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.l-pagetop__btn::after {
	top: 0px;
	bottom: 0;
	left: 0px;
	right: 0;
	transform-origin: center center;
	border-top: 2px solid #333333;
	border-left: 2px solid #333333;
	transform: translateY(3.313708499px) rotate(45deg);
}
.l-pagetop__btn::before {
	transition-property: background;
	transition-duration: 0.4s;
}
.l-pagetop__btn::after {
	transition-property: border;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.l-pagetop__btn:hover::before {
		background: #333333;
	}
	.l-pagetop__btn:hover::after {
		border-color: #fff;
	}
}
.l-pagetop__btn:focus::before {
	background: #333333;
}
.l-pagetop__btn:focus::after {
	border-color: #fff;
}

/******************************************************************
layout - footer
******************************************************************/
.l-footer__content {
	color: #fff;
}
.l-footer__copy {
	display: block;
	padding: 30px;
	text-align: center;
	background-color: #fff;
	font-size: 0.8rem;
}
.l-footer__copy small {
	font-size: inherit;
}
.l-footer__copy span {
	display: inline-block;
}

/******************************************************************
layout - footer-share-list
******************************************************************/
.l-footer-share-list {
	background-color: #2c2d2e;
	padding-block: 40px 60px;
}
@media screen and (max-width: 1024px) {
	.l-footer-share-list {
		padding-block: 30px 40px;
	}
}
.l-footer-share-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px 45px;
}
@media screen and (max-width: 1024px) {
	.l-footer-share-list {
		gap: 16px 25px;
	}
}
.l-footer-share-list dt {
	width: 100%;
	text-align: center;
	font-size: 24px;
}
@media screen and (max-width: 1024px) {
	.l-footer-share-list dt {
		font-size: 18px;
	}
}
.l-footer-share-list img {
	width: auto;
	height: 80px;
}
@media screen and (max-width: 1024px) {
	.l-footer-share-list img {
		height: 50px;
	}
}

/******************************************************************
layout - footer-sns-list
******************************************************************/
.l-footer-sns-list {
	background-color: #000;
	padding-block: 40px 40px;
}
@media screen and (max-width: 1024px) {
	.l-footer-sns-list {
		padding-block: 30px 30px;
	}
}
.l-footer-sns-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px 30px;
}
@media screen and (max-width: 1024px) {
	.l-footer-sns-list {
		gap: 16px 26px;
	}
}
.l-footer-sns-list dt {
	width: 100%;
	text-align: center;
	font-size: 24px;
}
@media screen and (max-width: 1024px) {
	.l-footer-sns-list dt {
		font-size: 18px;
	}
}
.l-footer-sns-list img {
	width: auto;
	height: 32px;
}
@media screen and (max-width: 1024px) {
	.l-footer-sns-list img {
		height: 28px;
	}
}

/******************************************************************
component - section
******************************************************************/
.c-section {
	position: relative;
}
.c-section:last-child {
	padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
	.c-section:last-child {
		padding-bottom: 4rem;
	}
}
.c-section--offset-cut {
	padding-block: 0.1px;
}
.c-section--italic {
	clip-path: polygon(0 10vw, 100% 0, 100% calc(100% - 10vw), 0 100%);
	padding-block: 10vw;
}
.c-section--pseudo-italic {
	position: relative;
	z-index: 1;
}
.c-section--pseudo-italic::before {
	z-index: -1;
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(0 10vw, 100% 0, 100% calc(100% - 10vw), 0 100%);
	background-color: #daf3e3;
}
.c-section__vertical {
	max-width: 1024px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.c-section__vertical {
		padding-inline: 20px;
	}
}
.c-section__vertical {
	margin-block: 6rem;
}
@media screen and (max-width: 767px) {
	.c-section__vertical {
		margin-block: 4rem;
	}
}
.c-section__vertical--slim {
	max-width: 1000px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.c-section__vertical--slim {
		padding-inline: 20px;
	}
}
.c-section__vertical--full {
	max-width: none;
	padding-inline: 0;
}
.c-section__top {
	max-width: 1024px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.c-section__top {
		padding-inline: 20px;
	}
}
.c-section__top {
	margin-top: 6rem;
}
@media screen and (max-width: 767px) {
	.c-section__top {
		margin-top: 4rem;
	}
}
.c-section__top--slim {
	max-width: 1000px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.c-section__top--slim {
		padding-inline: 20px;
	}
}
.c-section__top--full {
	max-width: none;
	padding-inline: 0;
}
.c-section__bottom {
	max-width: 1024px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.c-section__bottom {
		padding-inline: 20px;
	}
}
.c-section__bottom {
	margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
	.c-section__bottom {
		margin-bottom: 4rem;
	}
}
.c-section__bottom--slim {
	max-width: 1000px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.c-section__bottom--slim {
		padding-inline: 20px;
	}
}
.c-section__bottom--full {
	max-width: none;
	padding-inline: 0;
}
.c-section__fit {
	max-width: 1024px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.c-section__fit {
		padding-inline: 20px;
	}
}
.c-section__fit--slim {
	max-width: 1000px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.c-section__fit--slim {
		padding-inline: 20px;
	}
}
.c-section__fit--full {
	max-width: none;
	padding-inline: 0;
}
.c-section__frame-bg {
	background-color: #fff;
	padding: 50px;
}
@media screen and (max-width: 1084px) {
	.c-section__frame-bg {
		padding: 4.6125461255vw;
	}
}
@media screen and (max-width: 767px) {
	.c-section__frame-bg {
		padding: 20px;
	}
}

/******************************************************************
component - c-flexbox
******************************************************************/
.c-flexbox {
	display: flex;
	flex-wrap: wrap;
}
.c-flexbox > [class*=c-flexbox__item], .c-flexbox > .c-flexbox__item5col {
	position: relative;
	box-sizing: border-box;
}
.c-flexbox > [class*=c-flexbox__item]:has(> .c-button:first-child):has(> .c-button:last-child), .c-flexbox > .c-flexbox__item5col:has(> .c-button:first-child):has(> .c-button:last-child) {
	display: flex;
}
.c-flexbox > [class*=c-flexbox__item]:has(> .c-button-visual:first-child):has(> .c-button-visual:last-child), .c-flexbox > .c-flexbox__item5col:has(> .c-button-visual:first-child):has(> .c-button-visual:last-child) {
	display: flex;
}
.c-flexbox > [class*=c-flexbox__item]:has(> .c-frame-bg:first-child):has(> .c-frame-bg:last-child), .c-flexbox > [class*=c-flexbox__item]:has(> .c-frame-border:first-child):has(> .c-frame-border:last-child), .c-flexbox > .c-flexbox__item5col:has(> .c-frame-bg:first-child):has(> .c-frame-bg:last-child), .c-flexbox > .c-flexbox__item5col:has(> .c-frame-border:first-child):has(> .c-frame-border:last-child) {
	display: flex;
}
.c-flexbox--center {
	justify-content: center;
}
.c-flexbox--right {
	justify-content: flex-end;
}
.c-flexbox--vertical > [class*=c-flexbox__item], .c-flexbox--vertical > .c-flexbox__item5col {
	display: flex;
	align-items: center;
}
.c-flexbox--bottom > [class*=c-flexbox__item], .c-flexbox--bottom > .c-flexbox__item5col {
	display: flex;
	align-items: flex-end;
}
.c-flexbox {
	--flexbox-gap-y: 1rem;
	--flexbox-gap-x: 1rem;
	margin-right: calc(var(--flexbox-gap-x) * -1);
}
.c-flexbox--center {
	margin-inline: calc(var(--flexbox-gap-x) * -0.5);
}
.c-flexbox--right {
	margin-right: initial;
	margin-left: calc(var(--flexbox-gap-x) * -1);
}
.c-flexbox {
	gap: var(--flexbox-gap-y) var(--flexbox-gap-x);
}
.c-flexbox > .c-flexbox__item1 {
	width: calc(8.3333333333% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item2 {
	width: calc(16.6666666667% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item3 {
	width: calc(25% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item4 {
	width: calc(33.3333333333% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item5 {
	width: calc(41.6666666667% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item6 {
	width: calc(50% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item7 {
	width: calc(58.3333333333% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item8 {
	width: calc(66.6666666667% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item9 {
	width: calc(75% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item10 {
	width: calc(83.3333333333% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item11 {
	width: calc(91.6666666667% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item12 {
	width: calc(100% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item5col {
	width: calc(20% - var(--flexbox-gap-x));
}
@media screen and (max-width: 1084px) {
	.c-flexbox.pc-vw {
		--flexbox-gap-y: 1.4760147601vw;
		--flexbox-gap-x: 1.4760147601vw;
	}
}
.c-flexbox--18-20px {
	--flexbox-gap-y: 20px;
	--flexbox-gap-x: 18px;
}

@media screen and (max-width: 1084px) {
	.c-flexbox--18-20px.pc-vw {
		--flexbox-gap-y: 1.8450184502vw;
		--flexbox-gap-x: 1.6605166052vw;
	}
}
.c-flexbox--35-40px {
	--flexbox-gap-y: 40px;
	--flexbox-gap-x: 35px;
}

@media screen and (max-width: 1084px) {
	.c-flexbox--35-40px.pc-vw {
		--flexbox-gap-y: 3.6900369004vw;
		--flexbox-gap-x: 3.2287822878vw;
	}
}
@media screen and (max-width: 767px) {
	.c-flexbox.sp-destroy {
		display: initial;
		flex-wrap: initial;
		margin-right: initial;
		margin-left: initial;
		gap: initial;
	}
	.c-flexbox.sp-destroy > * {
		position: initial;
		box-sizing: initial;
		width: initial;
	}
	.c-flexbox {
		--flexbox-gap-y: 0.9rem;
		--flexbox-gap-x: 0.9rem;
	}
	.c-flexbox > .sp-item1 {
		width: calc(8.3333333333% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item2 {
		width: calc(16.6666666667% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item3 {
		width: calc(25% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item4 {
		width: calc(33.3333333333% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item5 {
		width: calc(41.6666666667% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item6 {
		width: calc(50% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item7 {
		width: calc(58.3333333333% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item8 {
		width: calc(66.6666666667% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item9 {
		width: calc(75% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item10 {
		width: calc(83.3333333333% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item11 {
		width: calc(91.6666666667% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item12 {
		width: calc(100% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item5col {
		width: calc(20% - var(--flexbox-gap-x));
	}
	.c-flexbox--18-20px {
		--flexbox-gap-y: 20px;
		--flexbox-gap-x: 18px;
	}
	.c-flexbox.sp-18-20px {
		--flexbox-gap-y: 20px;
		--flexbox-gap-x: 18px;
	}
	.c-flexbox--35-40px {
		--flexbox-gap-y: 40px;
		--flexbox-gap-x: 35px;
	}
	.c-flexbox.sp-35-40px {
		--flexbox-gap-y: 40px;
		--flexbox-gap-x: 35px;
	}
}

/******************************************************************
component - image
******************************************************************/
a:has(> .c-image) {
	display: block;
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	a:has(> .c-image):hover {
		text-decoration: none;
	}
}
a:has(> .c-image):focus {
	text-decoration: none;
}

a:has(> .c-image:not(.c-image--full):not(.c-image--object-fit)) {
	width: fit-content;
	margin-inline: auto;
}

a:has(> .c-image.c-image--left:not(.c-image--full):not(.c-image--object-fit)) {
	margin-inline: initial;
}

a:has(> .c-image.c-image--right:not(.c-image--full):not(.c-image--object-fit)) {
	margin-inline: auto 0;
}

.c-image {
	display: table;
	width: fit-content;
	margin-inline: auto;
}
.c-image--left {
	margin-inline: initial;
}
.c-image--right {
	margin-inline: auto 0;
}
.c-image--object-fit {
	border: 1px solid #d9d9d9;
	box-sizing: border-box;
	padding: 8%;
	width: 100%;
	border-radius: 30px;
}
@media screen and (max-width: 767px) {
	.c-image--object-fit {
		border-radius: 14px;
	}
}
.c-image--object-fit img {
	width: 100%;
	object-fit: contain;
	aspect-ratio: 1/1;
}
.c-image--full {
	width: 100%;
}
.c-image--full img {
	width: 100%;
}
.c-image__caption {
	display: table-caption;
	caption-side: bottom;
	text-wrap: pretty;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
}
@media screen and (max-width: 767px) {
	.c-image__caption {
		font-size: 13px;
	}
}
.c-image__caption:first-child {
	margin-bottom: 0.75rem;
}
.c-image__caption:last-child {
	margin-top: 0.75rem;
}
.c-image__caption span {
	display: inline-block;
}

/******************************************************************
component - text
******************************************************************/
.c-text {
	line-height: 1.8;
}
.c-text__caution {
	color: #d70000;
	font-weight: normal;
}

/******************************************************************
component - js-scroll-ani
******************************************************************/
.js-scroll-ani,
.js-scroll-ani-parent.bounceInUp > * {
	opacity: 0;
}
.js-scroll-ani.is-scroll-ani,
.js-scroll-ani-parent.bounceInUp > *.is-scroll-ani {
	animation: bounceInUp 1s ease-out both;
}

.js-scroll-ani,
.js-scroll-ani-parent.fadeIn > * {
	opacity: 0;
}
.js-scroll-ani.is-scroll-ani,
.js-scroll-ani-parent.fadeIn > *.is-scroll-ani {
	animation: fadeIn 1s ease-out both;
}

.js-scroll-ani,
.js-scroll-ani-parent.blur > * {
	opacity: 0;
}
.js-scroll-ani.is-scroll-ani,
.js-scroll-ani-parent.blur > *.is-scroll-ani {
	animation: blur 0.6s ease-out both;
}

.js-scroll-ani-child {
	opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani .js-scroll-ani-child {
	animation: bounceInUp 1s ease-out both;
}

/******************************************************************
component - data-scroll-ani
******************************************************************/
[data-scroll-ani=fadeIn],
[data-scroll-ani-parent=fadeIn] > * {
	opacity: 0;
}
[data-scroll-ani=fadeIn].is-scroll-ani,
[data-scroll-ani-parent=fadeIn] > *.is-scroll-ani {
	animation: fadeIn 1s ease-out both;
}

[data-scroll-ani-child=fadeIn] {
	opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani [data-scroll-ani-child=fadeIn] {
	animation: fadeIn 1s ease-out both;
}

[data-scroll-ani=fadeInUp],
[data-scroll-ani-parent=fadeInUp] > * {
	opacity: 0;
}
[data-scroll-ani=fadeInUp].is-scroll-ani,
[data-scroll-ani-parent=fadeInUp] > *.is-scroll-ani {
	animation: fadeInUp 1s ease-out both;
}

[data-scroll-ani-child=fadeInUp] {
	opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani [data-scroll-ani-child=fadeInUp] {
	animation: fadeInUp 1s ease-out both;
}

[data-scroll-ani=bounceInUp],
[data-scroll-ani-parent=bounceInUp] > * {
	opacity: 0;
}
[data-scroll-ani=bounceInUp].is-scroll-ani,
[data-scroll-ani-parent=bounceInUp] > *.is-scroll-ani {
	animation: bounceInUp 1s ease-out both;
}

[data-scroll-ani-child=bounceInUp] {
	opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani [data-scroll-ani-child=bounceInUp] {
	animation: bounceInUp 1s ease-out both;
}

[data-scroll-ani=flipInX],
[data-scroll-ani-parent=flipInX] > * {
	opacity: 0;
}
[data-scroll-ani=flipInX].is-scroll-ani,
[data-scroll-ani-parent=flipInX] > *.is-scroll-ani {
	animation: flipInX 1s ease-out both;
}

[data-scroll-ani-child=flipInX] {
	opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani [data-scroll-ani-child=flipInX] {
	animation: flipInX 1s ease-out both;
}

[data-scroll-ani=rotateIn],
[data-scroll-ani-parent=rotateIn] > * {
	opacity: 0;
}
[data-scroll-ani=rotateIn].is-scroll-ani,
[data-scroll-ani-parent=rotateIn] > *.is-scroll-ani {
	animation: rotateIn 1s ease-out both;
}

[data-scroll-ani-child=rotateIn] {
	opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani [data-scroll-ani-child=rotateIn] {
	animation: rotateIn 1s ease-out both;
}

[data-scroll-ani=jackInTheBox],
[data-scroll-ani-parent=jackInTheBox] > * {
	opacity: 0;
}
[data-scroll-ani=jackInTheBox].is-scroll-ani,
[data-scroll-ani-parent=jackInTheBox] > *.is-scroll-ani {
	animation: jackInTheBox 1s ease-out both;
}

[data-scroll-ani-child=jackInTheBox] {
	opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani [data-scroll-ani-child=jackInTheBox] {
	animation: jackInTheBox 1s ease-out both;
}

[data-scroll-ani=zoomIn],
[data-scroll-ani-parent=zoomIn] > * {
	opacity: 0;
}
[data-scroll-ani=zoomIn].is-scroll-ani,
[data-scroll-ani-parent=zoomIn] > *.is-scroll-ani {
	animation: zoomIn 1s ease-out both;
}

[data-scroll-ani-child=zoomIn] {
	opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani [data-scroll-ani-child=zoomIn] {
	animation: zoomIn 1s ease-out both;
}

[data-scroll-ani=blur],
[data-scroll-ani-parent=blur] > * {
	opacity: 0;
}
[data-scroll-ani=blur].is-scroll-ani,
[data-scroll-ani-parent=blur] > *.is-scroll-ani {
	animation: blur 0.6s ease-out both;
}

[data-scroll-ani-child=blur] {
	opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani [data-scroll-ani-child=blur] {
	animation: blur 0.6s ease-out both;
}

[data-scroll-ani=blurUp],
[data-scroll-ani-parent=blurUp] > * {
	opacity: 0;
}
[data-scroll-ani=blurUp].is-scroll-ani,
[data-scroll-ani-parent=blurUp] > *.is-scroll-ani {
	animation: blurUp 1s linear both;
}

[data-scroll-ani-child=blurUp] {
	opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani [data-scroll-ani-child=blurUp] {
	animation: blurUp 1s linear both;
}

[data-scroll-ani=clipPath],
[data-scroll-ani-parent=clipPath] > * {
	opacity: 0;
}
[data-scroll-ani=clipPath].is-scroll-ani,
[data-scroll-ani-parent=clipPath] > *.is-scroll-ani {
	animation: clipPath 1s ease-out both;
}

[data-scroll-ani-child=clipPath] {
	opacity: 0;
}
.js-scroll-ani-group.is-scroll-ani [data-scroll-ani-child=clipPath] {
	animation: clipPath 1s ease-out both;
}

/******************************************************************
component - keyframes
******************************************************************/
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes bounceInUp {
	0% {
		opacity: 0;
		transform: translateY(100vw);
	}
	60% {
		opacity: 1;
		transform: translateY(-20px);
	}
	80% {
		opacity: 1;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes blur {
	0% {
		opacity: 0;
		filter: blur(20px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
	}
}
/******************************************************************
project - section
******************************************************************/
.p-section__title {
	text-align: center;
}
.p-section__title-en {
	display: block;
	color: var(--color);
	font-weight: 500;
	font-family: "Fredoka", sans-serif;
	line-height: 0.6;
	font-size: 125px;
}
@media screen and (max-width: 767px) {
	.p-section__title-en {
		font-size: 65px;
	}
}
.p-section__title-en span {
	display: inline-block;
}
.p-section__title-ja {
	display: block;
	background-color: var(--color);
	color: #fff;
	font-weight: bold;
	padding: 1em;
	line-height: 1;
	font-size: 30px;
	border-radius: 30px 30px 0 0;
}
@media screen and (max-width: 767px) {
	.p-section__title-ja {
		font-size: 20px;
		border-radius: 14px 14px 0 0;
	}
}
.p-section__body {
	border: 1px solid var(--color);
	background-color: #fff;
	border-radius: 0 0 30px 30px;
	font-weight: bold;
	padding: 65px 50px;
}
@media screen and (max-width: 1084px) {
	.p-section__body {
		border-radius: 0 0 14px 14px;
		padding: 5.9963099631vw 4.6125461255vw;
	}
}

/******************************************************************
project - about
******************************************************************/
.p-about {
	text-align: center;
}
.p-about__lead {
	font-size: 29px;
}
@media screen and (max-width: 767px) {
	.p-about__lead {
		font-size: 18px;
	}
}
.p-about__lead small {
	font-size: 18px;
}
@media screen and (max-width: 767px) {
	.p-about__lead small {
		font-size: 12px;
	}
}
.p-about__date {
	color: var(--color);
	font-size: 40px;
}
@media screen and (max-width: 767px) {
	.p-about__date {
		font-size: 18px;
	}
}
.p-about__date strong {
	align-items: center;
	font-weight: normal;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	line-height: 1;
	font-size: 70px;
}
@media screen and (max-width: 767px) {
	.p-about__date strong {
		font-size: 46px;
	}
}
.p-about__list {
	text-align: center;
}
.p-about__list div:not(:last-child) {
	margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
	.p-about__list div:not(:last-child) {
		margin-bottom: 25px;
	}
}
.p-about__list dt {
	margin-inline: auto;
	border-radius: 100vw;
	color: var(--color);
	background-color: #ffe0ec;
	padding: 0.25em;
	width: 16em;
	margin-bottom: 20px;
	font-size: 20px;
}
@media screen and (max-width: 767px) {
	.p-about__list dt {
		margin-bottom: 16px;
		font-size: 16px;
	}
}
.p-about__list dd {
	line-height: 1.8;
	font-size: 22px;
}
@media screen and (max-width: 767px) {
	.p-about__list dd {
		font-size: 15px;
	}
}
.p-about__map {
	margin-top: 10px;
	display: block !important;
	width: fit-content;
	margin-inline: auto;
	border-radius: 4px;
	color: #fff;
	text-decoration: none;
}
@media (any-hover: hover) {
	.p-about__map:hover {
		text-decoration: none;
	}
}
.p-about__map:focus {
	text-decoration: none;
}
.p-about__map {
	line-height: 1;
	padding: 0.24em 1em;
	background-color: var(--color);
	font-size: 18px;
}
@media screen and (max-width: 767px) {
	.p-about__map {
		font-size: 15px;
	}
}
.p-about__btn a {
	color: #fff;
	text-decoration: none;
}
@media (any-hover: hover) {
	.p-about__btn a:hover {
		text-decoration: none;
	}
}
.p-about__btn a:focus {
	text-decoration: none;
}
.p-about__btn a {
	background-color: var(--color);
	border-radius: 100vw;
	font-size: 28px;
	font-weight: bold;
	display: inline-block;
	padding: 0.5em 1.2em;
}
@media screen and (max-width: 767px) {
	.p-about__btn a {
		font-size: 17px;
	}
}

/******************************************************************
project - ticket
******************************************************************/
.p-ticket__lead {
	font-size: 24px;
}
@media screen and (max-width: 767px) {
	.p-ticket__lead {
		font-size: 16px;
	}
}
.p-ticket__list div {
	display: flex;
	text-align: center;
	font-size: 20px;
}
@media screen and (max-width: 767px) {
	.p-ticket__list div {
		font-size: 13px;
	}
}
.p-ticket__list div:not(:last-child) {
	margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
	.p-ticket__list div:not(:last-child) {
		margin-bottom: 1px;
	}
}
.p-ticket__list dt {
	background-color: #f2f2f2;
	padding: 0.75em;
	white-space: nowrap;
	width: 30%;
}
@media screen and (max-width: 767px) {
	.p-ticket__list dt {
		width: 40%;
	}
}
.p-ticket__list dd {
	flex-grow: 1;
	background-color: #fffbc6;
	color: var(--color);
	padding: 0.75em;
}

/******************************************************************
project - stage
******************************************************************/
.p-stage__lead {
	font-size: 24px;
}
@media screen and (max-width: 767px) {
	.p-stage__lead {
		font-size: 15px;
	}
}
.p-stage__lead strong {
	color: var(--color);
	font-size: 35px;
}
@media screen and (max-width: 767px) {
	.p-stage__lead strong {
		font-size: 17px;
	}
}

/******************************************************************
utility - mediaquery
******************************************************************/
.u-portrait-media {
	display: none;
}

@media screen and (max-width: 1024px) {
	.u-landscape-media {
		display: none;
	}
	.u-portrait-media {
		display: block;
	}
	img.u-portrait-media {
		display: inline-block;
	}
	br.u-portrait-media {
		display: inline-block;
	}
	table.u-portrait-media {
		display: table;
	}
}
.u-sp-media {
	display: none;
}

@media screen and (max-width: 767px) {
	.u-pc-media {
		display: none;
	}
	.u-sp-media {
		display: block;
	}
	img.u-sp-media {
		display: inline-block;
	}
	br.u-sp-media {
		display: inline-block;
	}
	table.u-sp-media {
		display: table;
	}
}
/******************************************************************
utility - u-gutter
******************************************************************/
.u-gutter > *:not(:last-child) {
	margin-bottom: 1rem;
}

.u-gutter-2x > *:not(:last-child) {
	margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
	.u-gutter > *:not(:last-child) {
		margin-bottom: 0.9rem;
	}
	.u-gutter-2x > *:not(:last-child) {
		margin-bottom: 1.8rem;
	}
	.u-sp-gutter > *:not(:last-child) {
		margin-bottom: 0.9rem;
	}
	.u-sp-gutter-2x > *:not(:last-child) {
		margin-bottom: 1.8rem;
	}
}
/******************************************************************
utility - display
******************************************************************/
.u-block {
	display: block;
}

.u-none {
	display: none;
}

.u-inline {
	display: inline;
}

.u-inline-block {
	display: inline-block;
}

@media screen and (max-width: 767px) {
	.u-sp-block {
		display: block;
	}
	.u-sp-none {
		display: none;
	}
	.u-sp-inline {
		display: inline;
	}
	.u-sp-inline-block {
		display: inline-block;
	}
}
/******************************************************************
utility - display-off
******************************************************************/
.u-display-off {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	overflow: hidden;
	padding: 0;
	clip: rect(0, 0, 0, 0);
}

/******************************************************************
utility - text-color
******************************************************************/
.u-text-color {
	color: var(--color);
}

/******************************************************************
utility - text-align
******************************************************************/
.u-center {
	text-align: center !important;
}

.u-right {
	text-align: right !important;
}

.u-left {
	text-align: left !important;
}

/******************************************************************
utility - hover-scale-img
******************************************************************/
.u-hover-scale-img__body {
	display: block;
	overflow: hidden;
}
.u-hover-scale-img__body img {
	width: 100%;
	transform: scale(1);
	will-change: transform;
	transition-property: transform;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.u-hover-scale-img:hover .u-hover-scale-img__body img {
		transform: scale(1.1);
	}
}
.u-hover-scale-img:focus .u-hover-scale-img__body img {
	transform: scale(1.1);
}
.u-hover-scale-img--light .u-hover-scale-img__body {
	background-color: #ffffff;
}
.u-hover-scale-img--dark .u-hover-scale-img__body {
	background-color: #000000;
}
.u-hover-scale-img--light .u-hover-scale-img__body img, .u-hover-scale-img--dark .u-hover-scale-img__body img {
	transition-property: transform, opacity;
}
@media (any-hover: hover) {
	.u-hover-scale-img--light:hover .u-hover-scale-img__body img, .u-hover-scale-img--dark:hover .u-hover-scale-img__body img {
		opacity: 0.7;
	}
}
.u-hover-scale-img--light:focus .u-hover-scale-img__body img, .u-hover-scale-img--dark:focus .u-hover-scale-img__body img {
	opacity: 0.7;
}
.u-hover-scale-img--brightness .u-hover-scale-img__body img {
	transition-property: transform, filter;
}
@media (any-hover: hover) {
	.u-hover-scale-img--brightness:hover .u-hover-scale-img__body img {
		filter: brightness(1.25);
	}
}
.u-hover-scale-img--brightness:focus .u-hover-scale-img__body img {
	filter: brightness(1.25);
}

/******************************************************************
utility - hover-expand
******************************************************************/
.u-hover-expand-2x, .u-hover-expand-2l, .u-hover-expand-l, .u-hover-expand, .u-hover-expand-s, .u-hover-expand-2s {
	display: inline-block;
	transition-property: transform;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.3, 1.8, 0.6, 1);
	will-change: transform;
}

@media (any-hover: hover) {
	.u-hover-expand-2s:hover {
		transform: scale(1.01);
	}
}
.u-hover-expand-2s:focus {
	transform: scale(1.01);
}

@media (any-hover: hover) {
	.u-hover-expand-s:hover {
		transform: scale(1.02);
	}
}
.u-hover-expand-s:focus {
	transform: scale(1.02);
}

@media (any-hover: hover) {
	.u-hover-expand:hover {
		transform: scale(1.03);
	}
}
.u-hover-expand:focus {
	transform: scale(1.03);
}

@media (any-hover: hover) {
	.u-hover-expand-l:hover {
		transform: scale(1.04);
	}
}
.u-hover-expand-l:focus {
	transform: scale(1.04);
}

@media (any-hover: hover) {
	.u-hover-expand-2l:hover {
		transform: scale(1.05);
	}
}
.u-hover-expand-2l:focus {
	transform: scale(1.05);
}

@media (any-hover: hover) {
	.u-hover-expand-2x:hover {
		transform: scale(1.06);
	}
}
.u-hover-expand-2x:focus {
	transform: scale(1.06);
}

/******************************************************************
utility - hover-press
******************************************************************/
.u-hover-press-w, .u-hover-press-2l, .u-hover-press-l, .u-hover-press, .u-hover-press-s, .u-hover-press-2s {
	display: inline-block;
	transition-property: transform, box-shadow;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.3, 1.8, 0.6, 1);
}
@media (any-hover: hover) {
	.u-hover-press-w:hover, .u-hover-press-2l:hover, .u-hover-press-l:hover, .u-hover-press:hover, .u-hover-press-s:hover, .u-hover-press-2s:hover {
		box-shadow: unset;
		transform: translate(0, 0);
	}
}
.u-hover-press-w:focus, .u-hover-press-2l:focus, .u-hover-press-l:focus, .u-hover-press:focus, .u-hover-press-s:focus, .u-hover-press-2s:focus {
	box-shadow: unset;
	transform: translate(0, 0);
}

.u-hover-press-2s {
	box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.9);
	transform: translate(-2px, -2px);
}

.u-hover-press-s {
	box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.9);
	transform: translate(-4px, -4px);
}

.u-hover-press {
	box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.9);
	transform: translate(-6px, -6px);
}

.u-hover-press-l {
	box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.9);
	transform: translate(-8px, -8px);
}

.u-hover-press-2l {
	box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.9);
	transform: translate(-10px, -10px);
}

.u-hover-press-w {
	box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.4);
	transform: translate(-4px, -4px);
}