@charset "UTF-8";
html {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  margin: 0 auto;
  line-height: 1.5;
  font-size: 62.5%;
  font-weight: normal;
  color: #231815;
  text-align: justify;
  word-wrap: break-word;
  font-feature-settings: "palt";
  letter-spacing: 0.1rem;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
}

ul {
  list-style: none;
}

a {
  color: #231815;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

#loader-bg {
  position: fixed;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  z-index: 9999;
  color: #999999;
}

/* -----------------------------------
common
----------------------------------- */
p {
  font-size: 1.2rem;
}

.w_back {
  padding: 0 5%;
}

.g_back {
  padding: 0 5%;
  background: #f8f8f7;
}

/* -----------------------------------
animation
----------------------------------- */
.fadein {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease-in-out 0.3s;
}

.fadein.isActive {
  opacity: 1;
  transform: translateY(0);
}

@keyframes showAnime {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes showline {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/* -----------------------------------
header & footer
----------------------------------- */
.header {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 99;
  background: #ffffff;
  padding: 0 3%;
  box-shadow: 0px 6px 8px rgba(135, 174, 4, 0.3);
}
@media screen and (max-width: 540px) {
  .header {
    height: 50px;
  }
}
.header .logo {
  display: block;
  margin-top: 5px;
  width: 240px;
}
@media screen and (max-width: 540px) {
  .header .logo {
    width: 200px;
  }
}
.header .menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 660px) {
  .header .menu {
    display: none;
  }
}
.header .menu a {
  display: block;
  margin: 0 1vw;
  padding: 10px;
  font-size: 1.1vw;
  font-weight: 500;
  position: relative;
  transition: 300ms;
  border-bottom: 0px solid #FFDC29;
}
@media screen and (max-width: 1280px) {
  .header .menu a {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1080px) {
  .header .menu a {
    font-size: 1.5rem;
  }
}
.header .menu a:hover {
  border-bottom: 5px solid #FFDC29;
}
.header .menu .green {
  color: #0CB6A2;
}

/* ------------- sp menu -------------- */
.hamburger {
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 99;
  display: none;
}
@media screen and (max-width: 660px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  width: 100%;
  height: 1px;
  border-radius: 5px;
  background-color: #0CB6A2;
  position: relative;
  transition: cubic-bezier(0.93, 0.21, 0.95, 0.72) 300ms;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 12px;
}
.hamburger span:nth-child(2) {
  top: 23px;
}

.hamburger.active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  top: 18px;
  transform: rotate(-45deg);
}

.sp_menu {
  position: absolute;
  right: 0;
  top: 60px;
  width: 55%;
  height: calc(100vh - 60px);
  transform: translateX(100%);
  background-color: #f4faf9;
  transition: cubic-bezier(0.93, 0.21, 0.52, 1.34) 500ms;
}
@media screen and (max-width: 540px) {
  .sp_menu {
    top: 50px;
    height: calc(100vh - 50px);
  }
}
.sp_menu .sp_menu_items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}
.sp_menu .sp_menu_items a {
  position: relative;
  color: #2d2d2d;
  width: 100%;
  display: block;
  font-size: 1.6rem;
  margin-bottom: 5vh;
  font-weight: 600;
}
.sp_menu .sp_menu_items a::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: -25px;
  width: 15px;
  height: 15px;
  background-color: #FFDC29;
  border-radius: 50%;
}
.sp_menu .sp_menu_items .green {
  color: #0CB6A2;
}

.sp_menu.active {
  transform: translateX(5%);
}

footer {
  width: 100%;
  padding: 7vw 5% 15px 5%;
  /*
  	.f_login{
  		display: block;
  		text-align: center;
  		font-size: 1.6rem;
  		color: $green;
  		width: 80px;
  		margin: 3vw auto 7vw auto;
  	}
  */
}
footer .f_logo {
  width: 20%;
  max-width: 260px;
  margin: 0 auto 7vw auto;
}
footer p {
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 680px) {
  footer .f_logo {
    width: 30%;
    margin: 0 auto 60px auto;
  }
}

#pagetop {
  position: fixed;
  z-index: 100;
  right: 4vw;
  bottom: 3vw;
}
@media screen and (max-width: 880px) {
  #pagetop {
    right: 30px;
    bottom: 30px;
  }
}

.totop {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  border: 2px solid #0CB6A2;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 3px 5px #dbdbdb;
  transition: 300ms;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 680px) {
  .totop {
    width: 50px;
    height: 50px;
  }
}

.totop.active {
  opacity: 1;
  visibility: visible;
}

.totop:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background-color: #0CB6A2;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  transition: transform ease 0.4s;
}
@media screen and (max-width: 680px) {
  .totop:after {
    width: 60px;
    height: 60px;
  }
}

.totop:hover:after {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}

.totop:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-style: solid;
  border-color: #0CB6A2;
  border-width: 3px 0 0 3px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}
@media screen and (max-width: 680px) {
  .totop:before {
    width: 12px;
    height: 12px;
  }
}

.totop:hover:before {
  border-color: #fff;
}

/* -----------------------------------
top
----------------------------------- */
.fv {
  position: relative;
  padding: 19vw 10% 12vw 10%;
}
@media screen and (max-width: 760px) {
  .fv {
    padding: 160px 8% 100px 8%;
  }
}
@media screen and (max-width: 540px) {
  .fv {
    padding: 120px 8% 80px 8%;
  }
}
.fv .fv_tit h2 {
  margin-left: auto;
  text-align: right;
  font-size: 2.5vw;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 760px) {
  .fv .fv_tit h2 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 540px) {
  .fv .fv_tit h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 400px) {
  .fv .fv_tit h2 {
    font-size: 2rem;
  }
}
.fv .fv_txt {
  width: 60%;
  position: relative;
  margin-top: 35vw;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease-in-out 0.3s;
}
.fv .fv_txt h3 {
  text-align: left;
  font-size: 2vw;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.fv .fv_txt p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 40px;
}
@media screen and (max-width: 760px) {
  .fv .fv_txt {
    margin-top: 45vw;
  }
  .fv .fv_txt h3 {
    font-size: 2.5vw;
  }
  .fv .fv_txt p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 540px) {
  .fv .fv_txt {
    margin-top: 360px;
    width: 100%;
  }
  .fv .fv_txt h3 {
    font-size: 1.8rem;
  }
}
.fv .isActive {
  opacity: 1;
  transform: translateY(0);
}
.fv .isActive h3 span {
  position: relative;
}
.fv .isActive h3 span::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  z-index: -1;
  width: 0%;
  height: 1vw;
  background: #FFDC29;
  animation: showline 1s cubic-bezier(0.59, 0.03, 0.97, 0.33) forwards 0.6s;
}
.fv .isActive p span {
  position: relative;
}
.fv .isActive p span::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  z-index: -1;
  width: 0%;
  height: 1vw;
  background: #FFF0A3;
  animation: showline 1s cubic-bezier(0.59, 0.03, 0.97, 0.33) forwards 1.2s;
}
.fv::before {
  content: "";
  position: absolute;
  top: 12vw;
  left: 8%;
  width: 50%;
  height: 40vw;
  background-image: url(../images/fv_img1.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
@media screen and (max-width: 760px) {
  .fv::before {
    top: 120px;
    left: 3%;
    height: 43vw;
  }
}
@media screen and (max-width: 540px) {
  .fv::before {
    top: 200px;
    height: 50vw;
  }
}
@media screen and (max-width: 450px) {
  .fv::before {
    top: 220px;
    height: 50vw;
  }
}
.fv::after {
  content: "";
  position: absolute;
  top: 39vw;
  right: 8%;
  width: 35%;
  height: 35vw;
  background-image: url(../images/fv_img2.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
@media screen and (max-width: 760px) {
  .fv::after {
    top: 320px;
    right: 3%;
    width: 45%;
    height: 45vw;
  }
}
@media screen and (max-width: 540px) {
  .fv::after {
    top: 350px;
    right: 3%;
    width: 50%;
    height: 50vw;
  }
}
@media screen and (max-width: 450px) {
  .fv::after {
    top: 370px;
  }
}

.show {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 760px) {
  .show {
    width: 60%;
  }
}
@media screen and (max-width: 540px) {
  .show {
    width: 85%;
  }
}
@media screen and (max-width: 470px) {
  .show {
    width: 100%;
  }
}
.show::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 4vw;
  background: #ffffff;
  animation: showAnime 1.3s cubic-bezier(0.58, 0.04, 0.91, 0.49) forwards;
}
@media screen and (max-width: 540px) {
  .show::before {
    height: 35px;
  }
}
.show span {
  position: relative;
}
.show span::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  z-index: -1;
  width: 0%;
  height: 1vw;
  background: #FFDC29;
  animation: showline 1s cubic-bezier(0.59, 0.03, 0.97, 0.33) forwards 1.6s;
}

.show2 {
  position: relative;
  width: 50%;
  margin-top: 20px;
}
@media screen and (max-width: 540px) {
  .show2 {
    width: 60%;
  }
}
.show2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 4vw;
  background: #ffffff;
  animation: showAnime 1.3s cubic-bezier(0.58, 0.04, 0.91, 0.49) forwards 0.5s;
}
@media screen and (max-width: 540px) {
  .show2::before {
    height: 35px;
  }
}

/* -------------------------------- */
.detail {
  position: relative;
  padding: 7vw 15%;
}
@media screen and (max-width: 980px) {
  .detail {
    padding: 9vw 10%;
  }
}
@media screen and (max-width: 680px) {
  .detail {
    padding: 60px 8%;
  }
}
.detail .detail_tit {
  width: 7vw;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .detail .detail_tit {
    width: 80px;
  }
}
.detail .detail_wrap {
  position: relative;
}
.detail .detail_wrap::after {
  content: "";
  position: absolute;
  top: 5vw;
  right: 0%;
  width: 17%;
  height: 11vw;
  background-image: url(../images/icon_pc.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 830px) {
  .detail .detail_wrap::after {
    top: 150px;
  }
}
@media screen and (max-width: 680px) {
  .detail .detail_wrap::after {
    top: -70px;
    width: 15%;
  }
}
.detail .detail_wrap .detail_con {
  position: relative;
  margin: 5vw 0;
}
@media screen and (max-width: 980px) {
  .detail .detail_wrap .detail_con {
    margin: 60px 0;
  }
}
@media screen and (max-width: 680px) {
  .detail .detail_wrap .detail_con {
    margin: 45px 0;
  }
}
.detail .detail_wrap .detail_con h3 {
  text-align: left;
  font-size: 1.7vw;
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  .detail .detail_wrap .detail_con h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 680px) {
  .detail .detail_wrap .detail_con h3 {
    font-size: 1.6rem;
  }
}
.detail .detail_wrap .detail_con p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (max-width: 680px) {
  .detail .detail_wrap .detail_con p {
    font-size: 1.4rem;
    margin-top: 15px;
  }
  .detail .detail_wrap .detail_con p br {
    display: none;
  }
}
.detail .detail_wrap .detail_con::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3vw;
  z-index: 2;
  width: 1vw;
  height: 100%;
  background: #FFDC29;
}
@media screen and (max-width: 980px) {
  .detail .detail_wrap .detail_con::before {
    left: -30px;
  }
}
@media screen and (max-width: 680px) {
  .detail .detail_wrap .detail_con::before {
    left: -20px;
  }
}
.detail .detail_note {
  border-top: 2px dashed #8fc5b7;
  padding: 40px 0 0 0;
}
.detail .detail_note h5 {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 10px;
  font-weight: 400;
  color: #393939;
}
@media screen and (max-width: 830px) {
  .detail .detail_note {
    padding: 30px 0 0 0;
  }
  .detail .detail_note h5 {
    line-height: 1.6;
    margin-top: 15px;
  }
}
@media screen and (max-width: 680px) {
  .detail .detail_note {
    padding: 20px 0 0 0;
  }
  .detail .detail_note h5 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 10px;
  }
}

/* -------------------------------- */
.section_tit {
  padding: 1vw 0 5vw 0;
}
.section_tit h3 {
  text-align: center;
  font-size: 2vw;
  letter-spacing: 0.3rem;
}
.section_tit p {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 15px;
}
@media screen and (max-width: 980px) {
  .section_tit {
    padding: 20px 0 60px 0;
  }
  .section_tit h3 {
    font-size: 2.4rem;
    letter-spacing: 0.2rem;
  }
}
@media screen and (max-width: 680px) {
  .section_tit {
    padding: 10px 0 40px 0;
  }
  .section_tit h3 {
    font-size: 2rem;
  }
  .section_tit p {
    font-size: 1.4rem;
  }
}

.news {
  padding: 6vw 10%;
}
@media screen and (max-width: 680px) {
  .news {
    padding: 40px 8%;
  }
}
.news .news_wrap {
  display: flex;
  align-items: center;
  width: 50%;
  margin: 0 auto 20px auto;
}
.news .news_wrap h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-right: 30px;
  color: #0CB6A2;
}
.news .news_wrap a {
  font-size: 1.6rem;
  transition: 300ms;
}
.news .news_wrap a:hover {
  color: #0CB6A2;
}
@media screen and (max-width: 980px) {
  .news .news_wrap {
    width: 80%;
  }
}
@media screen and (max-width: 680px) {
  .news .news_wrap {
    width: 100%;
  }
  .news .news_wrap h3 {
    font-size: 1.4rem;
    margin-right: 20px;
  }
  .news .news_wrap a {
    font-size: 1.4rem;
  }
}

/* -------------------------------- */
.price {
  padding: 7vw 10% 9vw 10%;
}
@media screen and (max-width: 680px) {
  .price {
    padding: 60px 8%;
  }
}
.price .price_tit {
  background: #F9F7F7;
  width: 400px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 60px;
}
@media screen and (max-width: 480px) {
  .price .price_tit {
    width: 100%;
    padding: 20px;
  }
}
.price .price_tit h4 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .price .price_tit h4 {
    font-size: 1.8rem;
  }
}
.price .price_tit h4 span {
  font-size: 1.6rem;
}
.price .price_txt {
  text-align: center;
  padding: 15px 0;
}
.price .price_txt h5 {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 10px auto 25px auto;
}
.price .price_txt h5 span {
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  .price .price_txt h5 {
    font-size: 1.6rem;
  }
  .price .price_txt h5 span {
    font-size: 1.4rem;
  }
}
.price .price_txt p {
  font-size: 1.4rem;
  line-height: 1.8;
}
.price .campaign {
  margin-top: 60px;
}
.price .campaign .school_img {
  width: 80px;
  margin: 0 auto;
}
.price .campaign h2 {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.price .campaign h2::before, .price .campaign h2::after {
  background-color: #0CB6A2;
  border-radius: 3px;
  content: "";
  height: 2px;
  width: 25px;
}
.price .campaign h2::before {
  margin-right: 10px;
  transform: rotate(50deg);
}
.price .campaign h2::after {
  margin-left: 10px;
  transform: rotate(-50deg);
}
.price .campaign .campaign_wrap {
  width: 100%;
  max-width: 600px;
  margin: 10px auto;
  background: #FFE355;
  box-shadow: 10px 10px 0px #F0F0F0;
  padding: 30px 5%;
}
@media screen and (max-width: 480px) {
  .price .campaign .campaign_wrap {
    padding: 30px 8%;
  }
}
.price .campaign .campaign_wrap h3 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.price .campaign .campaign_wrap .price_tit {
  background: #F9F7F7;
  width: 400px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 60px;
}
@media screen and (max-width: 580px) {
  .price .campaign .campaign_wrap .price_tit {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .price .campaign .campaign_wrap .price_tit {
    padding: 20px;
  }
}
.price .campaign .campaign_wrap .price_tit h4 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .price .campaign .campaign_wrap .price_tit h4 {
    font-size: 1.8rem;
  }
}
.price .campaign .campaign_wrap .price_tit h4 span {
  font-size: 1.6rem;
}
.price .campaign .campaign_wrap p {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 15px;
}

/* -------------------------------- */
.course {
  position: relative;
  padding: 7vw 10%;
}
@media screen and (max-width: 1080px) {
  .course {
    padding: 9vw 5%;
  }
}
@media screen and (max-width: 660px) {
  .course {
    padding: 60px 8%;
  }
}
.course .course_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 2vw;
}
@media screen and (max-width: 800px) {
  .course .course_wrap {
    display: block;
  }
}
.course .course_wrap .course_con {
  width: 30%;
}
@media screen and (max-width: 800px) {
  .course .course_wrap .course_con {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #0CB6A2;
  }
  .course .course_wrap .course_con:last-child {
    padding-bottom: 10px;
    margin-bottom: 0px;
    border-bottom: 0px solid #0CB6A2;
  }
}
@media screen and (max-width: 660px) {
  .course .course_wrap .course_con {
    display: block;
    width: 80%;
    margin: 0 auto 60px auto;
  }
}
@media screen and (max-width: 480px) {
  .course .course_wrap .course_con {
    width: 100%;
    margin: 0 auto 40px auto;
  }
}
@media screen and (max-width: 800px) {
  .course .course_wrap .course_con .course_tit {
    width: 35%;
  }
}
@media screen and (max-width: 660px) {
  .course .course_wrap .course_con .course_tit {
    width: 100%;
  }
}
.course .course_wrap .course_con .course_tit h1 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 1080px) {
  .course .course_wrap .course_con .course_tit h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .course .course_wrap .course_con .course_tit h1 {
    text-align: left;
  }
}
@media screen and (max-width: 660px) {
  .course .course_wrap .course_con .course_tit h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.course .course_wrap .course_con .course_tit .course_link {
  position: relative;
  display: block;
  width: 100%;
  height: 18vw;
  background: #ffffff;
  border: 2px solid #ffffff;
  transition: 300ms;
}
@media screen and (max-width: 800px) {
  .course .course_wrap .course_con .course_tit .course_link {
    height: 160px;
  }
}
@media screen and (max-width: 660px) {
  .course .course_wrap .course_con .course_tit .course_link {
    display: none;
  }
}
.course .course_wrap .course_con .course_tit .course_link:hover {
  border: 2px solid #FFDC29;
}
.course .course_wrap .course_con .course_tit .course_link .course_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-48%, -47%);
}
.course .course_wrap .course_con .course_tit .course_link .course_img1 {
  width: 13vw;
}
.course .course_wrap .course_con .course_tit .course_link .course_img2 {
  width: 15vw;
}
.course .course_wrap .course_con .course_tit .course_link .course_img3 {
  width: 15vw;
}
.course .course_wrap .course_con .course_tit .sp_course_img {
  display: none;
  position: relative;
  width: 100%;
  height: 210px;
  background: #ffffff;
  border: 2px solid #FFDC29;
}
@media screen and (max-width: 660px) {
  .course .course_wrap .course_con .course_tit .sp_course_img {
    display: block;
  }
}
.course .course_wrap .course_con .course_tit .sp_course_img .course_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-48%, -47%);
}
.course .course_wrap .course_con .course_tit .sp_course_img .course_img1 {
  width: 40%;
}
.course .course_wrap .course_con .course_tit .sp_course_img .course_img2 {
  width: 45%;
}
.course .course_wrap .course_con .course_tit .sp_course_img .course_img3 {
  width: 45%;
}
@media screen and (max-width: 800px) {
  .course .course_wrap .course_con .course_txt {
    width: 60%;
  }
}
@media screen and (max-width: 660px) {
  .course .course_wrap .course_con .course_txt {
    width: 100%;
  }
}
.course .course_wrap .course_con .course_txt p {
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 20px 10px;
}
@media screen and (max-width: 800px) {
  .course .course_wrap .course_con .course_txt p {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}
.course .course_wrap .course_con .course_txt h5 {
  font-size: 1.5rem;
  border-top: 1px dashed #8fc5b7;
  padding: 20px 10px;
}
@media screen and (max-width: 980px) {
  .course .course_wrap .course_con .course_txt h5 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 800px) {
  .course .course_wrap .course_con .course_txt h5 {
    padding: 10px 0;
  }
}
.course .course_wrap .course_con .course_txt .course_btn {
  display: block;
  width: 200px;
  background: #FFDC29;
  padding: 10px;
  text-align: center;
  font-size: 1.6rem;
  box-shadow: 3px 5px 0px #c4c4ba;
  border-radius: 30px;
  margin: 30px auto 20px auto;
  transition: 300ms;
}
.course .course_wrap .course_con .course_txt .course_btn:hover {
  transform: translate(3px, 5px);
  box-shadow: 0px 0px 0px #c4c4ba;
}
@media screen and (max-width: 800px) {
  .course .course_wrap .course_con .course_txt .course_btn {
    width: 140px;
    font-size: 1.4rem;
    margin: 10px 0 0 auto;
  }
}

/* -------------------------------- */
.entry {
  position: relative;
  padding: 7vw 10%;
}
@media screen and (max-width: 780px) {
  .entry {
    padding: 80px 8%;
  }
}
@media screen and (max-width: 680px) {
  .entry {
    padding: 60px 8%;
  }
}
.entry .entry_con {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 5%;
  border: 7px solid #FFDC29;
  text-align: center;
}
@media screen and (max-width: 680px) {
  .entry .entry_con {
    padding: 40px 8%;
  }
}
.entry .entry_con h4 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 30px;
}
@media screen and (max-width: 680px) {
  .entry .entry_con h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .entry .entry_con h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.entry .entry_con h3 {
  font-size: 2.4rem;
}
@media screen and (max-width: 680px) {
  .entry .entry_con h3 {
    font-size: 2.2rem;
  }
}
.entry .entry_con .entry_btn {
  display: block;
  width: 260px;
  background: #FFDC29;
  padding: 15px 10px;
  text-align: center;
  font-size: 1.8rem;
  box-shadow: 3px 5px 0px #c4c4ba;
  border-radius: 30px;
  margin: 20px auto 60px auto;
  transition: 300ms;
}
@media screen and (max-width: 480px) {
  .entry .entry_con .entry_btn {
    margin: 20px auto 40px auto;
  }
}
.entry .entry_con .entry_btn:hover {
  transform: translate(3px, 5px);
  box-shadow: 0px 0px 0px #c4c4ba;
}
.entry .entry_con p {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 680px) {
  .entry .entry_con p {
    text-align: left;
  }
  .entry .entry_con p br {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .entry .entry_con p {
    font-size: 1.4rem;
  }
}

/* -------------------------------- */
.merit {
  position: relative;
  padding: 7vw 10%;
}
@media screen and (max-width: 680px) {
  .merit {
    padding: 60px 8%;
  }
}
.merit .merit_con {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}
.merit .merit_con p {
  font-size: 1.8rem;
  margin: 20px 0;
  display: flex;
}
@media screen and (max-width: 680px) {
  .merit .merit_con p {
    font-size: 1.6rem;
  }
}
.merit .merit_con p::before {
  content: "";
  width: 25px;
  min-width: 25px;
  height: 25px;
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 12px;
}

/* -----------------------------------
Course_a
----------------------------------- */
.course_fv {
  position: relative;
  padding: 16vw 10% 8vw 10%;
}
@media screen and (max-width: 1080px) {
  .course_fv {
    padding: 16vw 8% 8vw 8%;
  }
}
.course_fv .fv_tit h2 {
  font-size: 2.5vw;
  font-weight: bold;
}
.course_fv .fv_tit p {
  font-size: 2rem;
  margin-top: 4vw;
  line-height: 2;
}
@media screen and (max-width: 1080px) {
  .course_fv .fv_tit h2 {
    font-size: 3.6vw;
  }
  .course_fv .fv_tit p {
    font-size: 1.8rem;
    margin-top: 5vw;
  }
}
.course_fv::after {
  content: "";
  position: absolute;
  top: 14vw;
  right: 10%;
  width: 40%;
  height: 35vw;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
@media screen and (max-width: 1080px) {
  .course_fv::after {
    top: 20vw;
    right: 6%;
  }
}
@media screen and (max-width: 820px) {
  .course_fv {
    padding: 140px 8% 8vw 8%;
  }
  .course_fv .fv_tit {
    margin-bottom: 80px;
  }
  .course_fv .fv_tit h2 {
    font-size: 3rem;
  }
  .course_fv .fv_tit p {
    font-size: 1.6rem;
  }
  .course_fv::after {
    top: 220px;
    z-index: -1;
  }
}
@media screen and (max-width: 580px) {
  .course_fv {
    padding: 120px 8% 8vw 8%;
  }
  .course_fv .fv_tit {
    margin-bottom: 240px;
  }
  .course_fv .fv_tit h2 {
    font-size: 2.8rem;
  }
  .course_fv .fv_tit p {
    font-size: 1.5rem;
  }
  .course_fv::after {
    top: 230px;
    width: 60%;
    height: 50vw;
  }
}
@media screen and (max-width: 430px) {
  .course_fv {
    padding: 100px 8% 40px 8%;
  }
  .course_fv .fv_tit {
    margin-bottom: 230px;
  }
  .course_fv .fv_tit h2 {
    font-size: 2.2rem;
  }
  .course_fv .fv_tit p {
    font-size: 1.4rem;
  }
  .course_fv::after {
    top: 220px;
  }
}

.course_a::after {
  background-image: url(../images/course_a_fv.svg);
}

.course_b::after {
  background-image: url(../images/course_b_fv.svg);
}

.course_c::after {
  background-image: url(../images/course_c_fv.svg);
}

.show3 {
  position: relative;
  width: 40%;
}
.show3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 4vw;
  background: #ffffff;
  animation: showAnime 1.3s cubic-bezier(0.58, 0.04, 0.91, 0.49) forwards;
}
.show3 span {
  position: relative;
}
.show3 span::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  z-index: -1;
  width: 0%;
  height: 1vw;
  background: #FFDC29;
  animation: showline 1s cubic-bezier(0.59, 0.03, 0.97, 0.33) forwards 1s;
}
@media screen and (max-width: 1080px) {
  .show3 {
    width: 50%;
  }
  .show3::before {
    height: 50px;
  }
}
@media screen and (max-width: 820px) {
  .show3 {
    width: 70%;
  }
  .show3::before {
    height: 40px;
  }
}
@media screen and (max-width: 580px) {
  .show3 {
    width: 100%;
  }
}

.course_explan {
  margin-top: 7vw;
}
.course_explan h4 {
  position: relative;
  font-size: 2.4rem;
  align-items: center;
  display: flex;
}
.course_explan h4::before {
  content: "";
  position: absolute;
  left: -30px;
  height: 20px;
  width: 20px;
  background-color: #FFDC29;
  border-radius: 50%;
}
.course_explan p {
  font-size: 2rem;
  margin: 15px 0 25px 0;
}
.course_explan .tool_icon {
  display: flex;
}
.course_explan .tool_icon .tool_img {
  width: 40px;
  margin-right: 20px;
}
@media screen and (max-width: 1080px) {
  .course_explan p {
    font-size: 1.8rem;
  }
  .course_explan .tool_icon .tool_img {
    width: 35px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 880px) {
  .course_explan {
    margin-top: 8vw;
  }
  .course_explan h4 {
    font-size: 2.2rem;
  }
  .course_explan p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 680px) {
  .course_explan h4 {
    font-size: 2rem;
  }
  .course_explan h4::before {
    left: -25px;
    height: 15px;
    width: 15px;
  }
}
@media screen and (max-width: 430px) {
  .course_explan h4 {
    font-size: 1.8rem;
  }
  .course_explan h4::before {
    left: -20px;
    height: 10px;
    width: 10px;
  }
  .course_explan p {
    font-size: 1.4rem;
    margin: 10px 0 20px 0;
  }
  .course_explan .tool_icon .tool_img {
    width: 30px;
    margin-right: 15px;
  }
}

.course_detail {
  position: relative;
  padding: 5px 10%;
}
.course_detail .detail_wrap {
  position: relative;
}
.course_detail .detail_wrap::after {
  content: "";
  position: absolute;
  top: 1vw;
  right: 5%;
  width: 8%;
  height: 7vw;
  background-image: url(../images/icon_pencil.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.course_detail .detail_wrap .detail_con {
  position: relative;
  margin: 5.5vw 0;
}
.course_detail .detail_wrap .detail_con h3 {
  text-align: left;
  font-size: 1.7vw;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  .course_detail .detail_wrap .detail_con h3 {
    font-size: 2rem;
  }
}
.course_detail .detail_wrap .detail_con p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 20px;
}
.course_detail .detail_wrap .detail_con::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3vw;
  z-index: 2;
  width: 1vw;
  height: 100%;
  background: #FFDC29;
}
@media screen and (max-width: 880px) {
  .course_detail {
    padding: 5px 8%;
  }
  .course_detail .detail_wrap::after {
    top: -20px;
    right: -20px;
  }
  .course_detail .detail_wrap .detail_con {
    margin: 7vw 0;
  }
}
@media screen and (max-width: 880px) and (max-width: 680px) {
  .course_detail .detail_wrap .detail_con p br {
    display: none;
  }
}
@media screen and (max-width: 880px) and (max-width: 580px) {
  .course_detail .detail_wrap .detail_con {
    margin: 40px 0;
  }
  .course_detail .detail_wrap .detail_con h3 {
    font-size: 1.8rem;
  }
  .course_detail .detail_wrap .detail_con p {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}

.curriculum {
  position: relative;
  padding: 9vw 15%;
}
.curriculum .curriculum_tit img {
  display: block;
  width: 15vw;
  margin: 0 auto;
}
.curriculum p {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 10px;
}
.curriculum .curriculum_wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 3vw 0;
}
.curriculum .curriculum_wrap h5 {
  font-size: 2rem;
  margin: 20px 3%;
  width: 44%;
}
.curriculum h6 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 1280px) {
  .curriculum {
    padding: 9vw 10%;
  }
}
@media screen and (max-width: 1080px) {
  .curriculum {
    padding: 9vw 5%;
  }
  .curriculum .curriculum_tit img {
    width: 20vw;
  }
  .curriculum .curriculum_wrap h5 {
    margin: 20px 2%;
    width: 46%;
  }
}
@media screen and (max-width: 880px) {
  .curriculum .curriculum_wrap {
    margin: 40px 0;
  }
  .curriculum .curriculum_wrap h5 {
    font-size: 1.8rem;
    margin: 10px 2%;
  }
}
@media screen and (max-width: 800px) {
  .curriculum .curriculum_tit img {
    width: 180px;
  }
  .curriculum .curriculum_wrap {
    display: block;
    margin: 50px 0;
  }
  .curriculum .curriculum_wrap h5 {
    font-size: 2rem;
    margin: 20px 5%;
    width: 90%;
  }
}
@media screen and (max-width: 580px) {
  .curriculum {
    padding: 60px 5%;
  }
  .curriculum .curriculum_wrap h5 {
    font-size: 1.6rem;
    margin: 20px 5%;
    width: 90%;
  }
  .curriculum h6 {
    font-size: 1.3rem;
    text-align: left;
  }
}

.voice {
  position: relative;
  padding: 7vw 10%;
}
.voice .voice_wrap {
  display: flex;
  justify-content: space-between;
}
.voice .voice_wrap .voice_con {
  width: 31%;
  background: #ffffff;
  padding: 20px 30px;
}
.voice .voice_wrap .voice_con p {
  font-size: 1.6rem;
  line-height: 1.9;
  position: relative;
}
.voice .voice_wrap .voice_con p span {
  z-index: -1;
  width: 100%;
  background: #FFF0A3;
}
.voice .voice_wrap .voice_con h5 {
  font-size: 1.4rem;
  text-align: right;
  margin-top: 10px;
}
@media screen and (max-width: 1180px) {
  .voice {
    padding: 7vw 5%;
  }
}
@media screen and (max-width: 880px) {
  .voice .voice_wrap {
    display: block;
  }
  .voice .voice_wrap .voice_con {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .voice .voice_wrap .voice_con {
    padding: 20px 25px;
  }
  .voice .voice_wrap .voice_con p {
    font-size: 1.4rem;
    line-height: 1.9;
  }
  .voice .voice_wrap .voice_con h5 {
    font-size: 1.3rem;
  }
}

/* -----------------------------------
Entry
----------------------------------- */
.entry_fv {
  position: relative;
  padding: 14vw 10% 8vw 10%;
}
.entry_fv .entry_header {
  text-align: center;
}
.entry_fv .entry_header h6 {
  font-size: 1.8rem;
  font-weight: 500;
}
.entry_fv .entry_header h2 {
  font-size: 2vw;
  margin: 30px 0 60px 0;
}
.entry_fv .entry_header p {
  font-size: 1.6rem;
  line-height: 1.7;
}
.entry_fv .entry_header .note {
  font-size: 1.4rem;
  margin-top: 40px;
}
@media screen and (max-width: 980px) {
  .entry_fv {
    padding: 16vw 5% 60px 5%;
  }
  .entry_fv .entry_header h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 680px) {
  .entry_fv {
    padding: 140px 5% 60px 5%;
  }
  .entry_fv .entry_header h6 {
    font-size: 1.6rem;
  }
  .entry_fv .entry_header h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 510px) {
  .entry_fv {
    padding: 120px 5% 60px 5%;
  }
  .entry_fv .entry_header h2 {
    font-size: 2.2rem;
    margin: 20px 0 50px 0;
  }
  .entry_fv .entry_header p {
    font-size: 1.4rem;
    text-align: left;
  }
  .entry_fv .entry_header .note {
    font-size: 1.2rem;
    margin-top: 30px;
  }
}

.headline {
  position: relative;
}
.headline:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -0.3rem;
  transform: translateX(-50%);
  width: 0%;
  height: 14px;
  background: #FFDC29;
  animation: showline 0.5s cubic-bezier(0.59, 0.03, 0.97, 0.33) forwards 0.5s;
}

.fade-in-text {
  position: relative;
  opacity: 0;
  transform: translateY(10%);
  animation: fadeInFromBottom 1s forwards;
}

@keyframes fadeInFromBottom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* -------------------------------- */
.entry_wrap {
  position: relative;
  padding: 7vw 10%;
}
@media screen and (max-width: 980px) {
  .entry_wrap {
    padding: 7vw 5%;
  }
}
.entry_wrap .entry_tit {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 4vw;
}
.entry_wrap .form {
  margin: 0 auto;
  max-width: 780px;
}
.entry_wrap .form .form_item {
  border-bottom: 1px dashed #BDBDBD;
  padding: 25px 5%;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .entry_wrap .form .form_item {
    padding: 25px 0%;
  }
}
@media screen and (max-width: 660px) {
  .entry_wrap .form .form_item {
    display: block;
    padding: 20px 0%;
  }
}
.entry_wrap .form .form_item .form_item_label {
  width: 100%;
  max-width: 180px;
  letter-spacing: 0.1rem;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 760px) {
  .entry_wrap .form .form_item .form_item_label {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 660px) {
  .entry_wrap .form .form_item .form_item_label {
    margin-bottom: 10px;
  }
}
.entry_wrap .form .form_item .seimei {
  display: flex;
  width: 100%;
}
.entry_wrap .form .form_item .form_input {
  border: 1px solid #0CB6A2;
  border-radius: 6px;
  padding: 0 1em;
  height: 45px;
  flex: 1;
  width: 100%;
  background: #ffffff;
  font-size: 1.8rem;
}
@media screen and (max-width: 760px) {
  .entry_wrap .form .form_item .form_input {
    font-size: 1.6rem;
  }
}
.entry_wrap .form .form_item .form_input:nth-of-type(even) {
  margin-left: 15px;
}
.entry_wrap .form .form_item .form_select {
  border: 1px solid #0CB6A2;
  border-radius: 6px;
  padding: 0 1em;
  height: 45px;
  width: 140px;
  background: #ffffff;
  font-size: 1.8rem;
}
@media screen and (max-width: 760px) {
  .entry_wrap .form .form_item .form_select {
    font-size: 1.6rem;
  }
}
.entry_wrap .form .form_item .preferred_input {
  margin-bottom: 30px;
}
.entry_wrap .form .form_item .preferred_input h4 {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 10px;
}
@media screen and (max-width: 760px) {
  .entry_wrap .form .form_item .preferred_input h4 {
    font-size: 1.4rem;
  }
}
.entry_wrap .form .form_item .preferred_input .preferred_con {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.entry_wrap .form .form_item .preferred_input .preferred_con .form_date {
  border: 1px solid #0CB6A2;
  border-radius: 6px;
  padding: 0 1em;
  height: 45px;
  flex: 1;
  width: 45%;
  background: #ffffff;
  font-size: 1.6rem;
}
@media screen and (max-width: 760px) {
  .entry_wrap .form .form_item .preferred_input .preferred_con .form_date {
    font-size: 1.4rem;
  }
}
.entry_wrap .form .form_item .preferred_input .preferred_con p {
  font-size: 1.6rem;
  margin: 0 10px;
}
.entry_wrap .form .form_item .last {
  margin-bottom: 0;
}
.entry_wrap .form .form_item .form_textarea {
  border: 1px solid #0CB6A2;
  border-radius: 6px;
  padding: 10px 1em;
  height: 260px;
  flex: 1;
  width: 100%;
  background: #ffffff;
  font-size: 1.6rem;
}
.entry_wrap .form .last {
  border-bottom: 0px solid #BDBDBD;
}
.entry_wrap .form .submit_btn {
  display: block;
  width: 200px;
  background: #FFDC29;
  padding: 10px;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.5rem;
  box-shadow: 3px 5px 0px #c4c4ba;
  border: none;
  border-radius: 30px;
  margin: 40px auto 20px auto;
  transition: 300ms;
}
.entry_wrap .form .submit_btn:hover {
  transform: translate(3px, 5px);
  box-shadow: 0px 0px 0px #c4c4ba;
}

::placeholder {
  color: #b1b1b1;
}

.form_radio {
  display: flex;
  flex-wrap: wrap;
}
.form_radio .form_radio_con {
  margin: 5px 30px 5px 0;
}
.form_radio .form_radio_con input {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.form_radio .form_radio_con label {
  position: relative;
  padding-left: 27px;
  font-size: 1.8rem;
  cursor: pointer;
}
@media screen and (max-width: 760px) {
  .form_radio .form_radio_con label {
    font-size: 1.6rem;
  }
}
.form_radio .form_radio_con label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: solid 2px #ccc;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
}
.form_radio .form_radio_con input:checked + label:before,
.form_radio .form_radio_con input:focus + label:before {
  border-color: #f1bc48;
}
.form_radio .form_radio_con label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background-color: #f1bc48;
  border-radius: 50%;
  color: transparent;
  transform: scale(0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, color cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
}
.form_radio .form_radio_con input:checked + label:after {
  transform: scale(1);
}

/* -----------------------------------
Thanks
----------------------------------- */
