@charset "utf-8";

:root {
	--ffEn: "Inter", sans-serif;
	--ffJa: "Noto Sans JP";
    --content-padding: 20px;
}


.c-width{
	/*max-width: 1440px;*/
	width: min(100%, calc(1440px + (var(--content-padding)* 2)));
	/*margin: 0 auto;*/
	margin-inline: auto;
	padding-left: var(--content-padding); 
    padding-right: var(--content-padding);
}

.c-width1100,
.c-width900{
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
.c-width900{
	max-width: 900px;
}

.c-heading-SS{
    font-weight: bold;
    color: var(--color-black);
    font-size: clamp(16px, 20 / 1440* 100vw, 20px);
    line-height: 1.6;
	letter-spacing: 0.05em;
}

.c-heading-S{
    font-weight: bold;
    color: var(--color-black);
    font-size: clamp(18px, 26 / 1440* 100vw, 24px);
    line-height: 1.6;
}

.c-heading{
    font-weight: bold;
    color: var(--color-black);
    font-size: clamp(20px, 32 / 1440* 100vw, 32px);
    line-height: 1.6;
}

.c-heading-L{
    font-weight: bold;
    font-size: clamp(22px, 34 / 1440* 100vw, 36px);
    line-height: 1.6;
	letter-spacing: 0.1em;
}

.c-h2-heading::before{
    content:"";
    width: 20px;
    height: 20px;
    background: url(../img/icon-ttl.png) no-repeat;
    background-size: 100% auto;
    margin: 0 auto;
    margin-bottom: 10px;
    display: block;
}

.c-h2-heading{
    font-size: clamp(22px, 34 / 1440* 100vw, 32px);
    position: relative;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: var(--color-black);
}
.c-h2-heading span{
    color: var(--color-blue);
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0em;
    display: block;
    font-family: var(--ffEn);
}
.c-h2-heading span.green{
	color: var(--color-green);
}

.c-h3-heading::before{
	content:"─";
	padding: 0 10px 0 0;
}



.c-description{
	margin: 20px auto 20px;
	color: #374452;
	text-align: center;
	font-weight: bold;
	font-size: clamp(15px, 18 / 1440* 100vw, 18px);
	letter-spacing: 0.05em;
	line-height: 2.2;
}




.c-line-white,
.c-line-gray,
.c-line-green,
.c-line-blue{
    position: relative;

}
.c-line-white::before{
    content:"";
    position: absolute;
    top:-10px;
    width: 100%;
    height: 10px;
    background:url(../img/bg-white-line.png) repeat-x;
}
.c-line-gray::before{
    content:"";
    position: absolute;
    top:-10px;
    width: 100%;
    height: 10px;
    background:url(../img/bg-gray-line.png) repeat-x;
}
.c-line-green::before{
    content:"";
    position: absolute;
    top:-10px;
    width: 100%;
    height: 10px;
    background:url(../img/bg-green-line.png) repeat-x;
}

.c-line-blue::before{
    content:"";
    position: absolute;
    top:-10px;
    width: 100%;
    height: 10px;
    background:url(../img/bg-blue-line.png) repeat-x;
}

.c-top-border{
	position: relative;
	border-top:6px solid var(--color-blue) 
}


.c-border{
	border-bottom: 1px solid #e0e0e0;
	position: relative;
}
.c-border::after{
    width: 10px;
    height: 1px;
    background: #0744A0;
    content: "";
    position: absolute;
    display: block;
    bottom: -1px;
}


.c-list li,
.c-list--number li{
	text-indent: -1em;
	padding-left: 1em;
}
.c-list li:before{
	content: "・";
}

.c-caution{
	padding-left: 1em; 
}

.c-caution li{
	font-size: clamp(13px, 14 / 1440* 100vw, 14px);
	position: relative;
	padding-left: 10px;
}

.c-caution li:before{
	content:"※";
	position: absolute;
	left: 0;
	top: 0;
	transform: translateX(-100%); 
}


.c-whiteBox{
	background: #fff;
	box-shadow: 0px 0px 100px 6px rgba(0, 0, 0, 0.08);
    border-radius:6px;
	padding: 40px 40px;
	margin:0px auto 0px;
	position: relative;
}

.c-whiteBox--step{
	margin-bottom: 80px;
}

.c-whiteBox--step::after{
	content:"";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 50px 0 50px;
	border-color: #9EB9EB transparent transparent transparent;
	position: absolute;
	bottom:-30px;
	left: 50%;
	margin-left:-50px;
}

.c-whiteBox--step--end::after{
	display: none;
}


.c-col2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin:0px auto;
}

.c-col3{
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	gap:20px;
	max-width: 1100px;
	margin: 40px auto 40px;
	background: #fff;
}

.c-col3-item{
	padding: 20px 20px 40px;
    border-top: 5px solid var(--color-blue);
    box-shadow: 0px 0px 100px 6px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.c-col3--border{
	max-width: 800px;
	margin: 0 auto;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: center;
	align-items: stretch; 
}

.c-col3--border-item{
	justify-self: center;
}

.c-col3--border-divider{
	width: 1px; 
	background: #eee;
	height: 100%; 
}

.c-col5{
	display: grid;
    grid-template-columns: 1fr 0.1fr 1fr 0.1fr 1fr;
    margin:0px auto;
	gap:40px;
	align-items: center;
}


.c-arrow::before{
	content:"";
	position: absolute;
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3px 0 3px 6px;
	border-color: transparent transparent transparent #0744A0;
	top:50%;
	margin-left:-20px;
	margin-top:-3px;
}

.c-subTtl img{
    height: 12px;
    width: auto;
    margin-bottom:0px;
}

.c-btn{
	background:var(--color-blue);
	color:#fff;
	display: inline-block;
	font-size: clamp(16px, 18 / 1440* 100vw, 18px);
	text-align: center;
	padding: 20px 40px 20px 60px;
	font-weight: bold;
	border-radius:60px;
	border-radius:calc(1px * infinity);
	margin: 20px auto;
	transition:0.3s ease;
	position: relative;
	width: 440px;
}
.c-btn-S{
	background:var(--color-blue);
	color:#fff;
	font-size: clamp(13px, 15 / 1440* 100vw, 15px);
	display: inline-block;
	text-align: center;
	padding: 6px 10px 6px 20px;
	font-weight: bold;
	border-radius:30px;
	border-radius:calc(1px * infinity);
	margin: 20px auto;
	transition:0.3s ease;
	position: relative;
}
.c-btn-S:hover{
	transform: translateX(10px); 
}

.c-btn--green{
	background:var(--color-green);
}
.c-btn--line{
	background:#06C755;
}

.c-btn--free::before{
	content:"";
	display: block;
	width: 60px;
	height: 60px;
	margin-top: -40px;
	left:4px;
	background: #ff0000;
	position: absolute;
	background: url(/assets/img/icon-free.png) no-repeat;
	background-size: 100% auto;

}


.c-btn .c-col2-btn{
	display: grid;
	grid-template-columns: 1fr 30px;
	gap:16px;
	align-items: center;
}

.c-btn-S .c-col2-btn{
	display: grid;
	grid-template-columns: 1fr 10px;
	gap:6px;
	align-items: center;
}


.c-btn__iconR{
	width: 30px;
	height: 16px;
	background:url(../img/icon-arrow-white.svg) no-repeat;
	background-size:100% auto;
	transition: transform 0.3s ease;
}
.c-btn-S__iconR{
	width: 10px;
	height: 10px;
	background:url(../img/icon-arrow-small.svg) no-repeat;
	background-size: auto 100%;
	transition: transform 0.3s ease;
}


.c-btn:hover .c-btn__iconR {
    transform: translateX(10px); /* 右に10px動かす（必要に応じて調整） */
}
.c-btn:hover {
	opacity: 0.9;
}



.c-contact{
	background: url(../img/bg_contact.png) top center;
	padding: 60px 40px;
	background-size: 100% auto;
	margin-top: -32px;
    z-index: 10;
    position: relative;
}

.c-contact__ttl{
	color: #fff;
	text-align: center;
	font-size: clamp(22px, 64 / 1440* 100vw, 64px);
	font-weight: bold;
}
.c-contact__subTtl{
	color: #fff;
	text-align: center;
	font-size: clamp(18px, 20 / 1440* 100vw, 20px);
}

.c-contact__content{
	display: grid;
	max-width: 1200px;
	margin: 20px auto 20px;
	grid-template-columns: 1fr 1fr;
	gap:0;
	align-items: stretch; 
}

.c-contact__box{
	color: #fff;
	padding:40px 20px;
	text-align: center;
	font-weight: 600;
	font-size: clamp(16px, 20 / 1440* 100vw, 20px);
	position: relative;
/**/
	display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.c-contact__box--blue{
	background: #184172;
}

.c-contact__box--green{
	background: #18B7AE;
}

.c-contact__box--line{
	background: #06C755;
}
.c-btn--contact{
	text-align: center;
	margin: 20px auto 20px;
	display: block;
	display: inline-block;
	background: #fff;
	padding: 10px 30px;
	font-weight: bold;
	border-radius: 60px;
	border-radius:calc(1px * infinity) ;
	font-size: clamp(14.5px, 18 / 1440* 100vw, 18px);
	display: grid;
	grid-template-columns: 1fr 30px;
	position: relative;
	width: 70%;
}

.c-btn--contact--phone{
	grid-template-columns: 30px 1fr;
	font-family: var(--ffEn);
	font-size: clamp(15.5px, 20 / 1440* 100vw, 20px);
}

.c-contact__box--blue .c-btn--contact{
	color: var(--color-blue);
}
.c-contact__box--green .c-btn--contact{
	color: var(--color-green);
}

.c-contact__box--line .c-btn--contact{
	color: #06C755;
}

.c-contact__box--blue .c-btn--contact .c-btn__iconR {
    width: 30px;
    height: 30px;
    background:url(../img/icon-contact-arrow.png) no-repeat center 8px;
    background-size: 100% auto;
    transition: transform 0.3s ease;
	display: inline-block;
}

.c-contact__box--green .c-btn--contact .c-btn__iconR {
    width: 30px;
    height: 30px;
    background:url(../img/icon-contact-download.png) no-repeat center 2px;
    background-size: auto 90%;
    transition:transform 0.3s ease;
	display: inline-block;
}

.c-contact__box--green .c-btn--contact--phone .c-btn__iconR {
    width: 30px;
    height: 30px;
    background:url(../img/icon-contact-tel.png) no-repeat right 0px;
    background-size: auto 100%;
    transition:transform 0.3s ease;
	display: inline-block;
	margin:2px 0px 0 30px;
}

.c-contact__box--line .c-btn--contact .c-btn__iconR {
    width: 30px;
    height: 30px;
    background:url(../img/icon-contact-arrow--line.png) no-repeat center 8px;
    background-size: 100% auto;
    transition: transform 0.3s ease;
	display: inline-block;
}

.c-contact__box--blue .c-btn--contact:hover .c-btn__iconR {
    transform: translateX(10px); 
}


.c-contact__box--green .c-btn--contact:hover .c-btn__iconR {
    transform: translateY(6px); 
}

.c-contact__box--green .c-btn--contact--phone:hover .c-btn__iconR {
    transform: translateX(10px); 
}
.c-contact__box--line .c-btn--contact:hover .c-btn__iconR {
    transform: translateX(10px); 
}



.c-point img{
	height: 24px;
    width: auto;
    margin:20px auto 20px;
}



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

	.c-description{
		margin: 20px auto 20px;
		text-align: left;
		line-height: 1.8;
	}
	

	.c-btn{
		width: 90%;
		padding: 16px 40px 16px 60px;
		line-height: 1.4;
	}

	.c-contact{
		padding: 60px 20px;
		background-size: 100% auto;
	}

	.c-contact__content{
		display: block;
	}
	.c-btn--contact{
		width: 100%;
		grid-template-columns: 1fr 30px;
		padding: 10px 20px;
	}

	.c-btn--contact--phone{
		width: 100%;
		grid-template-columns: 30px 1fr;
		padding: 10px 20px;
		font-size: 16px;
	}

	.c-contact__box--blue .c-btn--contact .c-btn__iconR {
		width: 20px;
		height: 20px;
		background: url(../img/icon-contact-arrow.png) no-repeat center 8px;
		background-size: 100% auto;
	}

	.c-contact__box--green .c-btn--contact .c-btn__iconR {
		width: 20px;
		height: 20px;
		background: url(../img/icon-contact-download.png) no-repeat center 2px;
		background-size: auto 90%;
	}

	.c-contact__box--green .c-btn--contact--phone .c-btn__iconR {
		width: 30px;
		height: 30px;
		background:url(../img/icon-contact-tel.png) no-repeat right 0px;
		background-size: auto 100%;
		transition:transform 0.3s ease;
		display: inline-block;
	}
	
	.c-whiteBox{
		padding: 20px 20px;
		margin:40px auto 40px;
	}

	.c-whiteBox--step{
		margin-bottom: 80px;
		padding: 80px 20px 20px;
	}
	
	.c-whiteBox--step::after{
		content:"";
		display: inline-block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 30px 50px 0 50px;
		border-color: #9EB9EB transparent transparent transparent;
		position: absolute;
		bottom:-30px;
		left: 50%;
		margin-left:-50px;
	}
	.c-whiteBox--step--end::after{
		display: none;
	}
}