@charset "UTF-8";
.wrapper-inner .topTxt {margin-bottom: 26px; font-size: 13px;}
.wrapper-inner .btns {text-align: center;}
.wrapper-inner .btns .btn {width: 100%; max-width: 450px; border-radius: 10px; padding: 25px 0; background-color: #10896b; color: white; font-size: 24px; line-height: 1; font-weight: 600; position: relative; text-align: center; line-height: 1; display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center; margin: 0 auto;}
/*.wrapper-inner .btns .btn::before {content: ""; width: 17px; height: 13px; background-image: url(../images/common/icon-arrow.png); background-repeat: no-repeat; background-position: left center; background-size: cover; position: absolute; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); left: 10px;}*/
.program__btn{
	width: 100%;
	max-width: 320px;
	height: 60px;
	border-radius: 10px;
	padding: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #105f89;
	color: white;
	font-size: 18px;
	line-height: 1;
	font-weight: 600;
	text-align: center;
	position: relative;
	transition: 0.2s linear;
}
.program__btn.btn--green{
	background-color: #10896b;
}

.program__btn::before {
    content: "";
    display: block;
    min-width: 17px;
    height: 13px;
    background-image: url(../images/program/icon-arrow.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
	position: absolute;
	left: 1em;
	top: 50%;
	transform: translateY(-50%);
}
.program__btnGroup{
	display: flex;
	align-items: flex-end;
}
.program__btnGroup .col:nth-child(1){
	padding-right: 26px;
}
.program__btnGroup .col:nth-child(1) a:nth-child(1){
	margin-bottom: 38px;
}
.program__btn span{
	padding: 0 25px;
	line-height: 1.4;
	/* font-size: min(1.5vw, 18px); */
	font-size: clamp(14px,1.5vw, 18px);
}
/* MEDIA */
@media screen and (max-width:768px){
	.wrapper-inner .btns .btn {padding: 20px 0; font-size: 18px;}
	.program__btnGroup{
		flex-direction: column;
		align-items: center;
	}
	.program__btnGroup .col:nth-child(1){
		padding-right: 0;
	}
	.program__btnGroup .col:nth-child(2){
		margin-top: 10px;
	}
	.program__btn span{
		padding: 0 20px;
	}
}