@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&display=swap');

/* ---------------------------------------------------------
■ ヘッダー
--------------------------------------------------------- */
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:1/1;
	border-radius: 50%;
	display: flex;
	transition: .1s;
}
#page-top a span{
	display: block;
	margin: auto;
}
@media screen and (min-width: 767px) {
	#page-top a:hover{
		opacity: .7;
	}
}


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


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

.lightbox{ 
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	text-align: left;
    padding: 25px;
	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: 1150px;
  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 {
	display: flex;
	flex-wrap: wrap;
	margin-right: 3em;
}
@media screen and (max-width: 1000px) {
  .head-items li {
    margin-right: 1.8em;
  }
}

.head-items li a{
	margin: auto;
}

.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;
  padding: 17px;
}

.head-02__item .small_r{margin-bottom: auto;}

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

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

.header_after{
	height:61px;
}


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



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


.small_r{
	font-size:0.45em;
	vertical-align: top;
	margin-left:-0.2em;
	margin-right:-0.2em;
}


/*----------申し込みボタン---------*/
.head-items li .y_btn {
    display: flex;
	flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-weight: 600;
    padding: 10px 50px 8px 20px;
    letter-spacing: 0.03em;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 1);
    transition: .2s;
}

.head-items li .y_btn svg {
    width: 24px;
    fill: #fff;
    display: inline-block;
    margin: auto 8px auto 0;
    transition: .2s;
}
.head-items li .y_btn span{
	margin: auto;
}

.head-items li .y_btn::before {
    content: "";
    position: absolute;
    background: linear-gradient(to right, #ff9500, #ff0044, #ff9500);
    top: -5%;
    left: 0;
    width: 200%;
    height: 120%;
    z-index: -1;
	transition: .2s;
}
.head-items li .y_btn::after {
    content: "";
    position: absolute;
    top: 46%;
    right: 18px;
    width: 7px;
    height: 7px;
    border-bottom: #fff 2px solid;
    border-right: #fff 2px solid;
    transform: rotate(-45deg) translateY(-50%);
    transition: .2s;
}

@media screen and (min-width: 768px) {
	.head-items li .y_btn:hover{
		box-shadow: 0 0 5px rgba(0, 0, 0, 0);
	}
	.head-items li .y_btn:hover::before {
	    transform: translateX(-48%);
	}
	.head-items li .y_btn:hover::after{
		right: 13px;
	}
}


/*----------メインビジュアル---------*/
.mv_area{
	width:100%;
	background-color:#f7f9f9;
}

.mv_wrap{
	margin:auto;
	max-width:1600px;
	background-image: url("../images/mv_img.webp");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

.mv_area_box{
	max-width:1200px;
	margin: auto;
	display: flex;
	justify-content:flex-end;
	min-height:660px;
	padding:0 25px 0 0;
}
.mv_area_box img[src*="title"]{
	width:49%;
	margin:5% 0 auto;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255,1)) drop-shadow(0 0 17px rgba(255, 255, 255, 1)) drop-shadow(0 0 10px rgba(255, 255, 255, 1)) drop-shadow(0 0 10px rgba(255, 255, 255, 1));
}

/*----------10,000突破---------*/

.record_box{
	padding:45px 20px;
	background-image: url("../images/challenge_bk.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.record_img{
	position: relative;
	margin: auto;
	max-width:1100px;
	padding:20px 80px;
}
.record_img::before,.record_img::after{
	position:absolute;
	top:0;
	content: "";
    width: 90px;
    height: 100%;
	background-image: url("../images/record_frame.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}
.record_img::before{
	left:0;
}
.record_img::after{
	right:0;
	transform: scale(-1,1);
}



/*----------英検準会場---------*/
.venue_area{
	background-image: url("../images/venue_bk.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.venue_wrap{
	margin: auto;
	max-width:1200px;
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-end;
	padding:0 30px;
}

.venue_imgarea{
	width:50%;
	padding:40px 0;
}

.venue_imgarea img{filter: drop-shadow(0 0 3px rgba(30, 0, 0, .4));}

.venue_mainimg{
	margin: auto;
	width:70%;
	padding:15px 0 10px;
}
.venue_text{
	font-size:20px;
	letter-spacing:0.08em;
	line-height:1.2em;
	font-weight:600;
	padding:30px 0 10px;
	color:#26296b;
	text-align:center;
}
.venue_text .small_r{line-height:0.5em;}

.venue_button{
	margin: auto;
	width:70%;
}

.venue_button a {
	display: block;
    position: relative;
    margin: auto;
    padding: 8px 65px 7px;
	font-size:26px;
    border: 2px solid #fae800;
    color: #2a2a2a;
    background-color: #fae800;
    font-weight:600;
    border-radius: 2em;
    transition: .2s;
}
.venue_button a::after {
    content: "";
    position: absolute;
    top: 46%;
    right: 18px;
    width: 10px;
    height: 10px;
    border-bottom: #2a2a2a 2px solid;
    border-right: #2a2a2a 2px solid;
    transform: rotate(-45deg) translateY(-50%);
    transition: .2s;
}
.venue_button a::before{content: "申し込みはこちら";}
@media screen and (min-width: 768px) {
    .venue_button a:hover {
        background-color: rgba(255, 255, 255, 0);
        border-color:#2a2a2a;
    }
	.venue_button a:hover::after {
        right: 10px;
    }
}

/*~~~~~~~~~~~*/
.venue_button .gray_note{
	display:none;
	font-size:14px;
	letter-spacing:0.08em;
	line-height:1.2em;
	font-weight:600;
	padding:5px 10px 0;
	color:#26296b;
}
.venue_button.gray a{
	pointer-events: none;
	color:#aaa;
	background-color:rgba(0,0,0,.5);
	border-color:rgba(255,255,255,0);
}
.venue_button.gray a::after{content:none;}
.venue_button.gray .gray_note{display:block;}


/*~~~~~~~~~~~*/
.venue_button .outside_note{
	text-align:center;
	display:none;
	font-size:16px;
	letter-spacing:0.08em;
	line-height:1.2em;
	font-weight:600;
	padding:5px 10px 0;
	color:#26296b;
}
.venue_button.outside a::before{content:"詳細はこちら";}
.venue_button.outside .outside_note{display:block;}



/*----------チャレンジ！---------*/

.challenge_area{
	padding:50px 0;
}

.challenge_h2{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding:30px 0;
}

.challenge_h2 h2{
	position: relative;
	font-size:46px;
	font-weight:600;
	color:#333;
}

.challenge_h2 h2 .small_r{
	font-size:0.4em;
	margin-left:-0.3em;
	margin-right:-0.3em;
}

.challenge_h2 h2::before {
    content: "";
    position: absolute;
    text-align: center;
    top: 0;
    left: -27px;
    height: 90%;
    width: 10px;
    border-left: 4px solid #333;
    transform: skewX(25deg);
}

.challenge_h2 h2::after {
    content: "";
    position: absolute;
    top: 0;
    right: -23px;
    height: 90%;
    width: 10px;
    border-right: 4px solid #333;
    transform: skewX(-25deg);
}

.challenge_main{
	position: relative;
	background: linear-gradient(135deg,#fae51a 2%,#32cae8,#548df6,#32cae8);
}

.challenge_white,.challenge_white_tb{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:240px;
	background-image: url("../images/challenge_bk.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.challenge_white_tb{
	display: none;
}

.challenge_contents{
	display: flex;
	flex-wrap: wrap;
	position: relative;
	gap:100px;
	margin: auto;
	max-width: 1200px;
	padding:50px 40px 60px;
}

.challenge_inner{
	width:calc((100% - 100px)/ 2);
	text-align: center;
	z-index: 2;
}

.challenge_inner_title{
	text-align: center;
	letter-spacing: 0.08em;
	font-size: 20px;
	font-weight:600;
	line-height: 1.3em;
	color:#3D3D3D;
}
.challenge_inner_title .small_r{
	line-height: 1.3em;
}

.challenge_inner_mv{	
	width:220px;
	height:auto;
	overflow: hidden;
	aspect-ratio:1 / 1;
	margin:20px auto;
	position:relative;
	border-radius: 50%;
	filter: drop-shadow(1px 2px 4px rgba(0, 0, 0,.4));
	transition: .2s
}

.challenge_inner_mv img{
	position:absolute;
	top:50%;
	left:50%;
	transform: translateX(-50%) translateY(-50%);
	transition: .2s
}

.challenge_h3sub{
	background-color: rgba(255,255,255,.9);
	padding:7px 0 5px;
	color:#2a2a2a;
	font-size:25px;
	font-weight:600;
	letter-spacing: 0.06em;
	margin-bottom:25px;
}

.challenge_inner h3{
	display:flex;
	flex-wrap:wrap;
}

.challenge_inner h3 img{
	margin: auto 0 0;
	filter: drop-shadow(1px 2px 4px rgba(0, 0, 0,.4));
}

.challenge_inner h3.venue img[src*="eiken_textimg"]{width:40%;}
.challenge_inner h3 img[src*="venue_textimg"]{margin-left:-2%;width:62%;}
.challenge_inner h3.pretest img[src*="eiken_textimg"]{width:40%;}
.challenge_inner h3 img[src*="pretest_textimg"]{margin-left:-2%;width:62%;}

.challenge_button{
	display: flex;
	flex-wrap: wrap;
	padding:35px 0 0;
}

.challenge_button span{
	position: relative;
	margin: auto;
	padding:8px 60px 7px;
	background-color: #fae51a;
	border:2px solid #fae51a;
	color:#222;
	font-weight:600;
	font-size:20px;
	border-radius: 25px;
	filter: drop-shadow(1px 2px 4px rgba(0, 0, 0,.4));
	transition: .2s
}
.challenge_button span::after {
	content: "";
	position: absolute;
	top: 46%;
	right: 18px;
	width: 10px;
	height: 10px;
	border-bottom: #222 2px solid;
	border-right: #222 2px solid;
	transform: rotate(-45deg) translateY(-50%);
	transition: .2s;
}
@media screen and (min-width: 768px) {
	.challenge_inner:hover .challenge_inner_mv{
		filter: drop-shadow(1px 2px 4px rgba(0, 0, 0,0));
	}
	.challenge_inner:hover .challenge_inner_mv img{
		width:110%;
	}
	.challenge_inner:hover .challenge_button span{
		filter: drop-shadow(1px 2px 4px rgba(0, 0, 0,0));
		background-color: rgba(255,255,255,.85);
		border-color:rgba(255,255,255,.25);
		color:#222;
	}
	.challenge_inner:hover .challenge_button span::after{
		right: 9px;
		border-color:#222;
	}
}

.challenge_line{
	position: absolute;
	bottom:60px;
	left:50%;
	transform: translateX(-50%);
	width:3px;
	height:calc(100% - 350px);
	background-color: #fff;
	margin:0;
}


/*----------パートナー塾---------*/

.partner_box{
	position:relative;
	display: flex;
	flex-wrap: wrap;
	padding:100px 0;
}

.partner_img{
	position:relative;
	width:55%;
	height:auto;
	margin: 0;
	overflow: hidden;
}
.partner_img img{
	position: absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
	width:125%;
}

.partner_text_box{
	max-width:600px;
}

.partner_text{
	padding: 30px 50px;
}

.partner_textimg{
	max-width:75px;
	margin:0 auto 20px;
}

.partner_h2 h2{
	text-align: left;
	font-size: 38px;
	letter-spacing: -0.05em;
    font-weight: 600;
    color: #333;
}
.partner_h2 h2 .small_r{
	margin-left:0;
	margin-right:0.2em;
}

.partner_h2sub{
	padding:20px 0;
}

.partner_h2sub p{
	font-size: 22px;
    font-weight: 600;
	line-height: 1.3em;
    color: #333;
	margin:0 auto;
}

.partner_maintext{
	text-align: justify;
	line-height: 1.8em;
}
.partner_maintext .small_r{
	line-height: 1.6em;
}

.partner_button{
	display: flex;
	flex-wrap: wrap;
	padding:50px 0 0;
}

.partner_button a{
	position: relative;
	margin: auto;
	padding:8px 65px 7px;
	border:2px solid #26296b;
	color:#fff;
	background-color: #26296b;
	font-weight:600;
	border-radius: 25px;
	transition: .2s
}

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

@media screen and (min-width: 768px) {
	.partner_button a:hover{
		background-color: rgba(255,255,255,0);
		color:#26296b;
	}
	.partner_button a:hover::after{
		right: 10px;
		border-color:#26296b;
	}
}



/*----------合格者の声---------*/

.voice_h2area{
	background-color: #fae800;
	padding:90px 0;
}

.voice_h2{
	
}

.voice_h2 h2{
	position: relative;
	font-family: "M PLUS 1p", sans-serif;
	font-weight: 700;
	max-width:600px;
	margin: auto;
	color:#2A2A2A;
}
/*.voice_h2 h2 > span:nth-child(1){position: relative;font-size:40px;}
.voice_h2 h2 > span:nth-child(1)::after{
	content: "";
	position: absolute;
	left:50%;
	bottom:0;
	width:120%;
	height:4px;
	background: linear-gradient(to right,#fae51a,#32cae8,#548df6,#32cae8,#fae51a);
	transform: translateX(-50%);
}*/
.voice_h2 h2 > span:nth-child(1){
	display: block;
	font-size:70px;
	margin-bottom:-10px;
}

.voice_h2 h2 .small_r{
	font-size:0.4em;
	margin-left:-0.3em;
	margin-right:-0.3em;
}

.voice_h2 h2::before,
.voice_h2 h2::after{
	content: "";
	position: absolute;
	top:0;
    width: 90px;
    height: 100%;
	background-image: url("../images/leaf.webp");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: contain;
}
.voice_h2 h2::before{left: -50px;}
.voice_h2 h2::after{right: -50px;transform:scale(-1,1);}

.voice_h2_year{
	display: block;
	max-width:300px;
	margin: auto;
	font-size:22px;
	letter-spacing: 0.05em;
	color:#fff;
	font-family: "M PLUS 1p", sans-serif;
	font-weight:600;
	background: linear-gradient(to right,#2effd9,#32cae8 10%,#548df6);
	padding:1px 0;
	text-shadow: 1px 1px 4px rgba(0,0,0,.4);
	border-radius: 30px;
}

.voice_h2sub{
	margin: 30px 0 0;
	font-size:32px;
	letter-spacing: 0.07em;
	font-family: "M PLUS 1p", sans-serif;
	font-weight:600;
}

/*==============*/


.voice_top{
	margin: auto;
	max-width:1240px;
	display: flex;
	flex-wrap: wrap;
	gap:30px;
	padding:60px 40px 80px;
}

.voice_top_imgbox{
	width:calc(55% - 30px);
	display: flex;
	flex-wrap: wrap;
	gap:20px;
}

.voice_top_img{
	width:calc(60% - 20px);
}
.voice_top_detailbox{
	width:40%;
}

.voice_top_class{
	background-color: #ee1f4c;
	color:#fff;
	font-family: "M PLUS 1p", sans-serif;
	padding: 16px 10px 6px;
}

.voice_top_class p:nth-child(1){
	font-size:60px;
	font-weight:600;
	line-height: 1em;
}
.voice_top_class p:nth-child(1) span{
	font-size:1.5em;
	font-weight:800;
}

.voice_top_class p:nth-child(2){
	font-size:40px;
	font-weight:600;
	line-height: 1.4em;
}

.voice_top_name{
	display: flex;
	flex-wrap: wrap;
	padding:25px 0 0;
}

.voice_top_name p:nth-child(1){
	font-size:28px;
	font-weight:600;
	color:#292929;
	line-height: 1.2em;
}
.voice_top_name p:nth-child(1) span{
	font-size:20px;
}

.voice_top_name p:nth-child(2){
	font-size:16px;
	font-weight:600;
	margin: auto 0;
}

.voice_top_school p{
	font-size:18px;
	font-weight:600;
	line-height: 1.2em;
}

.voice_top_comment{
	padding:25px 0 0;
}
.voice_top_comment p{
	font-size:22px;
	font-weight:600;
	color:#292929;
	letter-spacing: 0.06em;
	line-height: 1.25em;
}

.voice_top_comment p .small_r{
	line-height: 1.6em;
}

.voice_top_textbox{
	width:45%;
}

.voice_top_title{
	font-size:36px;
	font-family: "M PLUS 1p", sans-serif;
	font-weight:700;
	/*color:#26296b;*/
	text-align: left;
}

.voice_top_title .big_150{
	font-size:1.5em;
}
.voice_top_title .big_150.pink{
	color: #ee1f4c;
}
.voice_top_title .big_yellowline{
	font-size:1.5em;
	background: linear-gradient(to bottom,rgba(255,255,255,0) 60%,#fae800 60%,#fae800 80%,rgba(255,255,255,0) 80%);
	color: #ee1f4c;
	letter-spacing: 0.02em;
	padding:0 3px;
}

.voice_top_interview{
	padding-top: 20px;
}

.voice_top_interviewblock{
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 5px;
}

.voice_top_interviewblock p{
	font-size:15px;
}

.voice_top_interviewblock > div:nth-child(1){
	width:30px;
	height:30px;
	color:#fff;
	display: flex;
	flex-wrap: wrap;
	border-radius: 50%;
}
.voice_top_interviewblock.question > div:nth-child(1){
	background-color:#26296b;
}
.voice_top_interviewblock.answer > div:nth-child(1){
	background-color:#1b6870; 
}

.voice_top_interviewblock > div:nth-child(1) span{
	margin: auto;
	font-weight:600;
}

.voice_top_interviewblock > div:nth-child(2){
	width:calc(100% - 30px);
	padding-left: 8px;
}
.voice_top_interviewblock > div:nth-child(2) p:nth-child(1){
	font-weight:600;
	padding-top: 5px;
}
.voice_top_interviewblock.question > div:nth-child(2) p:nth-child(1){
	color:#26296b;
}
.voice_top_interviewblock.answer > div:nth-child(2) p:nth-child(1){
	color:#1b6870; 
}


/*==============*/

.voice_listarea{
	background-color: #fae800;
}

.voice_list-wrap{
	display: flex;
	flex-wrap: wrap;
	gap:30px;
	max-width: 1240px;
	margin: auto;
	padding:60px 20px 30px;
}

.voice_list-wrap.second{
	padding:0 20px 30px;
}

.voice_list_item{
	width:calc((100% - 60px)/ 3);
	filter: drop-shadow(1px 2px 4px rgba(30, 0, 0,.4));
}

.voice_list_class{
	display: flex;
	flex-wrap: wrap;
	background-color: #ee1f4c;
    color: #fff;
    font-family: "M PLUS 1p", sans-serif;
}
.voice_list_class{
	justify-content: center;
	padding:10px 0 5px;
	max-width:250px;
	margin: auto;
	border-radius: 20px 20px 0 0 ;
}

.voice_list_class p:nth-child(1){
	font-size:28px;
	font-weight:600;
	line-height: 1em;
}
.voice_list_class p:nth-child(1) span{
	font-size:45px;
	font-weight:800;
}

.voice_list_class p:nth-child(2){
	font-size:20px;
	font-weight:600;
	line-height: 1.1em;
	margin: auto 0 0 3px;
}

.voice_list_main{
	padding:15px 25px;
	background-color: #fff;
}

.voice_list_imgbox{
	display: flex;
	flex-wrap: wrap;
	gap:14px;
	
}
.voice_list_img{
	width:50px;
}

.voice_list_titlebox{
	width:calc(100% - 64px);
}

.voice_list_title{
	font-size:18px;
	font-family: "M PLUS 1p", sans-serif;
	font-weight:800;
	/*color:#26296b;*/
	text-align: left;
}

.voice_list_title .big_140{
	font-size:1.4em;
}
.voice_list_title .big_140.pink{
	color:#ee1f4c;
}
.voice_list_title .big_yellowline{
	font-size:1.4em;
	background: linear-gradient(to bottom,rgba(255,255,255,0) 60%,#fae800 60%,#fae800 80%,rgba(255,255,255,0) 80%);
	color:#ee1f4c;
	letter-spacing: 0.02em;
	padding:0 3px;
}

.voice_list_name{
	text-align: left;
	font-weight:600;
	font-size:18px;
}
.voice_list_name span{
	font-size:14px;
}

.voice_list_textbox{
	padding:10px 0 0;
}
.voice_list_textbox p:nth-child(1){
	font-weight:600;
	font-size:22px;
}
.voice_list_textbox p:nth-child(2){
	font-size:12.5px;
}

.voice_list-more{
	display: flex;
	flex-wrap: wrap;
	padding:30px 0;
	justify-content: center;
}

.voice_list-more div{
	position: relative;
	margin: auto;
	padding: 8px 80px 7px 30px;
	border: 2px solid #222;
	color: #222;
	font-weight: 600;
	border-radius: 25px;
	transition: .2s;
}
.voice_list-more div::before{
	content: "続きを見る";
}

.voice_list-more div::after{
	content: "＋";
	font-size:26px;
	position: absolute;
	top: 50%;
	right: 18px;
	transform:translateY(-50%);
}

.voice_list-more div.mov::before{
	content: "閉じる";
}
.voice_list-more div.mov::after{
	content: "";
	top: 56%;
	width: 10px;
	height: 10px;
	border-top: #222 2px solid;
	border-right: #222 2px solid;
	transform: rotate(-45deg) translateY(-50%);
	transition: .2s;
}

@media screen and (min-width: 768px) {
	.voice_list-more div:hover{
		color: #fae800;
		background-color:#222 ;
	}
	.voice_list-more div.mov:hover::after{
		border-color:#fae800;
	}
}



/*----------さなるの英検対策---------*/

.course_box{
	
}

.course_title_area{
	background: linear-gradient(to right,#295ea8,#26298c 30%,#26298c 70%,#295ea8);
}

.course_title_box{
	margin: auto;
	max-width:1100px;
	padding:80px 20px 100px;
}
.course_title_emblem{
	margin: auto;
	max-width: 120px;
	padding:0 0 20px;
}
.course_title{
	position: relative;
}
.course_title::before,
.course_title::after{
	content: "";
	position: absolute;
	left:0;
	width:100%;
	height:3px;
	background: linear-gradient(to right, #fffac6,#f9be00 30%,#9a7600 38%,#ffffff 50%,#f9be00 75%,#9a7600);
}
.course_title::before{top:0;}
.course_title::after{bottom:0;}

.course_title h2{
	display: flex;
	flex-wrap: wrap;
	width:80%;
	margin: auto;
	padding:30px 0;
}
.course_title img{
	margin: auto 0;
}
.course_title img[src*="from"]{width:46%;margin-right:1%;}
.course_title img[src*="taisaku"]{width:53%;}

.course_title_sub{
	width:55%;
	margin: auto;
	padding:20px 0 0;
}


.course_detail_area{
	background-color: #f1f1f1;
	padding-bottom: 100px;
}

.course_camp-btn_area{
	margin: auto;
	padding:100px 0;
	max-width:770px;
}
.course_camp-btn_index p{
	text-align: center;
	font-weight:600;
	letter-spacing: 0.05em;
	padding-bottom: 8px;
	font-size:22px;
}

.course_camp-btn a{
	position: relative;
	display:flex;
	flex-wrap: wrap;
	background: linear-gradient(60deg,#1abed4 10%,#0a96ed);
	padding:10px 0 10px 35px;
	border-radius:100px;
	filter: drop-shadow(1px 1px 5px rgba(0,0,0,.25));
	transition: .2s;
}
.course_camp-btn a span:nth-child(1){
	position: absolute;
	width: 160px;
    top: 6px;
    left: -38px;
    transform: rotate(-6deg);
}
.course_camp-btn a span:nth-child(2),
.course_camp-btn a span:nth-child(3){
	display: block;
	width: 100%;
	font-family: "M PLUS 1p", sans-serif;
	font-weight:700;
	color:#fff;
	line-height: 1.2em;
	text-shadow: 1px 1px 4px rgba(0,0,0,.35);
}

.course_camp-btn a span:nth-child(2){
	font-size:50px;
}
.course_camp-btn a span:nth-child(3){
	font-size:28px;
}

.course_camp-btn a::after{
	content: "";
    position: absolute;
    top: 46%;
    right: 24px;
    width: 20px;
    height: 20px;
    border-bottom: #fff 2px solid;
    border-right: #fff 2px solid;
    transform: rotate(-45deg) translateY(-50%) skew(-5deg,-5deg);
    transition: .2s;
}

@media screen and (min-width: 768px) {
	.course_camp-btn a:hover{
		filter: drop-shadow(1px 1px 5px rgba(0,0,0,0));
	}
	.course_camp-btn a:hover::after{
		right: 10px;
	}
	.course_camp-btn a:hover span:nth-child(2),
	.course_camp-btn a:hover span:nth-child(3){
		text-shadow: 1px 1px 4px rgba(0,0,0,0);
	}
}

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

.course_detail{
	position: relative;
	background: linear-gradient(to right, rgba(255,255,255,0)50%,#fff 50%);
}

.course_detail_bk{
	position: absolute;
	top:0;
	left:50%;
	transform: translateX(-50%);
	background-color: #fff;
	width:78%;
	height:100%;
	border-radius: 50px;
	z-index: 1;
}

.course_detail_titlebox{
	position: relative;
	padding:50px 0 0;
	z-index: 2;
}

.course_detail_title{
	margin: auto;
	width:66%;
	border-left:#222 solid 18px;
	padding:0 0 10px 30px;
}

.course_detail_grade{
	display: flex;
	flex-wrap: wrap;
}
.course_detail_grade h3{
	font-family: "M PLUS 1p", sans-serif;
	font-size:75px;
	font-weight: 800;
	letter-spacing: 0.08em;
}
.course_detail_target{
	margin: auto 0 auto 15px;
	display: flex;
	flex-wrap: wrap;
}
.course_detail_target span:nth-child(1){
	color:#fff;
	font-family: "M PLUS 1p", sans-serif;
	font-size:30px;
	font-weight: 600;
	letter-spacing: 0.15em;
	padding:0 25px 0 35px;
	border-radius: 30px 0 0 30px;
}
.course_detail_target span:nth-child(2){
	font-family: "M PLUS 1p", sans-serif;
	font-size:30px;
	font-weight:800;
	padding:0 13px;
}
.course_detail_taisaku{
	text-align: left;
	font-family: "M PLUS 1p", sans-serif;
	font-size:45px;
	font-weight:800;
	line-height: 1em;
}

.course_detail_taisaku .small_r{
	font-size: 0.4em;
	margin-left: -0.4em;
    margin-right: -0.3em;
	line-height: 0.2em;
}

.course_detail.el .course_detail_title{border-color: #1bbaea;}
.course_detail.el .course_detail_target span:nth-child(1){background-color: #1bbaea;}

.course_detail.jr{margin-top: 80px;}
.course_detail.jr .course_detail_title{border-color: #4669ea;}
.course_detail.jr .course_detail_target span:nth-child(1){background-color: #4669ea;}


.course_detail_main{
	position: relative;
	padding: 60px 0;
	display: flex;
	flex-wrap: wrap;
	gap:80px;
	z-index: 2;
}
.course_detail_main.rtl{
	flex-direction: row-reverse;
}

.course_detail_main-img{
	width:calc(52% - 80px);
	position: relative;
	overflow: hidden;
}
.course_detail_main-img img{
	position: absolute;
	top:50%;
	left:50%;
	transform: translateX(-50%) translateY(-44%);
}
.course_detail_main-img.tablet img{
	width: 75%;
	max-width: 490px;
	position: absolute;
	top:50%;
	left:0;
	transform: translateY(-50%);
}

.course_detail_main-text{
	max-width: 540px;
	padding:100px 0;
}

.course_detail_main-text h4{
	text-align: left;
	font-family: "M PLUS 1p", sans-serif;
	font-size:26px;
	font-weight: 800;
	line-height: 1.2em;
	padding-bottom: 20px;
}

.course_detail_main-text p{
	padding-bottom: 20px;
}
.course_detail_main-text p:last-child{
	padding-bottom: 0;
}



/*----------キャンペーン---------*/

.campaign_box{
	background: linear-gradient(-45deg,#1acbd4,#0a96ed,#1acbd4);
	padding:100px 40px;
}

.campaign_main{
	margin: auto;
	max-width: 1200px;
}

.campaign_title_box{
	padding: 0 30px;
}

.campaign_title{
	position: relative;
	margin:0 auto 30px;
	max-width: 630px;
	filter:drop-shadow(0 0 4px rgba(0,0,0,.45));
}

.campaign_title::before {
    content: "";
    position: absolute;
    text-align: center;
    bottom: 0;
    left: -27px;
    height: 60%;
    width: 10px;
    border-left: 4px solid #fff;
    transform: skewX(25deg);
}

.campaign_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -23px;
    height: 60%;
    width: 10px;
    border-right: 4px solid #fff;
    transform: skewX(-25deg);
}

.campaign_title_sub{
	background-color: #fff;
	display: inline-block;
	color:#333;
	font-family: "M PLUS 1p", sans-serif;
    font-size: 18px;
    font-weight: 700;
	letter-spacing: 0.05em;
	padding: 0 30px;
	border-radius: 30px;
}
.campaign_title h2{
	color:#fff;
	font-family: "M PLUS 1p", sans-serif;
    font-size: 60px;
    font-weight: 800;
	line-height: 1em;
	padding:20px 0 0;
}

.campaign_detail{
	background-color: #fff;
	filter:drop-shadow(0 0 4px rgba(0,0,0,.45));
	border-radius: 35px;
	padding:60px 30px;
}

.campaign_detail_inner{
	margin: auto;
	max-width:940px;
}

.campaign_detail_h3sub{
	margin:0 auto 20px;
	max-width: 600px;
	background: linear-gradient(-45deg,#1acbd4,#0a96ed,#1acbd4);
    color: #fff;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 2px 40px;
	border-radius: 50px;
	text-shadow: 0 0 4px rgba(0,0,0,.45);
}

.campaign_detail h3{
	display: flex;
	flex-wrap: wrap;
	margin: auto;
	max-width: 800px;
}

.campaign_detail h3 img[src*="sanaru"]{
	width:45%;
	margin: auto;
}
.campaign_detail h3 img[src*="tablet"]{
	width:55%;
	margin: auto;
}

.campaign_detail h3 span{
	margin:auto;
	padding: 15px 0;
	display: block;
	color:#222;
	font-family: "M PLUS 1p", sans-serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 0.08em;
	line-height: 1em;
}

.campaign_detail_index{
	position:relative;
	font-family: "M PLUS 1p", sans-serif;
    font-size: 24px;
    font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.25em;
	padding:25px 0 0;
}
.campaign_detail_index .small_r{line-height:0.5em;}
.campaign_detail_priceimg{
	position: absolute;
	bottom:0;
	right:0;
	width: 20%;
}
.campaign_detail_priceimg img{
	transform: rotate(-4deg);
}

.campaign_detail_pricetext{
	margin: auto;
	max-width: 800px;
	width:100%;
	padding-top:45px;
}

.campaign_detail_pricetext h4{
	background-color: #1b65ea;
	color:#fff;
	font-family: "M PLUS 1p", sans-serif;
    font-size: 18px;
    font-weight: 700;
	letter-spacing: 0.05em;
	padding: 2px 0;
}

.campaign_detail_pricefree{
	display: flex;
	flex-wrap: wrap;
	gap:15px;
	padding: 15px 0;
}

.campaign_detail_pricefree p:nth-child(1){
	width:calc(67% - 65px);
	padding-left: 5px;
}
.campaign_detail_pricefree p:nth-child(2){
	margin: auto;
	width: 0;
	height: 0;
	border-left: #1abed4 27px solid;
	border-top: rgba(255, 255, 255, 0) 30px solid;
	border-bottom: rgba(255, 255, 255, 0) 30px solid;
}
.campaign_detail_pricefree p:nth-child(3){
	margin: auto;
	width: 33%;
	padding:10px 40px;
	background-color:#fae800;
	border-radius: 10px;
}

.campaign_detail_note{
	display: flex;
	flex-wrap: wrap;
	gap:15px;
}

.campaign_detail_note div:nth-child(1){
	display: flex;
	flex-wrap: wrap;
	width:100px;
	background-color: #003d9f;
	color:#fff;
	font-family: "M PLUS 1p", sans-serif;
    font-size: 17px;
    font-weight: 500;
	letter-spacing: 0.3em;
	padding: 2px 0 4px 0.3em;
}
.campaign_detail_note div:nth-child(1) span{
	margin: auto;
	display: block;
}
.campaign_detail_note div:nth-child(2){
	margin: auto 0;
	text-align: left;
	width:calc(100% - 115px);
	font-size:14px;
}



/*----------入学をご検討の方/60周年ありがとう---------*/

.links_area{
	background-image: url("../images/links_area_bk.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	
}
.links_box{
	background-color: rgba(255,255,255,.75);
}

.links_wrap{
	padding:0 40px 40px;
}

.links_inquiry{
	padding:60px 20px;
}

.links_inquiry h2{
	color:#222;
	font-family: "M PLUS 1p", sans-serif;
    font-size: 26px;
    font-weight: 800;
	padding: 0 0 30px;
}

.links_inquiry_button{
	display: flex;
	flex-wrap: wrap;
	gap:40px;
	justify-content: center;
}
.links_inquiry_button a{
	display: flex;
	flex-wrap: wrap;
	position: relative;
	gap:30px;
	padding:20px 90px 20px 50px;
	color:#fff;
	border:3px solid #fff;
	font-family: "M PLUS 1p", sans-serif;
    font-size: 34px;
    font-weight: 500;
	letter-spacing: 0.07em;
	border-radius: 70px;
	filter:drop-shadow(0 0 4px rgba(0,0,0,.45));
	transition: .2s;
}

.links_inquiry_button a::after {
    content: "";
    position: absolute;
    top: 46%;
    right: 26px;
    width: 15px;
    height: 15px;
    border-bottom: #fff 3px solid;
    border-right: #fff 3px solid;
    transform: rotate(-45deg) translateY(-50%);
	filter:drop-shadow(0 0 4px rgba(0,0,0,.3));
    transition: .2s;
}

.links_inquiry_button a.doc{background-color:#1b65ea;border-color:#1b65ea;}
.links_inquiry_button a.search{background-color:#00a8a3;border-color:#00a8a3;}

.links_inquiry_button a span{
	margin: auto;
	display: block;
	filter:drop-shadow(0 0 4px rgba(0,0,0,.45));
}

.links_inquiry_button a svg{margin:auto;width:58px;filter:drop-shadow(0 0 4px rgba(0,0,0,.3));}
.links_inquiry_button a svg *{fill:#fff;stroke-width:0px;}


@media screen and (min-width: 768px) {
	.links_inquiry_button a:hover{
		background-color: rgba(255,255,255,.34);
		filter:drop-shadow(0 0 4px rgba(0,0,0,0));
	}
	.links_inquiry_button a:hover::after{filter:drop-shadow(0 0 4px rgba(0,0,0,0));right: 16px;}
	.links_inquiry_button a:hover span{filter:drop-shadow(0 0 4px rgba(0,0,0,0));}
	.links_inquiry_button a:hover svg{filter:drop-shadow(0 0 4px rgba(0,0,0,0));}
	
	.links_inquiry_button a.doc:hover{color:#1b65ea;}
	.links_inquiry_button a.search:hover{color:#00a8a3;}
	
	.links_inquiry_button a.doc:hover svg *{fill:#1b65ea;}
	.links_inquiry_button a.search:hover svg *{fill:#00a8a3;}
	
	.links_inquiry_button a.doc:hover::after{border-color:#1b65ea;}
	.links_inquiry_button a.search:hover::after{border-color:#00a8a3;}
}

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

.links_newstudent{
	margin: auto;
	max-width:1140px;
	background-color:rgba(255,255,255,.92);
	border-radius: 30px;
}

.links_newstudent_wrap{
	padding:70px 90px 80px;
}

.links_60th_mv{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: auto;
	max-width: 860px;
}
.links_60th_mv img{margin: auto 0;}
.links_60th_mv img[src*="60th_L"]{width:21%;}
.links_60th_mv img[src*="60th_emblem"]{width:50%;margin-left:2%;}
.links_60th_mv img[src*="60th_R"]{width:27%;}



.links_newstudent_main{
	
}

.links_newstudent_reception{
	display: flex;
	flex-wrap: wrap;
}

.links_newstudent_reception img{margin: auto 0 0;}

.links_newstudent_reception img[src*="new_student-new"]{width:58%;}
.links_newstudent_reception img[src*="new_student-reception"]{width:41%;margin-left: 1%;}

.links_newstudent_year{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: auto;
	max-width: 860px;
	padding-bottom: 10px;
}

.links_newstudent_year img{margin:auto 0 0;}
.links_newstudent_year img[src*="2025"]{width:35%;margin-right:2%;margin-bottom:5px;}
.links_newstudent_year img[src*="honka"]{width:63%;}

.links_newstudent_60th{
	color:#c50915;
	font-family: "M PLUS 1p", sans-serif;
    font-size: 54px;
    font-weight: 800;
	padding:25px 0 40px;
}
.links_newstudent_60th::before{content:"【";margin-right:-0.35em;}
.links_newstudent_60th::after{content: "】";margin-left:-0.35em;}

.links_newstudent_link{
	margin: auto;
	max-width:500px;
}

.links_newstudent_link a{
	display: block;
	background-color: #c50915;
	border:3px solid #c50915;
	position: relative;
	color:#fff;
	font-family: "M PLUS 1p", sans-serif;
    font-size: 28px;
    font-weight: 500;
	letter-spacing: 0.02em;
	border-radius: 40px;
	padding: 7px 0;
	filter:drop-shadow(0 0 4px rgba(0,0,0,.45));
	transition: .2s;
}
.links_newstudent_link a::after {
    content: "";
    position: absolute;
    top: 46%;
    right: 20px;
    width: 15px;
    height: 15px;
    border-bottom: #fff 3px solid;
    border-right: #fff 3px solid;
    transform: rotate(-45deg) translateY(-50%);
	filter:drop-shadow(0 0 4px rgba(0,0,0,.3));
    transition: .2s;
}

@media screen and (min-width: 768px) {
	.links_newstudent_link a:hover{
		background-color: rgba(255,255,255,0);
		color: #c50915;
		filter:drop-shadow(0 0 4px rgba(0,0,0,0));
	}
	.links_newstudent_link a:hover::after {
		border-color: #c50915;
		filter:drop-shadow(0 0 4px rgba(0,0,0,0));
		right: 10px;
	}
}


/*----------新入生受付中---------*/
.reception_box{
	background-image: url("../images/reception_bk.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.reception_wrap{
	padding:30px 20px;
}

.reception_mainimg{
	margin:auto;
	max-width:1200px;
}
.reception_mainimg img[src*="course_w"]{
	margin: auto;
	max-width:860px;
	padding:25px 0 30px;
	filter: drop-shadow(0 0 4px rgba(0, 0, 0, .45));
}

.reception_button{
	margin: auto;
	max-width:600px;
}
.reception_button a{
	display: block;
	background-color: #fae800;
	border:3px solid #fae800;
	position: relative;
	color:#1a1a1a;
	font-family: "M PLUS 1p", sans-serif;
    font-size: 32px;
    font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: 40px;
	padding:2px 0;
	filter:drop-shadow(0 0 4px rgba(0,0,0,.45));
	transition: .2s;
}
.reception_button a::after {
    content: "";
    position: absolute;
    top: 46%;
    right: 20px;
    width: 15px;
    height: 15px;
    border-bottom: #1a1a1a 3px solid;
    border-right: #1a1a1a 3px solid;
    transform: rotate(-45deg) translateY(-50%);
	filter:drop-shadow(0 0 4px rgba(0,0,0,.3));
    transition: .2s;
}

@media screen and (min-width: 768px) {
	.reception_button a:hover{
		background-color: rgba(255,255,255,0);
		color: #fae800;
		filter:drop-shadow(0 0 4px rgba(0,0,0,0));
	}
	.reception_button a:hover::after {
		border-color: #fae800;
		filter:drop-shadow(0 0 4px rgba(0,0,0,0));
		right: 10px;
	}
}


/*----------ボタンエリア---------*/

.button_area{
	padding: 120px 20px;
}

.single .button_box{
	margin: auto;
	max-width:900px;
}

.button_box a{
	display: block;
	background-color: #003d9f;
	position: relative;
	color:#fff;
	font-family: "M PLUS 1p", sans-serif;
    font-size: 35px;
    font-weight: 500;
	letter-spacing: 0.02em;
	border-radius: 60px;
	padding: 32px 0;
	border:3px solid #003d9f;
	filter:drop-shadow(0 0 4px rgba(0,0,0,.45));
	transition: .2s;
}

.button_box a::after {
    content: "";
    position: absolute;
    top: 46%;
    right: 28px;
    width: 20px;
    height: 20px;
    border-bottom: #fff 3px solid;
    border-right: #fff 3px solid;
    transform: rotate(-45deg) translateY(-50%) skew(-5deg, -5deg);
    transition: .2s;
}

@media screen and (min-width: 768px) {
	.button_box a:hover{
		color: #003d9f;
		background: rgba(255,255,255,0);
		filter:drop-shadow(0 0 4px rgba(0,0,0,0));
	}
	.button_box a:hover::after {
		border-color: #003d9f;
		right: 18px;
	}
}


/*----------注釈エリア---------*/
.note_area{
	padding: 20px 40px 50px;
}

.note_box{
	margin: auto;
	max-width:1200px;
}

.note_box p{
	font-size:14px;
}