@charset "utf-8";
/* 錆ニック */

/* 扉絵テキスト　英語ボタン
---------------------------------------------*/

.en_button{ font-weight: 700; } 
.en_button::after{
	display: inline-block;
	vertical-align: baseline;
	margin-left: 0.3em;
}
@media screen and (max-width: 767px) {
	.en_button{ color: #065fd4; border-bottom: 1px solid #065fd4; }
	.en_button::after{
		content: url("../../../../assets/images/link.svg");
	}
}
@media screen and (min-width: 768px) {
	.en_button{ border-bottom: 1px solid #FFF; } 
	.en_button::after{
		content: url("../../../../assets/images/white-link.svg");
	}
}

/* 扉絵テキスト　英語ボタン　END
---------------------------------------------*/

.lang{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 20px;
	color: #152c81;
}
.lang .title{
	margin-right: 10px;
}
.lang .title img{
	display: inline-block;
	vertical-align: middle;
	width: 16px;
	height: 16px;
}
.lang .en a{
	display: block;
	width: 70px;
	height: 30px;
	border: 1px solid #ebedf2;
	border-radius: 15px;
	text-align: center;
}
.lang .en a:hover{
	opacity: 1;
	background-color: #152c81;
	color: #fff;
	border-color: #152c81;
}
.lang .jp{
	width: 70px;
	height: 30px;
	background-color: #f2f7fd;
	border: 1px solid #152c81;
	border-radius: 15px;
	text-align: center;
	margin-right: 5px;
}
.lang .jp:hover{
	cursor:pointer;
}
@media screen and (max-width: 767px) {
	.lang .jp,
	.lang .en a{
		padding-top: 2px;
	}	
}

	.youtubeWrap{
		max-width: 560px;
		margin: 40px auto;
	}
	.youtubeWrapInner{
		width: 100%;
		aspect-ratio: 16 / 9;
	}
	.youtubeWrapInner iframe {
		width: 100%;
		height: 100%;
	}

.freeWrap	h2{ 
  background-color: #152c81; 
  color: #fff; 
  font-size: 22px;
  font-weight: 700;
	line-height: 1.0;
  padding: 12px 20px; 
  margin: 50px auto 40px; 
}

.heading{
	margin: 50px auto;
}
.catch{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.kome{
	font-size: 13px;
}
@media screen and (min-width: 768px) {
	.kome{
    font-size: 14px;
  }
}

.lineupBox{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 13px;
}
.lineupBox .col{
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
}
.lineupBox .col .text{
	order: 2;
}
.lineupBox .col .img{
	order: 1;
	margin-bottom: 20px;
}
.lineupBox .col .img{
	max-width: 380px;
}
.lineupBox .col .gara{
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
	.lineupBox .col .gara{
    font-size: 18px;
  }
}

.package{
	display: flex;
	align-items: center;
	column-gap: 20px;
	border: 1px solid #c7cad5;
	padding: 20px;
	border-radius: 4px;
}
.package .text{
	order: 2;
	margin-bottom: 10px;
}
.package .img{
	order: 1;
	margin-bottom: 10px;
}
.package .gara{
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
	.package{
		padding: 20px 30px;
	}
	.package .gara{
		font-size: 18px;
	}
}

.useBox{
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px;
}
.useBox p{
	line-height: 1;
}
.useBox .use{
	background-color: #f2f7fd;
	border-radius: 4px;
}
.useBox .num{
	color: #e6960b;
	font-family: Poppins, san-serif;
	font-size: 22px;
	font-weight: 700;	
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
	.useBox .num{
		font-size: 28px;
	}
}

@media screen and (max-width: 599px) {
	.package .img{
		max-width: 170px;
	}
	.package .img img{
		min-width: 110px;
	}
	.useBox{
		justify-content: center;
	}
	.useBox .use{
		padding: 20px;
		margin-bottom: 25px;
		width: 100%;
	}
	.useBox .img img{
		width: min( 100% , 322px );
	}
}
@media screen and (min-width: 600px) and (max-width: 767px) {
	.package .img{
		flex-basis: 170px;
	}
	.package .img img{
		max-width: 170px;
	}
	.useBox{
		justify-content: space-between;
	}
	.useBox::after{
		content: "";
		display: block;
		width: calc( (100% - 10px) / 2 );
	}
	.useBox .use{
		padding: 20px;
		margin-bottom: 25px;
		width: calc( (100% - 10px) / 2 );
	}
}
@media screen and (min-width: 768px) {
	.package .img{
		flex-basis: 170px;
	}
	.package .img img{
		max-width: 170px;
	}
	.useBox{
		justify-content: space-between;
	}
	.useBox .use{
		padding: 30px;
		margin-bottom: 20px;
	}
	.useBox .use:nth-of-type(-n+4){
		width: calc( (100% - 30px) / 4 );
	}
	.useBox .use:nth-of-type(n+5):nth-of-type(-n+7){
		width: calc( (100% - 20px) / 3 );
	}
}


@media screen and (max-width: 767px) {
	.lineupBox{
		flex-direction: column;
	}
	.package{
		max-width: 600px;
	}
}

@media screen and (min-width: 768px) {
	.lineupBox{
		flex-direction: row;
	}
	.lineupBox .col{
		width: calc( ( 100% - 26px ) / 3 );
	}
	.package{
		width: max(50%, 583px);
	}
}

