@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@400&family=Inter:wght@400;600;700;800&display=swap);
/* Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	font-weight: inherit;
	font-size: inherit;
	font-style: inherit;
	-webkit-tap-highlight-color: transparent;
}

article,
aside,
details,
figcaption,
figure,
picture,
main,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ul,
ol {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

button {
	font-family: inherit;
}

/*----------
	vars
----------*/
:root {
	/* color */
	--color-prim: #222222;
	--color-seco1: #1E2380;
	--color-seco2: #00873B;
	--color-txt: #222222;
	--color-txt-caption: #7E7E7E;
	--color-txt-link: #222222;
	--color-txt-hover: #222222;
	--color-border: #E2E2E2;
	--color-border2: #E9E9E9;
	--color-bg: #F5F5F5;
	--color-caution: #DE5252;
	--color-red: #E6002D;
	--color-prim-rgb: 34, 34, 34;
	--color-seco1-rgb: 30, 35, 128;
	--color-seco2-rgb: 0, 135, 59;
	--color-txt-rgb: 34, 34, 34;
	--color-txt-caption-rgb: 126, 126, 126;
	--color-txt-link-rgb: 34, 34, 34;
	--color-txt-hover-rgb: 34, 34, 34;
	--color-border-rgb: 226, 226, 226;
	--color-border-rgb: 233, 233, 233;
	--color-bg-rgb: 245, 245, 245;
	--color-caution-rgb: 222, 82, 82;
	--color-red-rgb: 230, 0, 45;
	/* font family */
	--font-sans: "Noto Sans JP", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Hiragino Sans, "メイリオ", Meiryo, sans-serif;
	--font-serif: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	/* line height */
	--line-height-s: 1.4;
	--line-height-m: 1.6;
	--line-height-l: 1.8;
	/* icons */
	--icon-plus: "";
	--icon-arrow2-l: "";
	--icon-arrow2-r: "";
	--icon-arrow2-t: "";
	--icon-arrow2-b: "";
	--icon-blank: "";
	--icon-pdf: "";
	--icon-access: "";
	--icon-mail: "";
	--icon-tel: "";
	--icon-tel2: "";
	--icon-arrow1-r: "";
	--icon-arrow1-l: "";
	--icon-arrow1-t: "";
	--icon-arrow1-b: "";
	--icon-stop: "";
	--icon-minus: "";
	--icon-play: "";
}

/*----------
	base
----------*/
html {
	width: 100%;
	font-size: 62.5%;
	background-color: #fff;
	scroll-padding-top: 80px;
}
html.is-locked {
	position: absolute;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	html {
		scroll-padding-top: 56px;
	}
}

body {
	font-size: 1.6rem;
	line-height: var(--line-height-l);
	font-family: var(--font-sans);
	letter-spacing: 0;
	color: var(--color-txt);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}
@media print {
	body {
		min-width: 1240px;
		zoom: 0.8;
	}
}

a {
	text-decoration: none;
	color: var(--color-txt);
}
@media (min-width: 768px), print {
	a:hover {
		text-decoration: none;
	}
}

img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

sup {
	vertical-align: top;
	font-size: 0.7em;
}

sub {
	vertical-align: baseline;
	font-size: 0.7em;
}

input[type=text],
textarea,
select {
	font-family: inherit;
	font-size: 1.6rem;
}

/*----------
	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;
	width: 100%;
	height: 56px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #ffffff;
}
.l-mainheader::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 56px;
	background-color: #ffffff;
	z-index: 110;
}
.l-mainheader a {
	display: block;
	color: var(--color-txt);
}
.l-mainheader__logo {
	position: relative;
	z-index: 110;
	width: 122px;
	padding: 18px 0 0 20px;
}
.l-mainheader__logo img {
	width: 100%;
}
.l-mainheader__menu-btn {
	position: relative;
	z-index: 110;
	display: block;
	width: 56px;
	height: 56px;
	cursor: pointer;
	background-color: var(--color-prim);
}
.l-mainheader__menu-btn::before, .l-mainheader__menu-btn::after,
.l-mainheader__menu-btn > span {
	content: "";
	position: absolute;
	top: 0;
	left: 16px;
	display: block;
	width: 24px;
	height: 2px;
	background-color: #ffffff;
	transition: transform 0.2s, opacity 0.1s;
}
.l-mainheader__menu-btn::before {
	top: 20px;
}
.l-mainheader__menu-btn::after {
	top: 34px;
}
.l-mainheader__menu-btn > span {
	top: 27px;
}
.l-mainheader__menu-btn.is-open::before {
	transform: translateY(7px) rotate(45deg);
}
.l-mainheader__menu-btn.is-open::after {
	transform: translateY(-7px) rotate(-45deg);
}
.l-mainheader__menu-btn.is-open > span {
	opacity: 0;
}
@media (min-width: 768px), print {
	.l-mainheader {
		min-width: 1240px;
		height: 80px;
	}
	.l-mainheader::before {
		display: none;
	}
	.l-mainheader__logo {
		position: static;
		width: 190px;
		padding: 26px 0 0 40px;
	}
	.l-mainheader__menu-btn {
		display: none;
	}
}

/*----------
	main nav
----------*/
.l-mainnav {
	display: none;
}
@media screen and (max-width: 767px) {
	.l-mainnav {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 100;
		display: block;
		width: 100%;
		height: 0;
		overflow-y: auto;
		scroll-behavior: smooth;
		padding-top: 56px;
		visibility: hidden;
		opacity: 0;
		transition: opacity 0.2s, visibility 0.2s;
	}
	.l-mainnav.is-hamburger-menu-open {
		visibility: visible;
		opacity: 1;
		height: 100%;
	}
	.l-mainnav.is-hamburger-menu-open::before {
		content: "";
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 200px;
		background-color: #ffffff;
		pointer-events: none;
	}
	.l-mainnav__inner {
		overflow: hidden;
		position: relative;
		z-index: 100;
		padding: 20px 20px 42px;
		background-color: var(--color-bg);
	}
	.l-mainnav__inner::before {
		content: "";
		position: absolute;
		right: calc(50% - 195px);
		top: 0;
		z-index: -1;
		display: block;
		width: 598px;
		height: 100%;
		background: url(/assets/images/bg_single_slash_slim_long.svg) no-repeat right top/598px auto;
	}
	.l-mainnav__gnav {
		margin-bottom: 22px;
		background-color: #ffffff;
	}
	.l-mainnav__gnav a {
		position: relative;
		display: flex;
		align-items: center;
		min-height: 73px;
		padding: 20px 65px 20px 20px;
		border-bottom: solid 1px #e5e5e6;
		font-size: 1.8rem;
		font-weight: 500;
	}
	.l-mainnav__gnav a::after {
		font-family: iconfont !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: "\e902";
		position: absolute;
		right: 20px;
		top: calc(50% - 14px);
		display: block;
		width: 28px;
		height: 28px;
		border: solid 1px var(--color-prim);
		font-size: 1rem;
		line-height: 26px;
		text-align: center;
	}
	.l-mainnav__gnav a[target=_blank]::after {
		content: "\e905";
	}
	.l-mainnav__gnav a[href$=".pdf"]::after {
		content: "\e906";
	}
	.l-mainnav__child-btn > a {
		background-color: #ffffff;
		transition: background-color 0.2s;
	}
	.l-mainnav__child-btn > a::before {
		content: "";
		position: absolute;
		right: 20px;
		top: calc(50% - 14px);
		display: block;
		width: 28px;
		height: 28px;
		border: solid 1px var(--color-prim);
	}
	.l-mainnav__child-btn > a::after {
		content: "\e900";
		right: 29px;
		top: calc(50% - 5px);
		width: 1rem;
		height: 1rem;
		border: none;
		line-height: 1;
		transition: transform 0.3s ease;
		transform: rotate(-90deg);
	}
	.l-mainnav__child-btn.is-toggle-open {
		padding-bottom: 30px;
	}
	.l-mainnav__child-btn.is-toggle-open > a {
		background-color: #EEEEEE;
		border-bottom: none;
	}
	.l-mainnav__child-btn.is-toggle-open > a::after {
		content: "\e910";
		transform: rotate(0deg);
	}
	.l-mainnav__child-menu {
		overflow: hidden;
		padding: 0 20px;
		visibility: hidden;
		opacity: 0;
		height: 0;
		transition: opacity 0s, visibility 0s;
	}
	.l-mainnav__main-menu .is-toggle-open .l-mainnav__child-menu {
		padding-top: 20px;
		visibility: visible;
		opacity: 1;
		height: auto;
		transition: opacity 0.4s, visibility 0.4s;
	}
	.l-mainnav__child-menu a {
		font-size: 1.6rem;
		padding-right: 40px;
		padding-left: 0;
	}
	.l-mainnav__child-menu a::after {
		right: 0;
	}
	.l-mainnav__child-menu-group a {
		padding-right: 54px;
		padding-left: 20px;
	}
	.l-mainnav__child-menu-group a::after {
		right: 20px;
	}
	.l-mainnav__lang-switch {
		font-family: Inter, var(--font-sans);
	}
	.l-mainnav__lang-switch > ul {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.l-mainnav__lang-switch > ul > li {
		position: relative;
		font-size: 2.5rem;
		font-weight: 800;
		line-height: 1.2;
	}
	.l-mainnav__lang-switch > ul > li:first-child {
		margin-right: 16px;
		padding-right: 16px;
	}
	.l-mainnav__lang-switch > ul > li:first-child::before {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		width: 1px;
		height: 32px;
		background-color: #D5D5D5;
		transform: translateY(-50%);
	}
	.l-mainnav__lang-switch > ul > li a {
		color: #B5B5B5;
	}
}
@media (min-width: 768px), print {
	.l-mainnav {
		display: block;
	}
	.l-mainnav__inner {
		flex: 1;
		display: flex;
		height: 100%;
	}
	.l-mainnav__gnav {
		flex: 1;
		display: flex;
		justify-content: flex-end;
	}
	.l-mainnav__gnav .l-mainnav__main-menu > li > a,
	.l-mainnav__gnav .l-mainnav__sub-menu > li > a {
		position: relative;
	}
	.l-mainnav__gnav .l-mainnav__main-menu > li > a::before,
	.l-mainnav__gnav .l-mainnav__sub-menu > li > a::before {
		content: "";
		visibility: hidden;
		opacity: 0;
		display: block;
		position: absolute;
		bottom: 21px;
		width: calc(100% - 24px);
		height: 2px;
		background-color: var(--color-prim);
		transition: opacity 0.2s, visibility 0.2s;
	}
	.l-mainnav__gnav .l-mainnav__main-menu > li > a::after,
	.l-mainnav__gnav .l-mainnav__sub-menu > li > a::after {
		font-family: iconfont !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		width: 1.2rem;
		height: 1.2rem;
		display: none;
		margin-left: 4px;
		font-size: 1.2rem;
	}
	.l-mainnav__gnav .l-mainnav__main-menu > li > a[target=_blank]::after,
	.l-mainnav__gnav .l-mainnav__sub-menu > li > a[target=_blank]::after {
		content: "\e905";
		display: inline-block;
	}
	.l-mainnav__gnav .l-mainnav__main-menu > li > a[href$=".pdf"]::after,
	.l-mainnav__gnav .l-mainnav__sub-menu > li > a[href$=".pdf"]::after {
		content: "\e906";
		display: inline-block;
	}
	.l-mainnav__gnav .l-mainnav__main-menu > li > a.is-current::before, .l-mainnav__gnav .l-mainnav__main-menu > li > a:hover::before,
	.l-mainnav__gnav .l-mainnav__sub-menu > li > a.is-current::before,
	.l-mainnav__gnav .l-mainnav__sub-menu > li > a:hover::before {
		visibility: visible;
		opacity: 1;
		transition: opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.4s;
	}
	.l-mainnav__gnav .l-mainnav__sub-menu > li > a::before {
		width: calc(100% - 10px);
	}
	.l-mainnav__child-btn.is-open::before {
		content: "";
		position: absolute;
		z-index: 2;
		transform: translate(68px, 55px) rotate(45deg);
		width: 0;
		height: 0;
		border-left: 30px solid transparent;
		border-right: 30px solid transparent;
		border-top: 30px solid rgba(255, 255, 255, 0);
	}
	.l-mainnav__child-btn.is-open::after {
		content: "";
		position: absolute;
		z-index: 2;
		transform: translate(-39px, -25px) rotate(-45deg);
		width: 0;
		height: 0;
		border-left: 30px solid transparent;
		border-right: 30px solid transparent;
		border-top: 30px solid rgba(255, 255, 255, 0);
	}
	.l-mainnav__main-menu {
		display: flex;
		align-items: center;
	}
	.l-mainnav__main-menu > li {
		height: 100%;
		font-weight: 500;
	}
	.l-mainnav__main-menu > li > a {
		display: flex;
		align-items: center;
		height: 100%;
		padding: 10px 12px;
	}
	.l-mainnav__child-menu {
		position: absolute;
		left: calc(50% - 600px);
		top: 80px;
		width: 1200px;
		background-color: #ffffff;
		padding: 50px 0 40px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.2s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.2s;
	}
	.is-mega-menu-open .l-mainnav__child-menu {
		transition: none;
	}
	.l-mainnav__main-menu .is-open .l-mainnav__child-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	.l-mainnav__child-menu::before {
		content: "";
		position: absolute;
		left: calc(50% - 50vw);
		top: 0;
		display: block;
		width: 100vw;
		min-width: 1240px;
		height: 100%;
		background-color: var(--color-bg);
	}
}
@media (min-width: 768px) and (max-width: 1239px), print and (max-width: 1239px) {
	.l-mainnav__child-menu::before {
		left: -20px;
	}
}
@media (min-width: 768px), print {
	.l-mainnav__child-menu::after {
		content: "";
		position: absolute;
		right: calc(50% - 670px);
		top: 0;
		display: block;
		width: 500px;
		height: 100%;
		max-height: 514px;
		background: url(/assets/images/bg_single_slash.svg) no-repeat right top/500px auto;
	}
	.l-mainnav__child-menu-top {
		margin-bottom: 21px;
		font-size: 2.4rem;
		font-weight: bold;
		line-height: 1.25;
	}
	.l-mainnav__child-menu-top > a {
		position: relative;
		display: inline-block;
		padding-right: 48px;
	}
	.l-mainnav__child-menu-top > a::after {
		font-family: iconfont !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: "\e902";
		position: absolute;
		right: 0;
		top: 1px;
		display: block;
		width: 32px;
		height: 32px;
		border: solid 1px var(--color-prim);
		font-size: 1.2rem;
		line-height: 30px;
		text-align: center;
	}
	.l-mainnav__child-menu-top > a:hover {
		text-decoration: underline;
	}
	.l-mainnav__child-menu-top > a:hover::after {
		background-color: var(--color-prim);
		color: #ffffff;
	}
	.l-mainnav__child-menu-detail {
		position: relative;
		z-index: 1;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 50px 80px;
		background-color: #ffffff;
	}
	.l-mainnav__child-menu-detail--service {
		display: block;
		padding: 44px 60px;
	}
	.l-mainnav__child-menu-detail--service .l-mainnav__child-menu-item a {
		padding: 0 0 26px;
	}
	.l-mainnav__child-menu-detail--service .l-mainnav__child-menu-item a::after {
		width: 24px;
		height: 24px;
		font-size: 0.9rem;
		line-height: 22px;
	}
	.l-mainnav__child-menu-item {
		font-size: 1.6rem;
		font-weight: 500;
		line-height: var(--line-height-m);
	}
	.l-mainnav__child-menu-item a {
		position: relative;
		display: block;
		height: 100%;
		padding: 0 48px 29px 0;
		border-bottom: solid 1px #d2d2d2;
	}
	.l-mainnav__child-menu-item a::after {
		font-family: iconfont !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		content: "\e902";
		position: absolute;
		right: 0;
		top: 1px;
		display: block;
		width: 32px;
		height: 32px;
		border: solid 1px var(--color-prim);
		font-size: 1.2rem;
		line-height: 30px;
		text-align: center;
	}
	.l-mainnav__child-menu-item a:hover {
		border-color: var(--color-prim);
		text-decoration: underline;
	}
	.l-mainnav__child-menu-item a:hover::after {
		background-color: var(--color-prim);
		color: #ffffff;
	}
	.l-mainnav__child-menu-3col {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}
	.l-mainnav__child-menu-3col > li {
		width: 300px;
	}
	.l-mainnav__child-menu-3col > li:nth-child(n+4) {
		margin-top: 40px;
	}
	.l-mainnav__child-menu-3col > li:nth-child(3n-1), .l-mainnav__child-menu-3col > li:nth-child(3n-2) {
		margin-right: 70px;
	}
	.l-mainnav__child-menu-2col {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 670px;
	}
	.l-mainnav__child-menu-2col > li {
		width: 300px;
	}
	.l-mainnav__child-menu-2col > li:nth-child(n+3) {
		margin-top: 40px;
	}
	.l-mainnav__child-menu-1col {
		width: 300px;
	}
	.l-mainnav__child-menu-service1 {
		text-align: center;
	}
	.l-mainnav__child-menu-service1 .l-mainnav__child-menu-item a::after {
		position: static;
		display: inline-block;
		margin-left: 20px;
	}
	.l-mainnav__child-menu-service1 > .l-mainnav__child-menu-item a {
		padding-bottom: 20px;
	}
	.l-mainnav__child-menu-service2 {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		margin-top: 20px;
	}
	.l-mainnav__child-menu-service2 .l-mainnav__child-menu-item {
		width: calc(50% - 20px);
		margin-top: 40px;
	}
	.l-mainnav__child-menu-group {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		margin-top: 35px;
	}
	.l-mainnav__child-menu-group .l-mainnav__child-menu-item {
		width: calc(50% - 2px);
	}
	.l-mainnav__sub-menu {
		display: flex;
		align-items: center;
	}
	.l-mainnav__sub-menu > li {
		height: 100%;
		font-size: 1.4rem;
	}
	.l-mainnav__sub-menu > li > a {
		display: flex;
		align-items: center;
		height: 100%;
		padding: 10px 5px;
	}
	.l-mainnav__lang-switch {
		width: 133px;
		padding: 0 40px 0 30px;
		font-family: Inter, var(--font-sans);
	}
	.l-mainnav__lang-switch > ul {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
	}
	.l-mainnav__lang-switch > ul > li {
		position: relative;
		font-size: 1.8rem;
		font-weight: 800;
	}
	.l-mainnav__lang-switch > ul > li:first-child {
		margin-right: 10px;
		padding-right: 10px;
	}
	.l-mainnav__lang-switch > ul > li:first-child::before {
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		width: 1px;
		height: 22px;
		background-color: #D5D5D5;
		transform: translateY(-50%);
	}
	.l-mainnav__lang-switch > ul > li a {
		color: #B5B5B5;
		transition: color 0.2s;
	}
	.l-mainnav__lang-switch > ul > li a:hover {
		color: var(--color-txt);
	}
}

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

.l-mainfooter {
	position: relative;
	border-top: solid 1px #D7D8DE;
}
.l-mainfooter::before {
	content: "";
	position: absolute;
	right: 0;
	top: -1px;
	z-index: 1;
	display: block;
	width: 108px;
	height: 72px;
	background: url(/assets/images/bg_shape.svg) no-repeat left bottom/108px auto;
}
.l-mainfooter__inner {
	padding: 58px 20px 24px;
}
.l-mainfooter__logo {
	display: none;
}
.l-mainfooter__nav {
	margin-bottom: 17px;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 2;
}
.l-mainfooter__nav a {
	display: inline-block;
}
.l-mainfooter__nav a::after {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	display: none;
	width: 1em;
	height: 1em;
	margin-left: 8px;
}
.l-mainfooter__nav a[target=_blank]::after {
	display: inline-block;
	content: "\e905";
}
.l-mainfooter__nav a[href$=".pdf"]::after {
	display: inline-block;
	content: "\e906";
}
.l-mainfooter__nav-section > li > a {
	padding: 8px 0;
}
.l-mainfooter__nav-toggle > a {
	position: relative;
}
.l-mainfooter__nav-toggle > a::after {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: "\e900";
	width: 1.2rem;
	height: 1.2rem;
	display: inline-block;
	margin-left: 8px;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
	transform: rotate(-90deg);
}
.l-mainfooter__nav-toggle.is-toggle-open > a::after {
	content: "\e910";
	transform: rotate(0deg);
}
.l-mainfooter__nav-lv3 {
	visibility: hidden;
	opacity: 0;
	height: 0;
	padding-bottom: 8px;
	transition: opacity 0s, visibility 0s;
}
.is-toggle-open .l-mainfooter__nav-lv3 {
	visibility: visible;
	opacity: 1;
	height: auto;
	transition: opacity 0.6s ease-out, visibility 0.6s;
}
.l-mainfooter__nav-lv3 > li {
	margin-left: 1em;
	font-size: 1.2rem;
}
.l-mainfooter__nav-lv3 > li > a {
	padding: 2px 0;
}
.l-mainfooter__nav-lv4 {
	padding-bottom: 2px;
}
.l-mainfooter__nav-lv4 > li {
	margin-left: 2em;
	font-weight: 500;
}
.l-mainfooter__nav-lv4 > li > a {
	padding: 1px 0;
}
.l-mainfooter__nav-sub {
	margin-bottom: 40px;
	font-size: 1.2rem;
	line-height: 2;
}
.l-mainfooter__nav-sub li a {
	display: inline-block;
	padding: 3px 0;
	color: #7E7E7E;
}
.l-mainfooter__nav-sub li a::after {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	width: 1.4rem;
	height: 1.4rem;
	display: none;
	margin-left: 3px;
	font-size: 1.4rem;
}
.l-mainfooter__nav-sub li a[target=_blank]::after {
	content: "\e905";
	display: inline-block;
}
.l-mainfooter__nav-sub li a[href$=".pdf"]::after {
	content: "\e906";
	display: inline-block;
}
.l-mainfooter__copy {
	font-size: 1.2rem;
	color: #868686;
}
@media (min-width: 768px), print {
	.l-mainfooter::before {
		right: calc(50% + 504px);
		top: auto;
		bottom: 0;
		width: 216px;
		height: 144px;
		background: url(/assets/images/bg_shape.svg) no-repeat left top/216px auto;
	}
	.l-mainfooter__inner {
		width: 100%;
		max-width: 1120px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 50px;
		padding-bottom: 45px;
	}
	.l-mainfooter__logo {
		display: block;
		width: 80px;
		min-height: 74px;
		margin: 0 auto 46px;
	}
	.l-mainfooter__nav {
		display: flex;
		justify-content: space-between;
		margin-bottom: 46px;
		font-size: 1.6rem;
		line-height: 1.75;
	}
	.l-mainfooter__nav a::after {
		width: 1.4em;
		height: 1.4em;
		font-size: 1.4rem;
	}
	.l-mainfooter__nav-section {
		width: calc(33.33% - 26px);
	}
	.l-mainfooter__nav-section > li:not(:first-child) {
		margin-top: 36px;
	}
	.l-mainfooter__nav-section > li > a {
		display: block;
		padding: 0 0 3px;
		border-bottom: solid 1px #d2d2d2;
		transition: border-color 0.2s;
	}
	.l-mainfooter__nav-section > li > a:hover {
		border-color: var(--color-prim);
	}
	.l-mainfooter__nav-toggle > a::after {
		display: none;
	}
	.l-mainfooter__nav-lv3 {
		visibility: visible;
		opacity: 1;
		height: auto;
		margin-top: 22px;
		padding-bottom: 0;
		transition: none;
	}
	.l-mainfooter__nav-lv3 > li {
		margin-left: 0;
		font-size: 1.4rem;
	}
	.l-mainfooter__nav-lv3 > li:not(:first-child) {
		margin-top: 14px;
	}
	.l-mainfooter__nav-lv3 > li > a {
		padding: 0;
		transition: box-shadow 0.2s;
	}
	.l-mainfooter__nav-lv3 > li > a:hover {
		box-shadow: 0 1px 0 0 var(--color-txt);
	}
	.l-mainfooter__nav-lv4 {
		margin-top: 12px;
		padding-bottom: 0;
	}
	.l-mainfooter__nav-lv4 > li {
		margin-left: 1em;
		font-size: 1.2rem;
	}
	.l-mainfooter__nav-lv4 > li:not(:first-child) {
		margin-top: 5px;
	}
	.l-mainfooter__nav-lv4 > li > a {
		padding: 0;
		transition: box-shadow 0.2s;
	}
	.l-mainfooter__nav-lv4 > li > a:hover {
		box-shadow: 0 1px 0 0 var(--color-txt);
	}
	.l-mainfooter__nav-sub {
		margin-bottom: 128px;
	}
	.l-mainfooter__nav-sub ul {
		display: flex;
		justify-content: center;
		line-height: var(--line-height-m);
	}
	.l-mainfooter__nav-sub li {
		position: relative;
	}
	.l-mainfooter__nav-sub li:not(:last-child) {
		padding-right: 21px;
	}
	.l-mainfooter__nav-sub li:not(:last-child)::before {
		content: "";
		position: absolute;
		right: 10px;
		top: 2px;
		display: block;
		width: 1px;
		height: 17px;
		background-color: #CCCCCC;
	}
	.l-mainfooter__nav-sub li a {
		padding: 0;
		transition: box-shadow 0.2s;
	}
	.l-mainfooter__nav-sub li a:hover {
		box-shadow: 0 1px 0 0 #7E7E7E;
	}
	.l-mainfooter__copy {
		text-align: center;
	}
}

/*----------
	side nav
----------*/
.l-sidenav {
	position: relative;
	z-index: 1;
	margin-bottom: 50px;
}
.l-sidenav__items {
	display: flex;
	flex-wrap: wrap;
}
.l-sidenav__item {
	width: calc(50% - 1px);
	margin-bottom: 1px;
	background-color: #ffffff;
	border-top: solid 1px var(--color-prim);
	line-height: var(--line-height-l);
}
.l-sidenav__item:nth-child(odd) {
	margin-right: 1px;
}
.l-sidenav__item:nth-child(even) {
	margin-left: 1px;
}
.l-sidenav__item-inner {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	height: 100%;
	min-height: 64px;
	padding: 19px 40px 19px 20px;
	font-size: 1.4rem;
	color: var(--color-txt);
}
.l-sidenav__item-inner::before {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: "\e904";
	position: absolute;
	right: 20px;
	top: 50%;
	display: block;
	width: 14px;
	height: 14px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 14px;
	transform: translateY(-50%);
}
@media (min-width: 768px), print {
	.l-sidenav {
		position: sticky;
		top: 80px;
		margin-bottom: 0;
	}
	.l-sidenav__items {
		display: block;
		border-top: solid 1px var(--color-prim);
	}
	.l-sidenav__item {
		width: 100%;
		margin-bottom: 0;
		border-top: none;
		border-bottom: solid 1px var(--color-border);
	}
	.l-sidenav__item:nth-child(odd) {
		margin-right: 0;
	}
	.l-sidenav__item:nth-child(even) {
		margin-left: 0;
	}
	.l-sidenav__item-inner {
		min-height: 84px;
		padding: 28px 45px 28px 16px;
		font-size: 1.6rem;
	}
	.l-sidenav__item-inner::before {
		right: 15px;
		width: 16px;
		height: 16px;
		font-size: 1.6rem;
		line-height: 16px;
	}
	.l-sidenav__item-inner[href]:hover {
		text-decoration: underline;
	}
}

/*----------
	main content
----------*/
.l-content {
	width: 100%;
	position: relative;
	padding-top: 56px;
}
@media (min-width: 768px), print {
	.l-content {
		min-width: 1240px;
		padding-top: 80px;
	}
}

.l-structure .l-structure__main {
	margin-bottom: 100px;
}
.l-structure--double {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
.l-structure--double .l-structure__side {
	position: relative;
	margin-left: -20px;
	margin-right: -20px;
	background-color: var(--color-bg);
}
.l-structure--double .l-structure__side::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 50vw;
	height: 100%;
	background-color: var(--color-bg);
}
@media (min-width: 768px), print {
	.l-structure .l-structure__main {
		margin-bottom: 150px;
	}
	.l-structure--double {
		display: flex;
		padding-right: 0;
		padding-left: 0;
	}
	.l-structure--double .l-structure__main {
		flex: 1;
	}
	.l-structure--double .l-structure__side {
		width: 230px;
		margin: 0 70px 0 0;
	}
}
@media print {
	.l-structure .l-structure__side {
		display: none;
	}
}

.l-section {
	width: 100%;
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
.l-section:first-child > *:first-child {
	margin-top: 0;
}
.l-section--gapless {
	padding-left: 0;
	padding-right: 0;
}
.l-section--1200 {
	max-width: 1240px;
}
@media print {
	.l-section {
		max-width: none;
	}
}

.l-main {
	width: 100%;
	overflow: hidden;
}

.l-title-container {
	margin-bottom: 50px;
	padding: 55px 0 20px;
	border-bottom: solid 1px #D7D8DE;
}
.l-title-container__inner {
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
.l-title-container__breadcrumb {
	margin-bottom: 35px;
}
.l-title-container--visual {
	margin-bottom: 73px;
	padding-bottom: 0;
	border-bottom: 0;
}
.l-title-container--visual .l-title-container__visual {
	position: relative;
	width: auto;
	height: 128px;
	margin: 25px -20px 0;
}
.l-title-container--visual .l-title-container__visual img {
	position: absolute;
	left: 0;
	top: 0;
	width: calc(100% - 20px);
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.l-title-container--visual .l-title-container__visual::before {
	content: "";
	position: absolute;
	right: 20px;
	bottom: -33px;
	z-index: 1;
	display: block;
	width: 100px;
	height: 100px;
	background: url(/assets/images/bg_shape.svg) no-repeat 0 0/cover;
}
.l-title-container--visual .l-title-container__visual::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	display: block;
	width: 124px;
	height: 128px;
	background: url(/assets/images/bg_single_slash.svg) no-repeat 0 0/auto 128px;
}
@media (min-width: 768px), print {
	.l-title-container {
		margin-bottom: 80px;
		padding: 60px 0 30px;
	}
	.l-title-container__breadcrumb {
		margin-bottom: 28px;
	}
	.l-title-container--visual {
		margin-bottom: 128px;
		padding-bottom: 0;
		border-bottom: 0;
	}
	.l-title-container--visual .l-title-container__visual {
		width: 100%;
		height: 300px;
		margin: 30px 0 0;
	}
	.l-title-container--visual .l-title-container__visual img {
		left: calc(-1 * (100vw - 1200px) / 2);
		top: auto;
		width: calc(100vw - 120px);
		min-width: 1220px;
	}
}
@media (min-width: 768px) and (max-width: 1239px), print and (max-width: 1239px) {
	.l-title-container--visual .l-title-container__visual img {
		left: -20px;
	}
}
@media (min-width: 768px) and (max-width: 1439px), print and (max-width: 1439px) {
	.l-title-container--visual .l-title-container__visual img {
		width: calc(1200px + (100vw - 1200px) / 2);
	}
}
@media (min-width: 768px), print {
	.l-title-container--visual .l-title-container__visual::before {
		right: 0;
		bottom: -72px;
		width: 216px;
		height: 216px;
	}
	.l-title-container--visual .l-title-container__visual::after {
		left: -120px;
		width: 300px;
		height: 300px;
		background: url(/assets/images/bg_single_slash.svg) no-repeat 0 0/auto 300px;
	}
}

.l-contact-area {
	width: 100%;
	position: relative;
	overflow-x: hidden;
	background: url(/assets/images/bg_contact_sp.png) no-repeat center center/cover;
}
.l-contact-area__inner {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 350px;
}
.l-contact-area__item {
	position: relative;
	flex: 1;
	text-align: center;
}
.l-contact-area__item:nth-child(2)::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.28;
	display: block;
	width: 1px;
	height: 100%;
	background-color: #ffffff;
}
.l-contact-area__item-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding-bottom: 10px;
	color: #ffffff;
	line-height: var(--line-height-m);
}
.l-contact-area__icon {
	width: 35px;
	height: 35px;
}
.l-contact-area__icon.icon-tel2 {
	font-size: 3.15rem;
}
.l-contact-area__icon.icon-mail {
	font-size: 3.5rem;
}
.l-contact-area__title {
	font-size: 1.6rem;
	font-weight: bold;
}
.l-contact-area__text {
	margin-top: 10px;
	font-size: 1.2rem;
}
.l-contact-area__tel {
	margin-top: 3px;
	font-family: Inter, var(--font-sans);
	font-size: 1.6rem;
	font-weight: bold;
	color: #ffffff;
}
.l-contact-area__icon-link {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: block;
	width: 28px;
	height: 28px;
	border: solid 1px #ffffff;
	color: #ffffff;
	text-align: center;
}
.l-contact-area__icon-link::before {
	font-size: 1rem;
	line-height: 26px;
}
.l-contact-area a[target=_blank] .l-contact-area__icon-link::before {
	content: "\e905";
}
.l-contact-area--news {
	background: url(/assets/images/bg_contact_news_sp.png) no-repeat center center/cover;
}
.l-contact-area--news .l-contact-area__inner {
	height: 266px;
}
.l-contact-area--news .l-contact-area__item::before {
	display: none;
}
.l-contact-area--news .l-contact-area__item-link {
	padding-bottom: 0;
}
@media (min-width: 768px), print {
	.l-contact-area {
		min-width: 1240px;
		background: url(/assets/images/bg_contact.png) no-repeat center center/cover;
	}
	.l-contact-area__inner {
		height: 400px;
	}
	.l-contact-area__item-link {
		padding-bottom: 0;
	}
	.l-contact-area__item-link[href]::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		opacity: 0;
		display: block;
		width: 100%;
		height: 100%;
		background-color: #000000;
		transition: opacity 0.2s;
	}
	.l-contact-area__item-link[href]:hover::before {
		opacity: 0.6;
	}
	.l-contact-area__icon {
		position: relative;
		z-index: 1;
		width: 42px;
		height: 42px;
	}
	.l-contact-area__icon.icon-tel2 {
		font-size: 4.2rem;
	}
	.l-contact-area__icon.icon-mail {
		font-size: 4.2rem;
	}
	.l-contact-area__title {
		position: relative;
		z-index: 1;
		margin-top: 6px;
		font-size: 2rem;
	}
	.l-contact-area__text {
		position: relative;
		z-index: 1;
		font-size: 1.4rem;
	}
	.l-contact-area__tel {
		position: relative;
		z-index: 1;
		font-size: 2.4rem;
	}
	.l-contact-area__icon-link {
		right: 20px;
		bottom: 20px;
		width: 32px;
		height: 32px;
	}
	.l-contact-area__icon-link::before {
		font-size: 1.2rem;
		line-height: 30px;
	}
	.l-contact-area--news {
		background: url(/assets/images/bg_contact_news.png) no-repeat center center/cover;
	}
	.l-contact-area--news .l-contact-area__inner {
		height: 284px;
	}
	.l-contact-area--news .l-contact-area__item-link {
		position: relative;
		max-width: 720px;
		margin: 0 auto;
		padding-bottom: 0;
	}
	.l-contact-area--news .l-contact-area__item-link::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		opacity: 0.28;
		display: block;
		width: 1px;
		height: 100%;
		background-color: #ffffff;
	}
	.l-contact-area--news .l-contact-area__item-link::after {
		content: "";
		position: absolute;
		right: 0;
		top: 0;
		opacity: 0.28;
		display: block;
		width: 1px;
		height: 100%;
		background-color: #ffffff;
	}
}
@media print {
	.l-contact-area {
		display: none;
	}
}

.l-backhead {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 10;
	width: 56px;
	height: 56px;
	background-color: #A8A8A8;
	transition: opacity 0.2s, visibility 0.2s;
}
.l-backhead a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	color: #ffffff;
	transition: background-color 0.2s, color 0.2s;
}
.l-backhead i {
	font-size: 1.6rem;
}
.l-backhead.is-visible {
	visibility: visible;
	opacity: 1;
}
@media (min-width: 768px), print {
	.l-backhead {
		width: 60px;
		height: 60px;
	}
	.l-backhead a {
		width: 60px;
		height: 60px;
	}
	.l-backhead a:hover {
		background-color: var(--color-txt);
		color: #ffffff;
	}
}

/*----------
	localnav
----------*/
.l-localnav {
	overflow: hidden;
	position: relative;
	width: 100%;
	padding: 50px 0;
	background-color: var(--color-bg);
}
.l-localnav::before {
	content: "";
	position: absolute;
	left: calc(50% - 299px);
	top: 0;
	display: block;
	width: 598px;
	height: 525px;
	background: url(/assets/images/bg_single_slash_slim.svg) no-repeat center top/598px auto;
}
.l-localnav__inner {
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	position: relative;
	z-index: 1;
}
.l-localnav__detail-links {
	padding: 30px 20px;
	background-color: #ffffff;
}
.l-localnav__top {
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
}
.l-localnav__top > a {
	display: block;
	padding-right: 48px;
}
.l-localnav__top-title::after {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: "\e902";
	position: absolute;
	right: 0;
	top: 2px;
	display: block;
	width: 28px;
	height: 28px;
	border: solid 1px var(--color-prim);
	font-size: 1rem;
	line-height: 26px;
	text-align: center;
}
.l-localnav__sub-section {
	margin-top: 40px;
}
.l-localnav__title::after {
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: "\e902";
	position: absolute;
	right: 0;
	top: 1px;
	display: block;
	width: 28px;
	height: 28px;
	border: solid 1px var(--color-prim);
	font-size: 1rem;
	line-height: 26px;
	text-align: center;
}
.l-localnav__item {
	margin-top: 22px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: var(--line-height-m);
}
.l-localnav__item > a {
	position: relative;
	display: block;
	padding: 0 40px 23px 0;
	border-bottom: solid 1px #d2d2d2;
}
.l-localnav__item--1col-center {
	margin-top: 0;
	text-align: center;
}
.l-localnav__item--1col-center > a {
	padding-right: 0;
	padding-bottom: 12px;
}
.l-localnav__item--1col-center .l-localnav__title {
	display: inline-block;
}
.l-localnav__item--1col-center .l-localnav__title::after {
	position: static;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-left: 10px;
	font-size: 0.7rem;
	line-height: 18px;
	transform: translateY(-2px);
}
.l-localnav__item--2col-center > a {
	padding-right: 54px;
	padding-left: 20px;
}
.l-localnav__item--2col-center .l-localnav__title {
	display: inline-block;
}
.l-localnav__item--2col-center .l-localnav__title::after {
	right: 20px;
}
@media (min-width: 768px), print {
	.l-localnav {
		min-width: 1240px;
	}
	.l-localnav::before {
		left: calc(50% + 100px);
		top: 0;
		width: 50%;
		height: 100%;
		background: url(/assets/images/bg_single_slash.svg) no-repeat left top/contain;
	}
	.l-localnav__detail-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 43px 60px 44px;
	}
	.l-localnav__top {
		font-size: 2.4rem;
		line-height: 1.25;
	}
	.l-localnav__top > a {
		display: block;
		padding-right: 48px;
	}
	.l-localnav__top > a:hover .l-localnav__top-title {
		text-decoration: underline;
	}
	.l-localnav__top > a:hover .l-localnav__top-title::after {
		background-color: var(--color-prim);
		color: #ffffff;
	}
	.l-localnav__top-title::after {
		top: 1px;
		width: 32px;
		height: 32px;
		font-size: 1.2rem;
		line-height: 30px;
	}
	.l-localnav__sub-section {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		margin-top: 60px;
	}
	.l-localnav__sub-section > .l-localnav__item:nth-child(-n+2) {
		margin-top: 0;
	}
	.l-localnav__title::after {
		top: 1px;
		width: 24px;
		height: 24px;
		font-size: 0.9rem;
		line-height: 22px;
	}
	.l-localnav__item {
		width: calc(50% - 20px);
		margin-top: 40px;
	}
	.l-localnav__item > a {
		padding: 0 48px 26px 0;
	}
	.l-localnav__item > a:hover {
		border-color: var(--color-prim);
	}
	.l-localnav__item > a:hover .l-localnav__title {
		text-decoration: underline;
	}
	.l-localnav__item > a:hover .l-localnav__title::after {
		background-color: var(--color-prim);
		color: #ffffff;
	}
	.l-localnav__item--1col-center {
		width: 100%;
		margin-top: 0;
		font-size: 1.6rem;
	}
	.l-localnav__item--1col-center > a {
		padding-right: 0;
		padding-bottom: 17px;
	}
	.l-localnav__item--1col-center .l-localnav__title {
		display: inline-block;
	}
	.l-localnav__item--1col-center .l-localnav__title::after {
		width: 24px;
		height: 24px;
		margin-left: 20px;
		font-size: 0.9rem;
		line-height: 22px;
		transform: translateY(-2px);
	}
	.l-localnav__item--2col-center {
		width: calc(50% - 2px);
		margin-top: 32px;
		text-align: center;
	}
	.l-localnav__item--2col-center > a {
		padding-right: 0;
		padding-left: 0;
		padding-bottom: 26px;
	}
	.l-localnav__item--2col-center .l-localnav__title {
		display: inline-block;
	}
	.l-localnav__item--2col-center .l-localnav__title::after {
		display: inline-block;
		position: static;
		margin-left: 20px;
	}
}

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

.u-mb-none {
	margin-bottom: 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: 24px !important;
}
@media (min-width: 768px), print {
	.u-margin-md {
		margin-bottom: 40px !important;
	}
}

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

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

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

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

.u-margin-xxxxl {
	margin-bottom: 100px !important;
}
@media (min-width: 768px), print {
	.u-margin-xxxxl {
		margin-bottom: 150px !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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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 screen and (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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
	.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;
	}
}
/*----------
	display
----------*/
@media screen and (max-width: 767px) {
	.u-pc-v {
		display: none;
	}
}

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

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

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

.u-txt-number {
	font-family: Inter, var(--font-sans);
}

.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-fz24 {
	font-size: 2.4rem !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: bold !important;
}

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

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

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

.u-text-indent_2_5em {
	text-indent: -2.5em;
	padding-left: 2.4em;
}

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

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

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

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

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

/* 文字サイズ */
@media (min-width: 768px), print {
	.u-pc-fz-10 {
		font-size: 1rem !important;
	}
	.u-pc-fz-11 {
		font-size: 1.1rem !important;
	}
	.u-pc-fz-12 {
		font-size: 1.2rem !important;
	}
	.u-pc-fz-13 {
		font-size: 1.3rem !important;
	}
	.u-pc-fz-14 {
		font-size: 1.4rem !important;
	}
	.u-pc-fz-15 {
		font-size: 1.5rem !important;
	}
	.u-pc-fz-16 {
		font-size: 1.6rem !important;
	}
	.u-pc-fz-17 {
		font-size: 1.7rem !important;
	}
	.u-pc-fz-18 {
		font-size: 1.8rem !important;
	}
	.u-pc-fz-19 {
		font-size: 1.9rem !important;
	}
	.u-pc-fz-20 {
		font-size: 2rem !important;
	}
	.u-pc-fz-21 {
		font-size: 2.1rem !important;
	}
	.u-pc-fz-22 {
		font-size: 2.2rem !important;
	}
	.u-pc-fz-23 {
		font-size: 2.3rem !important;
	}
	.u-pc-fz-24 {
		font-size: 2.4rem !important;
	}
	.u-pc-fz-25 {
		font-size: 2.5rem !important;
	}
	.u-pc-fz-26 {
		font-size: 2.6rem !important;
	}
	.u-pc-fz-27 {
		font-size: 2.7rem !important;
	}
	.u-pc-fz-28 {
		font-size: 2.8rem !important;
	}
	.u-pc-fz-29 {
		font-size: 2.9rem !important;
	}
	.u-pc-fz-30 {
		font-size: 3rem !important;
	}
	.u-pc-fz-31 {
		font-size: 3.1rem !important;
	}
	.u-pc-fz-32 {
		font-size: 3.2rem !important;
	}
}
@media screen and (max-width: 767px) {
	.u-sp-fz-10 {
		font-size: 1rem !important;
	}
	.u-sp-fz-11 {
		font-size: 1.1rem !important;
	}
	.u-sp-fz-12 {
		font-size: 1.2rem !important;
	}
	.u-sp-fz-13 {
		font-size: 1.3rem !important;
	}
	.u-sp-fz-14 {
		font-size: 1.4rem !important;
	}
	.u-sp-fz-15 {
		font-size: 1.5rem !important;
	}
	.u-sp-fz-16 {
		font-size: 1.6rem !important;
	}
	.u-sp-fz-17 {
		font-size: 1.7rem !important;
	}
	.u-sp-fz-18 {
		font-size: 1.8rem !important;
	}
	.u-sp-fz-19 {
		font-size: 1.9rem !important;
	}
	.u-sp-fz-20 {
		font-size: 2rem !important;
	}
	.u-sp-fz-21 {
		font-size: 2.1rem !important;
	}
	.u-sp-fz-22 {
		font-size: 2.2rem !important;
	}
	.u-sp-fz-23 {
		font-size: 2.3rem !important;
	}
	.u-sp-fz-24 {
		font-size: 2.4rem !important;
	}
	.u-sp-fz-25 {
		font-size: 2.5rem !important;
	}
	.u-sp-fz-26 {
		font-size: 2.6rem !important;
	}
	.u-sp-fz-27 {
		font-size: 2.7rem !important;
	}
	.u-sp-fz-28 {
		font-size: 2.8rem !important;
	}
	.u-sp-fz-29 {
		font-size: 2.9rem !important;
	}
	.u-sp-fz-30 {
		font-size: 3rem !important;
	}
	.u-sp-fz-31 {
		font-size: 3.1rem !important;
	}
	.u-sp-fz-32 {
		font-size: 3.2rem !important;
	}
}
/*----------
	image
----------*/
.u-img-auto {
	width: auto;
	height: auto;
}
/*# sourceMappingURL=common.css.map */
