@charset "utf-8";
/* CSS Document */

#mainContent {
	color: #191919;
	font-size: 14px;
	line-height: 1.8em;
	letter-spacing: .04em;
}
#mainContent *{box-sizing: border-box;}

a { transition: .8s cubic-bezier(.2, 1, .2, 1); }
a:hover {
    color: inherit;
    opacity: .6;
}

@media screen and (max-width: 480px) {
	#mainContent {
		font-size: 13px;
	}
}

/*------------------------------------------------------
　h要素
------------------------------------------------------*/
.sceneArea h1{
	margin: 10px auto;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3em;
}

/*------------------------------------------------------
　h要素（新デザイン）
------------------------------------------------------*/
/*type1*/
.h-type1 {
	font-size: 27px;
	font-weight: 900;
	line-height: 1.3em;
	color: #0b4ea2;
	letter-spacing: .08em;
	padding: 15px 0;
	border-bottom: 5px solid #ebeff3;
	margin-bottom: 30px;
	position: relative;
}
.h-type1:after {
	content: "";
	width: 50%;
	height: 5px;
	background: #0b4ea2;
	position: absolute;
	bottom: -5px;
	left: 0;
}

/*type2*/
.h-type2 {
	font-size: 20px;
	line-height: 1.3em;
	font-weight: bold;
	color: #FFF;
	letter-spacing: .08em;
	padding: 10px 25px;
	border-left: 5px solid #00285a;
	margin-bottom: 30px;
	background: #0b4ea2;
}

/*type3*/
.h-type3 {
	font-size: 19px;
	line-height: 1.3em;
	font-weight: bold;
	color: #00285a;
	letter-spacing: .08em;
	padding: 10px 25px;
	border-bottom: 1px solid #00285a;
	margin-bottom: 30px;
	background: #f1f1f1;
}

/*type4*/
.h-type4 {
	font-size: 19px;
	line-height: 1.3em;
	font-weight: bold;
	color: #414141;
	padding-bottom: 5px;
	border-bottom: 1px solid #191919;
	margin-bottom: 20px;
}

/*type5*/
.h-type5 {
	font-size: 20px;
	line-height: 1.3em;
	font-weight: bold;
	color: #232323;
	padding: 10px 25px;
	border-left: 9px solid #0b4ea2;
	border-bottom: 1px solid #191919;
	margin-bottom: 25px;
    letter-spacing: .08em;
}

/*type6*/
.h-type6 {
	color: #232323;
	margin-bottom: 25px;
	padding: 8px 15px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3em;
	border-left: 5px solid #0b4ea2;
    letter-spacing: .08em;
}

@media screen and (max-width: 786px) {
	.sceneArea h1{
		margin: 10px 3%;
		font-size: 28px;
	}
	.sceneArea h2 + p{
		margin: 0 3%;
	}
	
	/*type1*/
	.h-type1 {
		padding: 0 20px 15px;
	}
	
	/*type4*/
	.h-type4 {
		padding: 0 20px 5px;
	}
}

@media screen and (max-width: 480px) {
	.sceneArea h1{
		margin: 10px 3%;
		font-size: 28px;
	}
	/*type1*/
	.h-type1 {
		font-size: 22px;
		padding: 10px 20px;
		margin-bottom: 20px;
	}
	
	/*type2*/
	.h-type2 {
		font-size: 18px;
		margin-bottom: 30px;
	}

	/*type3*/
	.h-type3 {
		font-size: 16px;
		margin-bottom: 30px;
	}

	/*type4*/
	.h-type4 {
		font-size: 16px;
	}
    
    /*type5*/
	.h-type5 {
		font-size: 16px;
	}
}


/*------------------------------------------------------
　リンクボタン
------------------------------------------------------*/
.link-btn {
	width: 70%;
	margin: 0 auto 90px;
}

.link-btn a {
	display: block;
	background: linear-gradient(-10deg, #ff8227 50%, #fc6827 50%);
	color: #FFF;
	padding: 15px 20px;
	font-size: 19px;
	font-weight: bold;
	text-align: center;
	letter-spacing: .08em;
	border-radius: 100px;
	border: 2px solid #ffb595;
}

.link-btn a span {
	margin-right: 15px;
}

/**/
.link-btn-blue {
	margin: 0 auto 50px;
}
.link-btn-blue a {
	display: block;
	width: 70%;
	background-color: #486095;
	color: #FFF;
	margin: auto;
	padding: 15px 45px 15px 25px;
	font-size: 19px;
	font-weight: bold;
	letter-spacing: .08em;
	border-radius: 100px;
	position: relative;
}
.link-btn-blue a:after {
	content: "\f178";
	display: block;
	height: auto;
	font-family: 'Font Awesome 6 Free';
	font-size: 20px;
	transition: all .3s ease;
	position: absolute;
	right: 15px;
	transform: translate(0, -50%);
	position: absolute;
	top: 50%;
}

.link-btn-blue a:hover:after {
	right: 10px;
}


@media screen and (max-width: 480px) {
	.link-btn {
		width: 80%;
		margin: 0 auto 60px;
	}
	.link-btn a {
		font-size: 16px;
	}
}


/*------------------------------------------------------
	コンテンツ内
------------------------------------------------------*/
.main-img{
	margin: 10px auto 15px;
}

/**/
.sceneArea > section{
	margin: 30px auto 50px;
}

@media screen and (max-width: 786px) {
	.main-img + p{
		margin: 0 3%;
	}
}


/*-------------------------
	実績
*/
.trackrecord-box > p{
	margin-top: 30px;
}

@media screen and (max-width: 786px) {
	.trackrecord-box > img{
		width: 94%;
		height: auto;
		margin: 0 3%;
	}
	.trackrecord-box > p{
		margin: 20px 3% 0;
	}
}


/*-------------------------
	追加情報
*/
.pickup-box{
	margin: 50px auto;
	padding: 30px 40px;
	background-image: linear-gradient(155deg, #f5f5f5 65%, #eaeaea 65%);
}
.pickup-box .title{
	color: #205daa;
	font-size: 25px;
	font-weight: 700;
	text-align: center;
}
.pickup-box > img{
	display: block;
	margin: 20px auto;
}
/**/
.pickup-box ul.point-list{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 20px auto;
}
.pickup-box ul.point-list > li{
	background-color: #fff;
	color: #4a4a4a;
	padding: 8px 10px 8px 50px;
	font-size: 19px;
	font-weight: 700;
	text-align: center;
	border-radius: 30px;
	position: relative;
}
.pickup-box ul.point-list > li:before{
	content: "\f00c";
	display: block;
	width: 20px;
	height: 20px;
	color: var(--main-color);
	font: var(--fa-font-solid);
	font-size: 16px;
	line-height: 20px;
	border: 2px solid var(--main-color);
	border-radius: 50%;
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}

/**/
.pickup-box ul.type-list{
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 20px auto;
}
.pickup-box ul.type-list > li{
	background-color: #fff;
	padding: 5px 20px;
	font-size: 17px;
	font-weight: 700;
	border: 1px solid #111;
	border-radius: 5px;
}

/**/
.pickup-box .link-btn{
	margin: 20px auto 10px;
}

@media screen and (max-width: 786px) {
	/*--追加情報--*/
	.pickup-box{
		margin: 50px 3%!important;
		padding: 3%;
	}
	.pickup-box .title{
		font-size: 23px;
	}
	/**/
	.pickup-box ul.point-list{
		gap: 10px;
	}
	.pickup-box ul.point-list > li{
		font-size: 18px;
	}

	/**/
	.pickup-box ul.type-list{
		gap: 10px;
	}
	.pickup-box ul.type-list > li{
		padding: 5px 15px;
		font-size: 16px;
	}

	/**/
	.pickup-box .link-btn{
		width: 80%;
	}
}

@media screen and (max-width: 480px) {
	/*--追加情報--*/
	.pickup-box{
		padding: 4%;
	}
	.pickup-box .title{
		font-size: 20px;
	}
	.pickup-box ul.point-list > li{
		font-size: 15px;
	}
	.pickup-box ul.point-list > li:before{
		width: 18px;
		height: 18px;
		font-size: 15px;
		line-height: 18px;
	}

	/**/
	.pickup-box ul.type-list > li{
		padding: 5px 10px;
		font-size: 15px;
	}

	/**/
	.pickup-box .link-btn{
		width: 90%;
	}
}


/*-------------------------
　よくある質問
*/ 
.faq-box{
	margin: 50px auto;
}
.faq-box > dl,
.faq-box > details{
	margin: 30px auto;
	padding: 20px;
	border: 2px solid #dce2e8;
	border-radius: 15px;
}
.faq-box > dl > dt,
.faq-box > details summary{
	background-image: radial-gradient(circle, #a5b8cb 2px, transparent 2px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 10px 4px;
	color: #4b8ed1;
	padding: 5px 5px 10px 45px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.6em;
	position: relative;
}
.faq-box > dl > dt:before,
.faq-box > details summary:before{
	content: "Ｑ";
	font-size: 22px;
	font-weight: 700;
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.faq-box > dl > dd,
.faq-box > details > div{
	padding: 10px 0 0 45px;
	position: relative;
}
.faq-box > dl > dd:before,
.faq-box > details > div:before{
	content: "A";
	color: #ff5959;
	font-size: 22px;
	font-weight: 700;
	position: absolute;
	left: 15px;
	top: 15px;
	bottom: 0;
	margin: auto;
}
.faq-box > dl > dd p,
.faq-box > details > div p{
	color: #4a4a4a;
}
.faq-box > dl > dd p a,
.faq-box > details > div p a{
	text-decoration: underline;
}
.faq-box > dl > dd p a:hover,
.faq-box > details > div p a:hover{
	text-decoration: none;
	opacity: 1;
}

@media screen and (max-width: 786px) {
	.faq-box > dl,
	.faq-box > details{
		margin: 30px 3%;
		padding: 20px;
	}
	.faq-box > dl > dt,
	.faq-box > details summary{
		font-size: 17px;
	}
	.faq-box > dl > dt:before,
	.faq-box > details summary:before{
		font-size: 22px;
	}

	.faq-box > dl > dd:before,
	.faq-box > details > div:before{
		font-size: 22px;
	}
}

@media screen and (max-width: 480px) {
	.faq-box > dl,
	.faq-box > details{
		margin: 30px 3%;
		padding: 15px;
	}
	.faq-box > dl > dt,
	.faq-box > details summary{
		font-size: 17px;
	}
	.faq-box > dl > dt:before,
	.faq-box > details summary:before{
		font-size: 22px;
	}

	.faq-box > dl > dd:before,
	.faq-box > details > div:before{
		font-size: 22px;
	}
}


/*------------------------------------------------------
	グループリンク
------------------------------------------------------*/
.group-cont{
	margin-bottom: 40px;
}
.group-cont .title{
	color: #4a4a4a;
	margin-bottom: 15px;
	padding: 0 10px;
	font-size: 2.0rem;
	font-weight: 700;
	border-left: 2px solid #111;
}
.group-cont ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}
.group-cont ul > li{
	width: calc((100% - 60px) / 3);
	background-color: #dbdbdb;
	background-size: 110%;
	transition: all .3s ease;
}
.group-cont ul > li a{
	display: block;
	transition: all .3s ease;
}
.group-cont ul > li a:hover{
	opacity: 0.9;
	box-shadow: 0 0 0 3px #0791b8;
}

@media screen and (max-width: 786px) {
	.group-cont{
		margin: 0 3% 40px;
	}
	.group-cont .title{
		margin: 0 3% 15px;
		font-size: 20px;
	}
	.group-cont ul{
		margin: 0 3%;
		gap: 20px;
	}
	.group-cont ul > li{
		width: calc((100% - 40px) / 3);
	}
}

@media screen and (max-width: 480px) {
	.group-cont ul{
		gap: 15px;
	}
	.group-cont ul > li{
		width: calc((100% - 15px) / 2);
	}
}

