@charset "utf-8";
/* CSS Document */
/*========================
KEY VISUAL
========================*/
.key_visual {
  position: relative;
  margin-bottom: 50px;
}
.key_visual_inner {
  position: absolute;
  left: 50%;
  top:calc(50% + 30px);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.key_visual h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  color: #A6FF00;
  font-size: 3rem;
}
.key_visual .logo_02 img {
  margin: 0 auto 10px;
}
.key_visual .logo_02 p {
  font-size: 1.4rem;
  font-weight: 700
}
.key_visual_inner p {
  padding-bottom: 0 !important
}
.kv_img {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .key_visual_inner {
    top: calc(50% + 50px);
  }
}
@media all and (min-width: 1024px) {
  .key_visual_inner {
    top: calc(50% + 50px);
  }
}
/*========================
PRICE_BOX
========================*/
.course_price_wrap ul {
  margin-bottom: 0px
}

.price_box {
  background: #262525;
  margin-bottom: 15px;
  padding: 15px;
}
.price_box h3 {
  border-bottom: 3px solid #A6FF00;
  margin-bottom: 15px;
  font-size: 3rem;
  padding-bottom: 10px;
}
.price_box p {
/*  margin-bottom: 15px;*/
  flex-grow: 1;
  font-size: 2rem;
}
.price_box p span.small {
  font-size: 1.6rem;
}
.price_box .course_price {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #A6FF00;
  border-radius: 50vh;
  color: #000;
  margin-bottom: 5px;
  font-size: 3rem;
  padding: 2px;
  width: 100%;
  font-weight: 700;
}
.price_box.type02 .course_price {
  margin-bottom: 35px !important;
}
.price_box .course_price .yen {
  font-size: 75%;
}
.price_box .course_price .tax {
  font-size: 50%;
}
.price_box .text_box {
  display: flex;
  flex-direction: column;
}
.price_box.type02 {
  margin-bottom: 35px !important;
}
@media all and (min-width: 768px) {
  .price_box {
    margin-bottom: 15px;
    text-align: left;
  }
.price_box:last-child{margin-bottom: 50px;}
  .price_box.type02 .course_price {
    margin-bottom: 15px !important;
  }
  .price_box .course_price {
    width: 30%;
    white-space: nowrap;
  }
  .price_box .text_box {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
@media all and (min-width: 1024px) {
  .price_box {
    margin: 25px 25px 50px 25px;
    text-align: left;
  }
  .price_box .course_price {
    width: 29%;
    font-size: 3.6rem;
  }
}
.admission_fee {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.course_price_wrap .admission_fee li {
  background: #000;
  text-align: center
}
.course_price_wrap .admission_fee li p {
  font-weight: 500;
  padding-bottom: 0;
  font-size: 2.4rem
}
@media all and (min-width: 768px) {
  .admission_fee {
    flex-direction: row;
    justify-content: space-between;
  }
}
.icon_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto 50px;
}
.icon_wrap li {
  width: calc(50% - 30px);
  margin: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.icon_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto 50px;
}
.icon_wrap li {
  width: calc(25% - 10px);
  margin: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.icon_circle {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #262525;
  border-radius: 50%;
  text-align: center;
  z-index: 1;
  margin: 0 auto 10px
}
.icon_wrap li p {
  font-size: 0.8rem;padding: 0 0 10px;
}
.icon_circle::after {
  top: -7px;
  left: -7px;
  padding: 7px;
  box-shadow: 0 0 0 4px #A6FF00;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -webkit-transform: scale(.8);
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  -moz-transform: scale(.8);
  -ms-transform: scale(.8);
  transition: transform 0.2s, opacity 0.2s;
  transform: scale(.8);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.icon_wrap li:hover .icon_circle::after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.icon_circle img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 60%;
}
@media all and (min-width: 768px) {
  .icon_wrap {
    flex-wrap: nowrap;
  }
  .icon_wrap li {
    width: calc(25% - 30px);
  }
  .icon_circle {
    width: 150px;
    height: 150px; margin: 0 auto 25px
  }
  .icon_wrap li p {
    font-size: 1.6rem
  }
}
@media all and (min-width: 1021px) {
  .icon_wrap li {
    width: calc(25% - 50px);
  }
  .icon_circle {
    width: 250px;
    height: 250px; margin: 0 auto 25px
  }
}
.plan_wrap {
  margin: 50px auto 50px;
}
.price_box .text_box table{  flex-grow: 1;font-size: 2rem;margin-bottom: 15px;}
.price_box .text_box table th{width: 9em;font-weight: inherit;text-align: left}
.text_box table td{text-align: left}
@media all and (max-width: 480px) {
.price_box .text_box table th,.price_box .text_box table td{width: 100%; display: block}
}