@charset "utf-8";
.fadeIn {
  opacity: 0;
  transition: 1s;
  position: relative;
  top: 100px;
}
.active {
  opacity: 1;
  top: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic ProN', 'メイリオ',
    sans-serif;
  color: #fff;
  background-color: #000;
  line-height: 1.5;
  position: relative;
}
.contents {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation-name: contents;
  animation-duration: 0.1s;
  animation-timing-function: ease-in-out;
  animation-delay: 7.5s;
  animation-fill-mode: forwards;
}
@keyframes contents {
  100% {
    z-index: 599;
  }
}
h1 {
  font-weight: 900;
  text-align: center;
  padding-top: 45px;
  line-height: 70px;
}
@media screen and (max-width: 640px) {
  h1 {
    line-height: 40px;
  }
}
/* アニメーション */
.animation_one {
  font-size: min(8vw, 55px);
  animation: SlideIn 1.5s infinite;
  animation-delay: 6.5s;
  animation-iteration-count: 1;
  animation-fill-mode: backwards;
  margin-bottom: 10px;
}
.animation_two {
  font-size: min(8vw, 55px);
  animation: SlideIn 1.5s infinite;
  animation-delay: 7s;
  animation-iteration-count: 1;
  animation-fill-mode: backwards;
  margin-bottom: 10px;
}
.animation_three {
  font-size: min(8vw, 55px);
  animation: SlideIn 1.5s infinite;
  animation-delay: 7.5s;
  animation-iteration-count: 1;
  animation-fill-mode: backwards;
}
@keyframes SlideIn {
  0% {
    opacity: 0;
    transform: translateY(64px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animation_area {
  width: 100%;
  height: calc(100vh - 56px);
  background: linear-gradient(
    -11deg,
    white,
    white 57%,
    red 57%,
    red 59%,
    black 60%,
    black
  );
  position: relative;
}
.animation_area_img {
  max-width: 100%;
  height: 100vw;
  max-height: 60%;
  position: absolute;
  bottom: 30px;
  right: 0px;
  animation: SlideIn 2.5s infinite;
  animation-delay: 6.5s;
  animation-iteration-count: 1;
  animation-fill-mode: backwards;
}
.animation_area_img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
h2 {
  font-size: min(5vw, 50px);
  font-weight: 700;
  margin-top: 30px;
}
.cycle_title {
  font-size: min(8vw, 75px);
}
h3 {
  font-size: min(6vw, 36px);
  font-weight: 600;
  padding-top: min(1vw, 6px);
  margin-left: 10px;
}
h4 {
  font-size: min(7vw, 42px);
  font-weight: 600;
  color: #cc2536;
  padding: 15px;
  background-image: url(../img/nanber.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
h5 {
  background-color: #cc2536;
  text-align: center;
  padding: 10px 10px;
  margin: 10px 10px 0 10px;
  position: relative;
  font-size: min(4.5vw, 36px);
  font-weight: 600;
}
p {
  font-size: min(3vw, 26px);
  font-weight: 600;
}
/* header */
header {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation-name: header;
  animation-duration: 0.1s;
  animation-timing-function: ease-in-out;
  animation-delay: 6.5s;
  animation-fill-mode: forwards;
}
@keyframes header {
  100% {
    z-index: 999;
  }
}
header .logo {
  width: 40px;
  height: 40px;
  padding-top: 10px;
  margin-left: 20px;
}
header .form_icon {
  position: fixed;
  top: 10px;
  right: 20px;
  width: min(30vw, 180px);
  height: 40px;
  background-color: #000;
  border: 2px solid white;
  border-radius: 20px;
}
header .form_icon .form_icon_text {
  width: 100%;
  height: 100%;
  font-size: min(3vw, 18px);
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding-top: calc(23px - min(3vw, 18px));
}
/* top_text */
.top_text_area {
  width: 85%;
  margin: 0 auto;
}
.top_text_area .under_line {
  width: 80%;
  margin: 20px auto 40px;
  text-align: center;
  border-bottom: 2px solid white;
  padding-bottom: 10px;
  padding-top: 20px;
}
.top_text_area ul {
  margin: 0 auto;
  margin-bottom: 50px;
  list-style-type: disc;
}
.top_text_area ul li {
  font-size: min(4.5vw, 26px);
  font-weight: 600;
}
.red_text {
  font-weight: 600;
  color: #cc2536;
}
.yellow_line {
  background: linear-gradient(transparent 50%, #fff960 95%);
}
/* 80%エリア */
.eighty_area {
  display: flex;
  width: 100%;
  justify-content: center;
}
.eighty_img {
  width: 40%;
}
.eighty_img img {
  width: 90%;
}
.eighty_text {
  width: 60%;
  text-align: center;
  position: relative;
}
.eighty_text h2 {
  margin-left: 16px;
  font-size: min(7vw, 60px);
}
@media screen and (max-width: 640px) {
  .eighty_text h2 {
    margin-top: 10px;
  }
}
.eighty_area .small_text {
  width: 90%;
  font-size: 12px;
  margin-top: 10px;
  margin-left: 1em;
}
.under_ber {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid white;
}
.diagonal_ber {
  width: 9.5vw;
  height: 4vw;
  border-left: 1px solid white;
  transform: rotate(45deg);
  position: absolute;
}
.top_text_area .triangle_text {
  font-size: min(4vw, 20px);
  font-weight: 600;
  text-align: center;
  margin-top: 60px;
}
.triangle {
  width: 0;
  height: 0;
  border-top: 27px solid #cc2536;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  margin: 10px auto 50px;
}
/* 5コンテンツエリア */
.five_content {
  width: 100%;
  padding-left: 15px;
  display: flex;
}
.five_content div {
  margin: auto 0;
}
.five_content,
.padding_bottom {
  padding-top: min(7vw, 40px);
}
.five_content,
.text_center {
  text-align: center;
}
.five_content_text {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-bottom: 35px;
}
.five_content_text img {
  margin-top: 25px;
  max-height: 500px;
  width: 30%;
}
.text_area {
  margin: auto 10px;
  height: auto;
  width: 60%;
  padding-top: 13px;
}
/* サイクル */
.cycle_area {
  position: relative;
  /* top: -30px; */
}
.cycle_area img {
  width: 100%;
}
/* 卒塾生の体験記(グラフ) */
.graph {
  width: 100%;
  height: auto;
  margin: 30px auto;
}
.graph_area img {
  width: 100%;
  margin-bottom: 30px;
  padding-left: 5px;
  padding-right: 5px;
}
.graph_text {
  padding-left: 15px;
  padding-right: 15px;
}
.tap_icon img {
  position: absolute;
  right: min(5%, 10px);
  top: 0;
  width: 20%;
  max-width: 100px;
}
@media screen and (min-width: 640px) {
  .tap_icon img {
    width: 15%;
    max-width: 50px;
  }
}
.more_text {
  text-align: center;
  font-size: min(3vw, 20px);
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 30px;
}
#graph_2,
#graph_3,
#graph_4 {
  display: none;
}
.graph_tap {
  cursor: pointer;
}
/* 合格実績 */
.pass_area {
  padding-top: 50px;
  margin-bottom: 50px;
}
.red_under {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 150px solid #cc2536;
  margin-bottom: 20px;
}
.tab {
  display: flex;
  justify-content: space-around;
}
.tab label {
  width: 25%;
}
.tab_btn {
  padding: 10px 10px;
  border-radius: 4px;
  font-size: min(6vw, 30px);
  font-weight: 600;
  width: 100%;
  text-align: center;
}
.btn--one {
  color: #fff;
  background-color: #696969;
}
.btn--one.btn--border_outset {
  border-top: 6px outset #989898;
  border-left: 6px outset #989898;
  border-right: 6px outset #989898;
}
.btn--two {
  color: #fff;
  background-color: #525252;
}
.btn--two.btn--border_outset {
  border-top: 6px outset #878787;
  border-left: 6px outset #878787;
  border-right: 6px outset #878787;
}
.btn--three {
  color: #fff;
  background-color: #414141;
}
.btn--three.btn--border_outset {
  border-top: 6px outset #7a7a7a;
  border-left: 6px outset #7a7a7a;
  border-right: 6px outset #7a7a7a;
}
.btn--four {
  color: #fff;
  background-color: #3c3c3c;
  /* background-color: #343434; */
}
.btn--four.btn--border_outset {
  border-top: 6px outset #7a7a7a;
  border-left: 6px outset #7a7a7a;
  border-right: 6px outset #7a7a7a;
}

.pass_area img {
  width: 100%;
  height: auto;
  position: relative;
  top: -6px;
}
.tab input[type='radio'] {
  display: none;
}
#tab_2_img,
#tab_3_img,
#tab_4_img {
  display: none;
}
/* 卒塾生の声 */
.vol_area {
  margin-bottom: 50px;
}
.flex_repeat {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.flex_repeat_content {
  width: 24%;
  min-width: 168px;
  border: 1px solid #fff;
  padding: 3px;
  margin: 3px;
}
.flex_repeat_content img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.flex_repeat_content p {
  font-size: min(3vw, 17px);
  font-weight: 600;
}
/* 保護者の声 */
.comments_area {
  margin-bottom: 50px;
}
.comments_area .flex_repeat_content {
  width: calc(48% + 6px);
  min-width: 85%;
  border: 1px solid #fff;
  padding: 5px;
  margin: 0 auto;
  margin-top: 3px;
  max-width: 100%;
}
.comments_area .flex_repeat_lastimg {
  min-width: 85%;
  margin: 0 auto;
  margin-top: 3px;
}

.flex_repeat_content p {
  font-size: min(3vw, 17px);
  font-weight: 600;
}
.comments_area div .flex_repeat_lastimg .last_img {
  margin: 0 auto;
  margin-top: 6px;
  display: block;
  max-width: 85%;
}
@media screen and (min-width: 640px) {
  .comments_area .flex_area {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
  .comments_area .flex_area div {
    width: calc(48% + 6px);
    min-width: 340px;
  }
  .comments_area div .flex_repeat_content {
    width: 100%;
    margin: 3px;
  }
  .comments_area .flex_repeat_lastimg {
    width: calc(48% + 6px);
    margin: 0;
  }
  .comments_area div .flex_repeat_lastimg .last_img {
    margin-top: 3px;
  }
}
/* 校内環境 */
.campus_area {
  margin-bottom: 50px;
}
.campus_area .flex_area {
  margin-bottom: 30px;
}
.campus_area .flex_area .flex_box {
  width: calc(48% + 6px);
  min-width: 85%;
  padding: 5px;
  margin: 0 auto;
  margin-top: 3px;
  max-width: 100%;
  margin-bottom: 3px;
}
.campus_area .flex_area div .flex_group {
  width: 100%;
}
.flex_group img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  max-height: 250px;
  }
.flex_group h6 {
  font-size: min(5vw, 30px);
  font-weight: 600;
  margin-bottom: 8px;
  padding: 3px;
  text-shadow: #666666 1px 0 10px;
  text-align: left;
  vertical-align: middle;
}
.flex_group h6::before {
  content: "";
  display: inline-block;
  background: url(../img/nanber.png) 100% 100% / cover;
  height: 28px;
  width: 30px;
  margin-right: 5px;
  margin-bottom: 5px;
  vertical-align: middle;
}
.flex_group p {
  font-size: min(3vw, 19px);
  font-weight: 600;
}
@media screen and (min-width: 640px) {
  .campus_area .flex_area .flex_box {
    width: calc(48% + 6px);
    min-width: 340px;
    max-width: 100%;
  }
  .campus_area .flex_area {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 30px;
  }
  .flex_group h6 {
    margin-bottom: 18px;
  }
}


/* 料金体系 */
.price_area {
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 40px;
  max-width: 1000px;
}
.price_area_img {
  width: 85%;
  margin: 0 auto;
}
.price_area img {
  object-fit: contain;
  width: 100%;
}
.price_text {
  width: 70%;
  margin: 20px auto;
}
.banner_img {
  margin: 0 auto;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  max-width: 1000px;
}
.banner_img img {
  width: 80%;
  box-shadow: 0 0 8px white;
}

@media screen and (min-width: 640px) {
  .price_area {
    display: flex;
    background-color: black;
  }
  .pass_area img {
    height: auto;
  }
  .price_area img {
    width: 90%;
    margin-left: 5%;
  }
  .price_area p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .price_text {
    padding: 30px 10px 10px 10px;
  }
}
/* 申し込みフォーム */
.form_area {
  position: relative;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 10;
}
#form_area,
.form_headline {
  color: #fff;
  font-size: min(6vw, 40px);
  font-weight: 700;
  text-align: center;
}
form {
  width: 85%;
  background-color: #000;
  margin: 10px auto;
  padding: 20px 20px 20px 20px;
  border: 1px solid lightgray;
  border-radius: 4px;
}
table {
  width: 78%;
  min-width: 230px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  table {
    width: 95%;
  }
}
table tr td {
  color: #fff;
  font-size: min(2vw, 20px);
  font-weight: 500;
  text-align: left;
  padding: 5px;
}
table tr td:first-child {
  width: min(15vw, 150px);
}
table tr td input,
table tr td textarea,
table tr td select {
  width: 100%;
  border: 1px solid lightgray;
  border-radius: 5px;
  padding-left: 10px;
}
table tr td select option {
  background: #000;
}
table tr td input[type='date'] {
  background: linear-gradient(
    90deg,
    black,
    black calc(100% - max(min(3vw, 30px), 20px)),
    lightgray calc(100% - max(min(3vw, 30px), 15px) + 10px),
    lightgray
  );
}
.font_red {
  color: red;
  font-size: min(2vw, 20px);
  font-weight: 500;
}
.privacy_link {
  font-weight: 800;
  color: darkred;
  text-decoration: underline;
}
/* 送信ボタン */
.btn_area {
  text-align: center;
}
.cp_button {
  display: inline-block;
  border-radius: 4px;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  padding: 12px 12px;
  background-color: #cc2536;
  color: #fff;
  line-height: 1em;
  opacity: 0.9;
  transition: 0.3s;
  box-shadow: 6px 6px 9px#666666;
  width: 80%;
}
.cp_button:hover {
  box-shadow: none;
  opacity: 1;
}
/* フッター */
footer {
  border-left: min(100vw) solid transparent;
  border-bottom: 26px solid #cc2536;
}
/* thanks.html / privacy.html */
.thanks_top,
.privacy_top {
  width: 100%;
  height: calc(100vh - 8px);
  background: linear-gradient(
    -11deg,
    white,
    white 83%,
    red 83%,
    red 85%,
    black 86%,
    black
  );
}
.thanks_top .logo,
.privacy_top .logo {
  padding-top: 20px;
  margin-left: 20px;
  width: 40px;
  height: 40px;
}
.thanks_top .thanks_text,
.privacy_top .privacy_text {
  width: 70%;
  margin: min(150px, 35%) auto 0;
}
.thanks_top .thanks_text p,
.privacy_top .privacy_text p {
  color: #000;
  font-size: min(2vw, 18px);
}
.privacy_area {
  width: 65%;
  min-width: 250px;
  color: #fff;
  font-size: min(2vw, 16px);
  margin: 10px auto;
  padding: 10px;
  border: 1px solid gray;
  border-radius: 10px;
}
.privacy_area input {
  margin-left: 10px;
  margin-right: 10px;
}
.link_hp {
  font-size: min(2vw, 16px);
  font-weight: 600;
  color: darkblue;
  text-decoration: underline;
}
.close_btn {
  cursor: pointer;
  margin: 10px auto;
  padding: 5px 10px;
  color: white;
  background-color: black;
  border-radius: 10px;
  box-shadow: 6px 6px 9px#666666;
}
/* アニメーションエリア*/
#animation_area {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  animation-name: animation_area;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 6.5s;
  animation-fill-mode: both;
}
@keyframes animation_area {
  0% {
    opacity: 1;
    z-index: 100;
  }
  50% {
    opacity: 0.3;
    z-index: 100;
  }
  99% {
    opacity: 0;
    z-index: 100;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}
#base {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
}
#animation_1 {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  clip-path: polygon(-10% 0, 0 20%, 0 20%, -10% 0);
  animation-name: animation_1;
  animation-duration: 2s;
  animation-timing-function: ease-in;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
@keyframes animation_1 {
  50% {
    clip-path: polygon(-10% 0, 0 20%, 110% 20%, 100% 0);
  }
  100% {
    clip-path: polygon(-10% 0, 0 55%, 110% 55%, 100% 0);
  }
}
#animation_2 {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  clip-path: polygon(100% 80%, 110% 100%, 110% 100%, 100% 80%);
  animation-name: animation_2;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 0.8s;
  animation-fill-mode: both;
}
@keyframes animation_2 {
  50% {
    clip-path: polygon(-10% 80%, 0 100%, 110% 100%, 100% 80%);
  }
  100% {
    clip-path: polygon(-10% 45%, 0 100%, 110% 100%, 100% 45%);
  }
}
#animation_3 {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  clip-path: polygon(0 110%, 10% 100%, 10% 100%, 0 110%);
  animation-name: animation_3;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 2.3s;
  animation-fill-mode: both;
}
@keyframes animation_3 {
  100% {
    clip-path: polygon(0 110%, 10% 100%, 10% -10%, 0 0);
  }
}
#animation_4 {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  clip-path: polygon(15% 0, 35% -10%, 35% -10%, 15% 0);
  animation-name: animation_4;
  animation-duration: 2s;
  animation-timing-function: ease-in;
  animation-delay: 2s;
  animation-fill-mode: both;
}
@keyframes animation_4 {
  100% {
    clip-path: polygon(15% 0, 35% -10%, 35% 100%, 15% 110%);
  }
}
#animation_5 {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  clip-path: polygon(40% 110%, 60% 100%, 60% 100%, 40% 110%);
  animation-name: animation_5;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 2.3s;
  animation-fill-mode: both;
}
@keyframes animation_5 {
  100% {
    clip-path: polygon(40% 110%, 60% 100%, 60% -10%, 40% 0);
  }
}
#animation_6 {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  clip-path: polygon(65% 0, 85% -10%, 85% -10%, 65% 0);
  animation-name: animation_6;
  animation-duration: 2s;
  animation-timing-function: ease-in;
  animation-delay: 2s;
  animation-fill-mode: both;
}
@keyframes animation_6 {
  100% {
    clip-path: polygon(65% 0, 85% -10%, 85% 100%, 65% 110%);
  }
}
#animation_7 {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  clip-path: polygon(90% 110%, 100% 100%, 100% 100%, 90% 110%);
  animation-name: animation_7;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 2.3s;
  animation-fill-mode: both;
}
@keyframes animation_7 {
  100% {
    clip-path: polygon(90% 110%, 100% 100%, 100% -10%, 90% 0);
  }
}
#animation_8 div,
#animation_9 div,
#animation_10 div {
  font-size: max(6vh, 3vw);
  color: white;
  font-weight: 600;
  line-height: 1.2em;
}
#animation_8 {
  width: 26vw;
  height: 100vh;
  position: absolute;
  top: 8vw;
  left: calc(75vw - max(6vh, 3vw) / 2);
  animation-name: animation_8;
  animation-duration: 2s;
  animation-timing-function: ease-in;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes animation_8 {
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
#animation_9 {
  width: 26vw;
  height: 100vh;
  position: absolute;
  top: 4vh;
  left: calc(50vw - max(6vh, 3vw) / 2);
  animation-name: animation_9;
  animation-duration: 2s;
  animation-timing-function: ease-in;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes animation_9 {
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
#animation_10 {
  width: 26vw;
  height: 100vh;
  position: absolute;
  top: 24vh;
  left: calc(25vw - max(6vh, 3vw) / 2);
  animation-name: animation_10;
  animation-duration: 2s;
  animation-timing-function: ease-in;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes animation_10 {
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
#animation_11 {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  animation-name: animation_11;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 4.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes animation_11 {
  100% {
    opacity: 1;
  }
}
#animation_12 {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  animation-name: animation_11;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 5.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes animation_11 {
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
