@charset "UTF-8";
/*----------
	csr
----------*/
/* foundation */
/*----------
	vars
----------*/
:root {
	/* color */
	--color-prim: #0072BE;
	--color-seco: #111111;
	--color-txt: #111111;
	--color-txt-caption: #666666;
	--color-txt-link: #0062B1;
	--color-txt-hover: #0062B1;
	--color-border: #CCCCCC;
	--color-bg: #F7F7F7;
	--color-caution: #E20C35;
	--color-prim-rgb: 0, 114, 190;
	--color-seco-rgb: 17, 17, 17;
	--color-txt-rgb: 17, 17, 17;
	--color-txt-caption-rgb: 102, 102, 102;
	--color-txt-link-rgb: 0, 98, 177;
	--color-txt-hover-rgb: 0, 98, 177;
	--color-border-rgb: 204, 204, 204;
	--color-bg-rgb: 247, 247, 247;
	--color-caution-rgb: 226, 12, 53;
	/* font family */
	--font-sans: "Noto Sans JP", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Hiragino Sans, "メイリオ", Meiryo, sans-serif;
	--font-serif: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	--font-montserrat: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Hiragino Sans, "メイリオ", Meiryo, sans-serif;
	/* line height */
	--line-height-s: 1.4;
	--line-height-m: 1.6;
	--line-height-l: 1.8;
	/* icons */
	--icon-arrow1-r: "";
	--icon-arrow1-l: "";
	--icon-arrow1-b: "";
	--icon-arrow1-t: "";
	--icon-arrow2-r: "";
	--icon-arrow2-l: "";
	--icon-arrow2-b: "";
	--icon-arrow2-t: "";
	--icon-blank: "";
	--icon-plus: "";
	--icon-minus: "";
	--icon-close: "";
	--icon-download: "";
	--icon-search: "";
	--icon-access: "";
	--icon-locked: "";
	--icon-unlocked: "";
	--icon-global: "";
	--icon-question: "";
	--icon-exclamation: "";
	--icon-pdf: "";
	--icon-excel: "";
	--icon-powerpoint: "";
	--icon-word: "";
	--icon-zip: "";
	--icon-url: "";
	--icon-doc: "";
	--icon-check: "";
	--icon-circle: "";
	--icon-circle-border: "";
	--icon-play: "";
	--icon-stop: "";
	--icon-swipe: "";
	--icon-rss: "";
	--icon-alert: "";
	--icon-print: "";
	--icon-calendar: "";
	--icon-cart: "";
	--icon-humberger: "";
	--icon-bookmark: "";
	--icon-mail: "";
	--icon-first: "";
	--icon-last: "";
	--icon-new: "";
	--icon-to-top: "";
	--icon-pinch-in: "";
	--icon-pinch-out: "";
}

/* common layout */
/*----------
	main header
----------*/
header {
	width: 100%;
	position: relative;
	overflow-x: hidden;
}
@media (min-width: 768px), print {
	header {
		min-width: 1240px;
	}
}
@media print {
	header {
		display: none;
	}
}

.l-mainheader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #ffffff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.l-mainheader__logo {
	position: relative;
	z-index: 110;
	width: 180px;
	margin-right: 20px;
}
.l-mainheader__logo a {
	display: block;
}
.l-mainheader__logo img {
	display: block;
	width: 100%;
}
.l-mainheader__menu-btn {
	position: relative;
	z-index: 110;
	display: block;
	width: 70px;
	height: 60px;
	margin-right: -20px;
	cursor: pointer;
}
.l-mainheader__menu-btn::before, .l-mainheader__menu-btn::after,
.l-mainheader__menu-btn > span {
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	display: block;
	width: 30px;
	height: 2px;
	background-color: var(--color-prim);
	transform-origin: left center;
	transition: transform 0.25s, opacity 0.1s;
}
.l-mainheader__menu-btn::before {
	top: 21px;
}
.l-mainheader__menu-btn::after {
	top: 37px;
}
.l-mainheader__menu-btn > span {
	top: 29px;
}
.l-mainheader__menu-btn.is-open::before {
	transform: rotate(30deg);
}
.l-mainheader__menu-btn.is-open::after {
	transform: rotate(-30deg);
}
.l-mainheader__menu-btn.is-open > span {
	opacity: 0;
}
@media (min-width: 768px), print {
	.l-mainheader {
		align-items: flex-end;
		height: 110px;
		min-width: 1240px;
		padding-left: 80px;
		padding-right: 80px;
		transition: height 0.2s;
	}
	.l-mainheader__logo {
		width: 270px;
		padding-bottom: 28px;
		transition: width 0.2s, padding-bottom 0.2s;
	}
	.l-mainheader__menu-btn {
		display: none;
	}
	.l-mainheader.is-compact {
		height: 70px;
	}
	.l-mainheader.is-compact .l-mainheader__logo {
		width: 200px;
		padding-bottom: 19px;
	}
}
@media (min-width: 768px) and (max-width: 1420px), print {
	.l-mainheader {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/*----------
	main nav
----------*/
.l-mainnav {
	position: fixed;
	left: 0;
	top: 60px;
	z-index: 105;
	display: block;
	width: 100%;
	height: 0;
	overflow-y: auto;
	scroll-behavior: smooth;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s, visibility 0.2s;
}
.l-mainnav.is-hamburger-menu-open {
	visibility: visible;
	opacity: 1;
	height: calc(100% - 60px);
}
.l-mainnav.is-hamburger-menu-open::before {
	content: "";
	position: fixed;
	left: 0;
	top: 60px;
	width: 100%;
	height: 200px;
	background-color: #fff;
	pointer-events: none;
}
.l-mainnav__inner {
	overflow: hidden;
	position: relative;
	z-index: 100;
	padding-bottom: 40px;
	background-color: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	border-top: solid 1px var(--color-border);
}
.l-mainnav__gnav {
	background-color: #fff;
}
.l-mainnav__gnav a {
	display: block;
	font-size: 1.6rem;
	color: var(--color-txt);
	line-height: var(--line-height-s);
}
.l-mainnav__lv1-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 64px;
	border-bottom: solid 1px var(--color-border);
}
.l-mainnav__lv1-item > a {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 63px;
	padding: 8px 20px;
	font-weight: 500;
}
.l-mainnav__lv1-item > a:first-child:last-child::after {
	font-family: iconfont !important; /* stylelint-disable-line declaration-no-important,font-family-no-missing-generic-family-keyword */
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-arrow2-r);
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	color: var(--color-prim);
	font-size: 1.6rem;
	line-height: 1;
	transform: translateY(-50%);
}
.l-mainnav__lv1-item > a:not(:last-child) {
	border-right: solid 1px var(--color-border);
}
.l-mainnav__lv2 {
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	width: 100%;
	height: 0;
	background-color: var(--color-bg);
	transition: opacity 0s, visibility 0s;
}
.is-toggle-open > .l-mainnav__lv2 {
	visibility: visible;
	opacity: 1;
	height: auto;
	transition: opacity 0.4s, visibility 0.4s;
}
.l-mainnav__lv2-inner {
	margin: 20px;
	background-color: #fff;
}
.l-mainnav__lv2-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 64px;
	border-bottom: solid 1px var(--color-border);
}
.l-mainnav__lv2-item > a {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 63px;
	padding: 8px 40px 8px 20px;
	font-weight: 500;
}
.l-mainnav__lv2-item > a:first-child:last-child::after {
	font-family: iconfont !important; /* stylelint-disable-line declaration-no-important,font-family-no-missing-generic-family-keyword */
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-arrow2-r);
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	color: var(--color-prim);
	font-size: 1.6rem;
	line-height: 1;
	transform: translateY(-50%);
}
.l-mainnav__lv2-item > a:not(:last-child) {
	border-right: solid 1px var(--color-border);
}
.l-mainnav__lv2-item.is-toggle-open > a::before,
.l-mainnav__lv2-item.is-toggle-open > button::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	z-index: 1;
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--color-border);
}
.l-mainnav__lv3 {
	position: relative;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	width: 100%;
	height: 0;
	background-color: var(--color-bg);
	transition: opacity 0s, visibility 0s;
}
.is-toggle-open > .l-mainnav__lv3 {
	visibility: visible;
	opacity: 1;
	height: auto;
	transition: opacity 0.4s, visibility 0.4s;
}
.l-mainnav__lv3-inner {
	background-color: #fff;
	padding: 20px 20px 30px;
}
.l-mainnav__lv3-item:not(:last-child) {
	margin-bottom: 10px;
}
.l-mainnav__lv3-item > a {
	display: inline-block;
}
.l-mainnav__btn-toggle {
	position: relative;
	display: block;
	width: 60px;
	height: 63px;
}
.l-mainnav__btn-toggle::after {
	font-family: iconfont !important; /* stylelint-disable-line declaration-no-important,font-family-no-missing-generic-family-keyword */
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-plus);
	display: block;
	position: absolute;
	top: calc(50% - 8px);
	right: 22px;
	color: var(--color-prim);
	font-size: 1.6rem;
	line-height: 1;
	transition: transform 0.3s ease;
	transform: rotate(-90deg);
}
.is-toggle-open > .l-mainnav__btn-toggle::after {
	content: var(--icon-minus);
	transform: rotate(0deg);
}
.l-mainnav__category-top {
	display: none;
}
.l-mainnav__sub-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	margin: 35px 20px 0;
}
.l-mainnav__sub-menu a {
	font-size: 1.3rem;
}
.l-mainnav__btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	margin: 40px 20px 0;
}
.l-mainnav__btns-contact {
	width: 100%;
	max-width: 215px;
}
.l-mainnav__btns-contact > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 45px;
	background-color: var(--color-prim);
	border-radius: 100px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 500;
}
.l-mainnav__btns-contact > a i {
	margin-left: 10px;
	font-size: 1.8rem;
}
.l-mainnav__language {
	display: flex;
	width: 100%;
	max-width: 215px;
	background-color: var(--color-bg);
	border-radius: 50px;
}
.l-mainnav__language-item {
	width: 33.33%;
	text-align: center;
}
.l-mainnav__language-item > a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
	border-radius: 50px;
	font-size: 1.4rem;
}
.l-mainnav__language-item.is-current a {
	background-color: var(--color-prim);
	color: #fff;
	pointer-events: none;
}
@media (min-width: 768px), print {
	.l-mainnav {
		flex: 1;
		overflow-y: visible;
		visibility: visible;
		opacity: 1;
		position: static;
		top: 0;
		height: auto;
	}
	.l-mainnav__inner {
		overflow: visible;
		padding-bottom: 0;
		box-shadow: none;
		border-top: none;
	}
	.l-mainnav__gnav {
		background-color: #fff;
	}
	.l-mainnav__lv1 {
		margin-right: -12.5px;
	}
	.l-mainnav__lv1-inner {
		display: flex;
		justify-content: flex-end;
	}
	.l-mainnav__lv1-item {
		display: block;
		min-height: auto;
		border-bottom: none;
	}
	.l-mainnav__lv1-item > a {
		flex-grow: 0;
		flex-shrink: 1;
		flex-basis: auto;
		display: inline-block;
		width: auto;
		min-height: 54px;
		padding: 10px 12.5px 0;
		font-weight: normal;
		transition: color 0.2s;
	}
	.l-mainnav__lv1-item > a::before {
		content: "";
		position: absolute;
		left: 12.5px;
		bottom: 0;
		width: calc(100% - 25px);
		height: 2px;
		background-color: transparent;
		transition: background-color 0.2s;
	}
	.l-mainnav__lv1-item > a:first-child:last-child::after {
		display: none;
	}
	.l-mainnav__lv1-item > a:not(:last-child) {
		border-right: none;
	}
	.l-mainnav__lv1-item > a:hover {
		color: var(--color-prim);
		font-weight: 500;
	}
	.l-mainnav__lv1-item > a:hover::before {
		background-color: var(--color-prim);
	}
	.l-mainnav__lv1-item--news {
		position: absolute;
		top: -33px;
		right: 381px;
		transition: transform 0.25s, opacity 0.2s;
	}
	.l-mainnav__lv1-item--news > a {
		display: block;
		min-height: auto;
		padding: 0;
		font-size: 1.4rem;
		font-weight: normal;
		transition: box-shadow 0.2s, color 0.2s;
	}
	.l-mainnav__lv1-item--news > a::before {
		display: none;
	}
	.l-mainnav__lv1-item--news > a:hover {
		box-shadow: 0 1px 0 0 var(--color-prim);
		color: var(--color-prim);
	}
	.l-mainnav__lv1-item.is-open::before {
		content: "";
		position: absolute;
		top: auto;
		bottom: -13px;
		right: -75px;
		z-index: 2;
		transform: rotate(22deg);
		width: 0;
		height: 0;
		border-left: 12px solid transparent;
		border-right: 80px solid transparent;
		border-top: 31px solid rgba(255, 255, 255, 0);
	}
	.l-mainnav__lv1-item.is-open::after {
		content: "";
		position: absolute;
		top: auto;
		bottom: -13px;
		left: -75px;
		z-index: 2;
		transform: rotate(-21deg);
		width: 0;
		height: 0;
		border-left: 80px solid transparent;
		border-right: 12px solid transparent;
		border-top: 31px solid rgba(255, 255, 255, 0);
	}
	.l-mainnav__lv2 {
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 110px;
		left: 0;
		width: 100%;
		height: auto;
		background-color: #fff;
		pointer-events: none;
		transition: opacity 0.2s, visibility 0.2s, top 0.2s;
	}
	.l-mainnav__lv1-item.is-open > .l-mainnav__lv2 {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	.l-mainnav__lv2::before {
		content: "";
		position: absolute;
		top: -10px;
		left: 0;
		width: 100%;
		height: 10px;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	}
	.l-mainnav__lv2-inner {
		width: 1200px;
		margin: 70px auto 80px;
		background-color: #fff;
	}
	.l-mainnav__lv2-inner > ul {
		display: flex;
		flex-wrap: wrap;
		gap: 2px 40px;
	}
	.l-mainnav__lv2-item {
		position: relative;
		width: 270px;
		min-height: auto;
		border-bottom: none;
	}
	.l-mainnav__lv2-item > a {
		flex-grow: 0;
		flex-shrink: 1;
		flex-basis: auto;
		height: 100%;
		min-height: 76px;
		padding: 10px 40px 10px 0;
		font-size: 1.8rem;
		border-bottom: solid 1px var(--color-border);
		transition: color 0.2s, border-bottom-color 0.2s;
	}
	.l-mainnav__lv2-item > a::after {
		font-family: iconfont !important; /* stylelint-disable-line declaration-no-important,font-family-no-missing-generic-family-keyword */
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: var(--icon-arrow2-r);
		display: block;
		position: absolute;
		top: 50%;
		right: 20px;
		color: var(--color-prim);
		font-size: 1.6rem;
		line-height: 1;
		transform: translateY(-50%);
	}
	.l-mainnav__lv2-item > a:not(:last-child) {
		border-right: none;
	}
	.l-mainnav__lv2-item > a:hover {
		color: var(--color-prim);
		border-bottom-color: var(--color-prim);
	}
	.l-mainnav__lv2-item.is-toggle-open > a::before,
	.l-mainnav__lv2-item.is-toggle-open > button::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: -1px;
		z-index: 1;
		display: block;
		width: 100%;
		height: 1px;
		background-color: var(--color-border);
	}
	.l-mainnav__lv2-item--2up {
		display: flex;
		flex-direction: column;
		width: 580px;
	}
	.l-mainnav__lv2-item--2up > a {
		flex-shrink: 0;
		height: 76px;
		border-bottom: solid 1px var(--color-border);
	}
	.l-mainnav__lv2-item--2up > .l-mainnav__lv3 {
		flex-grow: 1;
	}
	.l-mainnav__lv3 {
		flex: 1;
		overflow: visible;
		visibility: visible;
		opacity: 1;
		height: auto;
		background-color: #fff;
		border-bottom: solid 1px var(--color-border);
	}
	.l-mainnav__lv3-inner {
		padding: 27px 0;
	}
	.l-mainnav__lv3-inner > ul {
		display: flex;
		flex-wrap: wrap;
		gap: 16px 40px;
	}
	.l-mainnav__lv3-item {
		width: 270px;
	}
	.l-mainnav__lv3-item:not(:last-child) {
		margin-bottom: 0;
	}
	.l-mainnav__lv3-item > a {
		position: relative;
		padding-left: 26px;
		transition: color 0.2s;
	}
	.l-mainnav__lv3-item > a::before {
		font-family: iconfont !important; /* stylelint-disable-line declaration-no-important,font-family-no-missing-generic-family-keyword */
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: var(--icon-arrow1-r);
		position: absolute;
		left: 0;
		top: 0.2em;
		display: inline-block;
		width: 16px;
		height: 16px;
		color: var(--color-prim);
		font-size: 1.6rem;
		line-height: 1;
		text-align: center;
	}
	.l-mainnav__lv3-item > a[target=_blank]::before {
		content: var(--icon-blank);
	}
	.l-mainnav__lv3-item > a:hover {
		color: var(--color-prim);
	}
	.l-mainnav__btn-toggle {
		display: none;
	}
	.l-mainnav__category-top {
		display: block;
		margin-bottom: 30px;
	}
	.l-mainnav__category-top-inner {
		position: relative;
		display: inline-block;
		padding-left: 55px;
	}
	.l-mainnav__category-top-inner::before {
		font-family: iconfont !important; /* stylelint-disable-line declaration-no-important,font-family-no-missing-generic-family-keyword */
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: var(--icon-arrow2-r);
		position: absolute;
		left: 0;
		top: -0.2em;
		display: block;
		width: 40px;
		height: 40px;
		margin-right: 15px;
		background-color: var(--color-prim);
		border-radius: 100%;
		color: #fff;
		font-size: 1.6rem;
		line-height: 40px;
		text-align: center;
	}
	.l-mainnav__category-top-inner > span {
		flex: 1;
		padding-top: 3px;
		color: var(--color-txt);
		font-size: 2.4rem;
		font-weight: 500;
		line-height: var(--line-height-s);
		transition: color 0.2s;
	}
	.l-mainnav__category-top-inner:hover > span {
		color: var(--color-prim);
	}
	.l-mainnav__sub-menu {
		display: none;
	}
	.l-mainnav__btns {
		position: absolute;
		top: -41px;
		right: 0;
		z-index: 1;
		flex-direction: row;
		gap: 30px;
		margin: 0;
		transition: transform 0.25s, opacity 0.2s;
	}
	.l-mainnav__btns-contact {
		width: 153px;
	}
	.l-mainnav__btns-contact > a {
		min-height: 36px;
		border: solid 1px var(--color-prim);
		transition: background-color 0.2s, color 0.2s;
	}
	.l-mainnav__btns-contact > a:hover {
		background-color: #fff;
		color: var(--color-prim);
	}
	.l-mainnav__language {
		width: 168px;
		max-width: none;
	}
	.l-mainnav__language-item > a {
		height: 36px;
	}
	.l-mainnav__language-item > a:hover {
		color: var(--color-prim);
		font-weight: 500;
	}
	.l-mainnav__language-item.is-current a:hover {
		color: #fff;
		font-weight: normal;
	}
	.l-mainheader.is-compact .l-mainnav .l-mainnav__lv1-item--news {
		transform: translateY(-20px);
		opacity: 0;
		transition: transform 0.6s, opacity 0.3s;
	}
	.l-mainheader.is-compact .l-mainnav .l-mainnav__lv2 {
		top: 70px;
	}
	.l-mainheader.is-compact .l-mainnav .l-mainnav__btns {
		transform: translateY(-20px);
		opacity: 0;
		transition: transform 0.6s, opacity 0.3s;
	}
}

/*----------
	main footer
----------*/
.l-mainfooter-contact + footer, .top-contact + footer {
	margin-top: -30px;
}
@media print {
	footer {
		display: none;
	}
}
@media (min-width: 768px), print {
	footer {
		min-width: 1240px;
	}
	.l-mainfooter-contact + footer, .top-contact + footer {
		margin-top: -50px;
	}
}

.l-mainfooter__inner {
	position: relative;
	z-index: 1;
	background-color: #fff;
	border-top-left-radius: 30px;
}
.l-mainfooter__logo {
	width: 200px;
	margin: 0 auto;
	padding: 40px 0 30px;
}
.l-mainfooter__logo a {
	display: block;
}
.l-mainfooter__backhead {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
}
.l-mainfooter__backhead a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	padding: 6px 0 0 2px;
	background-color: var(--color-prim);
	border-top-left-radius: 10px;
	color: #fff;
	font-size: 1.6rem;
}
.l-mainfooter__backhead.is-visible {
	opacity: 1;
	visibility: visible;
}
.l-mainfooter__copyright {
	margin: 43px 70px 22px 20px;
	color: #707070;
	font-size: 1rem;
}
@media (min-width: 768px), print {
	.l-mainfooter {
		margin-top: -50px;
	}
	.l-mainfooter__inner {
		border-top-left-radius: 50px;
	}
	.l-mainfooter__logo {
		width: 270px;
		padding: 60px 0 40px;
	}
	.l-mainfooter__copyright {
		margin: 40px 0 23px;
		font-size: 1.1rem;
		text-align: center;
	}
}

/*----------
	footer nav
----------*/
.l-footer-nav__inner {
	position: relative;
	background-color: #fff;
	border-top: solid 1px var(--color-border);
}
.l-footer-nav__gnav {
	background-color: #fff;
}
.l-footer-nav__gnav a {
	display: block;
	font-size: 1.6rem;
	color: var(--color-txt);
	line-height: var(--line-height-s);
}
.l-footer-nav__lv1-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 64px;
	border-bottom: solid 1px var(--color-border);
}
.l-footer-nav__lv1-item > a {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 63px;
	padding: 8px 20px;
	font-weight: 500;
}
.l-footer-nav__lv1-item > a:first-child:last-child::after {
	font-family: iconfont !important; /* stylelint-disable-line declaration-no-important,font-family-no-missing-generic-family-keyword */
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-arrow2-r);
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	color: var(--color-prim);
	font-size: 1.6rem;
	line-height: 1;
	transform: translateY(-50%);
}
.l-footer-nav__lv1-item > a:not(:last-child) {
	border-right: solid 1px var(--color-border);
}
.l-footer-nav__lv2 {
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	width: 100%;
	height: 0;
	background-color: var(--color-bg);
	transition: opacity 0s, visibility 0s;
}
.is-toggle-open > .l-footer-nav__lv2 {
	visibility: visible;
	opacity: 1;
	height: auto;
	transition: opacity 0.4s, visibility 0.4s;
}
.l-footer-nav__lv2-inner {
	margin: 20px;
	background-color: #fff;
}
.l-footer-nav__lv2-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 64px;
	border-bottom: solid 1px var(--color-border);
}
.l-footer-nav__lv2-item > a {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 63px;
	padding: 8px 40px 8px 20px;
	font-weight: 500;
}
.l-footer-nav__lv2-item > a:first-child:last-child::after {
	font-family: iconfont !important; /* stylelint-disable-line declaration-no-important,font-family-no-missing-generic-family-keyword */
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-arrow2-r);
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	color: var(--color-prim);
	font-size: 1.6rem;
	line-height: 1;
	transform: translateY(-50%);
}
.l-footer-nav__lv2-item > a:not(:last-child) {
	border-right: solid 1px var(--color-border);
}
.l-footer-nav__lv2-item.is-toggle-open > a::before,
.l-footer-nav__lv2-item.is-toggle-open > button::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	z-index: 1;
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--color-border);
}
.l-footer-nav__lv3 {
	position: relative;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	width: 100%;
	height: 0;
	background-color: var(--color-bg);
	transition: opacity 0s, visibility 0s;
}
.is-toggle-open > .l-footer-nav__lv3 {
	visibility: visible;
	opacity: 1;
	height: auto;
	transition: opacity 0.4s, visibility 0.4s;
}
.l-footer-nav__lv3-inner {
	background-color: #fff;
	padding: 20px 20px 30px;
}
.l-footer-nav__lv3-item:not(:last-child) {
	margin-bottom: 10px;
}
.l-footer-nav__lv3-item > a {
	display: inline-block;
}
.l-footer-nav__btn-toggle {
	position: relative;
	display: block;
	width: 60px;
	height: 63px;
}
.l-footer-nav__btn-toggle::after {
	font-family: iconfont !important; /* stylelint-disable-line declaration-no-important,font-family-no-missing-generic-family-keyword */
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-plus);
	display: block;
	position: absolute;
	top: calc(50% - 8px);
	right: 22px;
	color: var(--color-prim);
	font-size: 1.6rem;
	line-height: 1;
	transition: transform 0.3s ease;
	transform: rotate(-90deg);
}
.is-toggle-open > .l-footer-nav__btn-toggle::after {
	content: var(--icon-minus);
	transform: rotate(0deg);
}
.l-footer-nav__sub-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	margin: 35px 20px 0;
}
.l-footer-nav__sub-menu a {
	font-size: 1.3rem;
}
.l-footer-nav__sns {
	display: flex;
	gap: 20px;
	margin: 31px 20px 0;
}
.l-footer-nav__sns-youtube {
	width: 40px;
}
@media (min-width: 768px), print {
	.l-footer-nav__inner {
		border-top: none;
	}
	.l-footer-nav__lv1 {
		width: 1240px;
		margin: 0 auto;
	}
	.l-footer-nav__lv1-inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px 25px;
	}
	.l-footer-nav__lv1-item {
		display: block;
		min-height: auto;
		border-bottom: none;
	}
	.l-footer-nav__lv1-item > a {
		flex-grow: 0;
		flex-shrink: 1;
		flex-basis: auto;
		display: inline-block;
		width: auto;
		min-height: auto;
		padding: 0;
		font-weight: normal;
		transition: box-shadow 0.2s, color 0.2s;
	}
	.l-footer-nav__lv1-item > a:first-child:last-child::after {
		display: none;
	}
	.l-footer-nav__lv1-item > a:not(:last-child) {
		border-right: none;
	}
	.l-footer-nav__lv1-item > a:hover {
		box-shadow: 0 1px 0 0 var(--color-prim);
		color: var(--color-prim);
	}
	.l-footer-nav__lv2 {
		display: none;
	}
	.l-footer-nav__lv3 {
		display: none;
	}
	.l-footer-nav__btn-toggle {
		display: none;
	}
	.l-footer-nav__sub-menu {
		justify-content: center;
		width: 1240px;
		margin: 25px auto;
	}
	.l-footer-nav__sub-menu a {
		font-size: 1.3rem;
		transition: box-shadow 0.2s, color 0.2s;
	}
	.l-footer-nav__sub-menu a:hover {
		box-shadow: 0 1px 0 0 var(--color-prim);
		color: var(--color-prim);
	}
	.l-footer-nav__sns {
		justify-content: center;
		margin: 30px 0 40px;
	}
	.l-footer-nav__sns-youtube {
		width: 40px;
	}
}

/*----------
	main footer contact
----------*/
.l-mainfooter-contact {
	padding-bottom: 30px;
	background: var(--color-prim);
}
.l-mainfooter-contact__inner {
	padding-top: 33px;
	padding-bottom: 40px;
	text-align: center;
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
@media (min-width: 768px), print {
	.l-mainfooter-contact__inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.l-mainfooter-contact__lead {
	color: #fff;
	font-weight: 500;
	line-height: var(--line-height-l);
}
.l-mainfooter-contact__icon {
	margin-bottom: 10px;
	text-align: center;
}
.l-mainfooter-contact__icon img {
	width: 45px;
}
.l-mainfooter-contact__title {
	margin-bottom: 10px;
	font-size: 1.8rem;
	font-weight: bold;
}
.l-mainfooter-contact__text {
	font-size: 1.6rem;
	text-align: left;
}
.l-mainfooter-contact__button {
	display: inline-block;
	margin: 20px auto 0;
}
@media (min-width: 768px), print {
	.l-mainfooter-contact {
		min-width: 1240px;
		padding-bottom: 50px;
	}
	.l-mainfooter-contact__inner {
		padding-top: 0;
		padding-bottom: 0;
	}
	.l-mainfooter-contact__wrap {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 40px;
		width: 100%;
		min-height: 240px;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.l-mainfooter-contact__lead {
		flex: 1;
		display: flex;
		align-items: center;
		text-align: left;
	}
	.l-mainfooter-contact__icon {
		width: 80px;
		margin: 0 30px 0 0;
	}
	.l-mainfooter-contact__icon img {
		width: 80px;
	}
	.l-mainfooter-contact__textarea {
		flex: 1;
	}
	.l-mainfooter-contact__title {
		margin-bottom: 5px;
		font-size: 2rem;
	}
	.l-mainfooter-contact__button {
		display: block;
		width: 373px;
		margin: 0;
	}
}

/*----------
	overlay
----------*/
.l-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0s, visibility 0s;
}
.l-overlay.is-show {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.2s, visibility 0.2s;
}
@media (min-width: 768px), print {
	.l-overlay {
		transition: opacity 0.2s, visibility 0.2s;
	}
	.l-overlay.is-show {
		transition: opacity 0.2s, visibility 0.2s;
	}
}

/* Utility */
/*----------
	margin
----------*/
/* 固定マージン */
.u-mt-none {
	margin-top: 0 !important;
}

/* 汎用マージン */
.u-margin-xs {
	margin-bottom: 10px !important;
}
@media (min-width: 768px), print {
	.u-margin-xs {
		margin-bottom: 20px !important;
	}
}

.u-margin-sm {
	margin-bottom: 20px !important;
}
@media (min-width: 768px), print {
	.u-margin-sm {
		margin-bottom: 30px !important;
	}
}

.u-margin-md {
	margin-bottom: 30px !important;
}
@media (min-width: 768px), print {
	.u-margin-md {
		margin-bottom: 40px !important;
	}
}

.u-margin-lg {
	margin-bottom: 50px !important;
}
@media (min-width: 768px), print {
	.u-margin-lg {
		margin-bottom: 60px !important;
	}
}

.u-margin-xl {
	margin-bottom: 60px !important;
}
@media (min-width: 768px), print {
	.u-margin-xl {
		margin-bottom: 80px !important;
	}
}

.u-margin-xxl {
	margin-bottom: 80px !important;
}
@media (min-width: 768px), print {
	.u-margin-xxl {
		margin-bottom: 120px !important;
	}
}

.u-margin-none {
	margin-bottom: 0 !important;
}
@media (min-width: 768px), print {
	.u-margin-none {
		margin-bottom: 0 !important;
	}
}

/* パーツ用マージン */
@media (min-width: 768px), print {
	.u-pc-mt-5 {
		margin-top: 5px !important;
	}
	.u-pc-mb-5 {
		margin-bottom: 5px !important;
	}
	.u-pc-ml-5 {
		margin-left: 5px !important;
	}
	.u-pc-mr-5 {
		margin-right: 5px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-5 {
		margin-top: 5px !important;
	}
	.u-sp-mb-5 {
		margin-bottom: 5px !important;
	}
	.u-sp-ml-5 {
		margin-left: 5px !important;
	}
	.u-sp-mr-5 {
		margin-right: 5px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-10 {
		margin-top: 10px !important;
	}
	.u-pc-mb-10 {
		margin-bottom: 10px !important;
	}
	.u-pc-ml-10 {
		margin-left: 10px !important;
	}
	.u-pc-mr-10 {
		margin-right: 10px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-10 {
		margin-top: 10px !important;
	}
	.u-sp-mb-10 {
		margin-bottom: 10px !important;
	}
	.u-sp-ml-10 {
		margin-left: 10px !important;
	}
	.u-sp-mr-10 {
		margin-right: 10px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-15 {
		margin-top: 15px !important;
	}
	.u-pc-mb-15 {
		margin-bottom: 15px !important;
	}
	.u-pc-ml-15 {
		margin-left: 15px !important;
	}
	.u-pc-mr-15 {
		margin-right: 15px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-15 {
		margin-top: 15px !important;
	}
	.u-sp-mb-15 {
		margin-bottom: 15px !important;
	}
	.u-sp-ml-15 {
		margin-left: 15px !important;
	}
	.u-sp-mr-15 {
		margin-right: 15px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-20 {
		margin-top: 20px !important;
	}
	.u-pc-mb-20 {
		margin-bottom: 20px !important;
	}
	.u-pc-ml-20 {
		margin-left: 20px !important;
	}
	.u-pc-mr-20 {
		margin-right: 20px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-20 {
		margin-top: 20px !important;
	}
	.u-sp-mb-20 {
		margin-bottom: 20px !important;
	}
	.u-sp-ml-20 {
		margin-left: 20px !important;
	}
	.u-sp-mr-20 {
		margin-right: 20px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-25 {
		margin-top: 25px !important;
	}
	.u-pc-mb-25 {
		margin-bottom: 25px !important;
	}
	.u-pc-ml-25 {
		margin-left: 25px !important;
	}
	.u-pc-mr-25 {
		margin-right: 25px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-25 {
		margin-top: 25px !important;
	}
	.u-sp-mb-25 {
		margin-bottom: 25px !important;
	}
	.u-sp-ml-25 {
		margin-left: 25px !important;
	}
	.u-sp-mr-25 {
		margin-right: 25px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-30 {
		margin-top: 30px !important;
	}
	.u-pc-mb-30 {
		margin-bottom: 30px !important;
	}
	.u-pc-ml-30 {
		margin-left: 30px !important;
	}
	.u-pc-mr-30 {
		margin-right: 30px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-30 {
		margin-top: 30px !important;
	}
	.u-sp-mb-30 {
		margin-bottom: 30px !important;
	}
	.u-sp-ml-30 {
		margin-left: 30px !important;
	}
	.u-sp-mr-30 {
		margin-right: 30px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-35 {
		margin-top: 35px !important;
	}
	.u-pc-mb-35 {
		margin-bottom: 35px !important;
	}
	.u-pc-ml-35 {
		margin-left: 35px !important;
	}
	.u-pc-mr-35 {
		margin-right: 35px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-35 {
		margin-top: 35px !important;
	}
	.u-sp-mb-35 {
		margin-bottom: 35px !important;
	}
	.u-sp-ml-35 {
		margin-left: 35px !important;
	}
	.u-sp-mr-35 {
		margin-right: 35px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-40 {
		margin-top: 40px !important;
	}
	.u-pc-mb-40 {
		margin-bottom: 40px !important;
	}
	.u-pc-ml-40 {
		margin-left: 40px !important;
	}
	.u-pc-mr-40 {
		margin-right: 40px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-40 {
		margin-top: 40px !important;
	}
	.u-sp-mb-40 {
		margin-bottom: 40px !important;
	}
	.u-sp-ml-40 {
		margin-left: 40px !important;
	}
	.u-sp-mr-40 {
		margin-right: 40px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-45 {
		margin-top: 45px !important;
	}
	.u-pc-mb-45 {
		margin-bottom: 45px !important;
	}
	.u-pc-ml-45 {
		margin-left: 45px !important;
	}
	.u-pc-mr-45 {
		margin-right: 45px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-45 {
		margin-top: 45px !important;
	}
	.u-sp-mb-45 {
		margin-bottom: 45px !important;
	}
	.u-sp-ml-45 {
		margin-left: 45px !important;
	}
	.u-sp-mr-45 {
		margin-right: 45px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-50 {
		margin-top: 50px !important;
	}
	.u-pc-mb-50 {
		margin-bottom: 50px !important;
	}
	.u-pc-ml-50 {
		margin-left: 50px !important;
	}
	.u-pc-mr-50 {
		margin-right: 50px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-50 {
		margin-top: 50px !important;
	}
	.u-sp-mb-50 {
		margin-bottom: 50px !important;
	}
	.u-sp-ml-50 {
		margin-left: 50px !important;
	}
	.u-sp-mr-50 {
		margin-right: 50px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-55 {
		margin-top: 55px !important;
	}
	.u-pc-mb-55 {
		margin-bottom: 55px !important;
	}
	.u-pc-ml-55 {
		margin-left: 55px !important;
	}
	.u-pc-mr-55 {
		margin-right: 55px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-55 {
		margin-top: 55px !important;
	}
	.u-sp-mb-55 {
		margin-bottom: 55px !important;
	}
	.u-sp-ml-55 {
		margin-left: 55px !important;
	}
	.u-sp-mr-55 {
		margin-right: 55px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-60 {
		margin-top: 60px !important;
	}
	.u-pc-mb-60 {
		margin-bottom: 60px !important;
	}
	.u-pc-ml-60 {
		margin-left: 60px !important;
	}
	.u-pc-mr-60 {
		margin-right: 60px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-60 {
		margin-top: 60px !important;
	}
	.u-sp-mb-60 {
		margin-bottom: 60px !important;
	}
	.u-sp-ml-60 {
		margin-left: 60px !important;
	}
	.u-sp-mr-60 {
		margin-right: 60px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-65 {
		margin-top: 65px !important;
	}
	.u-pc-mb-65 {
		margin-bottom: 65px !important;
	}
	.u-pc-ml-65 {
		margin-left: 65px !important;
	}
	.u-pc-mr-65 {
		margin-right: 65px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-65 {
		margin-top: 65px !important;
	}
	.u-sp-mb-65 {
		margin-bottom: 65px !important;
	}
	.u-sp-ml-65 {
		margin-left: 65px !important;
	}
	.u-sp-mr-65 {
		margin-right: 65px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-70 {
		margin-top: 70px !important;
	}
	.u-pc-mb-70 {
		margin-bottom: 70px !important;
	}
	.u-pc-ml-70 {
		margin-left: 70px !important;
	}
	.u-pc-mr-70 {
		margin-right: 70px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-70 {
		margin-top: 70px !important;
	}
	.u-sp-mb-70 {
		margin-bottom: 70px !important;
	}
	.u-sp-ml-70 {
		margin-left: 70px !important;
	}
	.u-sp-mr-70 {
		margin-right: 70px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-75 {
		margin-top: 75px !important;
	}
	.u-pc-mb-75 {
		margin-bottom: 75px !important;
	}
	.u-pc-ml-75 {
		margin-left: 75px !important;
	}
	.u-pc-mr-75 {
		margin-right: 75px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-75 {
		margin-top: 75px !important;
	}
	.u-sp-mb-75 {
		margin-bottom: 75px !important;
	}
	.u-sp-ml-75 {
		margin-left: 75px !important;
	}
	.u-sp-mr-75 {
		margin-right: 75px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-80 {
		margin-top: 80px !important;
	}
	.u-pc-mb-80 {
		margin-bottom: 80px !important;
	}
	.u-pc-ml-80 {
		margin-left: 80px !important;
	}
	.u-pc-mr-80 {
		margin-right: 80px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-80 {
		margin-top: 80px !important;
	}
	.u-sp-mb-80 {
		margin-bottom: 80px !important;
	}
	.u-sp-ml-80 {
		margin-left: 80px !important;
	}
	.u-sp-mr-80 {
		margin-right: 80px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-85 {
		margin-top: 85px !important;
	}
	.u-pc-mb-85 {
		margin-bottom: 85px !important;
	}
	.u-pc-ml-85 {
		margin-left: 85px !important;
	}
	.u-pc-mr-85 {
		margin-right: 85px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-85 {
		margin-top: 85px !important;
	}
	.u-sp-mb-85 {
		margin-bottom: 85px !important;
	}
	.u-sp-ml-85 {
		margin-left: 85px !important;
	}
	.u-sp-mr-85 {
		margin-right: 85px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-90 {
		margin-top: 90px !important;
	}
	.u-pc-mb-90 {
		margin-bottom: 90px !important;
	}
	.u-pc-ml-90 {
		margin-left: 90px !important;
	}
	.u-pc-mr-90 {
		margin-right: 90px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-90 {
		margin-top: 90px !important;
	}
	.u-sp-mb-90 {
		margin-bottom: 90px !important;
	}
	.u-sp-ml-90 {
		margin-left: 90px !important;
	}
	.u-sp-mr-90 {
		margin-right: 90px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-95 {
		margin-top: 95px !important;
	}
	.u-pc-mb-95 {
		margin-bottom: 95px !important;
	}
	.u-pc-ml-95 {
		margin-left: 95px !important;
	}
	.u-pc-mr-95 {
		margin-right: 95px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-95 {
		margin-top: 95px !important;
	}
	.u-sp-mb-95 {
		margin-bottom: 95px !important;
	}
	.u-sp-ml-95 {
		margin-left: 95px !important;
	}
	.u-sp-mr-95 {
		margin-right: 95px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-100 {
		margin-top: 100px !important;
	}
	.u-pc-mb-100 {
		margin-bottom: 100px !important;
	}
	.u-pc-ml-100 {
		margin-left: 100px !important;
	}
	.u-pc-mr-100 {
		margin-right: 100px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-100 {
		margin-top: 100px !important;
	}
	.u-sp-mb-100 {
		margin-bottom: 100px !important;
	}
	.u-sp-ml-100 {
		margin-left: 100px !important;
	}
	.u-sp-mr-100 {
		margin-right: 100px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-105 {
		margin-top: 105px !important;
	}
	.u-pc-mb-105 {
		margin-bottom: 105px !important;
	}
	.u-pc-ml-105 {
		margin-left: 105px !important;
	}
	.u-pc-mr-105 {
		margin-right: 105px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-105 {
		margin-top: 105px !important;
	}
	.u-sp-mb-105 {
		margin-bottom: 105px !important;
	}
	.u-sp-ml-105 {
		margin-left: 105px !important;
	}
	.u-sp-mr-105 {
		margin-right: 105px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-110 {
		margin-top: 110px !important;
	}
	.u-pc-mb-110 {
		margin-bottom: 110px !important;
	}
	.u-pc-ml-110 {
		margin-left: 110px !important;
	}
	.u-pc-mr-110 {
		margin-right: 110px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-110 {
		margin-top: 110px !important;
	}
	.u-sp-mb-110 {
		margin-bottom: 110px !important;
	}
	.u-sp-ml-110 {
		margin-left: 110px !important;
	}
	.u-sp-mr-110 {
		margin-right: 110px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-115 {
		margin-top: 115px !important;
	}
	.u-pc-mb-115 {
		margin-bottom: 115px !important;
	}
	.u-pc-ml-115 {
		margin-left: 115px !important;
	}
	.u-pc-mr-115 {
		margin-right: 115px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-115 {
		margin-top: 115px !important;
	}
	.u-sp-mb-115 {
		margin-bottom: 115px !important;
	}
	.u-sp-ml-115 {
		margin-left: 115px !important;
	}
	.u-sp-mr-115 {
		margin-right: 115px !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-mt-120 {
		margin-top: 120px !important;
	}
	.u-pc-mb-120 {
		margin-bottom: 120px !important;
	}
	.u-pc-ml-120 {
		margin-left: 120px !important;
	}
	.u-pc-mr-120 {
		margin-right: 120px !important;
	}
}
@media (max-width: 767px) {
	.u-sp-mt-120 {
		margin-top: 120px !important;
	}
	.u-sp-mb-120 {
		margin-bottom: 120px !important;
	}
	.u-sp-ml-120 {
		margin-left: 120px !important;
	}
	.u-sp-mr-120 {
		margin-right: 120px !important;
	}
}
/*----------
	display
----------*/
@media (max-width: 767px) {
	.u-pc-v {
		display: none;
	}
}

@media (min-width: 768px), print {
	.u-sp-v {
		display: none;
	}
}

.u-toggle-v {
	display: none;
}
.u-toggle-v.is-show {
	display: block;
}

/*----------
	text
----------*/
@media (max-width: 767px) {
	.u-pcbr {
		display: none;
	}
}

@media (min-width: 768px), print {
	.u-spbr {
		display: none;
	}
}

.u-txt-fz10 {
	font-size: 1rem !important;
}

.u-txt-fz12 {
	font-size: 1.2rem !important;
}

.u-txt-fz13 {
	font-size: 1.3rem !important;
}

.u-txt-fz14 {
	font-size: 1.4rem !important;
}

.u-txt-fz16 {
	font-size: 1.6rem !important;
}

.u-txt-fz18 {
	font-size: 1.8rem !important;
}

.u-txt-fz20 {
	font-size: 2rem !important;
}

.u-txt-center {
	text-align: center !important;
}

@media (min-width: 768px), print {
	.u-txt-pccenter {
		text-align: center !important;
	}
}

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

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

.u-txt-normal {
	font-weight: normal !important;
}

.u-txt-medium {
	font-weight: 500 !important;
}

.u-txt-bold {
	font-weight: 500 !important;
}

.u-txt-strike {
	text-decoration: line-through !important;
}

.u-text-indent {
	text-indent: -3em;
	padding-left: 3em;
}

.u-txt-marker {
	font-weight: 500;
	background-image: linear-gradient(transparent 80%, #FFF7A6 80%);
}

.u-txt-prim {
	color: var(--color-prim) !important;
}

.u-txt-seco {
	color: var(--color-seco) !important;
}

.u-txt-default {
	color: var(--color-txt) !important;
}

.u-txt-white {
	color: #fff !important;
}

.u-txt-red {
	color: var(--color-caution) !important;
}

.u-txt-caution {
	color: var(--color-caution) !important;
}

.u-tel {
	color: var(--color-txt) !important;
	text-decoration: none !important;
	cursor: default;
}

.u-mail {
	color: var(--color-txt) !important;
	text-decoration: none !important;
	cursor: default;
}

.u-txt-nowrap {
	white-space: nowrap;
}

/* 文中リンク */
.u-txt-link {
	text-decoration: underline;
	color: var(--color-txt-link);
}
@media (min-width: 768px), print {
	.u-txt-link {
		transition: color 0.2s;
	}
	.u-txt-link:hover {
		color: var(--color-txt-hover);
	}
}

/* 文字サイズ */
@media (min-width: 768px), print {
	.u-pc-fz-10 {
		font-size: 1rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-10 {
		font-size: 1rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-11 {
		font-size: 1.1rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-11 {
		font-size: 1.1rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-12 {
		font-size: 1.2rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-12 {
		font-size: 1.2rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-13 {
		font-size: 1.3rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-13 {
		font-size: 1.3rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-14 {
		font-size: 1.4rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-14 {
		font-size: 1.4rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-15 {
		font-size: 1.5rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-15 {
		font-size: 1.5rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-16 {
		font-size: 1.6rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-16 {
		font-size: 1.6rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-17 {
		font-size: 1.7rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-17 {
		font-size: 1.7rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-18 {
		font-size: 1.8rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-18 {
		font-size: 1.8rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-19 {
		font-size: 1.9rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-19 {
		font-size: 1.9rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-20 {
		font-size: 2rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-20 {
		font-size: 2rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-21 {
		font-size: 2.1rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-21 {
		font-size: 2.1rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-22 {
		font-size: 2.2rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-22 {
		font-size: 2.2rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-23 {
		font-size: 2.3rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-23 {
		font-size: 2.3rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-24 {
		font-size: 2.4rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-24 {
		font-size: 2.4rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-25 {
		font-size: 2.5rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-25 {
		font-size: 2.5rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-26 {
		font-size: 2.6rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-26 {
		font-size: 2.6rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-27 {
		font-size: 2.7rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-27 {
		font-size: 2.7rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-28 {
		font-size: 2.8rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-28 {
		font-size: 2.8rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-29 {
		font-size: 2.9rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-29 {
		font-size: 2.9rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-30 {
		font-size: 3rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-30 {
		font-size: 3rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-31 {
		font-size: 3.1rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-31 {
		font-size: 3.1rem !important;
	}
}
@media (min-width: 768px), print {
	.u-pc-fz-32 {
		font-size: 3.2rem !important;
	}
}
@media (max-width: 767px) {
	.u-sp-fz-32 {
		font-size: 3.2rem !important;
	}
}
/*----------
	table
----------*/
@media (max-width: 767px) {
	.u-table-sp-block {
		display: block;
	}
	.u-table-sp-block th,
	.u-table-sp-block td,
	.u-table-sp-block tr,
	.u-table-sp-block thead,
	.u-table-sp-block tbody,
	.u-table-sp-block tfoot {
		display: block;
	}
	.u-table-sp-block tr:not(:first-child) {
		margin-top: 10px;
	}
}

.u-cell-50pct {
	width: 50%;
}

.u-cell-33pct {
	width: 33.33%;
}

.u-cell-25pct {
	width: 25%;
}

.u-cell-20pct {
	width: 20%;
}

.u-cell-50 {
	width: 50px;
}

.u-cell-55 {
	width: 55px;
}

.u-cell-60 {
	width: 60px;
}

.u-cell-65 {
	width: 65px;
}

.u-cell-70 {
	width: 70px;
}

.u-cell-75 {
	width: 75px;
}

.u-cell-80 {
	width: 80px;
}

.u-cell-85 {
	width: 85px;
}

.u-cell-90 {
	width: 90px;
}

.u-cell-95 {
	width: 95px;
}

.u-cell-100 {
	width: 100px;
}

.u-cell-105 {
	width: 105px;
}

.u-cell-110 {
	width: 110px;
}

.u-cell-115 {
	width: 115px;
}

.u-cell-120 {
	width: 120px;
}

.u-cell-125 {
	width: 125px;
}

.u-cell-130 {
	width: 130px;
}

.u-cell-135 {
	width: 135px;
}

.u-cell-140 {
	width: 140px;
}

.u-cell-145 {
	width: 145px;
}

.u-cell-150 {
	width: 150px;
}

.u-cell-155 {
	width: 155px;
}

.u-cell-160 {
	width: 160px;
}

.u-cell-165 {
	width: 165px;
}

.u-cell-170 {
	width: 170px;
}

.u-cell-175 {
	width: 175px;
}

.u-cell-180 {
	width: 180px;
}

.u-cell-185 {
	width: 185px;
}

.u-cell-190 {
	width: 190px;
}

.u-cell-195 {
	width: 195px;
}

.u-cell-200 {
	width: 200px;
}

.u-cell-205 {
	width: 205px;
}

.u-cell-210 {
	width: 210px;
}

.u-cell-215 {
	width: 215px;
}

.u-cell-220 {
	width: 220px;
}

.u-cell-225 {
	width: 225px;
}

.u-cell-230 {
	width: 230px;
}

.u-cell-235 {
	width: 235px;
}

.u-cell-240 {
	width: 240px;
}

.u-cell-245 {
	width: 245px;
}

.u-cell-250 {
	width: 250px;
}

.u-cell-255 {
	width: 255px;
}

.u-cell-260 {
	width: 260px;
}

.u-cell-265 {
	width: 265px;
}

.u-cell-270 {
	width: 270px;
}

.u-cell-275 {
	width: 275px;
}

.u-cell-280 {
	width: 280px;
}

.u-cell-285 {
	width: 285px;
}

.u-cell-290 {
	width: 290px;
}

.u-cell-295 {
	width: 295px;
}

.u-cell-300 {
	width: 300px;
}

.u-cell-305 {
	width: 305px;
}

.u-cell-310 {
	width: 310px;
}

.u-cell-315 {
	width: 315px;
}

.u-cell-320 {
	width: 320px;
}

.u-cell-325 {
	width: 325px;
}

.u-cell-330 {
	width: 330px;
}

.u-cell-335 {
	width: 335px;
}

.u-cell-340 {
	width: 340px;
}

.u-cell-345 {
	width: 345px;
}

.u-cell-350 {
	width: 350px;
}

.u-cell-355 {
	width: 355px;
}

.u-cell-360 {
	width: 360px;
}

.u-cell-365 {
	width: 365px;
}

.u-cell-370 {
	width: 370px;
}

.u-cell-375 {
	width: 375px;
}

.u-cell-380 {
	width: 380px;
}

.u-cell-385 {
	width: 385px;
}

.u-cell-390 {
	width: 390px;
}

.u-cell-395 {
	width: 395px;
}

.u-cell-400 {
	width: 400px;
}

.u-cell-405 {
	width: 405px;
}

.u-cell-410 {
	width: 410px;
}

.u-cell-415 {
	width: 415px;
}

.u-cell-420 {
	width: 420px;
}

/*----------
	icon
----------*/
.icon-pdf::before {
	color: var(--color-caution);
}

.u-anime-arrow-b {
	content: "";
	display: inline-block;
	vertical-align: middle;
	color: var(--color-prim);
	line-height: 1;
	position: relative;
	width: 2px;
	height: 1em;
	background: currentColor;
}
.u-anime-arrow-b::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -0.06em;
	width: 0.7em;
	height: 0.7em;
	border: 2px solid currentColor;
	border-top: 0;
	border-right: 0;
	transform: rotate(-45deg);
	transform-origin: bottom left;
	box-sizing: border-box;
}
@media (min-width: 768px), print {
	.u-anime-arrow-b {
		transition: height 0.2s, top 0.2s;
	}
	a:hover .u-anime-arrow-b {
		height: 1.625em;
	}
}

.u-anime-arrow-r {
	position: relative;
	display: inline-block;
	width: 1em;
	height: 2px;
	background: currentColor;
	border-radius: 0;
	color: var(--color-prim);
	line-height: 1;
	vertical-align: middle;
}
.u-anime-arrow-r::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -0.1em;
	width: 0.7em;
	height: 0.7em;
	border: 2px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	transform-origin: top right;
	box-sizing: border-box;
}
@media (min-width: 768px), print {
	.u-anime-arrow-r {
		transition: width 0.2s, right 0.2s;
	}
	a:hover .u-anime-arrow-r {
		width: 1.625em;
	}
}

/* base */
html {
	font-size: 62.5% !important;
}

body {
	padding-top: 60px !important;
}
@media (min-width: 768px), print {
	body {
		min-width: 1240px;
		padding-top: 110px !important;
	}
}

footer a:hover {
	opacity: 1;
}

header#mainheader,
footer#mainfooter {
	line-height: var(--line-height-l);
	font-family: var(--font-sans) !important;
	font-feature-settings: normal;
	font-kerning: normal;
	font-optical-sizing: auto;
	font-size-adjust: none;
	font-stretch: normal;
	font-variant-alternates: normal;
	font-variant-caps: normal;
	font-variant-east-asian: normal;
	font-variant-ligatures: normal;
	font-variant-numeric: normal;
	font-variant-position: normal;
	font-variation-settings: normal;
	letter-spacing: 0;
	color: var(--color-txt);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
@media (min-width: 768px), print {
	header#mainheader,
	footer#mainfooter {
		min-width: 0;
	}
}

/* parts */
.top_breadcrumbs {
	border-top: none !important;
}
/*# sourceMappingURL=layout.css.map */
