@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------------------
# common-css
--------------------------------------------------------------*/
.page_visual {
  margin-bottom: 8rem;
  background: url(/assets/img/page_visual.png) no-repeat center / cover;
}
.page_title {
    color: #FFF;
    font-size: var(--fs-page-title);
    font-weight: 700;
    text-align: center;
    padding: 2em 0;
}
.section_title {
  color: var(--main-blue);
  font-size: var(--fs-sec-title);
  font-weight: 700;
  text-align: center;
  margin-bottom: 7rem;
}
.section_title::before {
  display: block;
  content: "";
  margin: 0 auto 3rem;
  background-repeat: no-repeat;
  background-size: contain;
}
.block_title{
  font-size: var(--fs-large);
}
.read {
  color: var(--fc-base);
  font-weight: 700;
}
.read::after{
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  margin-left: 3rem;
  border: 4px solid transparent;
  border-left: 5px solid var(--fc-base);
}
.link {
  color: #008CFF;
  position: relative;
}
.link::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #008CFF;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s transform ease;
  position: absolute;
  bottom: -0.2em;
  left: 0;
}
.link:hover::after {
  transform: scaleX(1);
}
.btn_box {
  text-align: center;
  margin-top: 5rem;
}
.btn{
  display: inline-flex;
  font-weight:700;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-width: 19rem;
  padding: 1em 2em;
  background: var(--main-blue);
  position: relative;
}
.btn::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #218ED9;
  transform: scaleX(0);
  transform-origin: right;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  transition-property: transform;
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn::after {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  margin-left: 3rem;
  border: 4px solid transparent;
  border-left: 5px solid #FFF;
  position: relative;
}
.btn span {
  color: #FFF;
  position: relative;
}
.inline_block {
  display: inline-block
}
/*--------------------------------------------------------------
# ページナビ
--------------------------------------------------------------*/
.wp-pagenavi {
	width: fit-content;
  margin: 0 auto;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  color: var(--fc-base);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp( 2rem, calc( 1.742857142857143rem + 0.7142857142857143vw ), 2.6rem );
	margin: 0.2em;
  padding: 0.2em 0.5em;
  background: #EBEBEB;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
  color: #FFF;
	background: var(--main-blue);
}
.link_wrap {
  display: flex;
  justify-content: space-between;
  margin: 11rem auto 8rem;
  position: relative;
}
.link_wrap p:not(.archive) .btn {
  min-width: auto;
  padding: 1em;
}
.link_wrap .pre .btn span {
  padding-left: 4rem;
}
.link_wrap .pre .btn::after {
  margin-left: 1.5rem;
  position: absolute;
  top: 46%;
  left: 0;
  transform: scale(-1,-1);
}
.link_wrap .archive .btn {
  flex-shrink: 0;
  background: #218ED9;
  position: absolute;
  bottom: -7rem;
  left: 50%;
  transform: translateX(-50%);
}
.link_wrap .archive .btn::before {
  background: var(--main-blue)
}
.link_wrap .archive .btn::after {
  display: none;
}
.link_wrap .next {
  margin: 0 0 0 auto;
}
@media (min-width: 768px) {
  .link_wrap {
    margin: 19rem auto 8rem;
  }
  .link_wrap .archive .btn {
    bottom: 0;
  }
  .link_wrap p:not(.archive) .btn {
    padding: 1em 2em;
  }
  .link_wrap .pre .btn::after {
    margin-left: 3rem;
  }
}
/*--------------------------------------------------------------
# 英検合格実績
--------------------------------------------------------------*/
.results_section {
    padding: 7rem 0;
    background: url(/assets/img/results_bg_sp.png) no-repeat center / cover;
}
.results_section .section_title::before {
    width: min(12vw, 4.2rem);
    aspect-ratio: 42 / 48;
    background-image: url(/assets/img/icon_results.png);
}
.results_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 77.5rem;
    margin: 0 auto;
    gap: 3rem 3%;
}
.results_list li {
    display: flex;
    flex-direction: column;
    color: #FFF;
    font-size: clamp( 1.4rem, calc( 1.0571428571428571rem + 0.9523809523809524vw ), 2.2rem );
    justify-content: center;
    align-items: center;
    text-align: center;
    width: min(30%,17.6rem);
    aspect-ratio: 176 / 168;
    background: url(/assets/img/results_flower.png) no-repeat center / contain;
}
.results_list li .number {
    font-size: 159%;
}
@media (min-width:768px) {
    .results_section {
        padding: 10rem 0;
        background: url(/assets/img/results_bg.png) no-repeat center / cover;
    }
}
/*--------------------------------------------------------------
# 生徒・保護者の声
--------------------------------------------------------------*/
.voice_item {
  margin-bottom: 4.8rem;
  padding: 2rem;
  background: var(--pale-blue);
}
.voice_item .img_box {
  flex-shrink: 0;
  text-align: center;
  margin-bottom: 10px;
}
.voice_item .voice_text dt {
  font-size: var(--fs-large);
  text-align: center;
  margin-bottom: 2em;
}
.voice_item .voice_text dt::after {
  display: block;
  content:"";
  width: 6.8rem;
  height: 0.3rem;
  margin: 1rem auto 0;
  background: #218ED9;
}
@media (min-width:768px) {
  .voice_item {
    display: flex;
    gap: 3%;
    padding: 4rem;
  }
  .voice_item .voice_text dt {
    text-align: left;
  }
  .voice_item .voice_text dt::after {
    margin: 1rem auto 0 0;
  }
}
/*--------------------------------------------------------------
# よくある質問
--------------------------------------------------------------*/
.faq details summary {
  display: flex;
  font-size: var(--fs-large);
  font-weight: 700;
  align-items: baseline;
  padding: 0.5em;
  gap: 1em;
  background: #F2F2F2;
  border-left: 1.1rem solid #218ED9;
  cursor: pointer;
}
.faq details summary::-webkit-details-marker {
  display: none;
}
.faq details summary::after {
  display: block;
  content: "▲";
  font-size: 60%;
  align-self: center;
  line-height: 0.5;
  margin: 0 20px 0 auto;
  transform: rotate(0);
  transition: 0.4s all ease;
}
.faq details[open] summary::after {
  transform: rotate(180deg);
}
.faq details + details summary {
  margin-top: 1.6em;
}
.faq details .text_wrap {
  overflow: hidden;
}
.faq details .text_wrap p {
  line-height: 1.75;
  padding: 1em;
  border: 0.1rem solid #BCBCBC;
}
.faq details .text_wrap p a i {
  display: inline-block;
  content: url(/assets/img/icon_link.svg);
  width: 1em;
  height: 1em;
  margin-left: 0.5rem;
  padding-top: 0.2em;
}
@media (min-width:768px) {

}