@charset "utf-8";
/* CSS Document */

.cp_table2 *, .cp_table2 *:before, .cp_table2 *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
  
.cp_table2 {
	width: 100%;
	border-collapse: collapse;
  margin-bottom: 1em;
	font-size: 16px;
}
  
.cp_table2 th, .cp_table2 td {
	padding: 10px;
}
  
.cp_table2 th {
	text-align: left;
	background-color: #F385AA;
  color: #fff;
  border-bottom: 1px solid #fff;
}
  
.cp_table2 tr:last-child th {
  border-bottom: 1px solid #F385AA;
}    
.th_1 {
  width: 20%;
} 
  
.th_2 {
  width: 10%;
}   
  
.cp_table2 td {
	background-color: #fff;
  border: 1px solid #e5e5e5;
}

@media screen and (max-width:760px){

	
.cp_table2 th, .cp_table2 td {
		width: 100%;
		display: block;
	}
	
  .cp_table2 th {
    border: 1px solid #E8E7E7;
  } 
.cp_table2 td {
    border: 1px solid #E8E7E7;
  } 
}  	

/* ========================================
   イベント内容
======================================== */

.event-content {
  position: relative;
  max-width: 1420px;
  margin: 0 auto;
  padding: 26px 42px 25px;
  background: #fff;
  border: 7px solid #fbe8d9;
  box-sizing: border-box;
}

/* タイトル */
.event-content__title {
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: -32px;
  left: 0;

  width: 386px;
  height: 71px;
  margin: 0;

  background: #00ad55;
  color: #fff;

  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;

  box-sizing: border-box;
}

/* 3項目 */
.event-content__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;

  margin-top: 60px;
}

/* 各項目 */
.event-content__item {
  position: relative;

  min-height: 294px;
  padding: 32px 20px 25px;

  background: #fff3cf;
  box-sizing: border-box;

  text-align: center;
}

/* 番号 */
.event-content__number {
  position: absolute;
  top: -18px;
  left: -32px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 70px;
  height: 70px;

  background: #00ad55;
  color: #fff;

  border-radius: 50%;

  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

/* 見出し */
.event-content__heading {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 100px;
  margin: 0 0 8px;

  color: #174c9b;

  font-size: 25px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

/* アイコン */
.event-content__icon {
  width: 200px;
  height: 90px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  box-sizing: border-box;
}

.event-content__icon img {
  display: block;

  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;
}

/* PC用改行 */
.pc-only {
  display: block;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .event-content {
    padding: 55px 15px 20px;
    border-width: 4px;
  }

  /* タイトル */
  .event-content__title {
    position: absolute;
    top: -20px;
    left: -4px;

    width: 55%;
    height: 48px;

    font-size: 25px;
  }

  /* 1列 */
  .event-content__list {
    display: flex;
    flex-direction: column;
    gap: 45px;

    margin-top: 10px;
  }

  /* 各項目 */
  .event-content__item {
    min-height: auto;

    padding: 25px 15px 20px;
  }

  /* 番号 */
  .event-content__number {
    top: -15px;
    left: -10px;

    width: 58px;
    height: 58px;

    font-size: 36px;
  }

  /* 見出し */
  .event-content__heading {
    min-height: 65px;
    margin-bottom: 10px;

    font-size: 27px;
    line-height: 1.3;
  }

  /* アイコン */
  .event-content__icon {
    width: 80%;
    max-width: 295px;
    height: auto;
    min-height: 100px;
  }

  .event-content__icon img {
    width: 30%;
    height: auto;
  }

  .pc-only {
    display: none;
  }
}

/* ========================================
   ホバークラフトって何？
======================================== */

.hovercraft-about {
  max-width: 1420px;
  margin: 30px auto 0;
  padding: 0 20px 20px;

  background: #fbe8d9;
  box-sizing: border-box;
}

/* タイトル */
.hovercraft-about__title {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 80px;
  margin: 0;

  background: #00ad55;
  color: #fff;

  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;

  box-sizing: border-box;
}

/* 本文 */
.hovercraft-about__body {
  background: #fff;
  padding: 48px 50px 42px;
  box-sizing: border-box;
}

.hovercraft-about__body p {
  margin: 0;

  color: #888;

  font-size: 25px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

/* 強調部分 */
.hovercraft-about__body p span {
  color: #00ad55;
  font-weight: 700;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .hovercraft-about {
    margin-top: 25px;
    padding: 0 10px 10px;
  }

  /* タイトル */
  .hovercraft-about__title {
    height: 55px;

    font-size: 28px;
    letter-spacing: 0.03em;
  }

  /* 本文 */
  .hovercraft-about__body {
    padding: 25px 20px 28px;
  }

  .hovercraft-about__body p {
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0;
  }

}

/* ========================================
   英語学習セクション
======================================== */

.english-section {
  width: 100%;
  margin: 40px auto 0;
  padding: 0 20px 30px;
  box-sizing: border-box;
}

.english-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  max-width: 1800px;
  margin: 0 auto;
}


/* ========================================
   各ボックス
======================================== */

.english-box {
  position: relative;

  padding: 25px 15px 25px;

  background: #fff;
  border: 25px solid #f6ccb5;

  box-sizing: border-box;

  /*overflow: hidden;*/
	 overflow: visible;
}


/* ========================================
   見出し
======================================== */

.english-box__header {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 120px;

  padding: 0 20px;

  box-sizing: border-box;
}

.english-box__header h2 {
  margin: 0;

  color: #666;
  font-size: 28px;

  /*font-size: clamp(34px, 3vw, 58px);*/
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.english-box__header h2 span {
  color: #df4d68;
}


/* ABCアイコン */

.english-box__abc {
  position: absolute;
  left: -80px;
  top: -78px;

  width: 150px;
  height: auto;

  z-index: 10;
}


/* ？マーク */

.english-box__question {
  position: absolute;
  left: -33px;
  top: -33px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100px;
  height: 100px;

  border-radius: 50%;

  background: #df4d68;
  color: #fff200;

  font-size: 90px;
  font-weight: 700;
  line-height: 1;

  z-index: 2;
}

.english-box--reason .english-box__header h2 {
  padding-left: 60px;
}


/* ========================================
   点線
======================================== */

.english-box__line {
  width: 85%;
  height: 15px;

  margin: 0 auto 25px;

  background:
    repeating-linear-gradient(
      to right,
      #f6ccb5 0,
      #f6ccb5 15px,
      transparent 15px,
      transparent 30px
    );
}


/* ========================================
   左側コンテンツ
======================================== */

.english-box__content {
  position: relative;

  margin-bottom: 30px;
  padding: 15px;

  background: #fbe4d5;

  box-sizing: border-box;
}

.english-box__content h3 {
  margin: 0 0 8px;

  color: #555;
	font-size:25px;

  /*font-size: clamp(27px, 2.2vw, 42px);*/
  font-weight: 700;
  line-height: 1.3;
}

.english-box__content h3 span {
  color: #df4d68;
}

.english-box__content p {
  margin: 0;

  color: #555;
	font-size:22px;

  /*font-size: clamp(20px, 1.55vw, 30px);*/
  font-weight: 700;
  line-height: 1.45;
}

.english-box__content p span {
  color: #df4d68;
}


/* 教材画像 */

/*.english-box__images {
  position: absolute;
  right: -5px;
  bottom: -25px;

  display: flex;
  align-items: flex-end;
  gap: 5px;

  width: 38%;
}

.english-box__images img {
  display: block;

  max-width: 50%;
  height: auto;
}*/
.english-box__images {
  position: absolute;
  right: -5px;
  bottom: -25px;

  width: 40%;
}

.english-box__images img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   右側
======================================== */

.english-box__reason-text {
  text-align: center;
}

.english-box__reason-text p {
  margin: 0;

  color: #555;
  font-size: 19px;
  /*font-size: clamp(20px, 1.6vw, 32px);*/
  font-weight: 700;
  line-height: 1.5;
}


/* ========================================
   動画ボタン
======================================== */

.english-box__button {
  margin: 25px auto 20px;

  text-align: center;
}

.english-box__button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  min-width: 260px;
  padding: 18px 35px;

  border-radius: 10px;

  background: #df4d68;
  color: #fff;

  font-size: 20px;
  font-weight: 700;
  line-height: 1;

  text-decoration: none;

  box-shadow: 0 5px 0 #b93650;

  transition: 0.2s;
}

.english-box__button a:hover {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #b93650;
}

.english-box__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  height: 32px;

  border-radius: 8px;

  background: #fff;
  color: #df4d68;

  font-size: 18px;
}


/* ========================================
   右側説明画像
======================================== */

.english-box__chart {
  text-align: center;
}

.english-box__chart img {
  display: block;

  width: 65%;
  max-width: 500px;
  height: auto;

  margin: 0 auto;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .english-section {
    margin-top: 25px;
    padding: 0 10px 20px;
  }

  .english-section__inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }


  /* 各ボックス */

  .english-box {
    padding: 15px;
    border-width: 12px;
  }


  /* 見出し */

  .english-box__header {
    min-height: 85px;
    padding: 0 5px;
  }

  .english-box__header h2 {
    font-size: 25px;
  }


  /* ABC */

  .english-box__abc {
    left: -25px;
    top: -25px;

    width: 90px;
  }


  /* ？ */

  .english-box__question {
    left: -8px;
    top: -8px;

    width: 75px;
    height: 75px;

    font-size: 48px;
  }

  .english-box--reason .english-box__header h2 {
    padding-left: 45px;
  }


  /* 点線 */

  .english-box__line {
    height: 10px;
    margin-bottom: 18px;

    background:
      repeating-linear-gradient(
        to right,
        #f6ccb5 0,
        #f6ccb5 10px,
        transparent 10px,
        transparent 20px
      );
  }


  /* コンテンツ */

  .english-box__content {
    padding: 12px;
    margin-bottom: 20px;
  }

  .english-box__content h3 {
    font-size: 26px;
  }

  .english-box__content p {
    font-size: 19px;
  }


  /* 教材画像 */

  /*.english-box__images {
    position: static;

    width: 100%;
    margin-top: 15px;

    justify-content: center;
  }

  .english-box__images img {
    max-width: 45%;
  }*/
	 .english-box__images {
    position: static;

    width: 100%;
    margin-top: 15px;

    text-align: center;
  }

  .english-box__images img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }


  /* 右側 */

  .english-box__reason-text p {
    font-size: 17px;
  }


  /* ボタン */

  .english-box__button {
    margin: 20px auto;
  }

  .english-box__button a {
    min-width: 0;
    width: 90%;

    padding: 15px 20px;

    font-size: 23px;
  }


  /* 説明画像 */

  .english-box__chart img {
    width: 90%;
  }

}

/* ========================================
   試験対策・3ステップ
======================================== */

.course-flow {
  background: #e6f2fb;
  padding: 20px 30px 50px;
  overflow: hidden;
}

/* ----------------------------------------
   キャッチコピー
---------------------------------------- */

.course-flow__title {
  margin: 0 auto 35px;
  text-align: center;
  color: #171c8f;
  font-size:28px;
  /*font-size: clamp(30px, 4vw, 58px);*/
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.course-flow__title .highlight {
  background: linear-gradient(
    transparent 55%,
    #ffff00 55%
  );
}

.course-flow__title .red {
  color: #ff160d;
}


/* ----------------------------------------
   3ステップ
---------------------------------------- */

.course-flow__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 960px;
  margin: 0 auto;
}


/* ----------------------------------------
   各カード
---------------------------------------- */

.course-flow__step {
  flex: 1;
  min-width: 0;
  max-width: none;
  background: #fff;
  padding: 18px 20px 18px;
  box-sizing: border-box;
}


/* ----------------------------------------
   カードタイトル
---------------------------------------- */

.course-flow__step-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #171c8f;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.course-flow__step-title .number {
  font-size: clamp(70px, 6vw, 105px);
  line-height: 1;
  margin-right: 15px;
}

.course-flow__step-title > div {
  display: flex;
  flex-direction: column;
  /*font-size: clamp(32px, 3vw, 55px);*/
	font-size:25px;
}


/* ----------------------------------------
   点線
---------------------------------------- */

.course-flow__dots {
  height: 15px;
  margin: 18px 0 20px;

  background-image: radial-gradient(
    circle,
    #171c8f 0,
    #171c8f 6px,
    transparent 7px
  );

  background-size: 25px 15px;
  background-repeat: repeat-x;
}


/* ----------------------------------------
   画像
---------------------------------------- */

.course-flow__image {
  width: 100%;
  overflow: hidden;
}

.course-flow__image img {
  display: block;
  width: 100%;
  height: auto;
}


/* ----------------------------------------
   矢印
---------------------------------------- */

.course-flow__arrow {
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #282995;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .course-flow {
    padding: 20px 15px 35px;
  }

  .course-flow__title {
	  font-size: 20px:
    /*font-size: clamp(24px, 7vw, 36px);*/
    line-height: 1.45;
    margin-bottom: 25px;
  }

  .course-flow__title br {
    display: none;
  }

  .course-flow__steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .course-flow__step {
    width: 100%;
    max-width: 500px;
    padding: 18px 20px 18px;
  }

  .course-flow__step-title .number {
    font-size: 65px;
    margin-right: 12px;
  }

  .course-flow__step-title > div {
    font-size: clamp(25px, 7vw, 38px);
  }

  .course-flow__dots {
    margin: 12px 0 15px;
  }

  /* SPでは横矢印を下向きに */
  .course-flow__arrow {
    width: 0;
    height: 0;

    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 30px solid #282995;

    border-bottom: none;
  }

}
/* ========================================
   個別指導・映像授業
======================================== */

.support-section {
  width: 100%;
  background: #e9f4df;
  padding: 30px 10px;
  box-sizing: border-box;
}


/* ========================================
   上部タイトル
======================================== */

.support-section__title {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 18px;

  min-height: 75px;
  padding: 5px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #ffe000;

  box-sizing: border-box;

  color: #08a8d8;
  font-size: 25px;	
  /*font-size: clamp(28px, 4vw, 48px);*/
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.support-section__title strong {
  color: #32c83a;
  font-size: 1.7em;
  line-height: .8;

  text-shadow:
    -3px -3px 0 #fff,
     3px -3px 0 #fff,
    -3px  3px 0 #fff,
     3px  3px 0 #fff;
}

.support-section__title .free {
  font-size: 1.8em;
}


/* ========================================
   左右2カラム
======================================== */

.support-section__columns {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}


/* ========================================
   各ボックス
======================================== */

.support-box {
  background: #fff;
  border: 10px solid #e9f4df;
  box-sizing: border-box;
}

.support-box__header {
  min-height: 70px;

  display: flex;
  align-items: center;

  background: #00ae55;
  color: #fff;

  box-sizing: border-box;
}

.support-box__icon {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;

  margin-left: -2px;

  border-radius: 50%;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.support-box__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.support-box__header h3 {
  margin: 0;
  padding: 5px 10px;
  font-size:25px;
  /*font-size: clamp(22px, 2.5vw, 36px);*/
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.support-box__header h3 span {
  color: #fff000;
}


/* ========================================
   本文
======================================== */

.support-box__content {
  padding: 18px 15px 20px;
}


/* リード文 */

.support-box__lead {
  margin: 0 0 18px;

  text-align: center;
  font-size:20px;
  /*font-size: clamp(22px, 2.5vw, 32px);*/
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.support-box__lead .pink {
  color: #f00075;
}

.support-box__lead .blue {
  color: #1e4d98;
}

.support-box__lead .gray {
  color: #666;
}


/* ========================================
   左右の説明
======================================== */

.support-box__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-bottom: 20px;
}

.support-box__flow p {
  flex: 1;
  min-width: 0;

  margin: 0;
  padding: 12px 5px;

  background: #e6f2d9;
  border-radius: 50%;

  color: #666;
  text-align: center;
  font-size:16px;
  /*font-size: clamp(15px, 1.7vw, 21px);*/
  font-weight: 700;
  line-height: 1.35;
}

.support-box__flow small {
  display: inline-block;

  padding: 2px 5px;

  background: #2452a0;
  color: #fff;

  font-size: .65em;
  line-height: 1.3;
}


/* 三角矢印 */

.support-box__triangle {
  flex: 0 0 auto;

  width: 0;
  height: 0;

  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #a6d77e;
}


/* ========================================
   左：写真カード
======================================== */

.support-box__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;

  padding: 8px;

  background: #fff1c9;
}

.support-box__card {
  position: relative;

  padding: 25px 8px 8px;

  background: #fff1c9;
  box-sizing: border-box;
}

.support-box__number {
  position: absolute;
  top: -3px;
  left: -5px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #00ae55;
  color: #fff;

  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.support-box__card img {
  display: block;

  width: 100%;
  height: auto;
}

.support-box__card p {
  margin: 8px 0 0;

  color: #666;

  text-align: center;
  font-size:18px;
  /*font-size: clamp(18px, 2vw, 28px);*/
  font-weight: 700;
  line-height: 1.3;
}


/* ========================================
   右：映像授業
======================================== */

.support-box__movie {
  display: flex;
  align-items: center;
  gap: 20px;

  padding: 25px 15px;

  background: #fff1c9;
}

.support-box__movie-image {
  flex: 0 0 55%;
}

.support-box__movie-image img {
  display: block;
  width: 100%;
  height: auto;
}

.support-box__movie-text {
  flex: 1;

  color: #171c8f;
  text-align: center;

  font-weight: 700;
}

.support-box__movie-text .label {
  display: inline-block;

  margin-bottom: 5px;
  padding: 3px 12px;

  background: #252c96;
  color: #fff;
  font-size:16px;
  /*font-size: clamp(18px, 2vw, 27px);*/
  line-height: 1.2;
}

.support-box__movie-text p {
  margin: 0 0 12px;
  font-size:14px;
  /*font-size: clamp(14px, 1.7vw, 21px);*/
  line-height: 1.4;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .support-section {
    padding: 20px 10px 30px;
  }

  /* タイトル */
  .support-section__title {
    min-height: auto;

    padding: 10px 5px;

    gap: 4px;

    font-size: clamp(20px, 4vw, 32px);

    white-space: normal;
    flex-wrap: wrap;
  }

  .support-section__title strong {
    font-size: 1.5em;
  }

  /* 1カラム */
  .support-section__columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-box {
    border-width: 5px;
  }

  /* ヘッダー */
  .support-box__header {
    min-height: 60px;
  }

  .support-box__icon {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }

  .support-box__icon img {
    width: 40px;
    height: 40px;
  }

  .support-box__header h3 {
    font-size: clamp(20px, 4.2vw, 30px);
    white-space: normal;
  }

  /* 本文 */
  .support-box__content {
    padding: 15px 10px;
  }

  .support-box__lead {
    white-space: normal;
    font-size: clamp(20px, 3vw, 30px);
  }

  /* 説明 */
  .support-box__flow {
    gap: 5px;
  }

  .support-box__flow p {
    font-size: clamp(13px, 2vw, 16px);
  }

  .support-box__triangle {
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 22px;
  }

  /* 左の写真 */
  .support-box__cards {
    gap: 8px;
  }

  .support-box__number {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .support-box__card {
    padding-top: 22px;
  }

  .support-box__card p {
    font-size: clamp(16px, 4.5vw, 23px);
  }

  /* 右の映像 */
  .support-box__movie {
    flex-direction: column;
    gap: 15px;

    padding: 15px 10px;
  }

  .support-box__movie-image {
    width: 100%;
    flex-basis: auto;
  }

  .support-box__movie-text {
    width: 100%;
  }

  .support-box__movie-text .label {
    font-size: 20px;
  }

  .support-box__movie-text p {
    font-size: 17px;
  }

}