@charset "UTF-8";
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
}

body {
  font-size: 1.6rem;
}
body h2 {
  text-align: center;
  font-size: 3.4rem;
  margin-bottom: 100px;
  display: block;
  position: relative;
}
body h2 span {
  color: #ff5c5c;
  font-size: 2.1rem;
  font-weight: bold;
  display: block;
}
body h2 span::after {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 72px;
  height: 2px;
  background-color: #ff5c5c;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.only-sp-br {
  display: none;
}

.top-link {
  position: fixed;
  right: 20px;
  bottom: 2%;
  z-index: 10;
  color: #ffffff;
  background-color: #ff5c5c;
  border: solid 2px #ffffff;
  box-shadow: #932415 0px 0px 2px;
  text-decoration: none;
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 1.6rem;
}

@media screen and (max-width: 960px) {
  .only-sp-br {
    display: inline-block;
  }
  body h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
  }
}
/*header*/
header {
  background-color: #ffffff;
  height: 60px;
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  box-shadow: #792a2a 0px 2px 7px;
}
header .header-inner {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
header .header-inner img {
  max-width: 235px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  header .header-inner {
    left: 10px;
  }
  header .header-inner img {
    max-width: 235px;
  }
}
/*headerここまで*/
/*-----main-----*/
main {
  margin-top: 60px;
}

.main-vs {
  background-image: url(../img/main-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 65vh;
}

.main-vs-inner {
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
  height: 100%;
}
.main-vs-inner .main-copy {
  width: 60%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 650px) {
  .main-vs {
    background-image: url(../img/main-bg-sp.jpg);
    height: 50vh;
  }
  .main-vs-inner .main-copy {
    width: 100%;
    position: absolute;
    top: none;
    bottom: 0;
    transform: none;
  }
}
/*-----mainここまで-----*/
/*caption*/
.caption {
  padding: 40px 10px 10px;
  background-color: #ffdede;
}
.caption h2 {
  margin-bottom: 20px;
}
.caption p {
  font-size: 1.8rem;
  display: block;
  max-width: 960px;
  margin: 0 auto 40px;
  line-height: 2;
}
.caption p:last-child {
  margin-bottom: 0px;
}

.sec01-ttl {
  max-width: 560px;
  margin: 0 auto 40px;
  display: block;
}

@media screen and (max-width: 960px) {
  .caption {
    padding: 10px 10px 30px;
  }
  .caption h2 {
    text-align: left;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .caption p {
    line-height: 1.8;
  }
  .sec01-ttl {
    margin: 0 auto 30px;
  }
}
/*capここまで*/
/*point*/
.point {
  max-width: 960px;
  margin: 60px auto 200px;
}

.culmn-inner {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
}
.culmn-inner h3 {
  font-size: 2.4rem;
  position: relative;
  line-height: 1.2;
  margin-bottom: 20px;
}
.culmn-inner h3:before {
  content: "";
  display: block;
  background-image: url(../img/icon-01.svg);
  background-repeat: no-repeat;
  width: 89px;
  height: 87px;
  position: absolute;
  z-index: -1;
  bottom: 0;
}
.culmn-inner:nth-child(2) h3:before {
  background-image: url(../img/icon-02.svg);
}
.culmn-inner:nth-child(3) h3:before {
  background-image: url(../img/icon-03.svg);
}
.culmn-inner:nth-child(4) h3:before {
  background-image: url(../img/icon-04.svg);
}
.culmn-inner:nth-child(2n) {
  flex-flow: row-reverse;
}
.culmn-inner .culmn-text {
  width: 50%;
  line-height: 2.2;
}
.culmn-inner .culmn-text a {
  color: #ffffff;
  background-color: #ff5c5c;
  font-size: 18px;
  border-radius: 50px;
  border: solid 1px #ff5c5c;
  padding: 7px 20px;
  transition: 0.3s;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  box-shadow: 0px 3px 0px #b11c1c;
  position: relative;
  bottom: 0;
}
.culmn-inner .culmn-text a:hover {
  background-color: #ffffff;
  color: #ff5c5c;
  box-shadow: none;
  bottom: -3px;
}
.culmn-inner .culmn-img {
  width: 50%;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .point {
    margin: 20px auto 110px;
  }
  .culmn-inner {
    display: block;
    margin-bottom: 25px;
  }
  .culmn-inner h3 {
    line-height: 1.2;
  }
  .culmn-inner h3::before {
    width: 84px;
    height: 76px;
  }
  .culmn-inner:nth-child(2) h3:before {
    bottom: 1em;
  }
  .culmn-inner .culmn-img {
    width: 100%;
    padding: 20px;
  }
  .culmn-inner .culmn-img img {
    margin: 0 auto;
  }
  .culmn-inner .culmn-text {
    width: 100%;
    padding: 0px 20px;
  }
}
/*-----pointここまで-----*/
/*-----support-----*/
.support {
  background-color: #ffdede;
  padding: 10px;
}
.support h3 {
  font-size: 2.4rem;
  color: #ff5c5c;
  margin: 20px 0 0px;
  position: relative;
  background-color: #317581;
  color: #ffffff;
}
.support li {
  list-style: none;
}

.support-inner {
  max-width: 960px;
  margin: 20px auto 200px;
}

.support-cmn {
  background-color: #ffffff;
  box-shadow: #317581 0px 0px 10px;
  border-radius: 8px;
  margin-bottom: 40px;
  padding: 20px 30px 40px;
}

.support-cmn-inner {
  display: flex;
  align-items: center;
}
.support-cmn-inner img {
  width: 30%;
  margin-right: 2%;
}
.support-cmn-inner p {
  width: 68%;
  line-height: 1.8;
}
.support-cmn-inner .support-03 {
  max-width: 180px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .support-inner {
    margin: 20px auto 110px;
  }
  .support-cmn-inner {
    display: block;
  }
  .support-cmn-inner img {
    width: 100%;
    margin-right: 0%;
  }
  .support-cmn-inner p {
    width: 100%;
    line-height: 1.8;
  }
}
/*-----supportここまで-----*/
/*-----合格体験記-----*/
.goukaku {
  padding: 80px 10px 150px;
  background-color: #ffdede;
}

.goukaku-inner {
  max-width: 90%;
  margin: 80px auto;
  display: flex;
  flex-wrap: wrap;
}

.goukakusya {
  margin: 0 10px;
  padding: 30px;
  height: 100%;
  background-color: #ffffff;
}
.goukakusya h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
  color: #505050;
}
.goukakusya h4 {
  color: #ff5c5c;
  margin-bottom: 20px;
  text-align: center;
}
.goukakusya p {
  font-size: 1.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .goukaku {
    padding: 55px 10px 120px;
  }
  .goukakusya {
    padding: 15px;
  }
}
/*-----合格体験記ここまで-----*/
/*コンバージョンエリア*/
.cv-area {
  background-color: #ff8585;
  color: #ffffff;
  padding: 20px 10px;
  position: relative;
}
.cv-area::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon-cv.png);
  width: 500px;
  height: 130px;
  background-size: cover;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.cv-area h2 {
  margin-bottom: 35px;
}
.cv-area .cv-area-inner {
  max-width: 960px;
  margin: 0 auto;
}
.cv-area .cv-btn-area {
  display: flex;
}
.cv-area .cv-btn01 {
  width: 50%;
  margin: 10px;
  text-align: center;
  background-color: #ffffff;
  color: #ff5c5c;
  border-radius: 50px;
  font-size: 2.4rem;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: #792a2a 3px 3px 3px;
  position: relative;
}
.cv-area .cv-btn01 span {
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
  position: absolute;
  width: 100%;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (max-width: 960px) {
  .cv-area h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
  }
  .cv-area .cv-btn-area {
    display: block;
  }
  .cv-area .cv-btn01 {
    font-size: 2rem;
    width: 100%;
    display: block;
    margin: 0 auto 10px;
  }
  .cv-area .cv-btn01 span {
    font-weight: normal;
  }
  .cv-area.last-cv-area {
    padding: 20px 10px 60px;
  }
}
@media screen and (max-width: 500px) {
  .cv-area::before {
    width: 100%;
    height: 96px;
  }
}
/*コンバージョンエリアここまで*/
/*スライダーカスタマイズ*/
.slick-dots li button:before {
  font-size: 20px;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.slick-dots {
  margin-top: 20px;
}

.slick-list {
  margin-bottom: 20px;
}

.slick-next:before {
  content: "";
  display: block;
  background-image: url(../img/right-arrow.svg);
  width: 38px;
  height: 136px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.slick-prev::before {
  content: "";
  display: block;
  background-image: url(../img/left-arrow.svg);
  width: 38px;
  height: 136px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  position: absolute;
  right: 0;
}

@media screen and (max-width: 768px) {
  .slick-next:before {
    position: absolute;
    right: 0;
    width: 28px;
    height: 98px;
  }
  .slick-prev::before {
    position: absolute;
    left: 0;
    width: 28px;
    height: 98px;
  }
}
/*フェードイン*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.accordion-area li {
  margin: 20px 0;
}

.faq-block {
  padding: 0;
}

/*アコーディオンタイトル*/
.faq-item {
  background-color: #BED8FF;
  border-radius: 8px;
}

.title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 2rem;
  font-weight: normal;
  padding: 20px 50px;
  transition: all 0.3s ease;
  color: #4556F2;
  font-weight: bold;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #ffffff;
}

.title::before {
  top: 48%;
  left: 20px;
  transform: rotate(0deg);
}

.title::after {
  top: 48%;
  left: 20px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}

.title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;
  /*はじめは非表示*/
  background: #ffffff;
  padding: 20px 50px;
  border: #317581 solid 2px;
}

.box h4 {
  color: #4556F2;
  font-size: 2rem;
  margin: 0;
}

.box p {
  font-size: 1.6rem;
  color: #333333;
  margin-bottom: 20px;
}
.box p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .box {
    padding: 20px 20px;
  }
  .support .title {
    font-size: 18px;
    padding: 10px 50px;
  }
}/*# sourceMappingURL=style.css.map */