@charset "UTF-8";
/* font family */
/* 汎用 */
html.locked {
	overflow: hidden;
}

@media (min-width: 981px) {
	.l-header-n br.u-spbr {
		display: none;
	}
}
.l-header-n br.u-pcbr {
	display: none;
}
@media (min-width: 981px) {
	.l-header-n br.u-pcbr {
		display: inline-block;
	}
}

/* ヘッダー SP／PC共通 */
.l-header-n {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
.l-header-n__inner {
	height: 110px;
	position: relative;
	background-color: #fff;
}
.l-header-n__logo {
	width: 117px;
	position: absolute;
	top: 10px;
	left: 15px;
}
.l-header-n__logo img {
	display: block;
}
.l-header-n__logo .code {
	margin-top: 5px;
	font-size: 0.8rem;
	line-height: 1;
	white-space: nowrap;
}
.l-header-n__navtoggle {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	right: 0;
	padding-block: 6px;
	background-color: #fff;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.2;
	text-align: center;
	color: #0074C0;
}
.l-header-n__navtoggle::before {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	position: relative;
	background: url("/assets/images/icons/menu.svg") no-repeat center/28px;
	transition: opacity 0.2s;
}
.l-header-n__navtoggle > span {
	transition: opacity 0.2s;
}
.l-header-n__mainnav {
	width: 100%;
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: #fff;
}
.l-header-n__subnav {
	width: 100%;
	position: absolute;
	right: 0;
	top: 61px;
}
.l-header-n__featurelink {
	display: grid;
	grid-template-columns: 50% 50%;
	width: 120px;
	height: 60px;
	position: absolute;
	top: 0;
	right: 60px;
}
.l-header-n__tenpo, .l-header-n__login {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}
.l-header-n__tenpo span, .l-header-n__login span {
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.2;
	color: #fff;
}
.l-header-n__tenpo > a {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding-block: 6px;
	border: 1px solid #0074C0;
	background-color: #0074C0;
}
.l-header-n__tenpo > a::before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background-color: #fff;
	-webkit-mask: url("/assets/images/icons/map.svg") no-repeat center/contain;
	mask: url("/assets/images/icons/map.svg") no-repeat center/contain;
}
.l-header-n__login {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding-block: 3px;
	border: 1px solid #003491;
	background-color: #003491;
}
.l-header-n__login::before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background-color: #fff;
	-webkit-mask: url("/assets/images/icons/lock.svg") no-repeat center/contain;
	mask: url("/assets/images/icons/lock.svg") no-repeat center/contain;
}

/* ヘッダーSP */
@media (max-width: 980px) {
	.l-header-n__subnav {
		height: calc(100vh - 61px);
		height: calc(100dvh - 61px);
		overflow: auto;
		background-color: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.2s, visibility 0.2s;
	}
	.l-header-n__subnav__close {
		padding: 30px 20px;
	}
	.l-header-n__subnav__close > button {
		display: grid;
		place-items: center;
		width: 100%;
		height: 40px;
		border-radius: 8px;
		background-color: #0074C0;
		font-weight: bold;
		font-size: 1.2rem;
		color: #fff;
	}
	.l-header-n__search {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 10px;
		padding: 20px;
		background-color: #f2f2f2;
	}
	.l-header-n__search > input {
		flex: 1 1 calc(100% - 70px);
		display: block;
		padding: 10px;
		border: 1px solid #E5E5E5;
		border-radius: 8px;
		background-color: #fff;
		font-size: 1.6rem;
		line-height: 1;
		color: #222222;
	}
	.l-header-n__search .submit {
		position: relative;
	}
	.l-header-n__search .submit::after {
		content: "";
		display: block;
		width: 12px;
		height: 12px;
		position: absolute;
		top: calc(50% - 6px);
		right: 8px;
		z-index: 1;
		pointer-events: none;
		background-color: #fff;
		-webkit-mask: url("/assets/images/icons/search.svg") no-repeat center/contain;
		mask: url("/assets/images/icons/search.svg") no-repeat center/contain;
	}
	.l-header-n__search .submit > input {
		display: block;
		width: 60px;
		height: 40px;
		padding: 8px 10px;
		border-radius: 8px;
		background-color: #0074C0;
		text-align: left;
		font-weight: bold;
		font-size: 1.2rem;
		color: #fff;
		cursor: pointer;
	}
	.l-header-n__english {
		display: none;
	}
	.l-header-n__read {
		display: none;
	}
	.l-header-n__linknav {
		display: none;
	}
	.l-header-n.is-spnav-active .l-header-n__navtoggle {
		background: url("/assets/images/icons/close.svg") no-repeat center/22px;
	}
	.l-header-n.is-spnav-active .l-header-n__navtoggle::before {
		opacity: 0;
	}
	.l-header-n.is-spnav-active .l-header-n__navtoggle > span {
		opacity: 0;
	}
	.l-header-n.is-spnav-active .l-header-n__subnav {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	.l-header-n.is-login-active .l-header-n__subnav {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	.l-header-n.is-spservicenav-active .l-header-n__subnav {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	.l-header-n.is-spservicenav-active .l-header-n__search {
		display: none;
	}
	.l-header-n.is-spservicenav-active .l-subnav__lv1 > li:not(li.l-subnav__service) {
		display: none;
	}
	.l-header-n.is-spservicenav-active .l-subnav__lower {
		display: none;
	}
}
/* ヘッダーPC */
@media (min-width: 981px) {
	.l-header-n__inner {
		height: 174px;
		min-width: 1320px;
	}
	.l-header-n__logo {
		width: 320px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		top: 25px;
		left: 40px;
	}
	.l-header-n__logo > h1 {
		flex: 0 0 194px;
	}
	.l-header-n__logo .code {
		font-size: 1rem;
	}
	.l-header-n__navtoggle {
		display: none;
	}
	.l-header-n__subnav {
		width: 100%;
		top: 0;
		left: 0;
	}
	.l-header-n__subnav__close {
		position: absolute;
		top: 195px;
		right: calc(50% - 620px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.2s, visibility 0.2s;
	}
	.l-header-n__subnav__close > button {
		display: block;
		width: 40px;
		height: 40px;
		background: url("/assets/images/icons/close.svg") no-repeat center/20px;
		text-indent: -9999px;
		cursor: pointer;
	}
	.l-header-n__featurelink {
		width: 288px;
		height: 70px;
		top: 20px;
		right: 25px;
		overflow: hidden;
	}
	.l-header-n__tenpo > a, .l-header-n__login {
		cursor: pointer;
		transition: background-color 0.2s;
	}
	.l-header-n__tenpo > a span, .l-header-n__login span {
		font-size: 1.4rem;
		transition: color 0.2s;
	}
	.l-header-n__tenpo > a::before, .l-header-n__login::before {
		transition: background-color 0.2s;
	}
	.l-header-n__tenpo > a {
		padding-block: 8px;
		border-radius: 15px 0 0 15px;
	}
	.l-header-n__tenpo > a::before {
		width: 20px;
		height: 20px;
	}
	.l-header-n__tenpo > a:hover {
		background-color: #fff;
	}
	.l-header-n__tenpo > a:hover span {
		color: #0074C0;
	}
	.l-header-n__tenpo > a:hover::before {
		background-color: #0074C0;
	}
	.l-header-n__login {
		padding-block: 8px;
		border-radius: 0 15px 15px 0;
	}
	.l-header-n__login::before {
		width: 20px;
		height: 20px;
	}
	.l-header-n__login:hover {
		background-color: #fff;
	}
	.l-header-n__login:hover span {
		color: #003491;
	}
	.l-header-n__login:hover::before {
		background-color: #003491;
	}
	.l-header-n__search {
		width: 235px;
		position: absolute;
		top: 20px;
		right: 355px;
	}
	.l-header-n__search > input {
		display: block;
		width: 100%;
		height: 30px;
		padding: 4px 30px 4px 16px;
		border-radius: 50px;
		background-color: #f2f2f2;
		font-size: 1.4rem;
		line-height: 1;
		color: #222222;
	}
	.l-header-n__search .submit {
		width: 16px;
		height: 16px;
		position: absolute;
		top: calc(50% - 8px);
		right: 12px;
		background: transparent url("/assets/images/icons/search.svg") no-repeat center/contain;
		text-indent: -9999px;
		cursor: pointer;
	}
	.l-header-n__english {
		position: absolute;
		top: 23px;
		right: 610px;
	}
	.l-header-n__english > a {
		display: block;
		padding-left: 20px;
		background: url(/assets/images/common/icon-lang.png) no-repeat 0 center/14px auto;
		text-decoration: none;
		font-size: 1.4rem;
		color: #222222;
	}
	.l-header-n__read {
		position: absolute;
		top: 23px;
		right: 700px;
	}
	.l-header-n__read a {
		display: block;
		padding-left: 20px;
		background: url(/assets/images/common/icon-voice.png) no-repeat 0 center/14px auto;
		text-decoration: none;
		font-size: 1.4rem;
		color: #222222;
	}
	.l-header-n__read #xp1 {
		position: absolute;
		top: -3px;
		left: -310px;
	}
	.l-header-n__linknav {
		position: absolute;
		top: 70px;
		right: 355px;
	}
	.l-header-n__linknav > ul {
		display: flex;
		justify-content: flex-end;
		gap: 0 40px;
	}
	.l-header-n__linknav > ul a {
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1.2;
		text-decoration: none;
		color: #222222;
		transition: color 0.2s;
	}
	.l-header-n__linknav > ul a:hover {
		color: #0074C0;
	}
}
/* メインナビ SP／PC共通 */
.l-mainnav-n {
	width: 100%;
	display: flex;
	justify-content: center;
	height: 50px;
	border-top: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
}
.l-mainnav-n a, .l-mainnav-n button {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	padding: 0 10px;
	text-align: center;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.2;
}
.l-mainnav-n > li {
	flex: 0 1 auto;
	height: 100%;
}
.l-mainnav-n > li > a, .l-mainnav-n > li > button {
	cursor: pointer;
	transition: color 0.2s;
}
.l-mainnav-n > li > a:hover, .l-mainnav-n > li > button:hover {
	color: #0074C0;
}
.l-mainnav-n button.l-mainnav-n__service > span {
	padding-right: 10px;
	position: relative;
	white-space: nowrap;
	word-break: keep-all;
	display: none;
	visibility: hidden;
}
.l-mainnav-n button.l-mainnav-n__service > span::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
	top: calc(50% - 4px);
	right: 0;
	background: url("/assets/images/icons/chev-down.svg") no-repeat center/contain;
}

/* メインナビ出し分け */
body.category- button.l-mainnav-n__service > span.default,
body.category-kojin button.l-mainnav-n__service > span.default,
body.category-hojin button.l-mainnav-n__service > span.default {
	display: block;
	visibility: visible;
}
body.category- button.l-mainnav-n__service > span.company, body.category- button.l-mainnav-n__service > span.recruit,
body.category-kojin button.l-mainnav-n__service > span.company,
body.category-kojin button.l-mainnav-n__service > span.recruit,
body.category-hojin button.l-mainnav-n__service > span.company,
body.category-hojin button.l-mainnav-n__service > span.recruit {
	display: none;
	visibility: hidden;
}

body.category-company button.l-mainnav-n__service > span.default, body.category-company button.l-mainnav-n__service > span.recruit {
	display: none;
	visibility: hidden;
}
body.category-company button.l-mainnav-n__service > span.company {
	display: block;
	visibility: visible;
}

body.category-recruit button.l-mainnav-n__service > span.default, body.category-recruit button.l-mainnav-n__service > span.company {
	display: none;
	visibility: hidden;
}
body.category-recruit button.l-mainnav-n__service > span.recruit {
	display: block;
	visibility: visible;
}

/* メインナビ PC */
@media (min-width: 981px) {
	.l-mainnav-n {
		max-width: 1440px;
		margin-inline: auto;
		padding-inline: 40px;
		padding-bottom: 20px;
		height: 60px;
		border-top: none;
		border-bottom: none;
	}
	.l-mainnav-n a, .l-mainnav-n button {
		font-size: 1.7rem;
	}
	.l-mainnav-n > li {
		flex-grow: 1;
		position: relative;
	}
	.l-mainnav-n > li::after {
		content: "";
		display: block;
		width: 1px;
		height: 26px;
		position: absolute;
		top: calc(50% - 13px);
		right: 0;
		background-color: #DDDDDD;
	}
	.l-mainnav-n > li:first-child::before {
		content: "";
		display: block;
		width: 1px;
		height: 26px;
		position: absolute;
		top: calc(50% - 13px);
		left: 0;
		background-color: #DDDDDD;
	}
	.l-mainnav-n button.l-mainnav-n__service > span {
		padding-right: 24px;
	}
	.l-mainnav-n button.l-mainnav-n__service > span::after {
		width: 14px;
		height: 14px;
		top: calc(50% - 7px);
	}
}
/* サブナビSP */
@media (max-width: 980px) {
	.l-subnav {
		line-height: 1.4;
		background-color: #fff;
	}
	.l-subnav__lv1 > li {
		border-top: 1px solid #DDDDDD;
	}
	.l-subnav__lv1 > li > a,
	.l-subnav__lv1 > li > button {
		display: block;
		width: 100%;
		position: relative;
		padding: 18px 46px 18px 20px;
		text-align-last: left;
		font-weight: bold;
		font-size: 1.6rem;
	}
	.l-subnav__lv1 > li > a {
		background: url("/assets/images/icons/chev-cir-right.svg") no-repeat right 16px center/18px;
	}
	.l-subnav__lv1 > li > button {
		padding-left: 34px;
		font-weight: normal;
	}
	.l-subnav__lv1 > li > button::after {
		content: "";
		display: block;
		width: 16px;
		height: 16px;
		position: absolute;
		top: calc(50% - 8px);
		right: 18px;
		pointer-events: none;
		background: url("/assets/images/icons/chev-down.svg") no-repeat center/contain;
	}
	.l-subnav__lv2 {
		height: 0;
		overflow: hidden;
		visibility: hidden;
		pointer-events: none;
		transition: height 0.4s, opacity 0.4s, visibility 0.4s;
	}
	.l-subnav__lv2 > li {
		border-top: 1px solid #DDDDDD;
		position: relative;
	}
	.l-subnav__lv2 > li > a,
	.l-subnav__lv2 > li > span {
		display: block;
		padding: 18px 50px 18px 60px;
		position: relative;
		background-color: #ECF4FA;
		font-weight: 500;
		font-size: 1.4rem;
	}
	.l-subnav__lv2 > li > a > figure,
	.l-subnav__lv2 > li > span > figure {
		width: 30px;
		position: absolute;
		top: 50%;
		left: 15px;
		translate: 0 -50%;
		pointer-events: none;
	}
	.l-subnav__lv2__navtoggle {
		display: block;
		width: 50px;
		height: 50px;
		position: absolute;
		top: 4px;
		right: 0;
		background: url("/assets/images/icons/chev-down.svg") no-repeat center/14px;
		transition: rotate 0.4s;
	}
	.l-subnav__lv1 > li:has(.l-subnav__lv2).is-active > button::after {
		rotate: 180deg;
	}
	.l-subnav__lv1 > li:has(.l-subnav__lv2).is-active .l-subnav__lv2 {
		height: auto;
		height: calc-size(auto, size);
		visibility: visible;
		pointer-events: inherit;
	}
	.l-subnav__lv3 {
		height: 0;
		overflow: hidden;
		visibility: hidden;
		pointer-events: none;
		transition: height 0.4s, opacity 0.4s, visibility 0.4s;
	}
	.l-subnav__lv3__label {
		border-top: 1px solid #DDDDDD;
		padding: 18px 40px 18px 30px;
		font-weight: 500;
		font-size: 1.4rem;
	}
	.l-subnav__lv3__list {
		margin-top: 0;
	}
	.l-subnav__lv3__list > li {
		border-top: 1px solid #DDDDDD;
	}
	.l-subnav__lv3__list > li > a {
		display: block;
		padding: 18px 20px 18px 64px;
		font-size: 1.4rem;
		background: url("/assets/images/icons/chev-cir-w-right.svg") no-repeat 40px 22px/14px;
	}
	.l-subnav__lv3__list > li > a[href$=".pdf"]::after {
		content: "";
		display: inline-block;
		width: 1em;
		height: 1em;
		margin-left: 0.5em;
		background: url("/assets/images/common/icon-pdf.png") no-repeat center/contain;
		translate: 0 0.1em;
	}
	.l-subnav__lv3__feature {
		display: none;
	}
	.l-subnav__lv2 > li:has(.l-subnav__lv3).is-active .l-subnav__lv2__navtoggle {
		rotate: 180deg;
	}
	.l-subnav__lv2 > li:has(.l-subnav__lv3).is-active .l-subnav__lv3 {
		height: auto;
		height: calc-size(auto, size);
		visibility: visible;
		pointer-events: inherit;
	}
	.l-subnav__lower > li {
		border-top: 1px solid #DDDDDD;
	}
	.l-subnav__lower > li > a {
		display: block;
		padding: 18px 20px 18px 46px;
		font-size: 1.4rem;
		background: #f2f2f2 url("/assets/images/icons/chev-cir-w-right.svg") no-repeat 20px 22px/14px;
	}
	.l-header-n.is-login-active .l-header-n__search {
		display: none;
	}
	.l-header-n.is-login-active .l-subnav__inner {
		display: none;
	}
	.l-header-n.is-login-active .l-subnav__login {
		display: block;
	}
}
/* サブナビPC */
@media (min-width: 981px) {
	.l-subnav {
		width: 100%;
		max-width: 100vw;
		min-height: min(740px, 100vh - 175px);
		max-height: calc(100vh - 175px);
		border-top: 1px solid #DDDDDD;
		position: absolute;
		top: 174px;
		left: 0;
		overflow: auto;
		background-color: #fff;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
		line-height: 1.4;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.4s, visibility 0.2s;
	}
	.l-subnav__inner {
		width: 100%;
		min-width: 1130px;
		position: relative;
	}
	.l-subnav__lv1 > li {
		display: none;
	}
	.l-subnav__lv1 > li:has(.l-subnav__lv2) {
		display: block;
	}
	.l-subnav__lv1 > li:has(.l-subnav__lv2) > button {
		display: none;
	}
	.l-subnav__lv2 {
		max-width: 1130px;
		margin-inline: auto;
		padding-block: 30px;
		position: relative;
	}
	.l-subnav__lv2 > li {
		width: 260px;
	}
	.l-subnav__lv2 > li > a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 12px;
		padding: 20px 24px 20px 16px;
		border: 1px solid #fff;
		border-bottom-color: #DDDDDD;
		position: relative;
		font-weight: 500;
		font-size: 1.6rem;
		transition: border-color 0.2s, color 0.2s;
	}
	.l-subnav__lv2 > li > a > figure {
		flex: 0 0 40px;
	}
	.l-subnav__lv2 > li > a > span {
		flex: 1 1 auto;
	}
	.l-subnav__lv2 > li > a::after {
		content: "";
		display: block;
		width: 16px;
		height: 16px;
		position: absolute;
		top: calc(50% - 8px);
		background: url("/assets/images/icons/chev-right.svg") no-repeat center/contain;
		right: 0;
	}
	.l-subnav__lv2 > li > a.pcsubtoggle::after {
		width: 17px;
		height: 19px;
		top: calc(50% - 9.5px);
		background-image: url("/assets/images/header_2026/headernav-arrow.svg");
		right: -16px;
		opacity: 0;
		transition: opacity 0.2s 0.05s;
	}
	.l-subnav__lv2 > li > a:hover {
		color: #0074C0;
	}
	.l-subnav__lv2__navtoggle {
		display: none;
	}
	.l-subnav__lv3 {
		width: 873px;
		padding-left: 60px;
		position: absolute;
		top: 30px;
		right: 0;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: height 0.2s, opacity 0.2s, visibility 0.2s;
	}
	.l-subnav__lv3__label {
		padding-left: 18px;
		position: relative;
		font-weight: bold;
	}
	.l-subnav__lv3__label::before, .l-subnav__lv3__label::after {
		content: "";
		display: block;
		width: 3px;
		height: 10px;
		position: absolute;
		left: 0;
	}
	.l-subnav__lv3__label::before {
		top: calc(50% - 10px);
		background-color: #FFE100;
	}
	.l-subnav__lv3__label::after {
		top: 50%;
		background-color: #0074C0;
	}
	.l-subnav__lv3__list {
		margin-top: 24px;
		margin-bottom: 40px;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 0 30px;
	}
	.l-subnav__lv3__list > li {
		border-bottom: 1px solid #DDDDDD;
	}
	.l-subnav__lv3__list > li > a {
		display: block;
		padding: 15px 0 15px 24px;
		font-weight: 500;
		font-size: 1.4rem;
		background: url("/assets/images/icons/chev-cir-w-right.svg") no-repeat left center/14px;
		transition: color 0.2s;
	}
	.l-subnav__lv3__list > li > a:hover {
		color: #0074C0;
	}
	.l-subnav__lv3__list > li > a[href$=".pdf"]::after {
		content: "";
		display: inline-block;
		width: 1em;
		height: 1em;
		margin-left: 0.5em;
		background: url("/assets/images/common/icon-pdf.png") no-repeat center/contain;
		translate: 0 0.1em;
	}
	.l-subnav__lv3__feature {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 30px;
		margin-bottom: 40px;
	}
	.l-subnav__lv3__feature > figure {
		flex: 0 0 250px;
		border-radius: 10px;
		overflow: hidden;
	}
	.l-subnav__lv3__feature > div {
		line-height: 1.6;
	}
	.l-subnav__lv3__feature > div > p + p {
		margin-top: 18px;
	}
	.l-subnav__lv3__feature > div > .title {
		font-weight: bold;
	}
	.l-subnav__lv3__feature > div > .lnk > a {
		display: inline-block;
		padding-right: 1.4em;
		background: url("/assets/images/icons/chev-cir-right.svg") no-repeat right center/1em;
		color: #222222;
		text-decoration: none;
		transition: color 0.2s;
	}
	.l-subnav__lv3__feature > div > .lnk > a:hover {
		color: #0074C0;
	}
	.l-subnav__lv2 > li.is-hover > a.pcsubtoggle {
		border-color: #0074C0;
	}
	.l-subnav__lv2 > li.is-hover > a.pcsubtoggle::after {
		opacity: 1;
	}
	.l-subnav__lv2 > li.is-hover .l-subnav__lv3 {
		opacity: 1;
		visibility: visible;
		pointer-events: inherit;
	}
	.l-subnav__lower {
		display: flex;
		justify-content: flex-start;
		gap: 30px;
		width: 813px;
		padding: 30px;
		border-radius: 10px;
		position: absolute;
		bottom: 30px;
		right: calc(50% - 560px);
		background-color: #f5f5f5;
	}
	.l-subnav__lower > li > a {
		display: block;
		padding-left: 1.3em;
		font-weight: 500;
		font-size: 1.4rem;
		background: url("/assets/images/icons/chev-cir-w-right.svg") no-repeat left center/1em;
		transition: color 0.2s;
	}
	.l-subnav__lower > li > a:hover {
		color: #0074C0;
	}
	.l-subnav__lower > li:not(.l-subnav__lower__utility) {
		display: none;
	}
	body.category-hojin .l-subnav .l-subnav__lv2 > li {
		width: 540px;
	}
	body.category-hojin .l-subnav .l-subnav__lv2 > li > a {
		padding: 14px 24px 14px 16px;
	}
	body.category-hojin .l-subnav .l-subnav__lv2 > li > a > figure {
		flex: 0 0 28px;
	}
	body.category-hojin .l-subnav .l-subnav__lv3 {
		width: 597px;
	}
	body.category-hojin .l-subnav .l-subnav__lv3 .l-subnav__lv3__list {
		grid-template-columns: repeat(2, 1fr);
	}
	body.category-hojin .l-subnav .l-subnav__lower {
		width: 533px;
		right: calc(50% - 563px);
	}
	.l-header-n.is-pcnav-active .l-subnav,
	.l-header-n.is-login-active .l-subnav {
		opacity: 1;
		visibility: visible;
		pointer-events: inherit;
	}
	.l-header-n.is-pcnav-active .l-header-n__subnav__close,
	.l-header-n.is-login-active .l-header-n__subnav__close {
		opacity: 1;
		visibility: visible;
		pointer-events: inherit;
	}
	.l-header-n.is-login-active .l-subnav__inner {
		display: none;
	}
	.l-header-n.is-login-active .l-subnav__login {
		display: flex;
	}
}
/* 各種ログイン */
.l-subnav__login {
	display: none;
}
.l-subnav__login__label {
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
}
.l-subnav__login__sublabel {
	margin-top: 20px;
	font-weight: 500;
	text-align: center;
	font-size: 1.6rem;
}
.l-subnav__login__button {
	max-width: 360px;
	margin: 20px auto 0;
}
.l-subnav__login__button > a {
	display: grid;
	place-items: center;
	min-height: 52px;
	padding: 12px 24px;
	border: 1px solid #0074C0;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	background-color: #0074C0;
	text-decoration: none;
	text-align: center;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.2;
	color: #fff;
}
.l-subnav__login__button > a::before, .l-subnav__login__button > a::after {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	position: absolute;
	top: calc(50% - 7px);
	background-color: #fff;
	-webkit-mask: no-repeat center/contain;
	mask: no-repeat center/contain;
}
.l-subnav__login__button > a::before {
	left: 16px;
	-webkit-mask-image: url("/assets/images/icons/lock.svg");
	mask-image: url("/assets/images/icons/lock.svg");
}
.l-subnav__login__button > a::after {
	right: 16px;
	-webkit-mask: url("/assets/images/icons/chev-right.svg");
	mask: url("/assets/images/icons/chev-right.svg");
}
.l-subnav__login__button.apply > a {
	border-color: #FFE100;
	background-color: #FFE100;
	color: #222222;
}
.l-subnav__login__button.apply > a::before, .l-subnav__login__button.apply > a::after {
	background-color: #222222;
}
.l-subnav__login__button.apply > a::before {
	-webkit-mask: none;
	mask: none;
	background: url("/assets/images/common/icon-pen.png") no-repeat center/contain;
}
.l-subnav__login__iconlink {
	margin-top: 16px;
}
.l-subnav__login__iconlink > a {
	display: inline-block;
	padding-left: 1.5em;
	text-decoration: none;
	font-size: 1.6rem;
	line-height: 1.4;
	color: #222222;
	background: url("/assets/images/icons/chev-cir-w-right.svg") no-repeat left center/1em;
}
.l-subnav__login-kojin .l-subnav__login__label {
	color: #0074C0;
}
.l-subnav__login-hojin .l-subnav__login__label {
	color: #003491;
}
.l-subnav__login-hojin .l-subnav__login__button > a {
	border-color: #003491;
	background-color: #003491;
}
@media (max-width: 980px) {
	.l-subnav__login {
		padding: 20px 20px 30px 20px;
	}
	.l-subnav__login-hojin {
		margin-top: 40px;
	}
}
@media (min-width: 981px) {
	.l-subnav__login {
		justify-content: space-between;
		max-width: 1130px;
		margin-inline: auto;
		padding-block: 80px 30px;
		position: relative;
	}
	.l-subnav__login__sublabel {
		margin-top: 30px;
	}
	.l-subnav__login-kojin, .l-subnav__login-hojin {
		flex: 1 1 50%;
		padding: 0 100px;
	}
	.l-subnav__login-hojin {
		border-left: 1px solid #DDDDDD;
	}
	.l-subnav__login-hojin .l-subnav__login__label {
		margin-bottom: 72px;
	}
}
@media (hover: hover) {
	.l-subnav__login__button > a {
		cursor: pointer;
		transition: opacity 0.2s;
	}
	.l-subnav__login__button > a:hover {
		opacity: 0.75;
	}
	.l-subnav__login__iconlink > a {
		transition: color 0.2s;
	}
	.l-subnav__login__iconlink > a:hover {
		color: #0074C0;
	}
}
/*# sourceMappingURL=header_2026.css.map */
