/* -----------------------------------------------
= header
----------------------------------------------- */
.header {
	background: #fff;
}
/* -----------------------------------------------
= breadcrumbs
----------------------------------------------- */
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	padding: 10px 2px 20px 10px;
	font-size: calc(1rem / 1.6);
}
.breadcrumbs li {
	margin-right: 8px;
}
.breadcrumbs li + li::before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 1px;
	margin-right: 8px;
	background: rgba(22,25,32,.3);
	vertical-align: middle;
}
@media print, screen and (min-width: 768px) {/* PC */
.breadcrumbs {
	padding: 20px 10px 55px 20px;
	font-size: calc(1.2rem / 1.6);
}
.breadcrumbs li + li::before {
	width: 30px;
}
}/* @media */
@media (hover:hover) {
.breadcrumbs li a:hover {
	text-decoration: underline;
}
}/* @media */
/* -----------------------------------------------
= hdg-page
----------------------------------------------- */
.hdg-page {
	padding: 0 20px 30px;
}
.hdg-page .en {
	display: block;
	position: relative;
	padding-left: 35px;
	font-family: var(--fig);
	font-size: calc(3.2rem / 1.6);
	font-weight: 600;
	overflow: hidden;
}
.hdg-page .en::before,
.hdg-page .en::after {
	content: "";
	position: absolute;
	width: 12px;
	height: 6px;
}
.hdg-page .en::before {
	top: 8px;
	left: 6px;
	background: var(--grad-blue);
}
.hdg-page .en::after {
	top: 14px;
	left: 0;
	background: var(--grad-red);
}
.hdg-page .jp {
	display: block;
	padding-left: 35px;
	font-size: calc(1.2rem / 1.6);
	font-weight: 500;
	letter-spacing: .05em;
	overflow: hidden;
}
@media print, screen and (min-width: 768px) {/* PC */
.hdg-page {
	padding: 0 40px 55px;
}
.hdg-page .en {
	padding-left: 54px;
	font-size: calc(5.4rem / 1.6);
}
.hdg-page .en::before,
.hdg-page .en::after {
	width: 20px;
	height: 10px;
}
.hdg-page .en::before {
	top: 10px;
	left: 14px;
}
.hdg-page .en::after {
	top: 20px;
}
.hdg-page .jp {
	padding-left: 54px;
	font-size: calc(1.6rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= text animation
----------------------------------------------- */
.char {
	display: inline-block;
	opacity: 0;
	transform: translateY(1em);
}
.is-show .char {
	animation: charIn 0.6s forwards cubic-bezier(.2,.8,.2,1);
	animation-delay: var(--char-delay);
}
@keyframes charIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* -----------------------------------------------
= nav-sub-fix
----------------------------------------------- */
.nav-sub-fix {
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
}
.nav-sub-fix.is-active {
	opacity: 1;
	pointer-events: auto;
}
.nav-sub-fix .btn-sticky {
	position: fixed;
	left: 10px;
	right: 10px;
	bottom: 60px;
	z-index: 8;
	width: calc(100% - 20px);
	padding: 14px;
	color: #fff;
	background: rgba(22,25,32,.9);
	font-family: var(--fig);
	font-size: calc(1.4rem / 1.6);
	font-weight: 600;
	text-align: left;
	letter-spacing: .025em;
}
.nav-sub-fix .btn-sticky::after {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	right: 18px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	border-radius: 1px;
	transform: rotate(-135deg);
}
.nav-sub-fix .btn-sticky.is-open::after {
	top: calc(50% - 6px);
	transform: rotate(45deg);
}
.nav-sub-fix .nav-sub {
	position: fixed;
	left: 10px;
	right: 10px;
	bottom: 105px;
	z-index: 8;
	width: calc(100% - 20px);
	height: 60vh;
	max-height: calc(100svh - 160px);
	background: #fff;
	overflow-y: auto;
	overscroll-behavior: contain;
	opacity: 0;
	pointer-events: none;
	transition: opacity .5s ease;
}
.nav-sub-fix .nav-sub.is-open {
	opacity: 1;
	pointer-events: auto;
}
.nav-sub-fix .nav-sub ul {
	padding: 15px 30px;
}
.nav-sub-fix .nav-sub li + li {
	border-top: 1px solid #e2e2e7;
}
.nav-sub-fix .nav-sub a {
	display: block;
	position: relative;
	padding: 15px 35px 15px 0;
}
.nav-sub-fix .nav-sub a::after {
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--black);
	border-right: 2px solid var(--black);
	border-radius: 1px;
	transform: rotate(45deg);
}
.nav-sub-fix .nav-sub a span:first-child {
	display: inline-block;
	font-family: var(--fig);
	font-size: calc(1.2rem / 1.6);
	font-weight: 600;
	letter-spacing: .025em;
	background: var(--grad-orix);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.nav-sub-fix .nav-sub a span:last-child {
	display: block;
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
	letter-spacing: 0;
}
.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 7;
	background: rgba(0,0,0,.2);
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
}
.nav-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}
@media print, screen and (min-width: 768px) {/* PC */
.nav-sub-fix .btn-sticky {
	left: 0;
	right: auto;
	bottom: 130px;
	width: 200px;
	height: 70px;
	padding: 0 20px;
	box-sizing: border-box;
	font-size: calc(1.6rem / 1.6);
	transform: rotate(90deg) translateY(-100%);
	transform-origin: top left;
	transition: left .3s ease-in-out;
}
.nav-sub-fix .btn-sticky.is-open {
	left: 380px;
}
.nav-sub-fix .btn-sticky::after {
	right: 20px;
}
.nav-sub-fix .nav-sub {
	left: 0;
	right: auto;
	bottom: 0;
	width: 380px;
	height: auto;
	max-height: calc(100vh - 80px);
	transform: translateX(-100%);
	transition: transform .3s ease-in-out;
	opacity: 1;
}
.nav-sub-fix .nav-sub.is-open {
	transform: translateX(0);
}
.nav-sub-fix .nav-sub ul {
	padding: 35px 0;
}
.nav-sub-fix .nav-sub li + li {
	border-top: none;
}
.nav-sub-fix .nav-sub a {
	display: block;
	position: relative;
	padding: 13px 60px;
}
.nav-sub-fix .nav-sub a.is-active::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 1px;
	background: var(--black);
}
.nav-sub-fix .nav-sub a::after {
	display: none;
}
.nav-sub-fix .nav-sub a span:last-child {
	margin-top: 3px;
	font-size: calc(1.6rem / 1.6);
}
}/* @media */
@media print, screen and (max-width: 1520px) and (min-width: 768px) {
.nav-sub-fix .btn-sticky {
	bottom: 110px;
	width: 150px;
	height: 40px;
	padding: 0 10px;
	font-size: calc(1.4rem / 1.6);
}
}/* @media */



