/* --------------------------------------------------------
* header
* -------------------------------------------------------*/
:root {
	--space-xl: 120px;
	--space-l: 80px;
	--space-m: 60px;
	--space-s: 40px;
	--space-xs: 15px;
	--space-xxs: 10px;
}

@media (max-width: 1023px) {
	:root {
		--space-xl: 60px;
		--space-l: 40px;
		--space-m: 30px;
		--space-s: 25px;
		--space-xs: 20px;
		--space-xxs: 15px;
	}
}
.l-header {
	width: 100%;
	height: 140px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	transition: 0.3s;
}
.l-header.is-fixed {
	position: fixed;
	background: #fff;
	height: 110px;
}
.l-header.is-fixed::before {
	content: none;
}
@media (min-width: 1024px) {
	.l-header.is-fixed .l-header__inner {
		padding-top: 20px;
		align-items: flex-end;
	}
	.l-header.is-fixed .l-header__logo {
		padding-bottom: 35px;
	}
	.l-header.is-fixed .l-gnav-list__item {
		padding-bottom: 22px;
	}
}
@media (max-width: 1023px) {
	.l-header {
		height: 80px;
	}
	.l-header.is-fixed {
		height: 80px;
	}
}
.l-header::before {
	content: "";
	width: 653px;
	height: 140px;
	background: #fff;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
@media (max-width: 1023px) {
	.l-header::before {
		width: 375px;
		height: 80px;
	}
}
.l-header__inner {
	width: 100%;
	height: 100%;
	padding: 30px 40px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
@media (max-width: 1023px) {
	.l-header__inner {
		padding: 20px;
	}
}
.l-header__logo {
	width: 198px;
}
@media (max-width: 1023px) {
	.l-header__logo {
		width: 165px;
	}
}
@media (min-width: 1024px) {
	.l-header__nav-lang {
		text-align: right;
		margin-bottom: 10px;
	}
	.l-header__nav-lang > a {
		font-size: 1.7rem;
		font-weight: 700;
		opacity: 0.25;
		text-decoration: underline;
	}
	.l-header__nav-lang > a.is-active {
		opacity: 1;
		text-decoration: none;
	}
	.l-header__nav-gnav {
		text-align: right;
	}
}
@media (max-width: 1023px) {
	.l-header__nav {
		display: none;
		position: absolute;
		top: 80px;
		left: 0;
		z-index: 100;
		width: 100%;
		height: calc(100vh - 80px);
		background-color: rgba(0, 0, 0, 0.7);
		overflow-y: auto;
		overflow-x: hidden;
	}
	.l-header__nav-wrapper {
		background: var(--color-theme);
		color: #fff;
	}
	.l-header__nav-lang {
		padding: var(--space-s) 0;
		text-align: center;
	}
	.l-header__nav-lang > a {
		font-size: 1.7rem;
		font-weight: 700;
		opacity: 0.25;
		text-decoration: underline;
		color: #fff;
	}
	.l-header__nav-lang > a.is-active {
		opacity: 1;
		text-decoration: none;
	}
	.l-header__nav-lang > a:first-child {
		margin-right: 1em;
	}
	.l-header__nav-lang > a:last-child {
		margin-left: 1em;
	}
}
.l-header__trigger {
	display: none;
}
@media (max-width: 1023px) {
	.l-header__trigger {
		display: block;
		width: 60px;
		height: 38px;
		background: var(--color-theme);
		border-radius: 19px;
		position: relative;
		cursor: pointer;
	}
	.l-header__trigger span {
		display: block;
		width: 17px;
		height: 2px;
		background: #fff;
		position: absolute;
		left: 50%;
		top: 50%;
		transition: 0.3s ease;
		transform-origin: center;
	}
	.l-header__trigger span:nth-child(1) {
		transform: translate(-50%, -3px);
	}
	.l-header__trigger span:nth-child(2) {
		transform: translate(-50%, 3px);
	}
	.l-header__trigger.is-active span:nth-child(1) {
		transform: translate(-50%, 0) rotate(45deg);
	}
	.l-header__trigger.is-active span:nth-child(2) {
		transform: translate(-50%, 0) rotate(-45deg);
	}
}

.l-top-header {
	background: transparent;
	border-bottom: none;
}

@media (min-width: 1024px) {
	.l-gnav-list {
		display: flex;
		gap: 18px;
	}
	.l-gnav-list__item {
		padding-bottom: 50px;
	}
	.l-gnav-list__item > a {
		font-weight: 500;
		text-decoration: none;
	}
	.l-gnav-list__title {
		width: 270px;
	}
	.l-gnav-list__title h2 {
		font-size: 4rem;
		font-weight: 500;
		line-height: 1.1;
		margin-bottom: var(--space-xxs);
	}
	.l-gnav-list__title p {
		font-size: 2.4rem;
		font-weight: 700;
		line-height: 1.1;
		color: #BBC9E7;
	}
	.l-gnav-list__sub {
		flex: 1;
		display: flex;
		flex-wrap: wrap;
		gap: 20px 0;
	}
	.l-gnav-list__sub-item {
		width: 33.3333333333%;
	}
	.l-gnav-list__sub-item > a {
		color: #fff;
		text-decoration: none;
		display: flex;
		align-items: center;
		gap: 10px;
		transition: 0.3s;
	}
	.l-gnav-list__sub-item > a::after {
		content: "";
		display: block;
		width: 40px;
		height: 26px;
		border-radius: 13px;
		border: 1px solid var(--color-theme);
		background: url(../images/common/icon_05-arrow2-r.svg) center center/14px no-repeat #4471A8;
	}
	.l-gnav-list__sub-item > a:hover {
		color: #fff;
		text-decoration: underline;
	}
	.l-gnav-list__sub-item > a:hover::after {
		border: 1px solid #fff;
		background-color: var(--color-theme);
	}
	.l-gnav-list__sub-item.pc-mt {
		margin-top: 20px;
	}
	.l-gnav-list__sub-item > ul {
		border-left: 1px solid #fff;
		margin-top: 15px;
		padding-left: 10px;
	}
	.l-gnav-list__sub-item > ul a {
		color: #fff;
		text-decoration: none;
	}
	.l-gnav-list__sub-item > ul a:hover {
		color: #fff;
		text-decoration: underline;
	}
}
@media (max-width: 1023px) {
	.l-gnav a {
		color: #fff;
		text-decoration: none;
	}
	.l-gnav-list__item {
		border-top: 1px solid #4471A8;
	}
	.l-gnav-list__item > a {
		padding: 0 20px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.l-gnav-list__item > a::after {
		content: "";
		display: block;
		width: 40px;
		height: 26px;
		border-radius: 13px;
		border: 1px solid var(--color-theme);
		background: url(../images/common/icon_05-arrow2-r.svg) center center/14px no-repeat #4471A8;
	}
	.l-gnav-list__item > a.trigger::after {
		background: url(../images/common/icon_10-plus.svg) center center/14px no-repeat #4471A8;
	}
	.l-gnav-list__item > a.trigger.is-active::after {
		background: url(../images/common/icon_11-minus.svg) center center/14px no-repeat #4471A8;
	}
	.l-gnav-list__item > a:hover {
		color: #fff;
		text-decoration: underline;
	}
	.l-gnav-list__item > a:hover::after {
		border: 1px solid #fff;
		background-color: var(--color-theme);
	}
	.l-gnav-list__sub {
		background: #4471A8;
		padding: var(--space-s) 20px;
	}
	.l-gnav-list__sub-item:not(:last-child) {
		margin-bottom: var(--space-xs);
	}
	.l-gnav-list__sub-item-sub {
		margin-top: var(--space-xs);
		padding-left: 1em;
	}
}
@media (min-width: 1024px) {
	.l-gnav .js-accordion-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		opacity: 0;
		visibility: hidden;
		transition: 0.3s;
		background: var(--color-theme);
		color: #fff;
		z-index: 10;
	}
	.l-gnav .js-accordion-menu .inner-pc {
		max-width: 1280px;
		margin: 0 auto;
		padding: var(--space-s) 0;
		display: flex;
		gap: 40px;
		text-align: left;
	}
	.l-gnav .l-gnav-list__item:hover > .js-accordion-menu {
		opacity: 1;
		visibility: visible;
	}
}
@media (max-width: 1023px) {
	.js-gnav-menu {
		transition: 0.3s;
	}
	.js-gnav-menu.is-active {
		display: block;
	}
	.js-accordion-menu {
		max-height: 0;
		overflow: hidden;
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transition: 0.3s;
	}
	.js-accordion-menu.is-active {
		max-height: 1000px;
		visibility: visible;
		opacity: 1;
		pointer-events: all;
	}
}
/*# sourceMappingURL=header.css.map */
