/* common */
.section{
	padding: 110px 0;
}

.subTit{
	font-size: 16px;
	color: #002101;
	display: inline-block;
	padding: 6px 8px;
	background: rgba(0,189,6,0.2);
	line-height: 1.6;
	margin-bottom: 20px;
}

.tit{
	font-size: 35px;
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 1.5;
	text-align: left;
	color: #303030;
}

.tit strong{
	font-weight: 600;
}

.tit.line{
	margin-bottom: 0;
}

.tit.line::after{
	content: '';
	display: block;
	width: 75px;
	height: 4px;
	background: var(--mainCol);
	margin: 85px 0;
}

.conTxt{
	font-size: 18px;
	color: #1f1f1f;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 40px;
	text-align: center;
}

.conTxt strong{
	font-weight: bold;
} 

.imgBox img{
	max-width: 100%;
}

.col{
	color: #cdc081;
}

/* visual */
.visual{
	position: relative;
}

.visual .slideUl{
	margin-bottom: 0 !important;
}

.visual .slideLi img{
	width: 100%;
}

.visual .slick-dots{
	bottom: 60px;
}

.visual .slick-dots li.slick-active button:before{
	/* color: var(--mainCol); */
}

.visual .btnUl{
	width: 90%;
	max-width: 1200px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,50%);
	background: #fff;
	border-radius: 30px;
	box-shadow: rgba(0,0,0,0.1) 0 0 15px;
}

.visual .btnUl ul{
	display: flex;
}

.visual .btnUl ul li{
	width: 50%;
	position: relative;
}

.visual .btnUl ul li + li::before{
	content: '';
	display: block;
	width: 1px;
	height: 14px;
	background: #b2b2b2;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
}

.visual .btnUl ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	height: 90px;
}

.visual .btnUl ul li a img{
	width: 34px;
}

.visual .btnUl ul li a span{
	font-size: 18px;
	font-weight: 500;
	color: #333;
}

/* scrollBox */
.scrollBox{
	position: fixed;
	left: 50%;
	bottom: 100px;
	transform: translate(-50%,0);
	z-index: 20;
	display: flex;
	align-items: center;
}

.scrollBox.off{
	display: none;
}

.scrollBox p{
	color: #fff;
	font-weight: 300;
	font-size: 14px;
}

.scrollBox .scroll{
	width: 10px;
	height: 34px;
	border-radius: 100px;
	box-sizing: border-box;
	background: rgba(255,255,255,0.2);
	display: block;
	position: relative;
	margin-left: 20px;
}

.scrollBox .scroll span{
	display: block;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	left: 0%;
	top: 0%;
	animation: scroll 5s infinite;
}

@keyframes scroll{
	0%{top: 0%;transform: translateY(0%);}
	30%{top: 100%;transform: translateY(-100%);}
	80%{top: 0%;transform: translateY(0%);}
}

/* section1 */
.section1 .topDiv{
	display: flex;
	align-items: center;
	margin-bottom: 50px;
	position: relative;
}

.section1 .topDiv .tit{
	margin-bottom: 0;
	margin-right: 20px;
}

.section1 .topDiv ul{
	display: flex;
}

.section1 .topDiv ul li{
	cursor: pointer;
	border-radius: 100px;
	color: #676767;
	font-size: 18px;
	background: #dcdcdc;
	line-height: 1;
	padding: 10px 30px;
}

.section1 .topDiv ul li + li{
	margin-left: 15px;
}

.section1 .topDiv ul li.on{
	font-weight: 600;
	background: var(--mainCol);
	color: #fff;
}

.section1 .moreBtn{
	display: inline-block;
	color: #b5a390;
	font-size: 18px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}

.section1 article{
	display: none;
}

.section1 article.on{
	display: block;
}

.section1 article .stepUl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
}

.section1 article .stepUl li{
	position: relative;
	width: calc(100%/3 - 70px/3);
	margin-top: 35px;
	border-radius: 30px;
	border: 2px solid var(--mainCol);
	text-align: center;
	box-sizing: border-box;
	padding: 35px 15px;
}

.section1 article .stepUl li:nth-child(-n+3){
	margin-top: 0;
}

.section1 article .stepUl li span{
	display: inline-block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	font-weight: 600;
	background: var(--mainCol);
	padding: 10px 30px;
	line-height: 1;
	border-radius: 15px;
}

.section1 article .stepUl li img{
	width: 90px;
}

.section1 article .stepUl li h5{
	font-weight: 600;
	font-size: 18px;
	line-height: 1.3;
	color: #333;
	margin-bottom: 10px;
}

.section1 article .stepUl li p{
	color: #676767;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
}

.section1 article .txt1{
	color: var(--mainCol);
	font-size: 26px;
	font-weight: 600;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.section1 article .txt1 img{
	margin-right: 10px;
}

.section1 article .txt2{
	color: #333;
	font-size: 18px;
	line-height: 1.7;
}

.section1 article .txt2 strong{
	font-weight: 600;
}

.section1 .linkUl{
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

.section1 .linkUl li{
	width: calc(100%/2 - 30px/2);
	border-radius: 30px;
	overflow: hidden;
}

.section1 .linkUl li a{
	display: flex;
	align-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: 265px;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}

.section1 .linkUl li:nth-child(1) a{
	background-image: url(/include/img/main_junior.jpg);
}

.section1 .linkUl li:nth-child(2) a{
	background-image: url(/include/img/main_senior.jpg);
}

.section1 .linkUl li .txtBox{
	width: 100%;
	text-align: center;
}

.section1 .linkUl li .txtBox h5{
	color: #fff;
	font-size: 26px;
	font-weight: 600;
	line-height: 1;
}

.section1 .linkUl li .txtBox .more{
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	display: inline-block;
	text-align: center;
	max-width: 180px;
	margin: auto;
	padding: 7px 30px;
	border-radius: 10px;
	border: 2px solid #fff;
	margin-top: 20px;
	display: none;
}

.section1 .countUl{
	display: flex;
	justify-content: space-between;
}

.section1 .countUl li{
	width: calc(100%/4 - 90px/4);
	border-radius: 20px;
	background: #f7f7f7;
	box-sizing: border-box;
	padding: 30px 10px;
	text-align: center;
}

.section1 .countUl li h5{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	color: #676767;
	margin-bottom: 10px;
}

.section1 .countUl li p{
	color: var(--mainCol);
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
}

/* section2 */
.section2{
	background: #f7f7f7;
}

/* section3 */
.section3 .topBox{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.section3 .topBox .tit{
	margin-bottom: 0;
}

.section3 .topBox a{
	display: inline-block;
	line-height: 1;
	color: var(--mainCol);
	font-size: 18px;
	font-weight: 500;
}

.section3 .slideUl{
	margin: 0 -15px;
}

.section3 .slideLi{
	margin: 0 15px;
	box-sizing: border-box;
	border-radius: 20px;
	border: 3px solid var(--mainCol);
	overflow: hidden;
}

.section3 .slideLi img{
	max-width: 100%;
	width: 100%;
}

/* section4 */
.section4{
	background: #f7f7f7;
}

.section4 .inner{
	display: flex;
	justify-content: space-between;
}

.section4 .inner > div{
	background: #fff;
	border-radius: 30px;
	overflow: hidden;
	box-sizing: border-box;
	width: calc(100%/2 - 30px/2);
	padding: 30px;
}

.section4 .inner .titDiv{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--mainCol);
}

.section4 .inner h3{
	display: flex;
	align-items: center;
}

.section4 .inner h3 img{
	width: auto;
	height: 30px;
	margin-right: 10px;
}

.section4 .inner h3 span{
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
	color: #333;
}

.section4 .inner .titDiv a{
	font-size: 18px;
	color: var(--mainCol);
	font-weight: 500;
	line-height: 1;
}

.section4 .inner ul li{
	display: block;
}

.section4 .inner ul li + li{
	margin-top: 13px;
}

.section4 .inner ul li a{
	font-size: 16px;
	color: #676767;
	font-weight: 500;
}

.section4 .inner ul li h5{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.section4 .inner .rightBox ul li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section4 .inner .rightBox ul li h5{
	width: 70%;
}

.section4 .inner .rightBox ul li span{
	color: #b1b1b1;
	font-size: 16px;
	font-weight: 500;
}





/* ---------------------------------------------------------- 720 */
@media screen and (max-width: 720px){

/* common */
.tit{
	font-size: 5.5vw;
	margin-bottom: 3vw;
}

.tit .sm{
	font-size: 4vw;
	margin-bottom: 1vw;
}

.tit .hl{
	padding: 0 2vw;
}

.tit .sub{
	font-size: 4vw;
}

.tit.line::after{
	width: 12vw;
	height: 3px;
	margin: 8vw 0;
}

.subTit{
	font-size: 3vw;
	margin-bottom: 3vw;
}

.conTxt{
	font-size: 3.5vw;
	margin-bottom: 7vw;
}

.section{
	padding: 12vw 0;
}

/* visual */
.visual{
	margin-bottom: 0vw;
}

.visual .slick-dots{
	bottom: 6vw;
}

.visual .btnUl{
	width: 100%;
	position: static;
	transform: translateY(-5vw);
	border-radius: 5vw;
	box-shadow: rgba(0,0,0,0.1) 0 0 3vw;
}

.visual .btnUl ul{
	display: flex;
}

.visual .btnUl ul li{
	width: 50%;
	position: relative;
}

.visual .btnUl ul li + li::before{
	content: '';
	display: none;
	width: 1px;
	height: 10vw;
	background: #b2b2b2;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
}

.visual .btnUl ul li a{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	gap: 0px;
	height: 20vw;
}

.visual .btnUl ul li a img{
	width: 8vw;
	margin-bottom: 1vw;
}

.visual .btnUl ul li a span{
	font-size: 3vw;
	width: 100%;
	text-align: center;
}

/* scrollBox */
.scrollBox{
	bottom: 12vw;
}

.scrollBox p{
	font-size: 12px;
}

.scrollBox .scroll{
	width: 8px;
	height: 28px;
	margin-left: 14px;
}

.scrollBox .scroll span{
	width: 8px;
	height: 8px;
}

/* section1 */
.section1 .topDiv{
	margin-bottom: 7vw;
}

.section1 .topDiv .tit{
	margin-right: 3vw;
}

.section1 .topDiv ul li{
	font-size: 3vw;
	padding: 2vw 3vw;
}

.section1 .topDiv ul li + li{
	margin-left: 2vw;
}

.section1 .moreBtn{
	font-size: 3vw;
}

.section1 article .stepUl{
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 7vw;
}

.section1 article .stepUl li{
	position: relative;
	width: calc(100%/2 - 3vw/2);
	margin-top: 6vw !important;
	border-radius: 5vw;
	border: 2px solid var(--mainCol);
	text-align: center;
	box-sizing: border-box;
	padding: 7vw 3vw;
}

.section1 article .stepUl li:nth-child(-n+2){
	margin-top: 0 !important;
}

.section1 article .stepUl li span{
	padding: 2vw 4vw;
	border-radius: 3vw;
}

.section1 article .stepUl li img{
	width: 50%;
}

.section1 article .stepUl li h5{
	font-size: 3.5vw;
	margin-bottom: 2vw;
}

.section1 article .stepUl li p{
	font-size: 2.5vw;
}

.section1 article .stepUl li p br{
	display: none;
}

.section1 article .txt1{
	font-size: 3.6vw;
	margin-bottom: 2vw;
}

.section1 article .txt1 img{
	margin-right: 2vw;
	width: 5vw;
}

.section1 article .txt2{
	color: #333;
	font-size: 3vw;
}

.section1 .linkUl{
	margin-top: 7vw;
	flex-wrap: wrap;
}

.section1 .linkUl li{
	width: calc(100%);
	border-radius: 5vw;
}

.section1 .linkUl li + li{
	margin-top: 3vw;
}

.section1 .linkUl li a{
	height: 50vw;
}

.section1 .linkUl li .txtBox h5{
	font-size: 5vw;
}

.section1 .linkUl li .txtBox .more{
	font-size: 3vw;
	max-width: none;
	width: auto;
	padding: 1vw 4vw;
	border-radius: 2vw;
	border: 1px solid #fff;
	margin-top: 4vw;
	display: inline-block;
}

.section1 .countUl{
	flex-wrap: wrap;
}

.section1 .countUl li{
	width: calc((100% - 3vw)/2);
	border-radius: 4vw;
	padding: 5vw 2vw;
	margin-top: 3vw;
}

.section1 .countUl li:nth-child(-n+2){
	margin-top: 0;
}

.section1 .countUl li h5{
	font-size: 3vw;
	margin-bottom: 2vw;
}

.section1 .countUl li p{
	font-size: 5vw;
}

/* section2 */

/* section3 */
.section3{
	overflow-x: hidden;
}

.section3 .topBox{
	margin-bottom: 6vw;
}

.section3 .topBox a{
	font-size: 3vw;
}

.section3 .slick-list{
	overflow: visible;
}

.section3 .slideUl{
	width: 80%;
	margin: auto -2vw;
}

.section3 .slideLi{
	margin: 0 2vw;
	border-radius: 4vw;
	border: 3px solid var(--mainCol);
}

/* section4 */
.section4 .inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.section4 .inner > div{
	border-radius: 5vw;
	width: calc(100%);
	padding: 30px;
}

.section4 .inner > div + div{
	margin-top: 5vw;
}

.section4 .inner .titDiv{
	padding-bottom: 2vw;
	margin-bottom: 4vw;
}

.section4 .inner h3 img{
	height: 5vw;
	margin-right: 2vw;
}

.section4 .inner h3 span{
	font-size: 4vw;
}

.section4 .inner .titDiv a{
	font-size: 3vw;
}

.section4 .inner ul li + li{
	margin-top: 2vw;
}

.section4 .inner ul li a{
	font-size: 3vw;
}

.section4 .inner .rightBox ul li span{
	font-size: 2.5vw;
}












}