@charset "UTF-8";

/*-----------------------------------

	common

-----------------------------------*/
#contents > * {
	margin-bottom: 100px;
}
#contents h1, #contents h2, #contents h3 {
    font-family: Arial, "Noto Sans JP", sans-serif;
}
#contents h2.h2_style,
#contents h3.h3_style {
	text-align: center;
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 1.45;
	color: #0563C5;
	padding-bottom: 30px;
	position: relative;
	width: min(980px,100%);
	margin: 0 auto 40px;
}
#contents h2.h2_style::after,
#contents h3.h3_style::after {
	content: "";
	width: 100%;
	height: 3px;
	background: #0965C6;
	background: linear-gradient(90deg,rgba(9, 101, 198, 0) 0%, rgba(9, 101, 198, 1) 50%, rgba(9, 101, 198, 0) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	mix-blend-mode: multiply;
}
@media screen and (max-width: 640px) {
	#contents > * {
		margin-bottom: 50px;
	}
	#contents h2.h2_style,
	#contents h3.h3_style {
		overflow-wrap: anywhere;
		font-size: 2.8rem;
		padding-bottom: 20px;
		margin: 0 auto 40px;
	}
}
/*-----------------------------------

	mainvisual

-----------------------------------*/
#mainvisual {
	background: #FFFFFF;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(225, 243, 255, 1) 100%);
}
#mainvisual .contents_inner {
	aspect-ratio: 170 / 67;
	padding-top: min(77px,5.38vw);
	position: relative;
}
#mainvisual h1 {
	font-size: min(6.0rem,4.2vw);
	font-weight: 900;
	color: #0563C5;
	margin-bottom: min(50px,3.5vw);
}
#mainvisual h1 span {
	font-size: min(6.4rem,4.47vw);
	font-weight: 700;
}
#mainvisual h1 br {
	display: none;
}
#mainvisual img {
	width: 50%;
	position: absolute;
	top: min(77px,5.38vw);
	right: 0;
}
#mainvisual p {
	font-size: min(2.4rem,1.68vw);
	font-weight: 500;
	line-height: 2;
	white-space: pre-line;
}
@media screen and (max-width: 640px) {
	#mainvisual {
		margin-bottom: 0;
	}
	#mainvisual .contents_inner {
		aspect-ratio: unset;
		padding: 35px 0;
	}
	#mainvisual h1 {
		text-align: center;
		font-size: 3.6rem;
		line-height: 42px;
		white-space: pre-line;
		margin-bottom: 10px;
	}
	#mainvisual h1 span {
		font-size: 4.0rem;
	}
	#mainvisual h1 br {
		display: inline;
	}
	#mainvisual img {
		display: block;
		width: 100%;
		position: static;
		margin-bottom: 25px;
	}
	#mainvisual p {
		font-size: 1.8rem;
		line-height: 1.55;
		white-space: normal;
	}
}
/*-----------------------------------

	notice_block

-----------------------------------*/
#notice_block .contents_inner {
	display: flex;
	justify-content: space-between;
}
#notice_block .leftWrap {
	width: 23.53%;
	text-align: center;
	padding-top: 50px;
	position: relative;
}
#notice_block .leftWrap::before {
	content: "";
	width: calc((50vw - min(680px,47.55vw)) + 100%);
	height: 100%;
	background: #E1F3FF;
	border-radius: 0 10px 10px 0;
	position: absolute;
	top: 0;
	left: calc(min(680px,47.55vw) - 50vw);
	z-index: -1;
}
#notice_block .leftWrap h2 {
	color: #0563C5;
	font-size: 3.6rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
#notice_block .rightWrap {
	width: 72.79%;
}
#notice_block .rightWrap .list {
	width: 100%;
	height: 450px;
	overflow-y: auto;
	padding-right: 40px;
}
#notice_block .rightWrap .list .simplebar-scrollbar {
	background: #A1A1A1;
	border-radius: 5px;
}
#notice_block .rightWrap .list .simplebar-scrollbar::before {
	opacity: 0 !important;
}
#notice_block .rightWrap .list .simplebar-track {
	background: #E3E3E3;
	border-radius: 5px;
}
#notice_block .rightWrap .list article {
	padding: 20px 0;
	display: flex;
	gap: 0 30px;
}
#notice_block .rightWrap .list article:not(:last-child) {
	border-bottom: 1px solid #ABD5FF;
}
#notice_block .rightWrap .list article .details {
	width: 140px;
}
#notice_block .rightWrap .list article time {
	display: block;
	font-weight: 700;
	margin-bottom: 10px;
}
#notice_block .rightWrap .list article .cat {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	border: 1px solid #0563C5;
	color: #0563C5;
	padding: 5px 0;
}
#notice_block .rightWrap .list article p {
	width: calc(100% - 170px);
	line-height: 1.77;
	letter-spacing: 0.01em;
	word-break: break-all;
	overflow-wrap: anywhere;
}
#notice_block .rightWrap .list article p a {
	color: #0563C5;
    text-decoration: underline;
    display: inline;
	word-break: break-all;
	overflow-wrap: anywhere;
	position: relative;
}
#notice_block .rightWrap .list article p a.link::after {
	content: "";
	background: url(../img/common/icon_link.svg) no-repeat center center / 16px;
	width: 21px;
	height: 21px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	margin-bottom: 2px;
}
#notice_block .js-btn-more,
#notice_block .js-btn-close {
	display: none;
}
@media screen and (max-width: 840px) {
	#notice_block .leftWrap h2 {
		font-size: 3.0rem;
	}
	#notice_block .rightWrap .list article {
		flex-direction: column;
		gap: 20px 0;
	}
	#notice_block .rightWrap .list article .details {
		width: 100%;
		display: flex;
		align-items: center;
		gap: 0 15px;
	}
	#notice_block .rightWrap .list article time {
		margin-bottom: 0;
	}
	#notice_block .rightWrap .list article .cat {
		width: 140px;
	}
	#notice_block .rightWrap .list article p {
		width: 100%;
	}
	#notice_block .rightWrap .list article p a.link::after {
		background-size: 14px;
        width: 14px;
        height: 14px;
    }
}
@media screen and (max-width: 640px) {
	#notice_block .contents_inner {
		flex-direction: column;
	}
	#notice_block .leftWrap {
		width: 100vw;
		margin: 0 calc(50% - 50vw) 30px;
		padding: 30px 0;
		background: #E1F3FF;
	}
	#notice_block .leftWrap::before {
		width: 0;
		height: 0;
		background: none;
	}
	#notice_block .leftWrap h2 {
		font-size: 2.4rem;
	}
	#notice_block .rightWrap {
		width: 100%;
	}
	#notice_block .rightWrap .list {
		padding-right: 20px;
		margin-bottom: 20px;
	}
	#notice_block .rightWrap .list article {
		padding: 15px 0;
		gap: 10px 0;
	}
	#notice_block .rightWrap .list article:first-child {
		padding-top: 0;
	}
	#notice_block .rightWrap .list article .details {
		gap: 0 10px;
	}
	#notice_block .rightWrap .list article time {
		font-size: 1.6rem;
	}
	#notice_block .rightWrap .list article .cat {
		width: 100px;
		font-size: 1.4rem;
	}
}
/*-----------------------------------

	about_block

-----------------------------------*/
#about_block {
	background: #E1F3FF;
	padding: 100px 0;
}
#about_block p {
	line-height: 1.77;
	margin-bottom: 30px;
}
#about_block dl {
	display: flex;
	flex-wrap: wrap;
	gap: 0 1em;
	line-height: 1.71;
}
#about_block dl dt {
	font-weight: 700;
}
#about_block dl dt span {
	color: #D0142C;
	margin-right: 0.2em;
}
#about_block dl dd a {
	color: #0563C5;
	text-decoration: underline;
	display: inline;
}
#about_block dl dd a::after {
	content: "";
	background: url(../img/common/icon_link.svg) no-repeat center center/16px;
	width: 21px;
	height: 21px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}
@media screen and (max-width: 640px) {
	#about_block {
		padding: 50px 0;
	}
	#about_block dl dd a::after {
		background-size: 14px;
		width: 14px;
		height: 14px;
	}
}
/*-----------------------------------

	merit_block

-----------------------------------*/
#merit_block .contents_inner > p {
	text-align: center;
	line-height: 1.77;
	margin-bottom: 30px;
}
#merit_block .merit_wrap {
	display: flex;
	gap: 0 1.96%;
}
#merit_block .merit_wrap .box {
	width: 23.53%;
	background: #E1F3FF;
	border-radius: 10px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}
#merit_block .merit_wrap .box .ttl {
	font-size: 2.8rem;
	font-weight: 700;
	color: #0563C5;
	text-align: center;
}
#merit_block .merit_wrap .box p {
	flex-grow: 1;
	line-height: 1.77;
}
#merit_block .merit_wrap .box img {
	display: block;
	width: 120px;
	margin: 0 auto;
}
@media screen and (max-width: 1100px) {
	#merit_block .merit_wrap {
		flex-wrap: wrap;
		gap: 30px 3%;
	}
	#merit_block .merit_wrap .box {
		width: 48.5%;
	}
}
@media screen and (max-width: 640px) {
	#merit_block .contents_inner > p {
		text-align: left;
		margin-bottom: 20px;
	}
	#merit_block p br {
		display: none;
	}
	#merit_block .merit_wrap {
		gap: 15px 0;
	}
	#merit_block .merit_wrap .box {
		width: 100%;
		padding: 20px 95px 20px 15px;
		position: relative;
		gap: 15px 0;
	}
	#merit_block .merit_wrap .box .ttl {
		font-size: 2.0rem;
		text-align: left;
	}
	#merit_block .merit_wrap .box img {
		width: 60px;
		position: absolute;
		top: calc(50% - 30px);
		right: 15px;
	}
}
/*-----------------------------------

	support_block

-----------------------------------*/
#support_block .contents_inner > p {
	text-align: center;
	line-height: 1.77;
	margin-bottom: 70px;
}
#support_block .support_wrap {
	display: flex;
	justify-content: space-between;
}
#support_block .support_wrap li {
	width: 48.53%;
}
#support_block .support_wrap a {
	width: 100%;
	text-align: center;
	padding: 50px 0 35px;
	border-radius: 10px;
	font-size: 3.2rem;
	font-weight: 700;
    font-family: Arial, "Noto Sans JP", sans-serif;
	line-height: 1.5;
	position: relative;
}
#support_block .support_wrap a.item01 {
	background: #3897F8;
	color: #FFF;
}
#support_block .support_wrap a.item02 {
	background: #FFEC8D;
	color: #000066;
}
#support_block .support_wrap a::before {
	width: 60px;
	height: 60px;
	line-height: 60px;
	border: 1px solid #FFF;
	position: absolute;
	top: -30px;
	left: calc(50% - 30px);
	font-size: 3.6rem;
	font-weight: 700;
}
#support_block .support_wrap a.item01::before {
	content: "1";
	background: #000066;
	color: #FFF;
}
#support_block .support_wrap a.item02::before {
	content: "2";
	background: #F7BC07;
	color: #000066;
}
#support_block .support_wrap a::after {
	content: "";
	width: 18px;
	height: 11px;
	position: absolute;
	bottom: 15px;
	left: calc(50% - 9px);
}
#support_block .support_wrap a.item01::after {
	background: url(../img/index/support_arrow_wh.svg) no-repeat center/contain;
}
#support_block .support_wrap a.item02::after {
	background: url(../img/index/support_arrow_bl.svg) no-repeat center/contain;
}
@media screen and (max-width: 840px) {
	#support_block .support_wrap a {
		font-size: 1.8rem;
		padding: 30px 0;
	}
	#support_block .support_wrap a::before {
		width: 40px;
		height: 40px;
		line-height: 40px;
		top: -20px;
		left: calc(50% - 20px);
		font-size: 2.4rem;
	}
	#support_block .support_wrap a::after {
		width: 14px;
		height: 7px;
		bottom: 12px;
		left: calc(50% - 7px);
	}
}
@media screen and (max-width: 640px) {
	#support_block .contents_inner > p {
		text-align: left;
		margin-bottom: 50px;
	}
	#support_block .support_wrap {
		flex-direction: column;
		gap: 40px 0;
	}
	#support_block .support_wrap li {
		width: 100%;
	}
}
/*-----------------------------------

	support

-----------------------------------*/
.support {
	padding: 100px 0;
}
.support h3.h3_style::before {
	width: 70px;
	height: 70px;
	line-height: 70px;
	display: block;
	border: 2px solid #FFF;
	text-align: center;
	font-size: 4.2rem;
	font-weight: 700;
	margin: 0 auto 20px;
}
.support h4 {
	font-size: 3.2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}
.support .contents_inner_980 > p {
	font-weight: 500;
	line-height: 1.77;
	margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
	.support {
		padding: 55px 0;
	}
	.support h3.h3_style::before {
		width: 50px;
		height: 50px;
		line-height: 50px;
		border: 1px solid #FFF;
		font-size: 3.2rem;
	}
	.support h4 {
		font-size: 2.4rem;
		margin-bottom: 25px;
	}
	.support .contents_inner_980 > p {
		margin-bottom: 40px;
	}
}
/*-- support01 --*/
#support01 {
	background: url(../img/index/support01_bg.jpg) no-repeat center center/cover, #000066;
	color: #FFF;
	margin-bottom: 0;
}
#support01 h3.h3_style {
	color: #FFF;
}
#support01 h3.h3_style::before {
	content: "1";
	background: #000066;
	color: #FFF;
}
#support01 h3.h3_style::after {
	background: #FFF;
	background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
	mix-blend-mode: normal;
}
#support01 .support01_wrap {
	display: flex;
	justify-content: space-between;
}
#support01 .support01_wrap .box {
	width: 31.47%;
	background: #FFF;
	border-radius: 10px;
	padding: min(30px,2.1vw);
	display: flex;
	flex-direction: column;
	gap: min(20px,1.4vw) 0;
}
#support01 .support01_wrap .box .ttl {
	font-size: min(2.8rem,1.96vw);
	font-weight: 700;
    font-family: Arial, "Noto Sans JP", sans-serif;
	line-height: 1.28;
	text-align: center;
	color: #000066;
	flex-grow: 1;
	align-self: center;
	display: flex;
    justify-content: center;
    align-items: center;
}
#support01 .support01_wrap .box p {
	font-size: min(1.8rem,1.26vw);
	font-weight: 700;
	line-height: 1.66;
	color: #111111;
}
@media screen and (max-width: 840px) {
	#support01 .support01_wrap {
		flex-direction: column;
		gap: 40px;
	}
	#support01 .support01_wrap .box {
		width: 100%;
		padding: 30px;
		gap: 20px 0;
	}
	#support01 .support01_wrap .box .ttl {
		font-size: 2.8rem;
	}
	#support01 .support01_wrap .box p {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 640px) {
	#support01 .support01_wrap {
		gap: 20px;
	}
	#support01 .support01_wrap .box {
		padding: 20px 15px;
		gap: 15px 0;
	}
	#support01 .support01_wrap .box .ttl {
		font-size: 2.0rem;
	}
	#support01 .support01_wrap .box p {
		font-size: 1.4rem;
	}
}
/*-- support02 --*/
#support02 {
	background: url(../img/index/support02_bg.jpg) no-repeat center center/cover;
}
#support02 h3.h3_style {
	color: #000066;
}
#support02 h3.h3_style::before {
	content: "2";
	background: #F7BC07;
	color: #000066;
}
#support02 h3.h3_style::after {
	background: #FFF;
	background: linear-gradient(90deg,rgba(0, 0, 102, 0) 0%, rgba(0, 0, 102, 1) 50%, rgba(0, 0, 102, 0) 100%);
	mix-blend-mode: normal;
}
#support02 h4 {
	color: #000066;
}
#support02 .support02_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 2.94%;
}
#support02 .support02_wrap .box {
	width: 48.53%;
	background: #FFF;
	border-radius: 10px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}
#support02 .support02_wrap .box:last-child {
	width: 100%;
}
#support02 .support02_wrap .box .ttl {
	text-align: center;
	font-size: 2.8rem;
	font-weight: 700;
	color: #000066;
}
#support02 .support02_wrap .box:last-child .ttl {
	font-size: 3.2rem;
	line-height: 1.16;
}
#support02 .support02_wrap .box ul li {
	font-weight: 700;
	line-height: 1.66;
	padding-left: 1em;
	text-indent: -1em;
}
#support02 .support02_wrap .box ul li::before {
	content: "・";
	color: #0563C5;
}
#support02 .support02_wrap .box p {
	line-height: 1.66;
	text-align: center;
}
#support02 .support02_wrap .box p a {
	display: inline;
	text-decoration: underline;
	color: #0563C5;
}
#support02 .support02_wrap .box p a.link::after {
	content: "";
	background: url(../img/common/icon_link.svg) no-repeat center center/16px;
	width: 21px;
	height: 21px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	margin-right: 3px;
}
@media screen and (max-width: 840px) {
	#support02 .support02_wrap .box {
		width: 100%;
	}
}
@media screen and (max-width: 640px) {
	#support02 .support02_wrap {
		gap: 20px 0;
	}
	#support02 .support02_wrap .box {
		padding: 20px 15px;
		gap: 15px 0;
	}
	#support02 .support02_wrap .box:last-child {
		padding: 26px 15px 28px;
		margin-top: 25px;
		gap: 20px 0;
	}
	#support02 .support02_wrap .box .ttl {
		font-size: 1.8rem;
	}
	#support02 .support02_wrap .box:last-child .ttl {
		font-size: 2.4rem;
	}
	#support02 .support02_wrap .box p {
		text-align: left;		
	}
	#support02 .support02_wrap .box p:has(a) {
		text-align: center;		
		line-height: 2.15;
	}
	#support02 .support02_wrap .box p a.link::after {
		background-size: 14px;
		width: 14px;
		height: 14px;
	}
}
/*-----------------------------------

	fee_block

-----------------------------------*/
#fee_block h2.h2_style {
	margin-bottom: 70px;
}
#fee_block .arw {
	margin-bottom: min(120px,8.39vw);
	position: relative;
}
#fee_block .arw::after {
	content: "";
	width: min(160px,11.19vw);
	height: min(80px,5.59vw);
	background: #ABD5FF;
	background: linear-gradient(0deg, rgba(171, 213, 255, 1) 0%, rgba(5, 99, 197, 1) 100%);
	clip-path: polygon(20% 0, 80% 0, 80% 45%, 100% 45%, 50% 100%, 0 45%, 20% 45%);
	position: absolute;
	top: calc(100% + min(20px,1.4vw));
	left: calc(50% - min(80px,5.59vw));
}
#fee_block .fee_wrap02::after {
	display: none;
}
@media screen and (max-width: 840px) {
	#fee_block .arw {
		margin-bottom: 120px;
	}
	#fee_block .arw::after {
		width: 160px;
		height: 80px;
		top: calc(100% + 20px);
		left: calc(50% - 80px);
	}
}
@media screen and (max-width: 640px) {
	#fee_block h2.h2_style {
		margin-bottom: 50px;
	}
	#fee_block .arw {
		margin-bottom: 90px;
	}
	#fee_block .arw::after {
		width: 100px;
		height: 50px;
		left: calc(50% - 50px);
	}
}
/*-- fee_wrap01 --*/
#fee_block .fee_wrap01 {
	display: flex;
	justify-content: space-between;
    font-family: Arial, "Noto Sans JP", sans-serif;
}
#fee_block .fee_wrap01 > li {
	width: 48.53%;
	border-radius: 10px;
	padding: min(55px,3.85vw) min(50px,3.5vw) 30px;
}
#fee_block .fee_wrap01 .box01 {
	background: url(../img/index/fee_bg01.jpg) no-repeat center center/cover, #000066;
	color: #FFF;
}
#fee_block .fee_wrap01 .box02 {
	background: url(../img/index/fee_bg02.jpg) no-repeat center center/cover;
}
#fee_block .fee_wrap01 > li::before {
	--no-size:min(60px,4.2vw);
	width: var(--no-size);
	height: var(--no-size);
	line-height: var(--no-size);
	text-align: center;
	border: 1px solid #FFF;
	position: absolute;
	top: calc((var(--no-size) / 2) * -1);
	left: calc(50% - min(30px,2.1vw));
	font-size: min(3.6rem,2.52vw);
	font-weight: 700;
}
#fee_block .fee_wrap01 .box01::before {
	content: "1";
	background: #000066;
	color: #FFF;
}
#fee_block .fee_wrap01 .box02::before {
	content: "2";
	background: #F7BC07;
	color: #000066;
}
#fee_block .fee_wrap01 .ttl {
	text-align: center;
	font-size: min(3.2rem,2.24vw);
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: min(30px,2.1vw);
}
#fee_block .fee_wrap01 .box02 .ttl {
	color: #000066;
}
#fee_block .fee_wrap01 .list li {
	font-size: min(2.4rem,1.68vw);
	font-weight: 700;
	line-height: 2;
	padding-left: min(20px,1.4vw);
	position: relative;
}
#fee_block .fee_wrap01 > li > .list > li::before {
	content: "";
	width: min(14px,0.98vw);
	height: min(14px,0.98vw);
	border-radius: 50%;
	position: absolute;
	top: min(16px,1.12vw);
	left: 0;
}
#fee_block .fee_wrap01 .box01 > .list > li::before {
	background: #ABD5FF;
}
#fee_block .fee_wrap01 .box02 > .list > li::before {
	background: #000066;
}
#fee_block .fee_wrap01 .list li ul li {
	font-size: min(1.8rem,1.26vw);
}
#fee_block .fee_wrap01 .list li ul li::before {
	content: "";
	width: min(10px,0.7vw);
	height: 1px;
	background: #E1F3FF;
	position: absolute;
	top: min(17px,1.19vw);
	left: 0;
}
@media screen and (max-width: 840px) {
	#fee_block .fee_wrap01 {
		flex-direction: column;
		gap: 60px 0;
	}
	#fee_block .fee_wrap01 > li {
		width: 100%;
		padding: 55px 40px 30px;
	}
	#fee_block .fee_wrap01 .box01 {
		margin-bottom: 0;
	}
	#fee_block .fee_wrap01 > li::before {
		width: 60px;
		height: 60px;
		line-height: 60px;
		top: -30px;
		left: calc(50% - 30px);
		font-size: 3.6rem;
	}
	#fee_block .fee_wrap01 > .box01::after {
		width: 0;
		height: 0;
		background: none;
	}
	#fee_block .fee_wrap01 .ttl {
		font-size: 3.0rem;
		margin-bottom: 30px;
	}
	#fee_block .fee_wrap01 .list li {
		font-size: 2.4rem;
		padding-left: 20px;
	}
	#fee_block .fee_wrap01 > li > .list > li::before {
		width: 14px;
		height: 14px;
		top: 16px;
	}
	#fee_block .fee_wrap01 .list li ul li {
		font-size: 1.8rem;
	}
	#fee_block .fee_wrap01 .list li ul li::before {
		width: 10px;
		top: 17px;
	}
}
@media screen and (max-width: 640px) {
	#fee_block .fee_wrap01 {
		gap: 40px 0;
	}
	#fee_block .fee_wrap01 > li {
		padding: 35px 14px 30px;
	}
	#fee_block .fee_wrap01 > li::before {
		width: 40px;
		height: 40px;
		line-height: 40px;
		top: -20px;
		left: calc(50% - 20px);
		font-size: 2.4rem;
	}
	#fee_block .fee_wrap01 .ttl {
		font-size: 2.0rem;
		letter-spacing: -0.05em;
		margin-bottom: 15px;
	}
	#fee_block .fee_wrap01 .list li {
		font-size: 1.6rem;
		padding-left: 18px;
	}
	#fee_block .fee_wrap01 > li > .list > li::before {
		width: 12px;
		height: 12px;
		top: 10px;
	}
	#fee_block .fee_wrap01 .list li ul li {
		font-size: 1.4rem;
	}
	#fee_block .fee_wrap01 .list li ul li::before {
		top: 13px;
	}
}
/*-- fee_wrap02 --*/
#fee_block .fee_wrap02 {
	background: #E1F3FF;
	border-radius: 10px;
	padding: min(30px,2.1vw);
	margin-bottom: min(160px, 8.39vw);
}
#fee_block .fee_wrap02 ul {
	display: flex;
	justify-content: center;
	padding: min(40px,2.8vw) 0;
	background: #FFF;
}
#fee_block .fee_wrap02 ul li {
	font-size: min(2.4rem,1.68vw);
	font-weight: 700;
	padding-left: min(20px,1.4vw);
	position: relative;
}
#fee_block .fee_wrap02 ul li::before {
	content: "";
	width: min(14px,0.98vw);
	height: min(14px,0.98vw);
	background: #0563C5;
	border-radius: 50%;
	position: absolute;
	top: min(6px,0.42vw);
	left: 0;
}
@media screen and (max-width: 840px) {
	#fee_block .fee_wrap02 {
		padding: 30px;
	}
	#fee_block .fee_wrap02 ul {
		padding: 40px 0;
	}
	#fee_block .fee_wrap02 ul li {
		font-size: 2.4rem;
		padding-left: 20px;
	}
	#fee_block .fee_wrap02 ul li::before {
		width: 14px;
		height: 14px;
		top: 6px;
	}
}
@media screen and (max-width: 640px) {
	#fee_block .fee_wrap02 {
		padding: 10px;
		margin-bottom: 60px;
	}
	#fee_block .fee_wrap02 ul {
		padding: 20px 0;
	}
	#fee_block .fee_wrap02 ul li {
		font-size: 1.6rem;
		padding-left: 18px;
		line-height: 1.5;
	}
	#fee_block .fee_wrap02 ul li::before {
		width: 12px;
		height: 12px;
		top: 6px;
	}
}
/*-- fee_wrap03 --*/
#fee_block .fee_wrap03 {
	font-family: Arial, "Noto Sans JP", sans-serif;
}
#fee_block .fee_wrap03 .fee {
	display: block;
	font-size: 4.2rem;
	font-weight: 700;
	color: #0563C5;
	width: fit-content;
	margin: 0 auto 30px;
}
#fee_block .fee_wrap03 .fee span {
	font-size: 3.6rem;
}
#fee_block .fee_wrap03 .box {
	background: #E9F4FF;
	border-radius: 10px;
	padding: 50px;
}
#fee_block .fee_wrap03 .box h3 {
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 25px;
	overflow-wrap: anywhere;
}
#fee_block .fee_wrap03 .box p {
	line-height: 1.77;
	text-align: center;
	margin-bottom: 20px;
}
#fee_block .fee_wrap03 .box a {
	width: min(600px,100%);
	background: #D0142C url(../img/index/fee_icon_link.svg) no-repeat calc(100% - 20px) center/24px;
	border-radius: 5px;
	padding: 20px;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.45;
	color: #FFF;
	text-align: center;
	margin: 0 auto;
}
#fee_block .fee_wrap03 .box a span {
	font-size: 1.8rem;
}
@media screen and (max-width: 640px) {
	#fee_block .fee_wrap03 .fee {
		font-size: 2.4rem;
		margin: 0 auto 20px;
	}
	#fee_block .fee_wrap03 .fee span {
		font-size: 2.1rem;
	}
	#fee_block .fee_wrap03 .box {
		padding: 30px 15px;
	}
	#fee_block .fee_wrap03 .box h3 {
		font-size: 1.8rem;
		line-height: 1.4;
		margin-bottom: 15px;
	}
	#fee_block .fee_wrap03 .box p {
		text-align: left;
		margin-bottom: 15px;
	}
	#fee_block .fee_wrap03 .box a {
		background: #D0142C url(../img/index/fee_icon_link.svg) no-repeat calc(100% - 10px) center/12px;
		padding: 13px;
		font-size: 1.3rem;
	}
	#fee_block .fee_wrap03 .box a span {
		font-size: 1.3rem;
	}
}
/*-- fee_wrap04 --*/
#fee_block .fee_wrap04 img {
	margin-bottom: 40px;
}
#fee_block .fee_wrap04 .box_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 46px;
	margin-bottom: 41px;
	position: relative;
}
#fee_block .fee_wrap04 .box_wrap > div {
	width: 44.9%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#fee_block .fee_wrap04 .box_wrap ul {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
}
#fee_block .fee_wrap04 .box_wrap ul::before {
	--no-size: min(60px, 4.2vw);
    width: var(--no-size);
    height: var(--no-size);
    line-height: calc(var(--no-size) - 5px);
    text-align: center;
    border: 1px solid #FFF;
	margin: auto;
    position: absolute;
    top: -46px;
	left: 0;
	right: 0;
	font-size: min(3.6rem, 2.52vw);
    font-weight: 700;
	z-index: 1;
}
#fee_block .fee_wrap04 .box01 ul {
	gap: 50px 0;
	margin-bottom: 50px;
}
#fee_block .fee_wrap04 .box01 ul::before {
    content: "1";
    background: #000066;
    color: #FFF;
}
#fee_block .fee_wrap04 .box02 ul {
	gap: 20px 0;
	margin-bottom: 20px;
}
#fee_block .fee_wrap04 .box02 ul::before {
	content: "2";
	background: #F7BC07;
    color: #000066;
}
#fee_block .fee_wrap04 .box_wrap ul li {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
	text-align: center;
	clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
	min-height: 100px;
	padding: 0 10px 10px;
}
#fee_block .fee_wrap04 .box01 ul li {
	color: #FFFFFF;
	background: #3897F8;
}
#fee_block .fee_wrap04 .box01 ul li:first-of-type {
	padding-top: 25px;
}
#fee_block .fee_wrap04 .box01 ul li:nth-of-type(n+2) {
	padding-top: 16px;
}
#fee_block .fee_wrap04 .box02 ul li {
	color: #000066;
	background: #FFEC8D;
}
#fee_block .fee_wrap04 .box02 ul li:first-of-type,
#fee_block .fee_wrap04 .box02 ul li:nth-of-type(4),
#fee_block .fee_wrap04 .box02 ul li:nth-of-type(5) {
	padding-top: 17px;
}
#fee_block .fee_wrap04 .box02 ul li:nth-of-type(2),
#fee_block .fee_wrap04 .box02 ul li:nth-of-type(3) {
	padding-top: 25px;
}
#fee_block .fee_wrap04 .box_wrap .other {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	writing-mode: vertical-rl;
	background: #EDEDED;
	clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
	width: 6.15%;
	min-height: 580px;
	padding: 110px 18px 10px;
	margin: auto;
	position: absolute;
	top: 46px;
	left: 0;
	right: 0;
	z-index: 1;
}
#fee_block .fee_wrap04 .box02 .other {
	display: none;
}
#fee_block .fee_wrap04 .box_wrap .result {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
	min-height: 100px;
	padding: 10px;
	border-radius: 10px;
}
#fee_block .fee_wrap04 .box01 .result {
	color: #FFFFFF;
	background: #000066;
}
#fee_block .fee_wrap04 .box02 .result {
	color: #000066;
	background: #F7BC07;
}
#fee_block .fee_wrap04 .note {
	line-height: 2;
}
#fee_block .fee_wrap04 .note p {
	font-weight: 700;
}
#fee_block .fee_wrap04 .note p span {
	color: #D0142C;
	margin-right: 0.3em;
}
#fee_block .fee_wrap04 .note ul li {
	font-size: 1.6rem;
	padding-left: 1em;
	text-indent: -1em;
}
#fee_block .fee_wrap04 .note ul li::before {
	content: "・";
	color: #0563C5;
}
#fee_block .fee_wrap04 .note ul li .link {
	display: inline;
    text-decoration: underline;
    color: #0563C5;
	padding: 0 0.7em;
}
#fee_block .fee_wrap04 .note ul li .link::after {
	content: "";
    background: url(../img/common/icon_link.svg) no-repeat center center / 16px;
    width: 21px;
    height: 21px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
}
@media screen and (max-width: 840px) {
	#fee_block .fee_wrap04 .box_wrap {
		padding-top: 50px;
		gap: 100px 0;
	}
	#fee_block .fee_wrap04 .box_wrap > div {
		width: 100%;
	}
	#fee_block .fee_wrap04 .box01,
	#fee_block .fee_wrap04 .box02 {
		position: relative;
	}
	#fee_block .fee_wrap04 .box_wrap ul {
		width: 86.1%;
		gap: 20px 0 !important;
		margin-bottom: 20px !important;
	}
	#fee_block .fee_wrap04 .box_wrap ul::before {
        width: 60px;
        height: 60px;
        line-height: 60px;
		top: -50px;
		right: -12vw;
		font-size: 3.6rem;
    }
	#fee_block .fee_wrap04 .box_wrap ul li {
		font-size: 1.8rem;
		line-height: 1.3125;
		min-height: 90px;
	}
	#fee_block .fee_wrap04 .box01 ul li:first-of-type {
		padding-top: 23px;
	}
	#fee_block .fee_wrap04 .box01 ul li:nth-of-type(n+2) {
		padding-top: 17px;
	}
	#fee_block .fee_wrap04 .box02 ul li:first-of-type,
	#fee_block .fee_wrap04 .box02 ul li:nth-of-type(4),
	#fee_block .fee_wrap04 .box02 ul li:nth-of-type(5) {
		padding-top: 15px;
	}
	#fee_block .fee_wrap04 .box02 ul li:nth-of-type(2),
	#fee_block .fee_wrap04 .box02 ul li:nth-of-type(3) {
		padding-top: 23px;
	}
	#fee_block .fee_wrap04 .box_wrap .other {
		font-size: 1.8rem;
		letter-spacing: 0.25em;
		padding: 0 10px 10px;
		width: 10.7%;
		top: 0;
		left: auto;
	}
	#fee_block .fee_wrap04 .box01 .other {
		min-height: 420px;
		padding-top: 70px;
	}
	#fee_block .fee_wrap04 .box02 .other {
		display: flex;
		min-height: 530px;
		padding-top: 100px;
	}
	#fee_block .fee_wrap04 .box_wrap .result {
		font-size: 1.8rem;
		padding: 5px;
		min-height: 60px;
	}
	#fee_block .fee_wrap04 .box01 .result {
		background: #0000BC;
	}
}
@media screen and (max-width: 640px) {
	#fee_block .fee_wrap04 .box_wrap {
		gap: 70px 0;
	}
	#fee_block .fee_wrap04 .box_wrap ul {
		gap: 10px 0 !important;
		margin-bottom: 10px !important;
	}
	#fee_block .fee_wrap04 .box_wrap ul::before {
        width: 40px;
        height: 40px;
        line-height: 40px;
        top: -50px;
		right: -12vw;
		font-size: 2.4rem;    
	}
	#fee_block .fee_wrap04 .box_wrap ul li {
		font-size: 1.6rem;
		min-height: 80px;
	}
	#fee_block .fee_wrap04 .box01 ul li:first-of-type {
		padding-top: 16px;
	}
	#fee_block .fee_wrap04 .box01 ul li:nth-of-type(n+2) {
		padding-top: 10px;
	}
	#fee_block .fee_wrap04 .box02 ul li:first-of-type,
	#fee_block .fee_wrap04 .box02 ul li:nth-of-type(4),
	#fee_block .fee_wrap04 .box02 ul li:nth-of-type(5) {
		padding-top: 13px;
	}
	#fee_block .fee_wrap04 .box02 ul li:nth-of-type(2),
	#fee_block .fee_wrap04 .box02 ul li:nth-of-type(3) {
		padding-top: 19px;
	}
	#fee_block .fee_wrap04 .box_wrap .other {
		font-size: 1.6rem;
	}
	#fee_block .fee_wrap04 .box01 .other {
		min-height: 349px;
		padding-top: 50px;
	}
	#fee_block .fee_wrap04 .box02 .other {
		min-height: 440px;
		padding-top: 119px;
	}
	#fee_block .fee_wrap04 .box_wrap .result {
		font-size: 1.6rem;
	}
	#fee_block .fee_wrap04 .note p {
		font-size: 1.6rem;
	}
	#fee_block .fee_wrap04 .note ul li {
		font-size: 1.4rem;
	}
	#fee_block .fee_wrap04 .note ul li .link {
		padding: 0 0.5em;
	}
	#fee_block .fee_wrap04 .note ul li .link::after {
		background-size: 14px;
		width: 14px;
		height: 14px;
	}
}