@charset "utf-8";

/*
 template.css
*/
/* -----------------------------------------------
= margin
----------------------------------------------- */
.mb100 {
	margin-bottom: 10rem !important;
}

.mb90 {
	margin-bottom: 9rem !important;
}

.mb85 {
	margin-bottom: 8.5rem !important;
}

.mb80 {
	margin-bottom: 8rem !important;
}

.mb70 {
	margin-bottom: 7rem !important;
}

.mb60 {
	margin-bottom: 6rem !important;
}

.mb55 {
	margin-bottom: 5.5rem !important;
}

.mb50 {
	margin-bottom: 5rem !important;
}

.mb45 {
	margin-bottom: 4.5rem !important;
}

.mb40 {
	margin-bottom: 4rem !important;
}

.mb30 {
	margin-bottom: 3rem !important;
}

.mb20 {
	margin-bottom: 2rem !important;
}

.mb10 {
	margin-bottom: 1rem !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mt50 {
	margin-top: 5rem !important;
}

.mt30 {
	margin-top: 3rem !important;
}

/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	letter-spacing: 0.04em;
}

/* -----------------------------------------------
= color_red
----------------------------------------------- */
.color_red {
	color: #ff0000;
}

/* -----------------------------------------------
= page_ttl_s
----------------------------------------------- */
/* .page_ttl {
	padding: 6rem;
	background: url(../img/template/page_ttl_sp.jpg) no-repeat 100% 100% / cover;
	text-align: left;
}
.page_ttl h1 {
	color: #ffffff;
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 1.3;
	display: inline-block;
	

} */
.is-lower .page_ttl h1 {
	background-color: rgba(0, 0, 0, 0.3);
}

.page_ttl_s {
	width: 100%;
	height: clamp(9rem, 25vw, 27rem);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: flex-start;

}

.page_ttl_s h1 {
	color: #ffffff;
	font-size: 4rem;
	/* padding-top: 30px;
	padding: 30px 20px; */
	display: inline-block;
	font-weight: 700;
	text-shadow: 0 0 25px rgba(0, 0, 0, 1);
	line-height: 1.4;
}

.page_ttl_s_inner {
	max-width: 1540px;
	width: 80%;
	margin: 0 auto;
}

/* -----------------------------------------------
= breadcrumb
----------------------------------------------- */
.breadcrumb {
	width: 92%;
	margin: 0 auto;
	display: flex;
	justify-content: start;
	padding: 1.4rem 0;
	position: relative;
	z-index: 1;
	background: transparent !important;
}

.breadcrumb::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	/* 画面の端から端まで */
	height: 100%;
	background-color: #ffffff;
	/* ここで白を塗る */
	z-index: -1;
	/* 文字の背面に配置 */
}

.breadcrumb li {
	font-size: 2rem;
	line-height: 2.6rem;
}

.breadcrumb li a {
	color: #000000;
}

.breadcrumb li+li {
	position: relative;
	margin-left: 1.5rem;
	padding-left: 3rem;
}

.breadcrumb li+li::before {
	content: '';
	position: absolute;
	top: .7rem;
	left: 0;
	width: 1.6rem;
	height: 1.2rem;
	background: url(../img/shared/icon_arrow.svg) no-repeat 50% / 100% auto;
	filter: invert(98%) sepia(0%) saturate(3896%) hue-rotate(292deg) brightness(117%) contrast(70%);
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.breadcrumb {
		width: 80%;
		max-width: 1540px;
		margin: 0 auto;
		padding: 1.4rem 0;
		position: relative;
		z-index: 1;
		background: transparent !important;
		display: flex;
		justify-content: start;
	}

	.breadcrumb::before {
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
		/* 画面の端から端まで */
		height: 100%;
		background-color: #ffffff;
		/* ここで白を塗る */
		z-index: -1;
		/* 文字の背面に配置 */
	}

	.breadcrumb li {
		font-size: 2rem;
	}

	.breadcrumb li+li {
		margin-left: 1.2rem;
		padding-left: 2.6rem;
	}

	.breadcrumb li+li::before {
		width: 1.3rem;
		height: .9rem;
	}

	.breadcrumb a:hover {
		color: #434cab;
		text-decoration: underline;
	}
}

/* @media */
/* -----------------------------------------------
= contents
----------------------------------------------- */
.contents {
	padding: 0 3.5rem;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.contents {
		max-width: 1540rem;
		margin: 0 auto;
		padding: 0;
		overflow: hidden;
	}
}

/* @media */
/* -----------------------------------------------
= contents_k
----------------------------------------------- */
.contents_k {
	width: 80%;
	/* 基本は画面の80% */
	max-width: 1540px;
	/* 大きなモニターでの広がりすぎ防止 1940*0.8 */
	margin: 0 auto;
	/* 中央寄せ */
}

@media (max-width: 768px) {
	.contents_k {
		width: 92%;
		/* スマホ・タブレットでは画面を広く使う */
	}
}

/* -----------------------------------------------
= ttl_h2
----------------------------------------------- */
.ttl_h2 {
	position: relative;
	margin-bottom: 2.8rem;
	padding: 1.4rem 3.3rem;
	color: #fff;
	background: #20287e;
	border-top: .5rem solid #bec6dc;
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 2.8rem;
}

.ttl_h2::before {
	content: '';
	position: absolute;
	top: 2.5rem;
	left: 0;
	width: .8rem;
	height: 3.5rem;
	background: #e0c800;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.ttl_h2 {
		margin-bottom: 2.1rem;
		padding: 1.1rem 2.6rem;
		font-size: 2.8rem;
	}

	.ttl_h2::before {
		top: 1.3rem;
	}
}

/* @media */
/* -----------------------------------------------
= ttl_h3
----------------------------------------------- */
.ttl_h3 {
	position: relative;
	margin-bottom: 2.8rem;
	padding: 0 1.1rem 2.1rem;
	color: #000000;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: .5rem;
	border-bottom: 0.2rem solid #a5a5a5;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.ttl_h3 {
		margin-bottom: 2.1rem;
		padding: 0 1.1rem 1.7rem;
		font-size: 4rem;
		scroll-margin-top: 150px;
	}
}

/* @media */
/* -----------------------------------------------
= ttl_h3_terms
----------------------------------------------- */
.ttl_h3_terms {
	position: relative;
	margin-bottom: 2.8rem;
	padding: 0 1.1rem 1rem;
	color: #000000;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4rem;
	border-bottom: 0.2rem solid #a5a5a5;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.ttl_h3_terms {
		margin-bottom: 2.1rem;
		padding: 0 1.1rem 1.7rem;
		font-size: 3rem;
		scroll-margin-top: 150px;
	}
}

/* @media */

/* -----------------------------------------------
= ttl_h4
----------------------------------------------- */
.ttl_h4 {
	position: relative;
	margin-bottom: 2.8rem;
	padding: 1.2rem 1.1rem 1.2rem 4rem;
	background: #eff4f7;
	border-top: 1px solid #bcbed8;
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1.5;
}

.ttl_h4::before {
	content: '';
	position: absolute;
	top: 1.9rem;
	left: 1.6rem;
	width: .8rem;
	height: 3.5rem;
	background: #fff;
	border-radius: .2rem;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.ttl_h4 {
		margin-bottom: 2.1rem;
		font-size: 2.4rem;
	}

	.ttl_h4::before {
		top: 1.2rem;
		left: 1.2rem;
	}
}

/* @media */
/* -----------------------------------------------
= ttl_h5
----------------------------------------------- */
.ttl_h5 {
	position: relative;
	margin-bottom: 2.1rem;
	padding: 0 0 0 4rem;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.5;
}

.ttl_h5::before,
.ttl_h5::after {
	content: '';
	position: absolute;
	width: 2.4rem;
	height: 2.4rem;
}

.ttl_h5::before {
	top: 1rem;
	left: 0;
	background: #cbd8de;
	clip-path: polygon(0 0, 100% 0, 0 100%);
}

.ttl_h5::after {
	top: 1.2rem;
	left: .2rem;
	background: #20287e;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.ttl_h5 {
		margin-bottom: 1.3rem;
		padding: 0 0 0 3rem;
		font-size: 2.4rem;
	}

	.ttl_h5::before,
	.ttl_h5::after {
		width: 1.7rem;
		height: 1.7rem;
	}

	.ttl_h5::before {
		top: .8rem;
	}

	.ttl_h5::after {
		top: .9rem;
		left: .1rem;
	}
}

/* @media */
/* -----------------------------------------------
= text
----------------------------------------------- */
.text {
	font-size: 2.6rem;
	line-height: 5rem;
}

.text strong {
	font-weight: 700;
}

.text a {
	color: #13195d;
}

.text a:hover {
	color: #434cab;
	text-decoration: underline;
}

.text.center {
	text-align: center;
}

.text.right {
	text-align: right;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.text {
		font-size: 1.8rem;
		line-height: 3.4rem;
	}
}

/* @media */
/* -----------------------------------------------
= .note
----------------------------------------------- */
.note {
	margin-left: 1em;
	text-indent: -1em;
	font-size: 2.4rem;
	line-height: 3.8rem;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.note {
		font-size: 1.4rem;
		line-height: 2.4rem;
	}
}

/* @media */
/* -----------------------------------------------
= .box
----------------------------------------------- */
.box {
	position: relative;
	padding: 2.5rem 3.6rem;
	background: #f7f9fb;
}

.box+.box {
	margin-top: 4rem;
}

.box::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: calc(100% - 12px);
	height: calc(100% - 12px);
	border: 1px solid #dce3f0;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.box {
		padding: 1.8rem 2.9rem;
	}

	.box+.box {
		margin-top: 3rem;
	}
}

/* @media */
/* -----------------------------------------------
= .u_list
----------------------------------------------- */
.u_list li {
	position: relative;
	padding-left: 3.6rem;
	font-size: 2.6rem;
	line-height: 5rem;
}

.u_list li+li {
	margin-top: 1.5rem;
}

.u_list li::before,
.u_list li::after {
	content: '';
	position: absolute;
	top: 1.2rem;
	left: 0;
	width: 2rem;
	height: 2rem;
}

.u_list li::before {
	background: #cbd8de;
	clip-path: polygon(0 0, 100% 0, 0 100%);
}

.u_list li::after {
	background: #20287e;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.u_list li {
		padding-left: 2.3rem;
		font-size: 1.6rem;
		line-height: 3.4rem;
	}

	.u_list li+li {
		margin-top: 1rem;
	}

	.u_list li::before,
	.u_list li::after {
		top: 1rem;
		width: 1.2rem;
		height: 1.2rem;
	}
}

/* @media */
/* -----------------------------------------------
= .o_list
----------------------------------------------- */
.o_list {
	list-style-type: decimal;
}

.o_list li {
	font-family: Georgia, 'Times New Roman', Times, serif;
	margin-left: 2em;
	font-size: 2.6rem;
	line-height: 5rem;
}

.o_list li+li {
	margin-top: 1.5rem;
}

/* 番号だけゴシック */
.o_list li::marker {
	font-family: system-ui, -apple-system, BlinkMacSystemFont,
		'Segoe UI', Roboto, Arial, Helvetica, sans-serif;
	font-size: 2.6rem;
}

@media print,
screen and (min-width: 768px) {
	.o_list li {
		font-size: 1.6rem;
		line-height: 3.4rem;
	}

	.o_list li+li {
		margin-top: 1rem;
	}

	.o_list li::marker {
		font-size: 1.6rem;
	}
}

/* @media */
/* -----------------------------------------------
= .file
----------------------------------------------- */
.file a {
	position: relative;
	padding: 0 3.6rem;
	color: #13195d;
	font-size: 2.6rem;
	line-height: 5rem;
}

.file a::before {
	content: '';
	position: absolute;
	top: .4rem;
	left: 0;
	width: 1.8rem;
	height: 2.1rem;
	background: #cbd8de;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.file a::after {
	content: '';
	position: absolute;
	top: -.2rem;
	right: 0;
	width: 2.7rem;
	height: 3.8rem;
}

.file a[href$=".pdf"]::after {
	background: url(../img/template/icon_pdf.svg) no-repeat 50% / 100% auto;
}

.file a[href$=".xls"]::after,
.file a[href$=".xlsx"]::after {
	background: url(../img/template/icon_xls.svg) no-repeat 50% / 100% auto;
}

.file a[href$=".doc"]::after {
	background: url(../img/template/icon_doc.svg) no-repeat 50% / 100% auto;
}

.file a[href$=".ppt"]::after {
	background: url(../img/template/icon_ppt.svg) no-repeat 50% / 100% auto;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.file a {
		padding: 0 2.3rem;
		font-size: 1.6rem;
		line-height: 3.4rem;
	}

	.file a::before {
		width: 1.2rem;
		height: 1.3rem;
	}

	.file a::after {
		width: 1.9rem;
		height: 2.4rem;
	}

	.file a:hover {
		color: #434cab;
		text-decoration: underline;
	}

	.file a:hover::before {
		background: #434cab;
	}
}

/* @media */
/* -----------------------------------------------
= .img
----------------------------------------------- */
.img {
	overflow: hidden;
}

.img figcaption {
	margin: 1.3rem 0 0;
	color: #707070;
	font-size: 2rem;
	line-height: 3.2rem;
}

.img.left figure {
	float: left;
	width: 23.6rem;
	margin: 1.2rem 3rem 0 0;
}

.img.right figure {
	float: right;
	width: 23.6rem;
	margin: 1.2rem 0 0 3rem;
}

.img.clm2 {
	display: flex;
	flex-wrap: wrap;
	margin-left: -2rem;
	margin-right: -2rem;
}

.img.clm2 figure {
	width: calc(1 / 2 * 100% - 4rem);
	margin: 0 2rem 1.9rem;
}

.img.clm3 {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1.2rem;
	margin-right: -1.2rem;
}

.img.clm3 figure {
	width: calc(1 / 3 * 100% - 2.4rem);
	margin: 0 1.2rem 1.9rem;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.img figcaption {
		margin: .6rem 0 0;
		font-size: 1.4rem;
		line-height: 2.6rem;
	}

	.img.left figure {
		width: 29rem;
		margin: .9rem 3rem 0 0;
	}

	.img.right figure {
		width: 29rem;
		margin: .9rem 0 0 3rem;
	}
}

/* @media */
/* -----------------------------------------------
= table
----------------------------------------------- */
table {
	width: 100%;
}

table th,
table td {
	padding: 3rem 2rem;
	border: 1px solid #d2d2d2;
	font-size: 2.4rem;
	line-height: 3.2rem;
}

table thead th {
	color: #fff;
	background: #20287e;
	text-align: center;
}

table tbody th {
	background: #eff4f7;
	text-align: center;
}

table .right {
	text-align: right;
}

table .center {
	text-align: center;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	table th,
	table td {
		padding: 1.4rem;
		font-size: 1.6rem;
		line-height: 2.8rem;
	}
}

/* @media */
/* -----------------------------------------------
= page_link
----------------------------------------------- */
.page_link {
	display: flex;
	flex-wrap: wrap;
	margin-left: -2rem;
	margin-right: -2rem;
}

.page_link li {
	width: calc(1 / 2 * 100% - 4.4rem);
	margin: 0 2rem 4.5rem;
	border: 1px solid #345eaa;
}

.page_link li a {
	display: grid;
	place-content: center;
	position: relative;
	height: 100%;
	padding: 3rem 6rem 3rem 4rem;
	color: #13195d;
	background: #fff;
	box-sizing: border-box;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 3.8rem;
}

.page_link li a::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 5px;
	width: calc(100% - 12px);
	height: 3px;
	border: 1px solid #c2cee5;
	border-top: none;
}

.page_link li a::after {
	content: '';
	position: absolute;
	top: calc(50% - 1rem);
	right: 2.5rem;
	width: 2.3rem;
	height: 1.6rem;
	background: url(../img/shared/icon_arrow.svg) no-repeat 50% / 100% auto;
	transform: rotate(90deg);
	filter: invert(98%) sepia(0%) saturate(3896%) hue-rotate(292deg) brightness(117%) contrast(70%);
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.page_link {
		margin-left: -1.6rem;
		margin-right: -1.6rem;
	}

	.page_link li {
		width: calc(1 / 4 * 100% - 3.6rem);
		margin: 0 1.6rem 4.5rem;
	}

	.page_link li a {
		padding: 2.1rem 4.5rem 2.1rem 3rem;
		font-size: 1.8rem;
		line-height: 2.4rem;
		transition: .3s;
	}

	.page_link li a::after {
		top: calc(50% - .65rem);
		right: 2rem;
		width: 1.8rem;
		height: 1.3rem;
	}

	.page_link li a:hover {
		color: #fff;
		background: #434cab;
	}

	.page_link li a:hover::after {
		filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(29deg) brightness(104%) contrast(101%);
	}
}

/* @media */
/* -----------------------------------------------
= btn
----------------------------------------------- */
.btn a,
.btn button {
	display: grid;
	place-content: center;
	position: relative;
	padding: 3.2rem 8rem 3.2rem 5rem;
	color: #fff;
	background: #20287e;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.5;
}

.btn button {
	width: 100%;
}

.btn a::before,
.btn button::before {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 5px;
	width: calc(100% - 12px);
	height: 3px;
	border: 1px solid #b7c7e0;
	border-top: none;
}

.btn a::after,
.btn button::after {
	content: '';
	position: absolute;
	top: calc(50% - .95rem);
	right: 3rem;
	width: 2.7rem;
	height: 1.9rem;
	background: url(../img/shared/icon_arrow.svg) no-repeat 50% / 100% auto;
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(29deg) brightness(104%) contrast(101%);
}

/*phone*/
.bbtn {
	width: 100%;
	/* 親の幅いっぱいに広げる */
	display: flex;
	/* flexボックスにする */
	justify-content: center;
	/* 中にある a タグを中央に寄せる */
	margin-top: 2rem;
	/* テキストとの間隔 */
}

.bbtn a {
	display: flex;
	justify-content: center;
	/* 左右中央 */
	align-items: center;
	/* 上下中央 ★これが必要 */

	padding: 1.5rem 30px;
	font-size: 3rem;
	width: 100%;
	max-width: 300px;
	border-radius: 50px;

	/* 文字がはみ出さないように */
	text-align: center;
	line-height: 1;
	/* 行間によるズレを防止 */
}

.clm1 a {
	background-color: #13195d;
	color: #ffffff;
}

.clm2 a {
	background-color: #13195d;
	color: #ffffff;
	margin-bottom: 3rem;
}

.clm3 a {
	background-color: #e0c800;
	color: #ffffff;
}

.clm4 a {
	background-color: #27ae60;
	color: #ffffff;
}

.clm5 a {
	background-color: #ffffff;
	color: #13195d;
}

.bbtnn a {
	display: flex;
	padding: 2rem 50px;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	font-size: 2rem;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.btn.clm1 {
		max-width: 34rem;
		margin-left: auto;
		margin-right: auto;
	}

	.btn.clm2 {
		display: flex;
		flex-wrap: wrap;
		margin-left: -20px;
		margin-right: -20px;
	}

	.btn.clm2 li {
		width: calc(1 / 2 * 100% - 40px);
		margin-left: 20px;
		margin-right: 20px;
	}

	.btn.clm3 {
		display: flex;
		flex-wrap: wrap;
		margin-left: -15px;
		margin-right: -15px;
	}

	.btn.clm3 li {
		width: calc(1 / 3 * 100% - 30px);
		margin-left: 15px;
		margin-right: 15px;
	}

	.btn a,
	.btn button {
		padding: 2rem 4rem 2rem 2.4rem;
		font-size: 1.8rem;
		transition: .3s;
	}

	.btn a:hover,
	.btn button:hover {
		background: #434cab;
	}

	.btn a::after,
	.btn button::after {
		top: calc(50% - .65rem);
		right: 2.2rem;
		width: 1.7rem;
		height: 1.3rem;
	}

	.bbtn a {
		display: flex;
		padding: 2rem 50px;
		border-radius: 50px;
		text-decoration: none;
		font-weight: bold;
		text-align: center;
		transition: all 0.3s ease;
		border: 2px solid transparent;
		font-size: 2rem;
		height: auto;
		margin-left: auto;
		margin-right: auto;
		width: fit-content;

	}

	.clm1 a {
		background-color: #13195d;
		color: #ffffff;
	}

	.clm2 a {
		background-color: #13195d;
		color: #ffffff;
	}

	.clm3 a {
		background-color: #e0c800;
		color: #ffffff;
	}

	.clm4 a {
		background-color: #27ae60;
		color: #ffffff;
	}

	.clm5 a {
		background-color: #ffffff;
		color: #13195d;
	}

	.bbtnn a {
		display: flex;
		padding: 2rem 50px;
		text-decoration: none;
		font-weight: bold;
		text-align: center;
		transition: all 0.3s ease;
		border: 2px solid transparent;
		font-size: 2rem;
		height: auto;
		margin-left: auto;
		margin-right: auto;
		width: fit-content;
	}
}

/* @media */
/* -----------------------------------------------
= faq
----------------------------------------------- */
.faq button {
	display: flex;
	position: relative;
	width: 100%;
	padding: 2rem 8rem 2rem 2rem;
	background: #eff4f7;
	border-top: 1px solid #bcbed8;
	font-weight: 700;
	text-align: left;
	transition: background .3s;
}

.faq button::before {
	content: '';
	position: absolute;
	top: calc(50% - .95rem);
	right: 2.6rem;
	width: 2.3rem;
	height: 1.6rem;
	background: url(../img/shared/icon_arrow.svg) no-repeat 50% / 100% auto;
	transform: rotate(90deg);
	filter: invert(90%) sepia(15%) saturate(188%) hue-rotate(159deg) brightness(92%) contrast(80%);
}

.faq dt.is-opened button::before {
	transform: rotate(-90deg);
}

.faq button span:nth-child(1) {
	width: 3.3rem;
	height: 3.3rem;
	color: #fff;
	background: #20287e;
	border-radius: 50%;
	font-size: 1.8rem;
	line-height: 3.3rem;
	text-align: center;
}

.faq button span:nth-child(2) {
	flex: 1;
	margin-left: 2rem;
	font-size: 3.2rem;
	line-height: 1.4;
}

.faq .answer {
	display: flex;
	padding: 3rem 0 0 2rem;
}

.faq .answer span:nth-child(1) {
	width: 3.3rem;
	height: 3.3rem;
	color: #fff;
	background: #e15191;
	border-radius: 50%;
	font-size: 1.8rem;
	line-height: 3.3rem;
	text-align: center;
}

.faq .answer span:nth-child(2) {
	flex: 1;
	margin-top: -.3em;
	margin-left: 2rem;
	font-size: 2.6rem;
	line-height: 5rem;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.faq button {
		padding: 1.5rem 6rem 1.5rem 1.5rem;
		transition: color .3s;
	}

	.faq button:hover {
		color: #434cab;
	}

	.faq button::before {
		top: calc(50% - .65rem);
		right: 2.1rem;
		width: 1.8rem;
		height: 1.3rem;
	}

	.faq button:hover::before {
		filter: invert(33%) sepia(11%) saturate(3342%) hue-rotate(197deg) brightness(95%) contrast(97%);
	}

	.faq button span:nth-child(2) {
		font-size: 2.4rem;
	}

	.faq .answer {
		padding: 3rem 0 0 1.5rem;
	}

	.faq .answer span:nth-child(2) {
		font-size: 1.6rem;
		line-height: 3.4rem;
	}
}

/* @media */
/* -----------------------------------------------
= frame
----------------------------------------------- */
.frame_title {
	margin-bottom: 1.8rem;
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 5rem;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.frame {
		display: flex;
	}

	.frame_title {
		width: 27rem;
		margin-right: 5rem;
		font-size: 2.8rem;
	}

	.frame_cont {
		flex: 1;
	}
}

/* @media */
/* -----------------------------------------------
= download
----------------------------------------------- */
.download .u_list li {
	padding-bottom: 3.4rem;
	border-bottom: 1px dotted #ccc;
}

.download .series {
	margin-bottom: 2rem;
	font-size: 3rem;
	font-weight: 700;
}

.download a {
	display: inline-block;
	position: relative;
	margin-left: -3.6rem;
	padding-left: 8rem;
}

.download a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 5.6rem;
	height: 5.5rem;
	background: url(../img/template/icon_download.svg) no-repeat 0 100% / cover;
	filter: invert(10%) sepia(57%) saturate(6715%) hue-rotate(238deg) brightness(78%) contrast(88%);
}

.download a span {
	display: inline-block;
	padding: .5rem 3rem;
	color: #fff;
	background: #20287e;
	border-radius: 3em;
	font-size: 2.6rem;
	font-weight: 700;
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.download .u_list li {
		display: flex;
		justify-content: space-between;
		margin-top: 1.9rem;
		padding-bottom: 1.9rem;
	}

	.download .series {
		margin-bottom: 0;
		font-size: 2rem;
	}

	.download a {
		margin-left: 0;
		padding-left: 4.8rem;
	}

	.download a::before {
		width: 3.4rem;
		height: 3.4rem;
	}

	.download a:hover::before {
		filter: invert(30%) sepia(29%) saturate(3895%) hue-rotate(219deg) brightness(78%) contrast(80%);
	}

	.download a span {
		padding: .2rem 2rem;
		font-size: 1.6rem;
	}

	.download a:hover span {
		background: #434cab;
	}
}

/* @media */
/* -----------------------------------------------
= form
----------------------------------------------- */
.form .item {
	position: relative;
	padding: 2.5rem 0 4rem;
	border-top: 1px dotted #ccc;
}

.form .required {
	color: #cdb700;
}

.form .item .ttl {
	display: block;
	position: relative;
	margin-bottom: 2rem;
	padding-left: 3.6rem;
	font-size: 2.5rem;
	/*3-0.5rem*/
	font-weight: 700;
	line-height: 1.4;
}

.form .item .ttl::before,
.form .item .ttl::after {
	content: '';
	position: absolute;
	top: .8rem;
	left: 0;
	width: 2rem;
	height: 2rem;
}

.form .item .ttl::before {
	background: #cbd8de;
	clip-path: polygon(0 0, 100% 0, 0 100%);
}

.form .item .ttl::after {
	background: #20287e;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.form .item .ttl .required {
	margin-left: .5rem;
}

.form .item .text {
	border: 1px solid #d2d2d2;
	font-size: 2.7rem;
	/*3.2-0.5rem*/
	box-sizing: border-box;
}

.form .item .check li {
	margin-left: -.6rem;
	font-size: clamp(1rem, 0.6rem + 2vw, 2.1rem);

	/* font-size: 2.1rem;  2.6-0.5rem */
	/* line-height: 1.5; */
}

.check-text {
	font-size: inherit;
	line-height: 1.5;
}

.form .item .check li+li {
	margin-top: 1rem;
}

.form .item input[type="checkbox"] {
	position: relative;
	width: 3.5rem;
	height: 3.5rem;
	border: 1px solid #d2d2d2;
	border-radius: 0;
	vertical-align: -1.3rem;
	appearance: none;
}

.form .item input[type="checkbox"]:checked:before {
	content: '';
	position: absolute;
	top: .2rem;
	left: 1rem;
	width: .8rem;
	height: 1.6rem;
	border-right: .4rem solid #20287e;
	border-bottom: .4rem solid #20287e;
	transform: rotate(50deg);
}

.form .item .textarea {
	padding: 1rem;
	border: 1px solid #d2d2d2;
	font-size: 3.2rem;
	line-height: 1.5;
	box-sizing: border-box;
}

.form .item .w0 {
	width: 30rem;
}

.form .item .w1 {
	width: 44rem;
}

.form .item .w2 {
	width: 44rem;
}

.form .item .w3 {
	width: 56rem;
}

.form .item .w4 {
	width: 100%;
}

.form .item .w5 {
	width: 50%;
}

.form .submit {
	padding-top: 3.5rem;
	border-top: 1px dotted #ccc;
}

.form .submit .box ul {
	margin-left: 3em;
	list-style-type: disc;
}

.form .submit .box li {
	font-size: 2.6rem;
	line-height: 5rem;
}

.form .submit .item {
	border-top: none;
	font-size: 2.3rem;
	/*2.8-0.5rem*/
	font-weight: 700;
	text-align: center;
}

.form .btn button {
	border: 1px solid #345eaa;
}

.btn button::before {
	bottom: -5px;
}

.form .btn .cancel button {
	color: #20287e;
	background: #fff;
}

.form .btn .cancel button::after {
	filter: invert(100%) sepia(0%) saturate(42%) hue-rotate(240deg) brightness(103%) contrast(77%);
}

.form .btn .cancel button:hover {
	color: #fff;
	background: #434cab;
}

.form .btn .cancel button:hover::after {
	filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(45deg) brightness(101%) contrast(106%);
}

@media print,
screen and (min-width: 768px) {

	/* PC */
	.form .item {
		display: flex;
		align-items: start;
		padding: 2rem 0 2rem 1.1rem;
		gap: 1rem;
		column-gap: 1rem;
	}

	.form .item .ttl {
		width: 26rem;
		flex: 0 0 26rem;
		margin: .6rem 0 0;
		padding-left: 2.7rem;
		font-size: 2rem;
		white-space: nowrap;
	}

	.form .item .ttl::before,
	.form .item .ttl::after {
		top: .7rem;
		left: 0;
		width: 1.2rem;
		height: 1.22rem;
	}

	.form .item .text {
		font-size: 1.8rem;
		width: 100%;
		max-width: 100%;
	}

	.form .item>div {
		flex: 1;
		min-width: 0;
	}

	.form .item .check {
		display: flex;
	}

	.form .item .check li {
		font-size: 1.8rem;
	}

	.form .item .check li+li {
		margin-top: 2rem;
	}

	.form .item input[type="checkbox"] {
		width: 2.5rem;
		height: 2.5rem;
		vertical-align: -1rem;
	}

	.form .item input[type="checkbox"]:checked:before {
		top: .3rem;
		left: .8rem;
		width: .5rem;
		height: 1rem;
		border-right-width: .3rem;
		border-bottom-width: .3rem;
	}

	.form .item .textarea {
		width: 100%;
		height: 22rem;
		font-size: 1.8rem;
	}

	.form .item .w0 {
		width: 16rem;
	}

	.form .item .w1 {
		max-width: 36rem;
	}

	.form .item .w2 {
		width: 40rem;
	}

	.form .item .w3 {
		width: 68rem;
	}

	.form .item .w4 {
		width: 100%;
	}

	.form .item .w5 {
		width: 33%;
	}

	.form .submit {
		padding-top: 3.5rem;
	}

	.form .submit .box li {
		font-size: 1.6rem;
		line-height: 3.4rem;
	}

	.form .submit .item {
		display: block;
		font-size: 1.8rem;
		line-height: 3rem;
	}

	.form .submit .btn {
		max-width: 76rem;
		margin-left: auto;
		margin-right: auto;
	}

	.form .submit .btn button {
		font-size: 2rem;
	}
}

/* @media */