@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap');

/* ------------------------------
    reset
------------------------------ */

html {
	font-size: 62.5%;
	overflow-y: scroll;
}
@media screen and (max-width: 768px) {
	html {
    font-size: calc(100vw * 10 / 450);
	}
}
*, *::before, *::after {
	box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: 'Noto Sans JP', sans-serif;
	word-wrap : break-word;
	overflow-wrap : break-word;
	-webkit-text-size-adjust: 100%;
}
input, button, textarea, select  {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	resize: none;
	outline: none;
	background: none;
}
select::-ms-expand {
	display: none;
}
button:hover {
	cursor: pointer;
}
a {
	color: #08162b;
	text-decoration: none;
	transition: opacity 0.3s ease;
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a img {
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
img, object {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

@media screen and (min-width : 769px) {

	a:hover {
		opacity: .6;
		cursor: pointer;
	}

}

/* ------------------------------
    base
------------------------------ */

body {
	min-width: 1200px;
	color: #08162b;
	font-size: 1.0rem;
	text-align: left;
}
section {
	position: relative;
}
main {
	display: block;
}
.wrap {
	width: 110rem;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.wrap._small {
	width: 100rem;
}
p,th,td,dt,dd,li,input,button,textarea {
	font-size: 1.6rem;
	line-height: 1.6;
}
.fade {
	transition: opacity 0.3s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.fade img {
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.h-center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%)translateZ(0);
}
.v-center {
	position: absolute;
	top: 50%;
	transform: translateY(-50%)translateZ(0);
}
.hv-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%)translateZ(0);
}
.flex {
	display: flex;
	justify-content: space-between;
}
.tal {
	text-align: left;
}
.tar {
	text-align: right;
}
.tac {
	text-align: center;
}
.left {
	float: left;
}
.right {
	float: right;
}
.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.preload *, .preload *::before, .preload *::after {
	transition: none !important;
}

@media screen and (min-width : 769px) {

	.fade:hover {
		opacity: .6;
		cursor: pointer;
	}
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}

}

@media screen and (max-width : 768px) {

	body {
		min-width: inherit;
	}
	main {
		overflow: hidden;
	}
	.wrap, .wrap._small {
		width: 90%;
		padding: 0;
	}
	input,textarea,select,.select {
		font-size: 16px!important;
	}

}

/* ------------------------------
    footer
------------------------------ */

#footer {
	background: #08162b;
	color: #b3b3b3;
	padding: 1.5rem 2rem;
}
#footer a {
	color: #b3b3b3;
}
#footer p {
	font-size: 1.4rem;
	line-height: 1.4;
}
#footer .flex {
	flex-direction: row-reverse;
}

@media screen and (max-width : 768px) {

	#footer {
		padding: 5vw;
	}
	#footer .flex {
		display: block;
		text-align: center;
	}
	#footer .copy {
		margin-top: 1em;
	}

}

/* ------------------------------
    main
------------------------------ */

/* common */

/* sec_optin */

.sec_optin {
	background: url(../img/optin_bg_pc@2x.png) no-repeat center / cover;
	padding: 3rem 0;
}
.sec_optin .wrap {
	background: #fff;
	max-width: 90rem;
	padding: 2rem 3rem;
	border-radius: 1rem;
	text-align: center;
}
.sec_optin .ttl {
	display: inline-block;
	color: #1e58ab;
	font-size: 2.2rem;
	line-height: 1.4;
	font-weight: bold;
	padding: 0 .5em;
	position: relative;
}
.sec_optin .ttl::before,
.sec_optin .ttl::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 3px;
	height: 70%;
	transform: skew(25deg)translateY(-50%);
	background: #1e58ab;
}
.sec_optin .ttl::after {
	left: auto;
	right: 0;
	transform: skew(-25deg)translateY(-50%);
}
.sec_optin .txt {
	margin: .5em 0;
	line-height: 1.4;
}
.sec_optin .btn a {
	display: block;
	background: #fa990d;
	color: #fff;
	border-bottom: 5px solid #b2640f;
	border-radius: 100px;
	font-size: 2.2rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 1px 2px #b2640f;
	padding: .8em;
	position: relative;
}
.sec_optin .btn a::before {
	content: '';
	position: absolute;
	right: 1em;
	top: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #fff;
	transform: translateY(-50%);
}
.sec_optin .pc .flex .flex_r {
	width: 55rem;
}

@media screen and (max-width : 768px) {

	.sec_optin {
		background: url(../img/optin_bg_sp@2x.png) no-repeat center / cover;
		padding: 3rem 0;
	}
	.sec_optin .wrap {
		padding: 5vw;
	}
	.sec_optin .ttl {
		font-size: 2.0rem;
		padding: 0 .2em;
	}
	.sec_optin .ttl::before,
	.sec_optin .ttl::after {
		width: 2px;
	}
	.sec_optin .flex {
		margin: 1.5rem 0;
	}
	.sec_optin .flex_l {
		flex: 0 0 auto;
		width: 30vw;
		margin-right: 3vw;
	}
	.sec_optin .flex_l img {
		width: 100%;
	}
	.sec_optin .txt {
		margin: 0;
		text-align: left;
	}
	.sec_optin .btn a {
		font-size: 1.8rem;
	}

}

/* sec_mv */

#sec_mv {
	background: url(../img/mv_bg_pc@2x.png) no-repeat right center / auto 100%, linear-gradient(to top, #d7e6fa, #fff);
	height: 54.2rem;
}
#sec_mv .wrap {
	height: 100%;
}
#sec_mv .logo {
	padding: 1.5rem 0 2rem;
}
#sec_mv .catch {
	color: #1e58ab;
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
	position: absolute;
	left: 5rem;
	top: 23rem;
}
#sec_mv .mark {
	position: absolute;
	right: 0;
	bottom: 1rem;
}
#sec_mv .list {
	position: absolute;
	left: 5rem;
	top: 32rem;
	display: flex;
}
#sec_mv .list .item {
	background: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, .2);
	width: 23rem;
	border-radius: 1rem;
	padding: 2rem;
}
#sec_mv .list .item + .item {
	margin-left: 2rem;
}
#sec_mv .list .item .sttl {
	color: #d63526;
	font-size: 2.6rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	padding-bottom: .3em;
	margin-bottom: .4em;
	border-bottom: 1px solid #ccc;
}
#sec_mv .list .item .ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5em;
	height: 1.5em;
	vertical-align: -.15em;
	margin-right: .2em;
}
#sec_mv .list .item .ico img {
	max-width: 100%;
	max-height: 100%;
}
#sec_mv .list .item .txt {
	text-align: justify;
}

@media screen and (max-width : 768px) {

	#sec_mv {
		background: url(../img/mv_bg_sp@2x.png) no-repeat center top 30vw / 100% auto, linear-gradient(to top, #d7e6fa 80%, #fff);
		height: auto;
		padding-bottom: 3rem;
	}
	#sec_mv .logo {
		text-align: center;
	}
	#sec_mv .logo img {
		width: 40vw;
		margin-left: -3vw;
	}
	#sec_mv .ttl {
		margin: 0 -3vw;
	}
	#sec_mv .catch {
		font-size: 1.75rem;
		left: 0;
		top: 37vw;
		width: 100%;
		text-align: center;
		white-space: nowrap;
	}
	#sec_mv .mark {
		top: 70vw;
	}
	#sec_mv .mark img {
		width: 25vw;
	}
	#sec_mv .list {
		position: static;
		margin-top: 50vw;
		display: block;
	}
	#sec_mv .list .item {
		width: 100%;
		padding: .5rem 2rem 1rem;
	}
	#sec_mv .list .item + .item {
		margin: 1rem 0 0;
	}
	#sec_mv .list .item .sttl {
		font-size: 2.2rem;
	}
	#sec_mv .list .item .ico {
		width: 1em;
		height: 1em;
		vertical-align: -.1em;
	}
	#sec_mv .list .item .txt {
		font-size: 1.5rem;
		line-height: 1.6;
		text-align: center;
	}

}

/* sec_01 */

#sec_01 {
	padding: 2rem 0 6rem;
	text-align: center ;
}
#sec_01 .img {
	margin-bottom: 2rem;
}
#sec_01 .txt_wrap .txt {
	font-size: 2.4rem;
	line-height: 1.6;
	font-weight: bold;
}
#sec_01 .txt_wrap .txt strong {
	color: #1e58ab;
}
#sec_01 .txt_wrap .arrow {
	display: inline-block;
	background: linear-gradient(to top, #9bbced, #fff);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	width: 16rem;
	height: 4rem;
	margin: 2rem 0;
}
#sec_01 .txt_wrap .grad {
	display: inline-block;
	background: linear-gradient(#1f9dff, #1e58ab);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 4.0rem;
	line-height: 1.2;
	font-weight: bold;
	font-style: italic;
	position: relative;
	margin-right: .2em;
}
#sec_01 .txt_wrap .grad::before {
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 3px;
	background: linear-gradient(to left, #1f9dff, #1e58ab);
}

@media screen and (max-width : 768px) {

	#sec_01 {
		padding-top: 0;
	}
	#sec_01 .img {
		margin: 0 -5vw -15vw 0;
	}
	#sec_01 .list {
		position: relative;
		z-index: 10;
		margin-bottom: 3rem;
	}
	#sec_01 .list .item {
		background: #fff;
		box-shadow: 0 0 2px rgba(0, 0, 0, .2);
		text-align: left;
		padding: 1rem 1rem 1rem 5.5em;
		border-radius: 1rem;
		position: relative;
	}
	#sec_01 .list .item + .item {
		margin-top: 1rem;
	}
	#sec_01 .list .item::before,
	#sec_01 .list .item::after {
		content: '';
		position: absolute;
		left: 1.5em;
		top: 50%;
		transform: translateY(-50%);
		background: #aaa;
		width: 2.5em;
		height: 2.5em;
		border-radius: 3px;
	}
	#sec_01 .list .item::after {
		background: transparent;
		width: 2.5em;
		height: 1.2em;
		border-bottom: 3px solid #fff;
		border-left: 3px solid #fff;
		transform: translateY(-50%)rotate(-45deg);
		margin: -.5em 0 0 .5em;
	}
	#sec_01 .list .item .txt {
		font-size: 1.4rem;
	}
	#sec_01 .txt_wrap .txt {
		font-size: 2.0rem;
	}
	#sec_01 .txt_wrap .grad {
		font-size: 3.0rem;
	}

}

/* sec_02 */

#sec_02 {
	background: url(../img/sec02_bg.png) repeat;
}
#sec_02 .sec_ttl {
	background: linear-gradient(to right, #1e58ab, #1f9dff);
	color: #fff;
	text-align: center;
}
#sec_02 .sec_ttl .ttl {
	font-size: 3.4rem;
	line-height: 1.4;
	font-weight: bold;
	padding: .5em 0;
}
#sec_02 .sec_ttl .ttl strong {
	color: #eeff00;
}
#sec_02 .kaiketsu_wrap {
	background: url(../img/sec02_bg_pc@2x.png) no-repeat left top / auto 100%;
}
#sec_02 .kaiketsu_wrap .wrap {
	height: 50rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
#sec_02 .kaiketsu_wrap .box {
	background: #fff;
	box-shadow: 0 0 1.5rem rgba(97, 143, 175, .4);
	width: 60rem;
	padding: 3rem 4rem;
}
#sec_02 .kaiketsu_wrap .ttl {
	color: #1e58ab;
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	padding-bottom: .3em;
	margin-bottom: .5em;
	border-bottom: 2px solid #1e58ab;
}
#sec_02 .kaiketsu_wrap .txt + .txt {
	margin-top: 1em;
}
#sec_02 .tokui_wrap {
	padding: 5rem 0;
	text-align: center;
}
#sec_02 .tokui_wrap .ttl {
	font-size: 3.4rem;
	line-height: 1.4;
	font-weight: bold;
	margin-bottom: 1em;
}
#sec_02 .tokui_wrap .ttl strong {
	color: #1e58ab;
	display: inline-block;
	position: relative;
}
#sec_02 .tokui_wrap .ttl strong::before {
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	height: 3px;
	width: 100%;
	background: #1e58ab;
}
#sec_02 .tokui_wrap .img {
	margin: 3rem 0 2rem;
}
#sec_02 .tokui_wrap .txt._big {
	font-size: 2.4rem;
	font-weight: bold;
}
#sec_02 .tokui_wrap .txt._big strong {
	color: #1e58ab;
}
#sec_02 .muryo_wrap .box {
	background: linear-gradient(to right, #1e58ab, #1f9dff);
	padding: 0 5px 5px;
	text-align: center;
}
#sec_02 .muryo_wrap .box .ttl {
	color: #fff;
	font-size: 3.8rem;
	line-height: 1.8;
	font-weight: bold;
}
#sec_02 .muryo_wrap .box .ttl strong {
	color: #eeff00;
}
#sec_02 .muryo_wrap .box .txt {
	background: #fff;
	color: #1e58ab;
	font-size: 1.8rem;
	padding: 1em;
}
#sec_02 .muryo_wrap .box .img {
	position: absolute;
	left: 3rem;
	top: -1rem;
}
#sec_02 .muryo_wrap .catch {
	text-align: center;
	padding: 2rem 0;
}
#sec_02 .muryo_wrap .catch span {
	display: inline-block;
	color: #1e58ab;
	font-size: 3.4rem;
	line-height: 1.4;
	font-weight: bold;
	padding: 0 .5em;
	position: relative;
}
#sec_02 .muryo_wrap .catch span::before,
#sec_02 .muryo_wrap .catch span::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 3px;
	height: 70%;
	transform: skew(25deg)translateY(-50%);
	background: #1e58ab;
}
#sec_02 .muryo_wrap .catch span::after {
	left: auto;
	right: 0;
	transform: skew(-25deg)translateY(-50%);
}

@media screen and (max-width : 768px) {

	#sec_02 .sec_ttl .ttl {
		font-size: 2.4rem;
	}
	#sec_02 .kaiketsu_wrap {
		background-image: url(../img/sec02_bg_sp@2x.png);
		background-size: 100% auto;
		padding-top: 54vw;
	}
	#sec_02 .kaiketsu_wrap .wrap {
		height: auto;
		display: block;
	}
	#sec_02 .kaiketsu_wrap .box {
		width: 100%;
		padding: 5vw;
	}
	#sec_02 .kaiketsu_wrap .ttl {
		font-size: 2.0rem;
		text-align: center;
	}
	#sec_02 .tokui_wrap {
		padding-bottom: 3rem;
	}
	#sec_02 .tokui_wrap .ttl {
		font-size: 2.6rem;
	}
	#sec_02 .tokui_wrap .txt {
		text-align: left;
	}
	#sec_02 .tokui_wrap .txt._big {
		font-size: 2.0rem;
		text-align: center;
	}
	#sec_02 .muryo_wrap .box {
		padding: 0 3px 3px;
	}
	#sec_02 .muryo_wrap .box .ttl {
		font-size: 2.0rem;
	}
	#sec_02 .muryo_wrap .box .txt {
		font-size: 1.5rem;
		padding: .5em 1em .5em 6em;
		text-align: left;
	}
	#sec_02 .muryo_wrap .box .img {
		position: absolute;
		left: -3vw;
		top: 6vw;
		width: 22vw;
	}
	#sec_02 .muryo_wrap .catch span {
		font-size: 2.2rem;
	}
	#sec_02 .muryo_wrap .catch span::before,
	#sec_02 .muryo_wrap .catch span::after {
		width: 2px;
	}

}

/* sec_03 */

#sec_03 {
	background: #eaf2fc;
	padding: 3rem 0 6rem;
}
#sec_03 .sec_ttl {
	text-align: center;
	position: relative;
	margin-bottom: 4rem;
}
#sec_03 .sec_ttl .en {
	color: #fff;
	font-size: 11.8rem;
	line-height: 1;
	letter-spacing: .1em;
	font-weight: bold;
	opacity: .3;
}
#sec_03 .sec_ttl .ttl {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	font-size: 3.4rem;
	line-height: 1.2;
	font-weight: bold;
	z-index: 10;
}
#sec_03 .sec_ttl .ttl span {
	background: linear-gradient(#1f9dff, #1e58ab);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#sec_03 .sec_ttl .ttl .big {
	display: inline-block;
	font-size: 140%;
	margin: 0 -.2em;
}
#sec_03 .box {
	position: relative;
}
#sec_03 .box + .box {
	margin-top: 3rem;
}
#sec_03 .box::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: calc( 100% - 6rem );
	height: 100%;
	background: #fff;
}
#sec_03 .box:nth-child(odd)::before {
	left: auto;
	right: 0;
}
#sec_03 .box:nth-child(odd) .flex {
	flex-direction: row-reverse;
}
#sec_03 .box .flex {
	position: relative;
	z-index: 10;
}
#sec_03 .box .flex_i {
	flex: 0 0 auto;
}
#sec_03 .box .flex_t {
	padding: 3rem 4rem;
}
#sec_03 .box .flex_t .ttl {
	position: relative;
}
#sec_03 .box .flex_t .ttl span {
	display: inline-block;
	background: #fff;
	padding-right: 2rem;
	position: relative;
	z-index: 10;
}
#sec_03 .box .flex_t .ttl::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 2px;
	background: linear-gradient(to left, #1f9dff, #1e58ab);
}
#sec_03 .box .flex_t .sttl {
	color: #1e58ab;
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin: .5em 0;
}

@media screen and (max-width : 768px) {

	#sec_03 .sec_ttl {
		white-space: nowrap;
	}
	#sec_03 .sec_ttl .en {
		font-size: 8rem;
	}
	#sec_03 .sec_ttl .ttl {
		font-size: 3.0rem;
	}
	#sec_03 .box::before {
		width: 100%;
	}
	#sec_03 .box:nth-child(odd) .flex {
		flex-direction: row-reverse;
	}
	#sec_03 .box .flex {
		display: block;
	}
	#sec_03 .box .flex_i {
		text-align: center;
	}
	#sec_03 .box .flex_t {
		padding: 8vw 5vw 3vw;
	}
	#sec_03 .box .flex_t .ttl img {
		width: 25vw;
	}
	#sec_03 .box .flex_t .sttl {
		font-size: 2.2rem;
	}

}

/* sec_04 */

#sec_04 {
	background: url(../img/sec04_bg@2x.png) no-repeat center bottom / 100% auto;
	padding: 6rem 0;
	text-align: center;
}
#sec_04 .sec_ttl {
	margin-bottom: 4rem;
}
#sec_04 .sec_ttl .txt {
	background: linear-gradient(to left, #1f9dff, #1e58ab);
	color: #fff;
	display: inline-block;
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: bold;
	padding: 0 1em;
	border-radius: 100px;
}
#sec_04 .sec_ttl .ttl {
	color: #1e58ab;
	font-size: 3.4rem;
	line-height: 1.4;
	font-weight: bold;
}
#sec_04 .catch {
	color: #1e58ab;
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
	margin-top: 3rem;
}
#sec_04 .catch .grad {
	display: inline-block;
	background: linear-gradient(#1f9dff, #1e58ab);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 4.0rem;
	line-height: 1.2;
	font-weight: bold;
	font-style: italic;
	position: relative;
	margin-right: .2em;
	padding-right: .1em;
}
#sec_04 .catch .grad::before {
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 3px;
	background: linear-gradient(to left, #1f9dff, #1e58ab);
}

@media screen and (max-width : 768px) {

	#sec_04 .catch {
		font-size: 1.9rem;
	}
	#sec_04 .catch .grad {
		font-size: 3.0rem;
	}

}

/* sec_05 */

#sec_05 {
	padding: 8rem 0;
}
#sec_05 .ttl {
	color: #1e58ab;
	font-size: 3.4rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	margin-bottom: 6rem;
}
#sec_05 .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#sec_05 .list .item {
	background: #eaf2fc;
	width: 48%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 2rem;
	border-right: 5px solid #1e58ab;
	border-bottom: 5px solid #1e58ab;
	border-radius: 1rem;
}
#sec_05 .list .item:nth-child(n+3) {
	margin-top: 3rem;
}
#sec_05 .list .item .ico {
	flex: 0 0 auto;
	margin-right: 1em;
	transform: translateY(10%);
}
#sec_05 .arrow {
	background: linear-gradient(to top, #9bbced, #fff);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	width: 16rem;
	height: 4rem;
	margin: 3rem auto;
}
#sec_05 .catch {
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
}
#sec_05 .catch strong {
	display: inline;
	background: linear-gradient(to top, #1e58ab 3px, transparent 3px);
	color: #1e58ab;
	position: relative;
	line-height: 1.8;
}
#sec_05 .catch strong.big {
	font-size: 3.4rem;
}

@media screen and (max-width : 768px) {

	#sec_05 .ttl {
		font-size: 3.0rem;
		margin-bottom: 3rem;
	}
	#sec_05 .list {
		display: block;
	}
	#sec_05 .list .item {
		width: 100%;
		padding: 1rem 2rem;
	}
	#sec_05 .list .item:nth-child(n+2) {
		margin-top: 2rem;
	}
	#sec_05 .list .item .ico img {
		width: 15vw;
	}
	#sec_05 .catch {
		font-size: 2.2rem;
	}
	#sec_05 .catch strong.big {
		font-size: 2.8rem;
	}

}

/* sec_06 */

#sec_06 {
	background: #eaf2fc;
	padding: 8rem 0;
}
#sec_06 .ttl {
	color: #1e58ab;
	font-size: 3.4rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	margin-bottom: 4rem;
}
#sec_06 .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#sec_06 .list .item {
	background: #fff;
	width: 48%;
	padding: 3rem;
	display: flex;
	justify-content: flex-start;
	border-left: 5px solid #1e58ab;
}
#sec_06 .list .item:nth-child(n+3) {
	margin-top: 3rem;
}
#sec_06 .list .item .img {
	flex: 0 0 auto;
	margin-right: 1em;
}
#sec_06 .list .item .name {
	color: #1e58ab;
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
}
#sec_06 .list .item .name .small {
	font-size: 1.6rem;
	margin-left: 1em;
}
#sec_06 .list .item .message {
	color: #1e58ab;
	font-size: 2.0rem;
	line-height: 1.4;
	font-weight: bold;
	padding-bottom: .3em;
	margin: 1em 0 .3em;
	border-bottom: 1px solid #1e58ab;
}
#sec_06 .txt_wrap {
	text-align: center;
}
#sec_06 .txt_wrap .ribbon span {
	background: linear-gradient(to left, #1f9dff, #1e58ab);
	clip-path: polygon(0 1%, 100% 0, calc( 100% - 3rem ) 50%, 100% 100%, 0 100%, 3rem 50%);
	color: #fff;
	display: inline-block;
	font-size: 3.0rem;
	line-height: 1.4;
	font-weight: bold;
	padding: .3em 2.5em;
	margin: 4rem 0;
}
#sec_06 .txt_wrap .slash span {
	display: inline-block;
	color: #08162b;
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
	padding: 0 .5em;
	position: relative;
}
#sec_06 .txt_wrap .slash span::before,
#sec_06 .txt_wrap .slash span::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 3px;
	height: 70%;
	transform: skew(25deg)translateY(-50%);
	background: #08162b;
}
#sec_06 .txt_wrap .slash span::after {
	left: auto;
	right: 0;
	transform: skew(-25deg)translateY(-50%);
}
#sec_06 .txt_wrap .big {
	color: #1e58ab;
	font-size: 3.4rem;
	line-height: 1.4;
	font-weight: bold;
	display: inline-block;
	position: relative;
}
#sec_06 .txt_wrap .big::before {
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	height: 3px;
	width: 100%;
	background: #1e58ab;
}

@media screen and (max-width : 768px) {

	#sec_06 {
		padding: 6rem 0;
	}
	#sec_06 .ttl {
		font-size: 3.0rem;
		margin-bottom: 3rem;
	}
	#sec_06 .list {
		display: block;
	}
	#sec_06 .list .item {
		width: 100%;
		padding: 5vw;
	}
	#sec_06 .list .item:nth-child(n+2) {
		margin-top: 2rem;
	}
	#sec_06 .list .item .img img {
		width: 20vw;
	}
	#sec_06 .list .item .name {
		font-size: 2.2rem;
	}
	#sec_06 .list .item .name .small {
		font-size: 1.4rem;
	}
	#sec_06 .list .item .message {
		font-size: 1.8rem;
	}
	#sec_06 .txt_wrap .ribbon span {
		font-size: 2.0rem;
	}
	#sec_06 .txt_wrap .big {
		font-size: 2.8rem;
	}

}

/* sec_07 */

#sec_07 {
	background: url(../img/sec02_bg.png) repeat;
	padding: 8rem 0;
}
#sec_07 .ttl_wrap {
	text-align: center;
}
#sec_07 .ttl_wrap .bg {
	background: linear-gradient(to left, #1f9dff, #1e58ab);
	color: #fff;
	display: inline-block;
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: bold;
	padding: 0 1em;
	border-radius: 100px;
}
#sec_07 .ttl_wrap .ttl {
	background: linear-gradient(to left, #1f9dff, #1e58ab);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 3.4rem;
	line-height: 1.2;
	font-weight: bold;
	margin: .3em 0 1em;
}
#sec_07 .ttl_wrap .txt {
	font-weight: bold;
}
#sec_07 .ttl_wrap .txt strong {
	color: #d63526;
}
#sec_07 .merit_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 6rem 0;
}
#sec_07 .merit_wrap .item {
	background: #fff;
	box-shadow: 0 0 5px rgba(97, 143, 175, .25);
	width: 48.5%;
	padding: 3rem;
	border-radius: 1rem;
}
#sec_07 .merit_wrap .item:nth-child(n+3) {
	margin-top: 3rem;
}
#sec_07 .merit_wrap .item .ttl {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	padding-bottom: .5em;
	margin-bottom: .8em;
	border-bottom: 2px solid #08162b;
	text-align: center;
}
#sec_07 .merit_wrap .list li {
	padding-left: 1.5em;
	position: relative;
}
#sec_07 .merit_wrap .list li + li {
	margin-top: .5em;
}
#sec_07 .merit_wrap .list li::before,
#sec_07 .merit_wrap .list li::after {
	content: '';
	position: absolute;
	left: 0;
	top: .4em;
	border: 1px solid #999;
	width: 1em;
	height: 1em;
	border-radius: 3px;
}
#sec_07 .merit_wrap .list li::after {
	background: transparent;
	width: .6em;
	height: .4em;
	border: none;
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
	transform: translateY(-50%)rotate(-45deg);
	margin: .4em 0 0 .2em;
	border-radius: 0;
}
#sec_07 .merit_wrap .item:nth-child(odd) .ttl {
	color: #1e58ab;
	border-bottom-color: #1e58ab;
}
#sec_07 .merit_wrap .item:nth-child(odd) .list li::before,
#sec_07 .merit_wrap .item:nth-child(odd) .list li::after {
	border-color: #1e58ab;
}
#sec_07 .fuyou_wrap {
	background: linear-gradient(to left, #1f9dff, #1e58ab);
	color: #fff;
	padding: 3rem 4rem;
	border-radius: 1rem;
}
#sec_07 .fuyou_wrap .ttl {
	text-align: center;
}
#sec_07 .fuyou_wrap .ttl span {
	display: inline-block;
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	position: relative;
	padding-left: 1.3em;
}
#sec_07 .fuyou_wrap .ttl span::before,
#sec_07 .fuyou_wrap .ttl span::after {
	content: '';
	position: absolute;
	left: 0;
	top: .2em;
	width: 1em;
	height: 1em;
	border-radius: 3px;
	background: #fff;
}
#sec_07 .fuyou_wrap .ttl span::after {
	background: transparent;
	width: .9em;
	height: .4em;
	border: none;
	border-bottom: 3px solid #1e58ab;
	border-left: 3px solid #1e58ab;
	transform: translateY(-50%)rotate(-45deg);
	margin: .4em 0 0 .2em;
	border-radius: 0;
}
#sec_07 .fuyou_wrap .flex {
	flex-direction: row-reverse;
	margin: 2rem 0;
}
#sec_07 .fuyou_wrap .flex_i {
	flex: 0 0 auto;
	margin-left: 2rem;
}
#sec_07 .fuyou_wrap .flex_t .txt {
	letter-spacing: -.005em;
}
#sec_07 .fuyou_wrap .flex_t .big {
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	margin-top: .3em;
}
#sec_07 .fuyou_wrap .bg_white {
	background: #fff;
	color: #08162b;
	padding: 3rem 4rem;
	border-radius: 1rem;
}
#sec_07 .fuyou_wrap .bg_white .sttl {
	color: #1e58ab;
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	padding-bottom: .5em;
	margin-bottom: .5em;
	border-bottom: 2px solid #1e58ab;
}
#sec_07 .catch {
	font-size: 2.4rem;
	line-height: 1.6;
	font-weight: bold;
	text-align: center;
	margin-top: 3rem;
}
#sec_07 .catch strong {
	color: #1e58ab;
}

@media screen and (max-width : 768px) {

	#sec_07 {
		padding: 6rem 0;
	}
	#sec_07 .ttl_wrap .ttl {
		font-size: 3.0rem;
	}
	#sec_07 .ttl_wrap .txt {
		text-align: left;
	}
	#sec_07 .merit_wrap {
		display: block;
		margin: 4rem 0;
	}
	#sec_07 .merit_wrap .item {
		width: 100%;
		padding: 5vw;
	}
	#sec_07 .merit_wrap .item:nth-child(n+2) {
		margin-top: 2rem;
	}
	#sec_07 .merit_wrap .item .ttl {
		font-size: 2.0rem;
	}
	#sec_07 .fuyou_wrap {
		margin: 0 -5vw;
		padding: 8vw 5vw;
		border-radius: 0;
	}
	#sec_07 .fuyou_wrap .ttl span {
		font-size: 2.4rem;
	}
	#sec_07 .fuyou_wrap .flex {
		display: block;
	}
	#sec_07 .fuyou_wrap .flex_i {
		margin: 0 0 1rem;
		text-align: center;
	}
	#sec_07 .fuyou_wrap .flex_t .big {
		font-size: 2.4rem;
	}
	#sec_07 .fuyou_wrap .bg_white {
		padding: 5vw;
	}
	#sec_07 .fuyou_wrap .bg_white .sttl {
		font-size: 2.2rem;
	}
	#sec_07 .catch {
		font-size: 2.0rem;
	}

}

/* sec_08 */

#sec_08 {
	background: linear-gradient(to right, #1e58ab, #1f9dff);
	padding: 4rem 0 8rem;
}
#sec_08 .sec_ttl {
	text-align: center;
	position: relative;
	margin-bottom: 4rem;
}
#sec_08 .sec_ttl .en {
	color: #fff;
	font-size: 11.8rem;
	line-height: 1;
	letter-spacing: .1em;
	font-weight: bold;
	opacity: .3;
}
#sec_08 .sec_ttl .ttl {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-30%);
	display: inline-block;
	color: #fff;
	font-size: 3.4rem;
	line-height: 1.2;
	font-weight: bold;
}
#sec_08 .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#sec_08 .list .item {
	background: #fff;
	width: 48%;
	padding: 0 3rem 3rem;
	border-radius: 1rem;
}
#sec_08 .list .item:nth-child(n+3) {
	margin-top: 4rem;
}
#sec_08 .list .item .inner {
	position: relative;
	padding-left: 12rem;
	margin-bottom: 1em;
}
#sec_08 .list .item .img {
	position: absolute;
	left: 0;
	bottom: 0;
}
#sec_08 .list .item .sttl {
	color: #1e58ab;
	height: 4.5em;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
}

@media screen and (max-width : 768px) {

	#sec_08 {
		padding: 3rem 0 6rem;
	}
	#sec_08 .sec_ttl {
		white-space: nowrap;
	}
	#sec_08 .sec_ttl .en {
		font-size: 8rem;
	}
	#sec_08 .sec_ttl .ttl {
		font-size: 3.0rem;
	}
	#sec_08 .list {
		display: block;
	}
	#sec_08 .list .item {
		width: 100%;
		padding: 0 5vw 5vw;
	}
	#sec_08 .list .item:nth-child(n+2) {
		margin-top: 2rem;
	}
	#sec_08 .list .item .inner {
		padding-left: 10rem;
	}
	#sec_08 .list .item .img img {
		height: 20vw;
	}
	#sec_08 .list .item .sttl {
		height: 4em;
		font-size: 2.0rem;
	}

}

/* sec_09 */

#sec_09 {
	padding: 8rem 0;
}
#sec_09 .ttl {
	color: #1e58ab;
	font-size: 3.4rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
}
#sec_09 .step {
	margin: 3rem 0 4rem;
}
#sec_09 .step .item {
	background: #fff;
	box-shadow: 0 0 5px rgba(97, 143, 175, .25);
	display: flex;
	justify-content: flex-start;
	position: relative;
}
#sec_09 .step .item + .item {
	margin-top: 8rem;
}
#sec_09 .step .item + .item::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 100%;
	transform: translateX(-50%);
	background: linear-gradient(to top, #9bbced, #fff);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	width: 16rem;
	height: 4rem;
	margin-bottom: 2rem;
}
#sec_09 .step .item .num {
	background: linear-gradient(to right, #1e58ab, #1f9dff);
	clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 4rem 2rem 2rem;
}
#sec_09 .step .item .sttl {
	color: #1e58ab;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 1em;
	width: 8.5em;
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
}
#sec_09 .step .item .txt {
	margin: 1.5rem 0;
	padding-left: 2em;
	border-left: 3px solid #1e58ab;
}
#sec_09 .step .item .txt a {
	color: #1e58ab;
	font-weight: bold;
}
#sec_09 .catch {
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}

@media screen and (max-width : 768px) {

	#sec_09 {
		padding: 6rem 0;
	}
	#sec_09 .ttl {
		font-size: 3.0rem;
	}
	#sec_09 .step .item {
		flex-wrap: wrap;
	}
	#sec_09 .step .item + .item {
		margin-top: 6rem;
	}
	#sec_09 .step .item + .item::before {
		width: 10rem;
		height: 2.5rem;
		margin-bottom: 1.5rem;
	}
	#sec_09 .step .item .num {
		padding: 2rem 4rem 2rem 2rem;
	}
	#sec_09 .step .item .num img {
		height: 5vw;
	}
	#sec_09 .step .item .sttl {
		padding-left: .5em;
		font-size: 2.2rem;
	}
	#sec_09 .step .item .txt {
		width: 100%;
		margin: 0;
		padding: 2rem 1.5rem;
		border-left: none;
		border-top: 2px solid #1e58ab;
	}
	#sec_09 .catch {
		font-size: 2.2rem;
	}

}

/* sec_10 */

#sec_10 {
	background: #eaf2fc;
	padding: 6rem 0;
}
#sec_10 .ttl {
	color: #1e58ab;
	font-size: 3.4rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	margin-bottom: 6rem;
}
#sec_10 .qa {
	background: #fff;
	box-shadow: 0 0 5px rgba(97, 143, 175, .25);
}
#sec_10 .qa + .qa {
	margin-top: 3rem;
}
#sec_10 .qa dt {
	background: #1e58ab;
	color: #fff;
	padding: .5em 1em .5em 6rem;
	font-size: 2.0rem;
	font-weight: bold;
	position: relative;
}
#sec_10 .qa dd {
	padding: 1em 1em 1em 6rem;
	position: relative;
}
#sec_10 .qa dt::before,
#sec_10 .qa dd::before {
	content: '';
	background: url(../img/sec10_ico01.svg) no-repeat center / contain;
	width: 3.4rem;
	height: 3.4rem;
	position: absolute;
	left: 1.5rem;
	top: .8rem;
}
#sec_10 .qa dd::before {
	background-image: url(../img/sec10_ico02.svg);
	top: 1rem;
}

@media screen and (max-width : 768px) {

	#sec_10 .ttl {
		margin-bottom: 3rem;
	}
	#sec_10 .qa dt {
		font-size: 1.8rem;
		padding-top: .8em;
		padding-bottom: .8em;
	}
	#sec_10 .qa dt::before {
		top: 1rem;
	}

}

/* sec_11 */

#sec_11 {
	background: url(../img/sec11_bg@2x.png) no-repeat center top / 100% auto;
	padding: 10rem 0 6rem;
}
#sec_11 .ttl {
	color: #1e58ab;
	font-size: 4.0rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	margin-bottom: 4rem;
}
#sec_11 .ttl span {
	display: inline-block;
	position: relative;
}
#sec_11 .ttl span::before {
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	height: 3px;
	width: 100%;
	background: #1e58ab;
}
#sec_11 .flex_i {
	flex: 0 0 auto;
	margin-left: 2rem;
}
#sec_11 .flex_t {
	padding-top: 2em;
}

@media screen and (max-width : 768px) {

	#sec_11 .ttl {
		font-size: 3.2rem;
		margin-bottom: 2rem;
	}
	#sec_11 .flex {
		display: block;
	}
	#sec_11 .flex_i {
		margin: 2rem 0 0;
	}

}

/* ------------------------------
    responsive
------------------------------ */

@media screen and (min-width : 769px) {

	.sp {
		display:none!important;
	}

}

@media screen and (max-width : 768px) {

	.pc {
		display:none!important;
	}

}


/* ------------------------------
    clearfix
------------------------------ */

.cf {
  zoom:1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;/* 隙間対応 */
  font-size: 0.1em;/* 隙間対応 */
  line-height: 0;/* 隙間対応 */
}