<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*--------------------------------
common
--------------------------------*/
body {
	position: relative;
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "メイリオ", sans-serif;
	/*font-size: 18px;*/
	line-height: 1.6;
	color: #333;
}
.GlobalHeader.-sticky {
	position: static !important;
}
.btn_area{
	text-align: center;
	margin: 40px 0;
}
.btn_area a.btn_red{
	width: 80%;
	margin: 0 auto;
	height: 90px;
	border-radius: 8px;
	background-image: linear-gradient(90deg, rgb(150,12,0) 0%, rgb(172,14,1) 39%, rgb(193,15,2) 100%);
	background-position: 1% 50%;
    background-size: 200% auto;
	transition: all 0.3s ease-out;
	box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.16);
	color: #fff;
	font-size: 32px;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.btn_area a.btn_red::before{
	content: '';
	position: absolute;
    right: 36px;
    width: 30px;
    height: 1px;
	background:#fff;
    transition: all .3s;
}
.btn_area a.btn_red::after{
	content: '';
	position: absolute;
	top: 40px;
    right: 34px;
    width: 15px;
    height:1px;
	background:#fff;
    transform: rotate(35deg);
    transition: all .3s;
}
.btn_area a.btn_red:hover{
	 background-position: 99% 50%;
}
.btn_area a.btn_red:hover::before{
    right: 22px;
}
.btn_area a.btn_red:hover::after{
    right: 20px;
}
#main a.txt_link[target="_blank"]:not(.btn):not(.notIcon):not([href$=".pdf"]) {
	background-image: none;
	padding-right: 0;
}
a.txt_link{
    display: inline-block;
	color: #333;
	font-weight: 600;
	position: relative;
	margin: 10px 0 0;
}
a.txt_link::after{
	position: absolute;
    top: calc(50% - 3px);
    right: -20px;
    content: "";
    display: inline-block;
    padding: 0;
    width: 8px;
    height: 8px;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    transform-origin: center;
    transform: rotate(45deg) translateX(-5px) translateY(5px);
    background-image: none;
}
ul.list_dot{
	text-indent: -1rem;
	padding-left: 1rem;
}
ul.list_notes{
	font-size: 12px;
	text-indent: -1rem;
	padding-left: 1rem;
}
@media screen and (max-width: 767px) {
	.btn_area {
		margin: 30px 0;
	}
	.btn_area a.btn_red {
		width: 100%;
		height: 60px;
		font-size: 20px;
		border-radius: 4px;
	}
	.btn_area a.btn_red::before {
	    right: 18px;
	}
	.btn_area a.btn_red::after {
		top: 25px;
		right: 18px;
	}
}


@media screen and (min-width: 768px) {
	.is-sp{ display: none;}
}
@media screen and (max-width: 767px) {
	.is-pc{ display: none;}
}
/*--------------------------------
mainvisual
--------------------------------*/
#mv{
	background: url("../img/mv_bg.jpg") center no-repeat;
	background-size: cover;
	text-align: center;
	padding: 40px 0;
}
#mv img{
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#mv {
		padding: 30px 16px;
	}
}
/*--------------------------------
CP outline
--------------------------------*/
/* modules */
.container{
	width: 95%;
	max-width: 960px;
	margin: 0 auto;
}
.f-bold{ font-weight: bold!important; }
.f-center{ text-align: center!important; }
.headline{
	color: #004097;
	font-size: 28px;
	text-align: center;
	margin-bottom: 30px;
}
.headline .min{
	font-size: 22px;
}
.h-deco_min{
	display: inline-block;
	position: relative;
	padding: 0 30px;
}
.h-deco_min:before,
.h-deco_min:after{
	content: '';
	position: absolute;
	width: 15px;
	height: 21px;
	background-size: 100% 100%;
	background-position: center center;
	bottom: 6px;
}
.h-deco_min:before{
	background-image: url(../img/h-deco_l.png);
	left: 0;
}
.h-deco_min:after{
	background-image: url(../img/h-deco_r.png);
	right: 0;
}
.h-deco{
	display: inline-block;
	position: relative;
	padding: 0 30px;
}
.h-deco:before,
.h-deco:after{
	content: '';
	position: absolute;
	width: 22px;
	height: 31px;
	background-size: 100% 100%;
	background-position: center center;
	bottom: 6px;
}
.h-deco:before{
	background-image: url(../img/h-deco2_l.png);
	left: 0;
}
.h-deco:after{
	background-image: url(../img/h-deco2_r.png);
	right: 0;
}
/*  */
.lead{
	margin: 50px 0;
	text-align: center;
}
.main-btn a{
	display: block;
	max-width: 800px;
	margin: 0 auto;
	background-color: #f39800;
	color: #fff;
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	border-radius: 9px;
	padding: 20px 0;
	text-decoration: none;
	box-shadow: 0 5px 0 0 #c07035;
	position: relative;
}
.main-btn a:before{
	content: '';
	display: block;
	position: absolute;
	width: 11px;
	height: 11px;
	border-right: 3px #fff solid;
	border-top: 3px #fff solid;
	rotate: 45deg;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
}
.lead-text{
	margin: 30px 0 20px;
	font-size: 18px;
}
.lead-note{
	font-size: 14px;
}
.outline-box{
	padding: 40px 0;
}
.outline-box:nth-of-type(even){
	background: #e9f2ff;
}
.outline-box:nth-of-type(odd){
	background: #fff;
}
.box-top_text{
	font-size: 20px;
	text-align: center;
	margin: 30px 0 20px;
}
.box-top_text &gt; .color{
	color: #004097;
	font-weight: bold;
}
.img-table{
	width: 100%;
	max-width: 700px;
	margin: 35px auto 30px;
}
.note.-min{
	font-size: 14px;
}
.box-white{
	margin-top: 30px;
	padding: 25px 40px;
	background: #fff;
}
.box-white_title{
	font-size: 16px;
	font-weight: bold;
	color: #004097;
	text-align: center;
}
.box-white_inner{
	background: #d7e8fc;
	margin-top: 20px;
	padding: 25px 55px;
}
.box-white_inner .content02{
	margin: 15px 0 20px;
	background: #fff;
	border-radius: 10px;
	padding: 10px 30px 20px;
}
.box-white_inner .content02 .note{
	margin: 10px 0;
}
.text-link a{
	/* display: inline-block; */
	margin-top: 5px;
	padding-right: 0.8em;
	position: relative;
	color: #333;
}
.text-link a:after{
	content: '';
	display: block;
	position: absolute;
	width: 6px;
	height: 6px;
	border-right: 1px #333 solid;
	border-top: 1px #333 solid;
	rotate: 45deg;
	right: 0;
	/* bottom: 6px; */
	bottom: 45%;
	transform: translateY(50%);
}
.note.-spcopy{
	font-size: 13px;
}
.box-border{
	border: 1px #007130 solid;
	padding: 35px 40px 45px;
	margin-bottom: 20px;
}
.box-border .note .color{
	color: #004097;
}
.box-border_inner{
	background: #d7e8fc;
	padding: 20px;
	margin-top: 30px;
	border: 3px solid #d12310;
}
.box-border_inner .title{
	color: #004097;
	font-weight: bold;
}
.img-benefit{
	margin: 30px 0 25px;
	text-align: center;
}
.headline03{
	background: #004097;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	padding: 10px 14px 8px;
	margin: 15px 0;
}
.headline04{
	color: #004097;
	font-weight: bold;
	margin-top: 10px;
}
.btn-wrap{
	margin: 40px 0 0;
}
.btn-wrap .text-link{
	text-align: center;
	margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 960px){
}
@media screen and (max-width: 767px) {
	/* modules */
	.headline{
		/* color: #007130; */
		font-size: 24px;
		text-align: center;
		margin-bottom: 30px;
	}
	.headline .min{
		font-size: 22px;
	}
	.h-deco_min{
		display: inline-block;
		position: relative;
		padding: 0 30px;
	}
	.h-deco_min:before,
	.h-deco_min:after{
		content: '';
		position: absolute;
		width: 15px;
		height: 21px;
		background-size: 100% 100%;
		background-position: center center;
		bottom: 6px;
	}
	.h-deco_min:before{
		background-image: url(../img/h-deco_l.png);
		left: 0;
	}
	.h-deco_min:after{
		background-image: url(../img/h-deco_r.png);
		right: 0;
	}
	.h-deco{
		display: inline-block;
		position: relative;
		padding: 0 30px;
	}
	.h-deco:before,
	.h-deco:after{
		content: '';
		position: absolute;
		width: 22px;
		height: 31px;
		background-size: 100% 100%;
		background-position: center center;
		bottom: 6px;
	}
	.h-deco:before{
		background-image: url(../img/h-deco2_l.png);
		left: 0;
	}
	.h-deco:after{
		background-image: url(../img/h-deco2_r.png);
		right: 0;
	}
	/*  */
	.lead{
		margin: 50px 0;
	}
	.main-btn a{
		font-size: 26px;
	}
	.lead-text{
		font-size: 16px;
	}
	.lead-note{
		font-size: 13px;
		padding-left: 1em;
	    text-align: left;
    	text-indent: -1em;
	}
	.box-top_text{
		font-size: 18px;
	}
	.note.-min{
		font-size: 13px;
	}
	.box-white{
		margin-top: 30px;
		padding: 25px 3vw;
	}
	.box-white_title{
		font-size: 15px;
	}
	.box-white_inner{
		background: #d7e8fc;
		margin-top: 20px;
		padding: 25px 2.5%;
	}
	.box-white_inner .content02{
		padding: 10px 3vw 20px;
	}
	.text-link a:after{
		bottom: 4px;
		transform: translateY(0);
	}
	.note.-spcopy{
		font-size: 12px;
	}
	.box-border{
		padding: 20px 3vw 35px;
	}
	.box-border_inner{
		padding: 20px 3vw;
		margin-top: 30px;
	}
	.headline03{
		font-size: 16px;
		padding: 10px 3vw 8px;
	}
}
/*--------------------------------
basic-infomation
--------------------------------*/
.inner .title{
	color: #2e2617;
	font-weight: 400;
	margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
	.inner .title{
		font-size: 20px;
	}
	#basic-infomation {
		padding: 46px 0 36px;
	}
}
/*--------------------------------
card-feature
--------------------------------*/
#card-feature {
    background-color: #e9f2ff;
    padding: 60px 0 60px;
}
#basic-infomation table th{
	color: #2e2617;
}
.feature01-block .row03 .block02 {
    padding-left: 70px;
}
#card-feature .btn-wrap{
	margin-top: 60px;
}
@media screen and (max-width: 767px) {
	#card-feature .title {
		font-size: 20px;
	}
}

/*--------------------------------
footer
--------------------------------*/
.applyBlock + .sc21-GlobalFooter-sitemaps + .GlobalFooter-saison {
    padding-bottom: 2.5rem;
}

</pre></body></html>