@charset "utf-8";

body{font-family: lineseed,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";}

/* ---------------------------------------------------------
■ ヘッダー
--------------------------------------------------------- */
header {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    background-color: #002b69;
    overflow: hidden;
	position: fixed;
    z-index: 15;
    transition:0.2s;
}

#head_btnbox {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    background-color: #002b69;
    overflow: hidden;
    padding: 5px;
}

/*追従ヘッダー*/
header #head_btnbox{
	position: fixed;
	height: 65px;
    top: 0;
	width: 100%;
	z-index: 500;
}
@media screen and (max-width: 767px){
	header #head_btnbox{
		height: 43px;
	}
}

/* ---------------------------------------------------------
■ TOPボタン
--------------------------------------------------------- */

#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
}
#page-top a {
	text-decoration: none;
	text-align: center;
	color: #444;
	font-size: 70%;
	font-weight: bold;
	background: rgba(237, 237, 237,.8);
	width: 60px;
	aspect-ratio:3/2;
	border-radius: 15px;
	display: flex;
	transition: .1s;
}
#page-top a span{
	display: block;
	margin: auto;
}
@media screen and (min-width: 767px) {
	#page-top a:hover{
		opacity: .7;
	}
}

/*-----------------------------------------
 TOP申し込みボタン
 -----------------------------------------*/

.head_apply_btn{padding-right:8px;}

.head_apply_btn a{
	position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    background-color:#FFF000;
    border: 3px solid #FFF000;
	padding:6px 12px;
    border-radius: 3px;
    transition: .2s;
}
.head_apply_btn a span{margin:auto 0;display:block;}
.head_apply_btn a span:nth-child(1){width:30px;line-height:0;transition: .2s;}
.head_apply_btn a svg{transition: .2s;}
.head_apply_btn a svg path {fill:#222;stroke-width: 0px;}
.head_apply_btn a span:nth-child(2){width:calc(100% - 35px);color:#222;font-weight:700;}

@media screen and (min-width:768px) {
	.head_apply_btn a:hover{background-color:rgba(0,0,0,0);}
	.head_apply_btn a:hover span:nth-child(2){color:#FFF000;}
	.head_apply_btn a:hover svg path {fill:#FFF000;}
}

/* ---------------------------------------------------------
■ フッター
--------------------------------------------------------- */
footer {
	width: 100%;
	text-align: center;
  	background-color:#002B69;
	color:#fff;
	padding:60px 0;
}
footer a{
	color:#fff;
}
footer .logo{
	width:50%;
	max-width: 570px;
}

footer ul {
    margin: 40px auto 0;
    text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
}
footer ul div {
    display: inline-block;
}
footer ul li {
    display: inline-block;
    color: #fff;
    letter-spacing: -0.01em;
}
footer ul li::before {
	content: "｜";
    padding: 0 10px;
}
footer ul li:first-child:before {
    content: "";
    padding: 0;
}


/* ---------------------------------------------------------
■ ライトボックス
--------------------------------------------------------- */
.featherlight{ padding: 2%}

.lightbox{ 
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	text-align: left;
    padding: 20px;
	background-color:#fff;
}

@media screen and (max-width: 767px){
	.lightbox {
	    padding: 25px 20px;
	}
}


/* ---------------------------------------------------------
■ フェードイン
--------------------------------------------------------- */
.fadein {
  visibility: hidden; }

.fadein_delay {
	-webkit-animation-delay: 0.8s;
	-ms-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.fadeInDown {
  visibility: visible !important;
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }


/* ---------------------------------------------------------
■ フェードインｊｓ
--------------------------------------------------------- */
.Fade_In{
	opacity: 0;
  	transition: all .5s ease;
	transform: translate(0, 100px);
}

.Fade_In.show{
  opacity: 1;
  transform: none;
}

/*----------------------------------------------------------
ハンバーガーメニュー
----------------------------------------------------------*/

.head-02.open {
  transform: translateX(10%);
  visibility: visible;
}
.lp-header__trigger.open span:nth-child(1) {
  transform: rotate(45deg);
}

.lp-header__trigger.open span:nth-child(2) {
  opacity: 0;
}

.lp-header__trigger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.head-wrap {
  position: relative;
}
.head-nav {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
	padding:8px 0;
}
.head-nav img {
  margin: 0 auto;
  display: block;
}
.head-items {
  display: flex;
  list-style: none;
  color: #ffffff;
  padding: 0;
  margin: 0 0 0 auto;
}
.head-items li {
  margin-right: 3em;
}
@media screen and (max-width: 1000px) {
  .head-items li {
    margin-right: 1.2em;
	  font-size:80%;
  }
}

.head-items a {
  text-decoration: none;
  color: #ffffff;
}
.head-items a:hover {
  color: #c6c6c6;
}
.lp-header__trigger {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 10px;
  background: none;
  border: none;
  padding: 0;
  height: 24px;
  cursor: pointer;
  margin: 0 0 0 auto;
  display: none;
}
.lp-header__trigger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e6e6e6;
  margin-bottom: 7px;
  transform-origin: center left;
  border-radius: 1px;
  transition: all 600ms ease;
}
.lp-header__trigger.open span{
  width: 25px;
}

.head-02 {
  width: 100%;
  transform: translateX(100%);
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  padding-top: 50px;
  padding-bottom: 21px;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 1;
  transition: all 600ms ease;
  visibility: hidden;
}
.head-02__wrap {
  padding: 0 10px;
}
.head-02 hr {
  margin: 0;
}
hr {
  border: none;
  border-top: 1px solid #888888;
  background: transparent;
}
.head-02__item {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 33%;
  color: #c6c6c6!important;
  padding: 17px;
}

.head-nav .head-logo{
	margin-left: 10px;
	height:40px;
	width:auto;
}

@media screen and (max-width: 767px) {
  .head-items {
    display: none;
    color: #dadada;
  }
  .lp-header__trigger{
    top: 20px;
    right: 20px;
    display: block;
  }
}

.header_after{
	height:56px;
}


/*----------youtube動画---------*/
.youtube{
	
}
.youtube iframe{
	aspect-ratio: 16 / 9;
	width:100%;
	height:auto;
}



/*=======================================
 ■ 追加分
=========================================*/


i.r{
	font-size:50%;
	font-style:normal;
	vertical-align:top;
	margin: 0 -2px;
}

/*---------MVエリア----------*/
.mv_area{
	background-image: url("../images/mv_area_bk.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.mv_box{
	background-image: url("../images/mv_box_bk.webp");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
}

.mv_main{
	display:flex;
	flex-wrap: wrap;
	margin: auto;
	max-width:1200px;
	padding:40px 0 0;
	position: relative;
}

.mv_main_img{
	position: relative;
	width:57%;
	height:auto;
	aspect-ratio:20 / 19;
	overflow: hidden;
}

.mv_main_img img{
	
}

.mv_main h1{
	position:absolute;
	width:56%;
	top:50%;
	right:15px;
	transform: translateY(-50%);
	filter: drop-shadow(0 0 2px rgba(0,0,0,.1));
}

/*-------------*/

.mv_record_box{background-color:#ebba23;overflow: hidden;}
.mv_record_main{
	position: relative;
	background-color:#ffde00;
	margin: auto;
	max-width:1260px;
}

.mv_record_text{
	position: relative;
	margin: auto;
	width:76%;
	padding:14px 0;
	z-index: 3;
}
.mv_record_main img[src*="line"]{
	position:absolute;
	top:0;
	width:auto;
	height:100%;
}
.mv_record_main img.left{left:0;transform:translateX(-50%);}
.mv_record_main img.right{right:0;transform:translateX(50%);}
.mv_record_text img[src*="title"]{
	width:100%;
}



/*---------導入----------*/

.intro_wrap{
	display:flex;
	flex-wrap: wrap;
	margin: auto;
	max-width:840px;
	padding:40px 0 70px;
}
.intro_img{
	margin: auto 0;
	width:160px;
}

.intro_text{
	margin: auto;
	width:calc(100% - 160px);
	padding:40px 0;
	background-image: url("../images/intro_text_bk.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size:contain;
}
.intro_text p{
	text-align: center;
	font-size:32px;
	font-weight:900;
	letter-spacing:0.08em;
	padding-bottom:25px;
}
.intro_text p:last-child{
	padding-bottom: 0;
}
.intro_text p span{
	font-size:60%;
	vertical-align:top;
	margin:0 -2px;
}


.recommend_box{background-color:rgba(197,197,197,.12);}

.recommend_triangle{
	position:relative;
	z-index: 1;
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    background-color: #fff;
    width: 100%;
    height: 200px;
    clip-path: polygon(0 0, 50% 100%, 100% 0%);
	font-size:45px;
	font-weight:900;
	letter-spacing:0.08em;
}

.recommend_wrap{
	position: relative;
    z-index: 2;
	display:flex;
	flex-wrap: wrap;
	margin: auto;
	max-width:1140px;
	margin-top:-100px;
	padding:0 20px;
}
.recommend_img{width:50%;}
.recommend_text{width:50%;margin:auto;}

.recommend_text p{
	text-align:center;
	font-size:60px;
	font-weight:900;
}


/*---------特長----------*/

.merit_area{
	position:relative;
	background-color:#ffca00;}

.merit_area::before{
	position: absolute;
    z-index: 3;
    content: "";
    width: 120vw;
    height: 20vw;
    left: 50%;
    top: -5vw;
    background-color:#ffca00;
    transform: translateX(-50%);
    border-radius: 50%;
}

.merit_title_box{
	position: relative;
	z-index: 3;
	margin:auto;
	max-width:1000px;
}
.merit_title{
	display:flex;
	flex-wrap: wrap;
	gap:20px;
}

.merit_title_box{padding:0 0 20px;}

.merit_title_img{margin:auto;width:calc(63% - 20px);}
.merit_title h2{
	width:37%;
	display:flex;
	flex-wrap: wrap;
	gap:10px;
}

.merit_h2_img{width:50%;line-height:0;}
.merit_h2_text{
	margin: auto 0 0;
	width:calc(50% - 10px);
	font-size:80px;
	font-weight:900;
	line-height:1.2em;
	text-align: left;
	padding-bottom:.2em;
}
.merit_h2_text span{display:block;}
.merit_h2_text span:nth-child(1){padding-bottom:10px;}
.merit_h2_text span:nth-child(2){font-size:150%;}

/*---------特長コンテンツ----------*/

.merit_list_area{
	padding:80px 40px;
	background-color:#ffca00;
	background-image:radial-gradient(circle, rgba(255,255,255,.5) 2px, rgba(255,255,255,0) 2px), radial-gradient(circle, rgba(255,255,255,.5) 2px, rgba(255,255,255,0) 2px);
	background-position: 0 4px, 10px 24px;
	background-size: 20px 40px;
}

.merit_list_box{
	margin:auto;
	max-width:1300px;
}

.merit_list_contents{
	max-width: 1200px;
    margin: 0 auto 80px -70px;
    padding: 40px 40px 40px 60px;
	background-color: #fff;
    border-radius: 30px;
	filter: drop-shadow(0 0 5px rgba(0,0,0,.4));
}


.merit_list_contents.rtl{
	margin: 0 -70px 80px auto;
    padding: 40px 60px 40px 40px;
}

.merit_list_title{
	display:flex;
	flex-wrap: wrap;
	gap:20px;
}
.merit_list_h3num{
	margin: auto 0;
	color:#e71f4c;
	font-weight:900;
	font-size:160px;
	line-height:1em;
	
}
.merit_list_h3text{
	margin: auto 0;
	font-size:55px;
	font-weight:900;
	text-align:left;
	line-height:1.1em;
}
.merit_list_h3text i.r{line-height:.8em;font-size:40%;}


.listbox03 .merit_list_h3text{width:calc(100% - 235px - 20px);}
.listbox03 .merit_list_h3text span{display:block;width:100%;}
.listbox03 .merit_list_h3text span:nth-child(1){font-size:50%;line-height:1.2em;padding-bottom:5px;}


.merit_list_main{
	display:flex;
	flex-wrap: wrap;
	gap:20px 30px;
}

.merit_list_main_title{
	width:100%;
	display:flex;
	flex-wrap: wrap;
}

.merit_list_main_title h4{
	position:relative;
	font-weight: 900;
    font-size: 60px;
    line-height: 1em;
	padding:0 0 0 30px;
	border-radius:15px;
	margin-bottom:10px;
}
.merit_list_main_title h4::before{
	content:"";
	position:absolute;
	display:block;
	width:20px;
	height:100%;
	left:0;
	bottom:0;
	background-color:#e71f4c;
	border-radius:5px;
}
.merit_list_main_title h4 i.r{line-height:.5em;}
.merit_list_main_titlesub{
	text-align: left;
	font-weight: 900;
	font-size: 36px;
	width: 100%;
	padding-top:5px;
}

.merit_list_text{font-size:19px;letter-spacing:0.1em;font-weight:700;line-height:1.55em;}
.merit_list_text p{font-weight: 700;line-height:1.7em;}
.merit_list_text p i.r{line-height:1.7em;}

.merit_list01{padding:20px 0;}
.merit_list01 .merit_list_img{width:calc(40% - 30px);}
.merit_list01 .merit_list_text{width:60%;margin: auto;padding-right:30px;}
.merit_list01 .merit_list_text h4{
	font-size: 40px;
    font-weight: 900;
    text-align: left;
    line-height: 1.2em;
	padding-bottom:0.2em;
}

.merit_list02-01{padding-bottom:40px;}
.merit_list02-01 .merit_list_img{width:calc(45% - 30px);}
.merit_list02-01 .merit_list_text{width:55%;margin:auto;padding-right:30px;}

.text_iio h5{
	text-align: left;
	font-weight:900;
	font-size:50px;
	line-height:1em;
}
.text_iio h5 span{position: relative;}
.text_iio h5 span::before{
	content:"アイ・アイ・オー";
	position: absolute;
	display:block;
	top:-23px;
	font-size:12px;
	left:0;
	width:200%;
}

.text_iio div:nth-child(2){
	text-align: left;
	font-weight:900;
	font-size:24px;
	line-height:1.7em;
}
.text_iio div:nth-child(3){
	text-align: left;
	font-weight:900;
	font-size:36px;
	padding-bottom:15px;
}
.text_iio div:nth-child(4){
	text-align: left;
	font-weight:700;
	padding-bottom:15px;
}
.text_iio div:nth-child(5){
	text-align: left;
}

.merit_list02-02{flex-direction: row-reverse;}
.merit_list02-02 .merit_list_img{width:calc(30% - 30px);padding:0 3%;}
.merit_list02-02 .merit_list_text{width:70%;margin:auto;padding-left:30px;}


.merit_list02-03 .merit_list_img{width:calc(25% - 30px);}
.merit_list02-03 .merit_list_text{width:75%;margin:auto;padding-right:30px;}

.merit_list02-04{flex-direction:row-reverse;}
.merit_list02-04 .merit_list_img{width:calc(25% - 30px);}
.merit_list02-04 .merit_list_text{width:75%;margin:auto;padding-left:30px;}


.merit_list_logo_area{width:100%;display:flex;flex-wrap:wrap;justify-content:center;}
.merit_list_logo{max-width:200px;position:relative;}
.merit_list_logo::before,.merit_list_logo::after{
	content:"";
	position: absolute;
	top:0;
	display:block;
	height:100%;
	width:auto;
	aspect-ratio:1 / 3;
	background-image:url("../images/partner_frame.webp");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.merit_list_logo::before{left:-200px;}
.merit_list_logo::after{right:-200px;transform: scale(-1,1);}

.merit_list_logo_text{
	width:100%;
	font-weight: 900;
	font-size:30px;
	line-height:1.3em;
	padding-bottom:20px;
}
.merit_list03 .merit_list_text{padding:0 60px 40px;}


.rtl .merit_list_title{flex-direction: row-reverse;}
.rtl .merit_list_h3text{text-align:right;}


.merit_list_hr{position:relative;padding:60px 0;}
.merit_list_hr::after{
	content:"";
	position:absolute;
	top:50%;
	left:0;
	transform: translateY(-50%);
	width:100%;
	height:2px;
	background-color:rgba(0,0,0,.25);
}


/*---------合格実績----------*/

.result_area{background-color:#e71f4c;}

.result_and_img{
	position: relative;
	z-index:5;
	margin:-40px auto 0;
	max-width:300px;
}

.result_title{
	position:relative;
	display:flex;
	flex-wrap: wrap;
	justify-content:center;
	padding:40px 0 20px;
}
.result_title::before,.result_title::after{
	content:"";
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	display: block;
	height:40%;
	background:repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 25px, #fff 0, #fff 50px);
	width:calc((100% - 680px) / 2);
}
.result_title::before{left:0;}
.result_title::after{right:0;}

.result_title h2{
	background-color:#e71f4c;
	max-width:680px;
	padding:0 40px;
}


.result_ambassador_box{
	position:relative;
	display:flex;
	flex-wrap: wrap;
	justify-content:center;
	padding:20px 0 0;
}
.result_ambassador_box::before,
.result_ambassador_box::after{
	content:"";
	position: absolute;
	top:0;
	display: block;
	height:100%;
	width:calc((100% - 600px) / 2);
	background-image:url("../images/result_frame.webp");
	background-position:right center;
	background-size: 110%;
	background-repeat: no-repeat;
}
.result_ambassador_box::before{left:0;}
.result_ambassador_box::after{right:0;transform:scale(-1,1);}

.result_ambassador{
	position: relative;
	max-width:600px;
}
.result_ambassador img[src*="comment"]{
	position:absolute;
	top:5%;
	right:-18%;
	width:50%;
	transform: rotate(-5deg);
}


.result_num_area{
	position:relative;
	z-index: 5;
	margin-top:-160px;
}
.result_num_year{margin:auto;max-width:1200px;}
.result_num_year img{width:55%;}
.result_num_box{background:linear-gradient(to bottom,rgba(255,255,255,0),rgba(255,255,255,0) 20%,rgba(255,255,255,1) 20%);}
.result_num_img{line-height:0;margin:auto;max-width:1240px;padding:0 20px 10px;}


.result_list_area{
	padding:80px 30px;
}
.result_list_box{
	position:relative;
	display:flex;
	flex-wrap: wrap;
	margin:auto;
	max-width:1300px;
}

.result_list_box li{
	line-height: 0;
	width:calc(100% / 3);
}


/*---------合格者の声----------*/
.voice_area{
	position:relative;
	background-image: url("../images/voice_bk.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.voice_area::after{
	content:"";
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background: linear-gradient(to right,#e8e8e2,rgba(255,255,255,0),#e8e8e2);
	mix-blend-mode:multiply;
}

.voice_box{
	position:relative;
	z-index:4;
	padding:60px 30px;
}

.voice_title{
	padding-bottom: 40px;
	line-height:1.7em;
	font-weight:900;
	font-size:50px;
}
.voice_title i.r{line-height:1.8em;}
.voice_title div:nth-child(1){}
.voice_title div:nth-child(2){font-size:210%;color:#e71f4c;}

.voice_title h2{
	padding:20px 0 0;
	font-size:150%;font-weight:900;
}
.voice_title h2 span{font-size:80%;}


.voice_list{
	margin: auto;
	max-width:1400px;
	position:relative;
	display:flex;
	flex-wrap: wrap;
	gap:20px;
}

.voice_inner{
	width:calc((100% - (20px * 2))/ 3);
	padding:30px;
	background-color:#fff;
	border-radius:8px;
	filter: drop-shadow(0 0 5px rgba(0,0,0,.4));
}

.voice_inner_title{
	display:flex;
	flex-wrap: wrap;
	gap:20px;
}

.voice_inner_titleimg{width:80px;}
.voice_inner_titletext{width:calc(100% - 100px);margin: auto;}

.voice_inner_titletext h3{
	position:relative;
	text-align:left;
	font-size:45px;
	line-height:1em;
	font-weight:900;
	color:#e71f4c;
	width: fit-content;
}
.voice_inner_titletext h3::after{
	content:"";
	position: absolute;
	display:block;
	top:0;
	right:-1.5em;
	width:auto;
	height:100%;
	aspect-ratio:3 / 2;
	background:url("../images/voice_icon.webp");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.voice_name{
	display:flex;
	flex-wrap: wrap;
	gap:5px;
	font-size:20px;
}

.voice_name div:nth-child(1){font-weight:900;}

.voice_inner_text{
	padding:20px 0 0;
}
.voice_inner_text h4{
	text-align:left;
	font-size:25px;
	line-height:1.2em;
	font-weight:900;
}


@media screen and (min-width: 1101px){
	.voice_list.double{
		max-width: 1200px;
	}
	.voice_list.double .voice_inner {width: calc((100% - (20px * 1)) / 2);}
	.voice_list.double .voice_inner_titletext h3 span{display:inline;}
	.voice_list.double .voice_inner_titletext h3 span:nth-child(2){font-size:100%;}
}


/*---------バナーエリア----------*/

.banner_area{
	padding:0 20px;
}

.banner_box{
	display:flex;
	flex-wrap:wrap;
	margin:auto;
	gap:40px;
	max-width:900px;
	padding:80px 0;
}

.banner_box a{
	display: block;
	width:100%;
}

.banner_box a div{
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	width:100%;
	height:auto;
	aspect-ratio:4 / 1;
	background-color:rgba(0,0,0,.55);
}

.banner_box a div span{
	margin: auto;
	display: inline-block;
	color:#fff;
	font-weight:900;
	font-size:40px;
}



/*---------申し込みボタン----------*/

.apply_box{
	background: linear-gradient(135deg, #fae51a 2%, #32cae8, #548df6, #32cae8);
	color:#fff;
	padding:0 20px;
}

.apply_wrap{
	display:flex;
	flex-wrap:wrap;
	margin:auto;
	gap:10px;
	max-width:1200px;
}

.apply_imgbox{width:55%;}
.apply_imgbox_comment{
	margin: auto;
	position:relative;
	padding:24px 20px 0;
	width:fit-content;
	font-size:20px;
	font-weight:700;
	letter-spacing:0.1em;
}
.apply_imgbox_comment::before {
	content: "";
	position: absolute;
	text-align: center;
	bottom: 0;
	left: 0px;
	height: 55%;
	width: 10px;
	border-left: 3px solid #fff;
	transform: skewX(26deg);
}

.apply_imgbox_comment::after {
	content: "";
	position: absolute;
	text-align: center;
	bottom: 0;
	right: 0px;
	height: 55%;
	width: 10px;
	border-right: 3px solid #fff;
	transform: skewX(-26deg);
}


.apply_textbox{
	width:calc(45% - 10px);margin: auto 0;
	font-weight:700;
	letter-spacing:0.1em;
	padding: 20px 0 0;
}

.apply_textbox_atwill{font-size:36px;line-height:1.6em;filter: drop-shadow(0 0 4px rgba(0,0,0,.4));}
.apply_textbox_atwill i{font-style:normal;position:relative;}
.apply_textbox_atwill i::before {
    content: "・";
    position: absolute;
    left: 50%;
    top: -.8em;
    transform: translateX(-50%);
}
.apply_textbox_atwill.course{font-size:46px;line-height:1.2em;font-weight:900;}
.apply_textbox_now{font-size:38px;font-weight:900;filter: drop-shadow(0 0 4px rgba(0,0,0,.4));}

.apply_textbox_button{
	padding: 20px 0;
}

.apply_textbox_button a{
	position: relative;
	display: inline-block;
	background-color:#fff;
	color:#548df6;
	font-weight:900;
	font-size:30px;
	padding:.2em 2em;
	border-radius:2em;
	filter: drop-shadow(0 0 4px rgba(0,0,0,.4));
	transition: .2s;
}

.apply_textbox_button a::after {
	content: "";
	position: absolute;
	top: 46%;
	right: 22px;
	width: 10px;
	height: 10px;
	border-bottom:#548df6 4px solid;
	border-right:#548df6 4px solid;
	transform: rotate(-45deg) translateY(-50%);
	transition: .2s;
}

@media screen and (min-width: 768px){
	.apply_textbox_button a:hover{
		background-color:rgba(255,255,255,.2);
		color:#002b69;
		filter: drop-shadow(0 0 4px rgba(0,0,0,0));
	}
	.apply_textbox_button a:hover::after {
		border-color:#002b69;
	}
}



/*---------冬期講座----------*/


.winter_area{
	background-color:#efeeed;
}

.winter_mv_area{
	background-image: url("../images/winter_mv_bk.webp");
	background-position: center;
	background-size: cover;
}
.winter_mv{padding:60px 20px;}
.winter_mv h2{
	margin: auto;
	max-width:900px;
}

.winter_detail{
	padding:60px 20px;
}

.winter_detail ul{
	margin: auto;
	max-width:740px;
}

.winter_detail ul li{
	display:flex;
	flex-wrap: wrap;
	border-bottom: #1cbdd3 2px solid;
	margin-bottom:15px;
}

.winter_detail ul li > div:nth-child(1){
	display:flex;
	flex-wrap: wrap;
	width:240px;
	font-size:34px;
	font-weight:900;
	color:#fff;
	letter-spacing:0.1em;
	background-color:#1cbdd3;
	text-shadow: 1px 1px 2px rgba(0,0,0,.25);
}
.winter_detail ul li > div:nth-child(1) span{
	display:block;
	margin: auto;
	width:100%;
}
.winter_detail ul li > div:nth-child(2){
	margin:auto 0;
	width:calc(100% - 240px);
	text-align:left;
	font-size:34px;
	font-weight:900;
	color:#33302a;
	padding:0 15px;
}
.winter_detail ul li:nth-child(3) > div:nth-child(2) {}
.winter_detail ul li:nth-child(3) > div:nth-child(2) span{
	display:block;
	width:100%;
}
.winter_detail ul li:nth-child(3) > div:nth-child(2) span:nth-child(1){font-size:18px;letter-spacing:0.08em;}
.winter_detail ul li:nth-child(3) > div:nth-child(2) span:nth-child(2){font-size:14px;font-weight:700;}


.winter_benefits_box{
	padding:80px 20px;
}

.winter_benefits_wrap{
	margin:auto;
	border-radius:20px;
	max-width:900px;
	padding:0 30px 30px;
	background-color:#fff;
	border:3px solid #1cbdd3;
	filter: drop-shadow(1px 1px 4px rgba(0,0,0,.5));
}
.winter_benefits_wrap h3{
	background-color:#1cbdd3;
	color:#fff;
	font-size:50px;
	font-weight:900;
	letter-spacing:0.08em;
	line-height:1.2em;
	padding:5px;
	text-shadow: 1px 1px 2px rgba(0,0,0,.25);
	margin:-20px auto 0;
	max-width:200px;
	border-radius:5px;
}
.winter_benefits_text{
	padding-top:30px;
}

.winter_benefits_detail{
	padding-top:15px;
}

.winter_benefits_detailtitle{
	color:#003685;
	font-size:24px;
	font-weight:900;
}
.winter_benefits_detailtitle span{
	font-size:1.5em;
	font-weight:900;
}
.winter_benefits_detailp{
	margin: auto;
	width:fit-content;
}
.winter_benefits_detailp p{
	font-size:14px;
}


.winter_flow_area{
	background-color:#fff;
}

.winter_flow_box{
	padding:60px 20px;
}

.winter_flow_box h3{
	color: #003685;
    font-size:66px;
    font-weight: 900;
}
.winter_flow_box h3 span{
	font-size:0.75em;
}

.winter_flow_h3box{
	margin: auto;
	max-width:1100px;
}
.winter_flow_h3term{
	margin: auto;
	max-width:500px;
	background-color:#003685;
	padding:10px;
	border-radius:20px 20px 0 0;
}
.winter_flow_h3term div:nth-child(1){
	color:#fff;
	font-size:32px;
	font-weight:900;
}
.winter_flow_h3term div:nth-child(1) span{
	font-size:0.75em;
}
.winter_flow_h3term div:nth-child(2){
	margin: auto;
	background-color:#fff;
	color: #3e3a39;
	font-size:27px;
	font-weight:900;
	line-height:1.2em;
	width:fit-content;
	padding:3px 20px;
}
.winter_flow_h3text{
	color:#ffd100;
	background-color:#003685;
	font-size:40px;
	font-weight:900;
}

.winter_flow_wrap{
	margin: auto;
	max-width:1100px;
	padding:30px 20px;
}
.winter_flow_wrap ul{
	padding:0 0 50px;
}

.winter_flow_wrap li{
	display: flex;
	flex-wrap: wrap;
	gap:20px;
	padding-bottom:15px;
}

.winter_flow_wrapimg{width:150px;padding:20px;}
.winter_flow_wraptext{
	margin:auto 0;
	width:calc(100% - 150px - 20px);
}
.winter_flow_wraptext h4{
	text-align:left;
	color:#33302a;
	font-size:36px;
	line-height:1.2em;
	font-weight:900;
}
.winter_flow_wraptext h4 i.r{
	line-height:1em;
}
.winter_flow_wraptext p{
	font-size:18px;
	color:#33302a;
}

.winter_flow_arrow{
	margin: auto;
	width: 120px;
	height: 40px;
	background-color:#003685;
	clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.winter_flow_final{
	margin: auto;
	padding:30px 0 0;
	max-width:560px;
}


.winter_apply_box{padding:60px 20px;}
.winter_apply_button a{
	position:relative;
	margin:auto;
	display:inline-block;
	color:#ffd100;
	font-size:50px;
	line-height:1.2em;
	letter-spacing:0.05em;
	font-weight:900;
    background-color: #003685;
	border:#003685 4px solid;
	padding: 10px 100px;
	border-radius:3em;
	transition: .2s;
}
.winter_apply_button a::after {
    content: "";
    position: absolute;
    top: 46%;
    right: 22px;
    width: 18px;
    height: 18px;
    border-bottom:#ffd100 4px solid;
    border-right:#ffd100 4px solid;
    transform: rotate(-45deg) translateY(-50%);
    transition: .2s;
}
@media screen and (min-width: 768px){
	.winter_apply_button a:hover{
		color:#003685;
		background-color:rgba(255,255,255,0);
	}
	.winter_apply_button a:hover::after{
		border-color:#003685;
	}
}

.winter_apply_text{
	font-size:24px;
	font-weight:900;
	padding:10px 0 30px;
}

.winter_apply_note{
	margin:auto;
	max-width:1000px;
}
.winter_apply_note p{
	font-size:13px;
	padding-bottom:10px;
}
.winter_apply_note p:last-child{
	padding-bottom:0;
}
.winter_apply_note p i.r{
	font-size:100%;
	margin: 0;
	line-height:1em;
}