@charset "UTF-8";

body {
  font-family: "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  html {
    font-size: 62.5%;
  }

  body {
    padding-bottom: 55px;
  }

  .inner_wrap {
    width: 92%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }

  html {
    font-size: 16px;
  }

  .inner_wrap {
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
  }
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0);
  transition: box-shadow .5s;
  -webkit-transition: box-shadow .5s;
  -ms-transition: box-shadow .5s;
}

body.scroll header {
  box-shadow: 0 -20px 60px 1px rgba(0, 0, 0, .1);
}

.header_inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.logo_wrap {
  width: auto;
  margin-top: 21px;
}

body.scroll .logo_wrap {
  margin-top: 0;
}

body.scroll .logo_wrap img {
  height: 100%;
  width: auto;
}

.nav_wrap {
  width: 77.7%;
}

.school_logo img {
  width: 100%;
}

.nav li a::before {
  content: '';
  border-bottom: 5px solid #00b2a4;
  /* height: 5px; */
  height: 10px;
  width: 100%;
  /* background-color: #00b2a4; */
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s;
}

.nav li a:hover::before {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .header_inner {
    height: 60px;
  }

  .logo_wrap {
    /* height: 70%; */
    display: none;
  }

  .logo_wrap img {
    width: 50%;
    height: auto;
  }

  .nav_wrap {
    /* width: calc(100% - 60px); */
    width: calc(100% - 160px);
    max-width: 350px;
  }

  .school_logo {
    /* width: 75%; */
    width: 100%;
  }

  /* ハンバーガーボタン・sp_nav */
  body.menu-open {
    height: 100vh;
    overflow: hidden;
  }

  #nav_toggle {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 50%;
    right: 0px;
    z-index: 99;
    transform: translateY(-50%);
    background-color: #00b2a4;
  }

  #nav_toggle span {
    width: 44.7%;
    height: 1px;
    left: 50%;
    display: block;
    background: #fff;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease;
    transform: translateX(-50%);
  }

  #nav_toggle span:nth-child(1) {
    top: 14px;
  }

  #nav_toggle span:nth-child(2) {
    top: 20px;
  }

  #nav_toggle span:nth-child(3) {
    top: 26px;
  }

  body.menu-open #nav_toggle span:nth-child(1) {
    top: 30px !important;
    transform: rotate(45deg) translateX(-70%);
  }

  body.menu-open #nav_toggle span:nth-child(2) {
    /* top: 15px; */
    width: 0 !important;
    left: 50%;
  }

  body.menu-open #nav_toggle span:nth-child(3) {
    top: 11px !important;
    transform: rotate(-45deg) translateX(-70%);
  }

  .nav {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transition: all 0.5s;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 calc(50% - 50vw);
    padding: 60px 4% 150px;
    /* overflow-y: scroll; */
  }

  body.menu-open .nav {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }

  .nav li {
    border-bottom: 1px dashed #000;
  }

  .nav li:first-child {
    border-top: 1px dashed #000;
  }

  .nav li a {
    font-size: 1.4rem;
    color: #000;
    padding: 1em;
    display: block;
  }

  .cta {
    position: fixed;
    /*bottom: 0;
      */
    opacity: 0;
    bottom: -120px;
    left: 0;
    width: 100%;
    transition: all .4s;
    -webkit-transition: all .4s;
    -ms-transition: all .4s;
  }

  .scroll .cta {
    opacity: 1;
    bottom: 0;
  }

  .cta a {
    display: block;
    text-align: center;
    color: #fff;
    background-color: #ff3c6c;
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    /* position: relative; */
    padding-right: 1em;
  }

  .cta a span {
    display: inline-block;
    position: relative;
  }

  .cta a span::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.5em 0 0.5em 0.7em;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 50%;
    right: -1.5em;
    transform: translateY(-60%);
  }

  .cta a.after {
    padding-right: 0;
  }
  .cta a.after span:after {
    content: none;
  }

}

@media screen and (min-width: 768px) {
  .header_inner {
    height: 120px;
  }

  .logo_wrap {
    height: 55%;
  }

  .logo_wrap img {
    width: auto;
    height: 140%;
    transition: height .3s;
    max-width: none;
  }

  .nav_wrap {
    height: 120px;
  }

  .nav_wrap .logo_cta {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .school_logo {
    width: 38%;
  }

  .nav {
    margin-top: 14px;
  }

  .nav ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .nav ul li {
    text-align: center;
  }

  .nav li a {
    font-size: 1.45vw;
    font-weight: bold;
    color: #333333;
    line-height: 1.2;
    display: block;
    position: relative;
    transition: all 0.3s;

    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
  }

  .cta {
    width: 180px;
  }

  .cta a {
    display: block;
    text-align: center;
    color: #fff;
    background-color: #ff3c6c;
    width: 100%;
    height: 65px;
    line-height: 65px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.04em;
    position: relative;
    padding-right: 1em;
    transition: all 0.3s;
  }

  .cta a:hover {
    opacity: 0.8;
  }

  .cta a::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.5em 0 0.5em 0.7em;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 50%;
    right: 0.5em;
    transform: translateY(-60%);
  }
  .cta a.after {
    padding-right: 0;
  }
  .cta a.after:after {
    content: none;
  }

}

@media screen and (min-width: 960px) {
  .nav li a {
    font-size: 14px;
  }
}

/* main */
main {
  overflow-x: hidden;
}

.sec_title h2 {
  text-align: center;
}

.sec_title h2 .ja {
  display: inline-block;
  font-weight: normal;
  line-height: 1.54;
  letter-spacing: 0.09em;
  position: relative;
}

.sec_title h2 .ja span {
  display: inline-block;
}

.sec_title h2 .ja::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #00b2a4;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.sec_title h2 .en {
  display: block;
  font-weight: normal;
  letter-spacing: 0.08em;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #00b2a4;
}

.sec_title p {
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.con_heading {
  text-align: center;
}

.con_heading h3 {
  letter-spacing: 0.09em;
  display: inline-block;
  position: relative;
  z-index: 1;
  font-weight: normal;
}

.con_heading h3::after {
  content: '';
  display: block;
  width: 105%;
  background-color: #f6df48;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.more {
  text-align: center;
}

.more a {
  text-align: center;
  background-color: #ff3c6c;
  color: #fff;
  letter-spacing: 0.02em;
  display: inline-block;
  position: relative;
  transition: all 0.3s;
}

.more a:hover {
  opacity: 0.8;
}

.more a::after {
  content: '';
  display: inline-block;
  background-image: url(../images/more_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.more a.after:hover {
  opacity: 1;
}

.more a.after:after {
  content: none;
}


@media screen and (max-width: 767px) {
  main {
    padding-top: 60px;
  }

  section {
    padding-top: 60px;
    margin-top: -60px;
  }

  .sec_wrap>div:first-child {
    padding-top: 40px;
  }

  .sec_title h2 .ja {
    font-size: 2.2rem;
  }

  .sec_title h2 .en {
    font-size: 1.6rem;
    margin-top: 16px;
  }

  .sec_title p,
  .course_wrap .sec_title .con_heading {
    margin-top: 30px;
    font-size: 1.4rem;
  }

  .con_heading h3 {
    font-size: 2rem;
  }

  .con_heading h3::after {
    height: 10px;
  }

  .more a {
    width: 100%;
    max-width: 420px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
  }

  .more a::after {
    width: 38px;
    height: 7px;
  }

  .more.short a {
    width: 90%;
    height: 50px;
    line-height: 50px;
    border-radius: 6px;
  }

  .more.short a::after {
    width: 28px;
    height: 6px;
  }




}

@media screen and (min-width: 768px) {
  main {
    padding-top: 120px;
  }

  section {
    padding-top: 120px;
    margin-top: -120px;
  }

  .sec_wrap>div:first-child {
    padding-top: 53px;
  }

  .sec_title h2 .ja {
    font-size: 35px;
  }

  .sec_title h2 .en {
    font-size: 19px;
    margin-top: 20px;
  }

  .sec_title p,
  .course_wrap .sec_title .con_heading {
    margin-top: 43px;
    font-size: 16px;
  }

  .con_heading h3 {
    font-size: 28px;
  }

  .con_heading h3::after {
    height: 15px;
  }

  .more a {
    width: 420px;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
  }

  .more a::after {
    width: 54px;
    height: 11px;
    transition: right .3s;
    -webkit-transition: right .3s;
    -ms-transition: right .3s;
  }

  .more.short a {
    width: 380px;
    height: 60px;
    line-height: 60px;
    border-radius: 10px;
  }

  .more.short a::after {
    width: 40px;
    height: 8px;
  }

  .more a:hover::after {
    right: 24px;
  }
}

/* mv */
.mv {
  width: 100%;
}

.mv img {
  width: 100%;
}


.date {
  background-color: #f6df48;
}

.date p {
  line-height: 1.2;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {

  .mv {
    position: relative;
  }

  .mv_inner {
    position: absolute;
    top: 5%;
    left: 5%;
    display: ;
    width: 90%;
    height: 95%;
  }

  .mv_heading {
    position: absolute;
    top: 28%;
  }

  .mv_heading h1 {
    font-size: 5.08vw;
    font-style: italic;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 1);
  }

  .mv_heading h1 strong {
    display: block;
    line-height: 1.4;
    margin-bottom: 0.3em;
  }

  .mv_heading h1 p,
  .mv_heading h1 span {
    font-weight: normal;
  }

  .mv_heading h1 p {
    font-size: .7em;
  }

  .mv_heading h1 span {
    font-size: .67em;
    font-weight: bold;
  }

  .mv_heading h1 span em {
    color: #ff0000;
    font-style: italic;
  }

  .mv_features {
    position: absolute;
    bottom: 3%;
    left: 0;
    width: 100%;
  }

  .mv_features img {
    width: 90%;
    margin: auto;
    display: block;
  }



  .date {
    padding: 10px;
  }

  .date p {
    font-size: 1.2rem;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

}

@media screen and (min-width: 768px) {

  .mv {
    background-image: url(../images/mv_pc_bg.jpg);
    background-size: cover;
    background-position: 50% 0;
    background-repeat: no-repeat;
  }

  .mv_inner {
    position: relative;
    padding-top: 34.4%;
  }

  .mv_heading {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    width: 71.4%;
    transform: translateY(-46%);
    -webkit-transform: translateY(-46%);
    -ms-transform: translateY(-46%);
  }

  .mv_heading h1 {
    font-size: 4.08vw;
    font-style: italic;
  }

  .mv_heading h1 strong {
    display: block;
    line-height: 1.4;
    margin-bottom: 0.3em;
  }

  .mv_heading h1 p,
  .mv_heading h1 span {
    font-weight: normal;
  }

  .mv_heading h1 p {
    font-size: .5em;
  }

  .mv_heading h1 span {
    font-size: .447em;
    font-weight: bold;
  }

  .mv_heading h1 span em {
    color: #ff0000;
    font-style: italic;
  }

  /* .mv_heading img {
      width: 100%;
  } */

  .mv_features {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(-15%);
    display: inline-block;
    width: 46.3%;
  }

  .mv_features img {
    width: 100%;
  }

  .date {
    padding: 14px 0 12px;
  }

  .date p {
    font-size: 20px;
  }
}


@media screen and (min-width: 930px) {

  .mv_heading h1 {
    font-size: 38px;
  }


}




/* media */
#media {}

.media_wrap {
  background-color: #ffffdb;
}

.media_content strong {
  display: block;
  text-align: center;
  font-weight: bold;
}

.media_content a {
  color: #000;
  transition: all .5s;
  padding: 18px 40px;
  background: none;
  border: none;
  position: relative;
  letter-spacing: 3px;
  cursor: pointer;
}

.media_content a:after,
.media_content a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 2px solid #000;
  /* transition: transform .2s;
  -webkit-transition: transform .2s;
  -ms-transition: transform .2s; */
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  -webkit-transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  -ms-transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.media_content a:after {
  transform: translate(3px, 3px);
  -webkit-transform: translate(3px, 3px);
  -ms-transform: translate(3px, 3px);
}

.media_content a:before {
  transform: translate(-3px, -3px);
  -webkit-transform: translate(-3px, -3px);
  -ms-transform: translate(-3px, -3px);
}

.media_content a:hover:after,
.media_content a:hover:before {
  transform: translate(0);
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
}

.media_content a i {
  background: url(../images/icon_blank.svg) 50% 50% / contain no-repeat;
  font-style: .8em;
  /* color: #fff;
font-style: normal;
background: #706f6f; */
  display: inline-block;
  width: 1em;
  height: 1em;
  /* border-radius: 50vh;
font-weight: normal; */
  line-height: 1em;
  position: relative;
  margin-left: 0.4em;
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  /*  padding-left: .2em; */
}

.media_wrap .result_btn {
  text-align: center;
}

.media_wrap .result_btn a {
  color: #fff;
  background: #FF3B6A;
  text-align: center;
  display: inline-block;
  transition: all .2s;
  -webkit-transition: all .2s;
  -ms-transition: all .2s;
}

.media_wrap .result_btn a:hover {
  opacity: .8;
}


@media screen and (max-width: 320px) {

  .media_content ul li {
    font-size: 5vw !important;
  }

}

@media screen and (max-width: 767px) {

  .media_wrap {
    padding-bottom: 10%;
  }

  .media_content {
    margin-top: 8%;
  }

  .media_content strong {
    font-size: 2rem;
    margin: 15% 0;
  }

  .media_content ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .media_content ul li {
    font-size: 1.8rem;
    width: 50%;
    text-align: center;
    margin-bottom: 5%;
  }

  .media_wrap .result_btn {
    margin-top: 40px;
  }

  .media_wrap .result_btn a {
    width: 90%;
    line-height: 3em;
    height: 3em;
    font-size: 2rem;
  }



}

@media screen and (min-width: 768px) {

  .media_wrap {
    padding-bottom: 76px;
  }

  .media_wrap .inner_wrap {
    padding-top: 73px;
  }

  .media_content {
    margin-top: 50px;
  }

  .media_content strong {
    font-size: 20px;
    margin-bottom: 50px;
  }

  .media_content a:hover {
    color: #0da59a;
  }

  .media_content ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .media_content ul li {
    font-size: 17px;
    width: 25%;
    text-align: center;
    margin-bottom: 18px;
  }

  .media_wrap .result_btn {
    margin-top: 40px;
  }

  .media_wrap .result_btn a {
    width: 270px;
    line-height: 50px;
    height: 50px;
    font-size: 20px;
  }

}


/* about */
/* intro */
.intro {
  background-image: url(../images/bg.gif);
  overflow-x: hidden;
}

.intro_content p {
  line-height: 1.87;
  letter-spacing: 0.08em;
}

.intro_content p b {
  border-bottom: 3px solid #f6df48;
  /* box-shadow: inset 0 -3px #f6df48; */
}

.intro_content .img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .intro {
    padding-bottom: 50px;
  }

  .intro_content {
    margin-top: 30px;
  }

  .intro_content p {
    font-size: 1.4rem;
  }

  .intro_content .img {
    width: 100%;
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .intro {
    padding-bottom: 76px;
  }

  .intro_content {
    margin-top: 50px;
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .intro_content .text {
    width: 50%;
  }

  .intro_content p {
    font-size: 16px;
  }

  .intro_content .img {
    width: 45%;
  }
}

@media screen and (min-width: 1200px) {
  .intro_content {
    display: block;
  }

  .intro_content .text {
    width: 60.1%;
  }

  .intro_content .img {
    width: 46.8%;
    max-width: 450px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(34%);
  }
}

/* point */
.point {
  background-color: #f3f3f3;
}

.point_item {
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}

.point_item::before {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
}

.point_item:first-child::before {
  background-image: url(../images/num_1.svg);
}

.point_item:nth-child(2)::before {
  background-image: url(../images/num_2.svg);
}

.point_item:nth-child(3)::before {
  background-image: url(../images/num_3.svg);
}

.point_item:nth-child(4)::before {
  background-image: url(../images/num_4.svg);
}

.point_item .item_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 98%;
}

.point_item strong {
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #00b2a4;
  font-weight: normal;
  display: block;
  position: relative;
}

.point_item strong::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 96%;
  height: 1px;
  transform: translateX(-50%);
  background-image: linear-gradient(to right, #000, #000 1px, transparent 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
}

.point_item p {
  line-height: 1.85;
  letter-spacing: 0.08em;
  margin-top: 17px;
}

@media screen and (max-width: 767px) {
  .point {
    padding: 40px 0 50px;
  }

  .point_item_wrap .content_inner {
    width: 100%;
    margin: 43px auto 0;
  }

  .point_item {
    width: 70%;
    padding-top: 70%;
    margin: 0 auto;
  }

  .point_item::before {
    width: 14.2%;
    height: 15.2%;
  }

  .point_item:not(:first-child) {
    margin-top: 30px;
  }

  .point_item strong {
    font-size: 1.8rem;
  }

  .point_item p {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .point {
    padding: 46px 0 66px;
  }

  .point_item_wrap .content_inner {
    /* width: 83.5%; */
    width: 100%;
    margin: 63px auto 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .point_item {
    /* width: 31.2%;
      padding-top: 31.2%; */
    width: 24%;
    padding-top: 24%;
  }

  .point_item::before {
    width: 16.2%;
    height: 17.2%;
  }

  .point_item strong {
    font-size: 1.66vw;
  }

  .point_item p {
    font-size: 1.16vw;
  }
}

@media screen and (min-width: 1200px) {
  .point_item strong {
    font-size: 20px;
  }

  .point_item p {
    font-size: 14px;
  }
}

/* recommend */
.recommend {
  background-image: url(../images/bg.gif);
  position: relative;
}

.recommend::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background: url(../images/recommend_bg.png) 0 0 / 100% 100% no-repeat;
  top: 0;
  left: 0;
  opacity: .5;
}

.recommend::after {
  content: '';
  width: calc(100% - 40px);
  max-width: 960px;
  height: 2px;
  border-bottom: 2px dashed #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.recommend_img {
  position: relative;
}

@media screen and (max-width: 767px) {
  .recommend {
    padding: 40px 0 42px;
  }

  .recommend_img {
    width: 96%;
    margin: 20px auto 0;
    /* padding: 0 4%; */
    /* overflow-x: scroll; */
  }

  .recommend_img img {
    width: 100%;
    /* max-width: none; */
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .recommend {
    padding: 44px 0 42px;
  }

  .recommend_img {
    width: 84.3%;
    max-width: 1012px;
    margin: 38px auto 0;
  }

  .recommend_img img {
    width: 100%;
  }
}

/* features */
.features {
  background-color: #fffff5;
}

.features .content_inner {
  margin: 0 auto;
}

.features .content li,
.features .content li p {
  line-height: 1.3;
  letter-spacing: 0.08em;
  position: relative;
  margin-bottom: 1.2em;
}

.features .content li::before {
  content: '';
  display: inline-block;
  background-image: url(../images/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: -2.4px;
}

.features .content li span {
  border-bottom: 2px solid #ff3c6c;
}

.features .content li img {
  margin-bottom: 9px;
}

.features .content>p {
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.features .content p:not(:first-of-type) {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .features {
    padding: 40px 0 38px;
  }

  .features .content {
    margin-top: 40px;
  }

  .features .content_inner {
    width: 87.3%;
    padding-left: 7.7%;
  }

  .features .content li,
  .features .content li p {
    font-size: 1.6rem;
  }

  .features .content li::before {
    width: 1.5em;
    height: 1.3em;
    left: -2.5em;
  }

  .features .content li img {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .features {
    padding: 67px 0 38px;
  }

  .features .content {
    margin-top: 65px;
  }

  .features .content_inner {
    width: 83.3%;
    padding-left: 8.7%;
    text-align: center;
  }

  .features .content ul {
    display: inline-block;
    text-align: left;
  }

  .features .content li,
  .features .content li p {
    font-size: 18px;
  }

  .features .content li::before {
    width: 1.6em;
    height: 1.4em;
    left: -3em;
  }

  .features .content li img {
    /* width: 61.1%; */
    margin-left: 6px;
    width: 100%;
    max-width: 438px;
  }
}

/* summary */
.summary_wrap {
  padding-top: 12px;
  position: relative;
}

.summary_wrap::before {
  content: '';
  width: calc(100% - 40px);
  max-width: 956px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #00b2a4;
}

.summary {
  background-image: url(../images/bg.gif);
  position: relative;
}

.summary::after {
  content: '';
  width: calc(100% - 40px);
  max-width: 960px;
  height: 2px;
  border-bottom: 1px dashed #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.summary .content {
  border-top: 2px dashed #000;
}

.summary .content dl:last-of-type {
  margin-bottom: 0;
}

.summary .content dt {
  padding: 0.3em 0.2em;
  background-color: #00b2a4;
  color: #fff;
  line-height: 1.47;
  letter-spacing: 0.08em;
  text-align: center;
}

.summary .content dl:last-of-type dt {
  letter-spacing: 0;
}

.summary .content dd {
  padding-top: 0.3em;
  line-height: 1.87;
  letter-spacing: 0.08em;
}

.summary .content dd p {
  line-height: 1.87;
  letter-spacing: 0.08em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.summary .content dd p span:first-child {
  display: inline-block;
  width: 6.5em;
}

.summary .content dd p span:nth-child(2) {
  flex: 1;
}

.summary .content dd li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.summary .content dd a {
  color: #007bff;
  padding: 0 18px 0 0;
  background: url(../images/icon_blank_color.gif) no-repeat right center;
  margin: 0 0.5em;
}

.summary .content dd a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.summary_level {
  display: inline-block;
  text-indent: 0;
  border-top: 4px double #000;
  border-bottom: 4px double #000;
  margin: 0.5em 0 1em;
}

@media screen and (max-width: 767px) {
  .summary {
    padding-bottom: 50px;
  }

  .summary .content {
    margin-top: 35px;
    padding-top: 35px;
  }

  .summary .content dt {
    width: 100%;
    font-size: 1.5rem;
  }

  .summary .content dl:not(:first-child) dt {
    margin-top: 20px;
  }

  .summary .content dd {
    font-size: 1.4rem;
    margin-top: 5px;
  }

  .summary .content dd p {
    font-size: 1.4rem;
  }

  .summary .content .more {
    margin-top: 45px;
  }
}

@media screen and (min-width: 768px) {
  .summary {
    padding-bottom: 55px;
  }

  .summary .content {
    margin-top: 45px;
    padding-top: 68px;
  }

  .summary .content dl {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 33px;
  }

  .summary .content dt {
    width: 130px;
    margin-right: 6.8%;
    font-size: 17px;
  }

  .summary .content dd {
    flex: 1;
    font-size: 16px;
  }

  .summary .content dd p {
    font-size: 16px;
  }

  .summary .content .more {
    margin-top: 68px;
  }
}

/* example */
.example {
  background-color: rgba(0, 178, 164, .1);
}

.example .heading_wrap .level {
  display: block;
  background-image: url(../images/example_heading_bg.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  margin: 34px auto 0;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.example .heading_wrap .level p {
  letter-spacing: 0.08em;
  color: #ff3c6c;
}

.example .heading_wrap .level_text {
  text-align: center;
  margin-top: 17px;
}

.boxSkillcheck {
  background-color: #fff;
  border: 2px solid #000;
  box-shadow: 3px 3px #000;
  margin-top: 33px;
}

.example_more {
  width: 200px;
  height: 40px;
  line-height: 40px;
  background-color: #000;
  text-align: center;
  margin: 30px auto 22px;
  cursor: pointer;
}

.example_more span {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.12em;
}

.example_more+.inr2 {
  display: none;
}

.example_content:nth-child(2) {
  margin-top: 38px;
  padding-top: 48px;
  border-top: 2px dashed #000;
}

@media screen and (max-width: 767px) {
  .example {
    padding: 40px 0 20px;
  }

  .example .heading_wrap .level {
    width: 300px;
    height: 41px;
  }

  .example .heading_wrap .level p {
    font-size: 1.6rem;
  }

  .level_text p {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 768px) {
  .example {
    padding: 48px 0 57px;
  }

  .example .heading_wrap .level {
    width: 352px;
    height: 47px;
  }

  .example .heading_wrap .level p {
    font-size: 18px;
  }
}

/* supervision */
.supervision_wrap {
  padding-top: 12px;
  position: relative;
}

.supervision_wrap::before {
  content: '';
  width: calc(100% - 40px);
  max-width: 956px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #00b2a4;
}

.supervision .logo {
  margin: 0 auto;
}

.supervision .logo img {
  width: 100%;
}

.supervision p {
  line-height: 1.87;
  letter-spacing: 0.08em;
}

.supervision .img img {
  width: 100%;
}

.supervision_wrap .message {
  border: 1px solid #000;
  position: relative;
}

.supervision_wrap .message::before {
  content: '';
  display: inline-block;
  background-image: url(../images/message_heading.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 1%;
  transform: translateY(-33%);
}

.supervision_wrap .message::after {
  content: '';
  display: inline-block;
  background-image: url(../images/message_clip.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 0;
  right: 3%;
  transform: translateY(-25%);
}

.supervision_wrap .message .text p {
  line-height: 1.87;
  letter-spacing: 0.08em;
}

.supervision_wrap .message .profile dt {
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.8;
  margin-bottom: .5em;
  letter-spacing: 0.08em;
}

.supervision_wrap .message .profile dd {
  line-height: 1.92;
  letter-spacing: 0.08em;
}

.supervision_wrap .message .img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .supervision_wrap {
    padding-bottom: 50px;
  }

  .supervision {
    margin-top: 30px;
  }

  .supervision .logo {
    width: 70%;
  }

  .supervision .text {
    margin-top: 18px;
  }

  .supervision p {
    font-size: 1.4rem;
  }

  .supervision .img {
    margin: 30px auto 0;
    width: 100%;
  }

  .supervision_wrap .message {
    padding: 45px 4.9% 38px;
    margin-top: 55px;
  }

  .supervision_wrap .message::before {
    width: 62.7%;
    padding-top: 13.1%;
  }

  .supervision_wrap .message::after {
    width: 4.7%;
    padding-top: 7.7%;
  }

  .supervision_wrap .message .text {
    width: 100%;
  }

  .supervision_wrap .message .text p {
    font-size: 1.4rem;
  }

  .supervision_wrap .message .profile {
    margin-top: 25px;
  }

  .supervision_wrap .message .profile dt,
  .supervision_wrap .message .profile dd {
    font-size: 1.4rem;
  }

  .supervision_wrap .message .img {
    width: 100%;
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .supervision_wrap {
    padding-bottom: 76px;
  }

  .supervision {
    margin-top: 45px;
  }

  .supervision .logo {
    width: 26%;
  }

  .supervision .text {
    margin-top: 28px;
  }

  .supervision p {
    font-size: 16px;
  }

  .supervision .img {
    margin: 43px auto 0;
    width: 83.3%;
  }

  .supervision_wrap .message {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 71px 4.9% 38px 7.9%;
    margin-top: 85px;
  }

  .supervision_wrap .message::before {
    width: 41.7%;
    padding-top: 9.1%;
  }

  .supervision_wrap .message::after {
    width: 2.7%;
    padding-top: 5.7%;
  }

  .supervision_wrap .message .text {
    width: 67.3%;
  }

  .supervision_wrap .message .text p {
    font-size: 16px;
  }

  .supervision_wrap .message .profile {
    margin-top: 43px;
  }

  .supervision_wrap .message .profile dt {
    font-size: 16px;
  }

  /* .supervision_wrap .message .profile dt, */
  .supervision_wrap .message .profile dd {
    font-size: 14px;
  }

  .supervision_wrap .message .img {
    width: 28.9%;
  }
}

/* special_gifts */
.special_gifts_wrap {
  padding-top: 12px;
  position: relative;
}

.special_gifts_wrap::before {
  content: '';
  width: calc(100% - 40px);
  max-width: 956px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #00b2a4;
}

.gifts_item {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.gifts_item .heading img {
  margin: 0 auto 12px;
  display: block;
}

.gifts_item .heading p {
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.gifts_item .content {
  border: 2px solid #000;
  box-shadow: 3px 3px #000;
  padding: 22px 0 21px;
  margin-top: 18px;
  flex-grow: 1;
}

.gifts_item .content .text>span {
  letter-spacing: 0.06em;
  border-bottom: 1px solid #000;
  display: inline-block;
  position: relative;
}

.gifts_item .content .text>span::before {
  content: '';
  width: 18px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: rotate(317deg) translateX(-50%);
  z-index: 2;
}

.gifts_item .content .text>span::after {
  content: '';
  width: 14px;
  height: 4px;
  background-color: #fff;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(5%);
  z-index: 1;
}

.gifts_item .content .text p {
  letter-spacing: 0.02em;
  line-height: 1.66;
  margin-top: 16px;
}

.gifts_item .content .text p span {
  letter-spacing: 0.02em;
  line-height: 1.66;
  display: block;
}

.gifts_item .content .img {
  width: 83.3%;
  margin: 16px auto 0;
}

.gifts_item .content .img img {
  width: 100%;
}

.gifts_item_wrap+p {
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .special_gifts_wrap {
    padding-bottom: 50px;
  }

  .gifts_item_wrap {
    margin-top: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .gifts_item {
    width: 100%;
    padding: 0 20px;
  }

  .gifts_item_wrap .slick-prev {
    left: -3px;
    width: 20px;
    height: 20px;
    z-index: 1;
  }

  .gifts_item_wrap .slick-prev::before {
    content: '';
    width: 20px;
    height: 20px;
    border-top: 3px solid #00b2a4;
    border-right: 3px solid #00b2a4;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    display: inline-block;
  }

  .gifts_item_wrap .slick-next {
    right: -3px;
    width: 20px;
    height: 20px;
    z-index: 1;
  }

  .gifts_item_wrap .slick-next::before {
    content: '';
    width: 20px;
    height: 20px;
    border-top: 3px solid #00b2a4;
    border-right: 3px solid #00b2a4;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
  }

  .gifts_item_wrap .slick-dots {
    bottom: -35px;
  }

  .gifts_item_wrap .slick-dots li button:before {
    color: #00b2a4;
  }

  .gifts_item_wrap .slick-dots li.slick-active button:before {
    color: #00b2a4;
  }

  .gifts_item_wrap.slick-dotted.slick-slider {
    margin-bottom: 50px;
  }

  .gifts_item .heading img {
    width: 18%;
  }

  .gifts_item .heading p {
    font-size: 1.8rem;
  }

  .gifts_item .content {
    margin-bottom: 3px;
  }

  .gifts_item .content .text>span {
    font-size: 1.4rem;
  }

  .gifts_item .content .text p {
    font-size: 1.6rem;
  }

  .gifts_item .content .text p span {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .special_gifts_wrap {
    padding-bottom: 112px;
  }

  .gifts_item_wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-top: 37px;
  }

  .gifts_item {
    width: 31.2%;
  }

  .gifts_item .heading img {
    width: 25.6%;
  }

  .gifts_item .heading p {
    font-size: 2.08vw;
  }

  .gifts_item .content .text>span {
    font-size: 1.66vw;
  }

  .gifts_item .content .text p {
    font-size: 1.87vw;
  }

  .gifts_item .content .text p span {
    font-size: 1.66vw;
  }

  .gifts_item .content {}

  .gifts_item .content {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 100%;
    grid-template-rows: auto max-content;
    gap: 0px 2%;
    grid-template-areas:
      "text"
      "img";
  }

  .gifts_item .content .text {
    grid-area: text;
  }

  .gifts_item .content .img {
    grid-area: img;
  }

  .gifts_item:nth-child(2) .text p {
    line-height: 3em;
  }



}

@media screen and (min-width: 960px) {
  .gifts_item .heading p {
    font-size: 20px;
  }

  .gifts_item .content .text>span {
    font-size: 16px;
  }

  .gifts_item .content .text p {
    font-size: 18px;
  }

  .gifts_item .content .text p span {
    font-size: 16px;
  }




}

/* flow_wrap */
.flow_wrap {
  margin-top: 12px;
  position: relative;
  background-image: url(../images/bg.gif);
}

.flow_wrap::before {
  content: '';
  width: calc(100% - 40px);
  max-width: 956px;
  height: 8px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #00b2a4;
}

.flow_item {
  padding: 29px 0 26px;
  border-bottom: 2px dashed #000;
  position: relative;
}

.flow_item:first-child {
  padding-top: 0;
}

.flow_item::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9.5px 0 9.5px;
  border-color: #000000 transparent transparent transparent;
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
}

.flow_item_inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 auto;
}

.flow_item .img img {
  width: 100%;
}

.flow_item .text {
  flex: 1;
}

.flow_item dt {
  line-height: 1.66;
  letter-spacing: 0.08em;
  color: #00b2a4;
}

.flow_item dd {
  line-height: 1.87;
  letter-spacing: 0.08em;
  margin-top: 0.3em;
}

.flow_item dd span {
  color: #ff3c6c;
  display: block;
}

.flow_wrap .start {
  width: 100%;
  background-color: #00b2a4;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flow_wrap .start p {
  letter-spacing: 0.08em;
  color: #fff;
  position: relative;
  padding-right: 5%;
  display: inline-block;
}

.flow_wrap .start p::after {
  content: '';
  display: inline-block;
  background-image: url(../images/pencil.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.flow_wrap .start p span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .flow_wrap {
    padding-bottom: 50px;
  }

  .flow_item_wrap {
    margin-top: 40px;
  }

  .flow_item_inner {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 90%;
  }

  .flow_item .img {
    width: 8%;
    margin-right: 10%;
    margin-top: 5px;
  }

  .flow_item dt {
    font-size: 1.6rem;
  }

  .flow_item dd {
    font-size: 1.4rem;
  }

  .flow_wrap .start {
    height: 128px;
    text-align: left;
    padding: 0 35px;
  }

  .flow_wrap .start p {
    font-size: 1.8rem;
  }

  .flow_wrap .start p::after {
    width: 10%;
    padding-top: 8.2%;
  }

  .flow_wrap .more {
    margin-top: 58px;
  }
}

@media screen and (min-width: 768px) {
  .flow_wrap {
    padding-bottom: 82px;
  }

  .flow_item_wrap {
    margin-top: 68px;
  }

  .flow_item_inner {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 83.3%;
  }

  .flow_item .img {
    width: 4.75%;
    margin-right: 12.7%;
  }

  .flow_item dt {
    font-size: 18px;
  }

  .flow_item dd {
    font-size: 16px;
  }

  .flow_wrap .start {
    height: 148px;
    text-align: center;
    padding: 0 20px;
  }

  .flow_wrap .start p {
    font-size: 2.6vw;
  }

  .flow_wrap .start p::after {
    width: 5%;
    padding-top: 4.2%;
  }

  .flow_wrap .more {
    margin-top: 78px;
  }
}

@media screen and (min-width: 960px) {
  .flow_wrap .start p {
    font-size: 25px;
  }
}



/* course_wrap */
.course_wrap {
  margin-top: 12px;
  position: relative;
  background-image: url(../images/bg.gif);
}

.course_wrap::before {
  content: '';
  width: calc(100% - 40px);
  max-width: 956px;
  height: 8px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #00b2a4;
}

.course_wrap .course_inner:first-child {
  border-bottom: 2px dashed #000;
}

.course_item_wrap dl dt {
  font-weight: bold;
}



@media screen and (max-width: 767px) {

  .course_wrap {
    padding-bottom: 15%;
  }

  .course_wrap .course_inner:first-child {
    padding-bottom: 20%;
    margin-bottom: 20%;
  }

  .course_wrap .more {
    margin-top: 15%;
  }

  .course_item_wrap {
    text-align: center;
  }

  .course_item_wrap dl {
    display: inline-block;
    text-align: left;
    font-size: 1.6rem;
    margin-top: 10%;
  }

  .course_item_wrap dl * {
    line-height: 1.6;
  }

  .course_item_wrap dl dd {
    margin-bottom: 1em;
    text-indent: 1em;
  }






}

@media screen and (min-width: 768px) {

  .course_wrap {
    padding-bottom: 100px;
  }

  .course_wrap .course_inner:first-child {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }

  .course_wrap .more {
    margin-top: 50px;
  }

  .course_item_wrap {
    text-align: center;
  }

  .course_item_wrap dl {
    display: inline-block;
    text-align: left;
    font-size: 18px;
    margin-top: 30px;
  }

  .course_item_wrap dl * {
    line-height: 1.6;
  }

  .course_item_wrap dl dd {
    margin-bottom: 1em;
    text-indent: 1em;
  }


}





/* result_wrap */
.result_wrap {
  /* padding-top: 12px;
margin-top: -13px; */
  position: relative;
  background-image: url(../images/bg.gif);
  overflow: hidden;
}

.result_wrap:before {
  content: '';
  width: 140%;
  height: 29vw;
  background: #F6DF48;
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: 50% 50%;
  transform: rotate(9deg) translateX(-50%);
  -webkit-transform: rotate(9deg) translateX(-50%);
  -ms-transform: rotate(9deg) translateX(-50%);
}

.result_wrap:after {
  content: '';
  width: 140%;
  height: 29vw;
  background: #F6DF48;
  position: absolute;
  bottom: -3.4%;
  left: 50%;
  transform-origin: 50% 50%;
  transform: rotate(9deg) translateX(-50%);
  -webkit-transform: rotate(9deg) translateX(-50%);
  -ms-transform: rotate(9deg) translateX(-50%);
}

.result_wrap .inner_wrap {}

.result_wrap .en_title {
  position: relative;
  padding-top: 0 !important;
}

.result_wrap .en_title img {
  margin: 0 auto;
  box-shadow: none;
  width: 100%;
}

.result_wrap .sec_title p {
  /* text-align: center; */
}

.sec_title h2.result_head,
.sec_title h2.result_head span {
  position: relative;
}

.result_head:before,
.result_head:after {
  position: absolute;
  content: '';
  width: 90%;
  height: 100%;
  background: #FF3B6A;
  top: 0;
  left: 50%;
}

.result_head span {
  color: #fff;
  z-index: 2;
  display: inline-block;
  line-height: 46px;
  height: 46px;
}

.result_head:before {
  transform: skewX(30deg) translateX(-50%);
  -webkit-transform: skewX(30deg) translateX(-50%);
  -ms-transform: skewX(30deg) translateX(-50%);
}

.result_head:after {
  transform: skewX(-30deg) translateX(-50%);
  -webkit-transform: skewX(-30deg) translateX(-50%);
  -ms-transform: skewX(-30deg) translateX(-50%);
}

.result_caption strong {
  display: block;
  /* text-align: center; */
}

.result_caption .result_image {
  border: 1px solid #000;
  background: #fff;
}


.result_inner {
  position: relative;
}



.result_contents {
  background: #fff;
  padding-bottom: 12.8%;
}

.result_contents .result_inner:before {
  content: '';
  width: calc(100% - 40px);
  max-width: 956px;
  height: 8px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #00b2a4;
}

.result_contents .heading {
  text-align: center;
  position: relative;
}

.result_contents .heading img {
  margin: 0 auto 12px;
  display: block;
}

.result_contents .heading h3 {
  border-bottom: 2px dotted #000;
  display: inline-block;
  letter-spacing: .02em;
  padding: 0 0.25em em 0 0.4em;
}

.result_contents .heading h3+img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.result_contents .result_image {
  width: 92%;
  margin: 0 auto;
  position: relative;
}

.result_contents table {
  width: 100%;
  line-height: 1.6;
}

.result_contents table thead tr {
  background: #E6E6E6;
}

.result_contents table tbody tr:nth-child(even) {
  background: #F2F2F2;
}

.result_inner {
  position: relative;
  z-index: 1;
}

.result_inner .result_image img.confetti_02 {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1;
}

.result_contents table {
  background: #fff;
}



.interview_wrap {
  border: 2px solid #000;
  box-shadow: 3px 3px #000;
  /* padding: 22px 0 21px; */
  padding: 18px 6.6%;
  margin-top: 18px;
  width: 92%;
  margin: 0 auto;
}

.interview_wrap .acc_wrap {
  padding: 4em 0;
  /* height: 0;
overflow: hidden; */
}

.acc_wrap span {
  color: #01B1A4;
}

.acc_wrap span:before {
  content: "－";
  color: #01B1A4;
  display: inline-block;
  margin-right: 0.5em;
}

.acc_wrap>p {
  margin-bottom: 1.5em;
}

.acc_wrap strong {
  display: block;
  margin: 3em auto.5em;
}

.acc_wrap img {
  /* width: 60%; */
  margin: 0 auto 2em;
  display: block;
}

.interview_wrap .example_more {}

.interview_wrap .example_more.open {
  background: #4d4d4d;
}

.interview_wrap .example_more.open span {
  font-size: 0;
}

.interview_wrap .example_more.open span:before {
  content: "閉じる";
  font-size: 16px;
}





@media screen and (max-width: 767px) {

  .result_wrap {}

  .result_contents .heading img.confetti_01 {
    max-width: 100%;
    width: 100%;
    transform: translate(-50%, -47%);
    -webkit-transform: translate(-50%, -47%);
    -ms-transform: translate(-50%, -47%);
  }

  .result_inner .result_image img.confetti_02 {
    width: 25%;
    transform: translate(-5%, -31%);
    -webkit-transform: translate(-5%, -31%);
    -ms-transform: translate(-5%, -31%);
  }

  .result_contents .heading img.confetti_03 {
    max-width: 82%;
    width: 82%;
    transform: translate(-50%, -29%);
    -webkit-transform: translate(-50%, -29%);
    -ms-transform: translate(-50%, -29%);
  }

  .result_contents .heading img.confetti_04 {
    max-width: 82%;
    width: 82%;
    transform: translate(-50%, -29%);
    -webkit-transform: translate(-50%, -29%);
    -ms-transform: translate(-50%, -29%);
  }

  .result_wrap .sec_title {
    margin-top: 10%;
  }

  .result_head {
    margin-bottom: 8%;
  }

  .result_head span {
    font-size: 2.7rem;
    letter-spacing: .12em;
  }

  .result_caption p {
    margin-bottom: 12%;
  }

  .result_caption .result_image {
    margin-bottom: 3%;
  }

  .result_caption .result_image:last-child {
    margin-bottom: 14%;
  }

  .result_caption strong {
    font-size: 1.8rem;
    line-height: 1.68;
    margin: 15% auto 4%;
  }

  .result_caption .result_image {
    padding: 5% 4%;
  }


  .result_wrap p {
    font-size: 1.5rem;
    line-height: 1.76;
  }

  .result_contents .heading {
    padding-top: 13%;
    margin-bottom: 7.6%;
  }

  .result_contents .heading img {
    width: 18%;
    max-width: 38px;
  }

  .result_contents .heading h3 {
    font-size: 2.2rem;
  }

  .result_contents .result_inner {
    margin-bottom: 12.8%;
  }

  .result_inner .result_image {
    margin-bottom: 5.8%;
  }


  .result_contents table {
    font-size: 1.2rem;
  }

  .result_contents table tr * {
    padding: 0.04em 0;
  }

  .result_contents table tr>*:first-child {
    padding-left: 1em;
  }

  .result_contents table tr>*:last-child {
    padding-right: 1em;
  }

  .result_contents table tr * {
    vertical-align: initial;
    font-size: 1.1rem;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
  }

  .result_table table tr *:last-child,
  .prefecture_table table tr *:not(:nth-child(3)) {
    text-align: center;
  }

  .result_table table tr>*:not(:nth-child(-n+2), :last-child),
  .prefecture_table table tr>*:not(:first-child, :last-child) {
    padding: .2em 0.5em;
  }

  .prefecture_table table tr>*:nth-child(3) {
    text-align: left;
    padding-left: 1em;
  }
  .prefecture_table table tr>*:nth-child(3) {
    text-align: left;
    padding-left: 1em;
  }

  .result_table_02 table tr * {
    width: 60%;
  }
  .result_table_02 table tr *:not(:nth-child(2)) {
    text-align: right;
    padding-right: 2em;
    width: 40%;
  }


  .interview_wrap {
    margin: 20% auto 9.8%;
  }

  .interview_wrap .heading {
    padding-top: 5%;
  }

  .interview_inner dl {
    font-size: 1.5rem;
    margin: 1em auto 1.2em;
  }

  .acc_wrap>* {
    font-size: 1.5rem;
  }

  .result_wrap:after {
    bottom: -2.4%;
  }


}

@media screen and (min-width: 768px) {
  .result_wrap {}

  .sec_title .result_head {
    margin-bottom: 80px;
  }

  .result_contents .heading img.confetti_01 {
    max-width: 50%;
    width: 100%;
    transform: translate(-50%, -15%);
    -webkit-transform: translate(-50%, -15%);
    -ms-transform: translate(-50%, -15%);
    z-index: 1;
  }

  .result_inner .result_image img.confetti_02 {
    width: 15%;
    transform: translate(44%, -31%);
    -webkit-transform: translate(44%, -31%);
    -ms-transform: translate(44%, -31%);
  }

  .result_contents .heading img.confetti_03 {
    max-width: 45%;
    width: 82%;
    transform: translate(-50%, -9%);
    -webkit-transform: translate(-50%, -9%);
    -ms-transform: translate(-50%, -9%);
  }

  .result_contents .heading img.confetti_04 {
    max-width: 46%;
    width: 82%;
    transform: translate(-50%, -9%);
    -webkit-transform: translate(-50%, -9%);
    -ms-transform: translate(-50%, -9%);
  }

  .result_head span {
    font-size: 30px;
    letter-spacing: .12em;
  }

  .result_caption {
    text-align: center;
  }

  .result_caption p,
  .result_caption strong {
    display: inline-block;
    text-align: left;
  }

  .result_caption p {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .result_caption .result_image {
    margin-bottom: 20px;
  }

  .result_caption .result_image:last-child {
    margin-bottom: 50px;
  }

  .result_caption strong {
    font-size: 18px;
    line-height: 1.68;
    margin: 50px auto 20px;
  }

  .result_caption .result_image {
    padding: 20px 10px;
  }


  .result_contents {
    padding-bottom: 16vw;
  }

  .result_wrap:after {
    /* bottom: -2.4%; */
    bottom: -38vw;
    transform: skewY(9deg) translateX(-50%);
    -webkit-transform: skewY(9deg) translateX(-50%);
    -ms-transform: skewY(9deg) translateX(-50%);
    transform-origin: 100% 0%;
  }

  .result_wrap .sec_title {
    margin-top: 60px;
  }


  .result_wrap p {
    font-size: 16px;
    line-height: 1.76;
  }

  .result_contents .heading {
    padding-top: 110px;
    margin-bottom: 60px;
  }

  .result_contents .heading img {
    width: 7%;
    max-width: 60px;
  }

  .result_contents .heading h3 {
    font-size: 25px;
  }

  .result_contents .result_inner {
    margin-bottom: 160px;
  }

  .result_inner .result_image {
    margin-bottom: 30px;
  }




  .sec_title h2 {
    width: 80%;
    /* max-width: 480px; */
    max-width: 550px;
    margin: auto;
  }

  .result_wrap .en_title img {
    margin: 5% auto 0;
    max-width: 1028px;
    display: block;
    width: 90%;
  }

  .result_inner {
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
  }

  .result_caption .result_image {
    padding: 20px;
    margin: 0 auto 30px;
    max-width: 596px;
  }



  .result_contents .result_image {
    max-width: 716px;
  }


  .result_contents table {
    font-size: 1.2rem;
  }

  .result_contents table tr * {
    padding: 0.04em 0;
  }

  .result_contents table tr>*:first-child {
    padding-left: 1em;
  }

  .result_contents table tr>*:last-child {
    padding-right: 1em;
  }

  .result_contents table tr * {
    vertical-align: initial;
    font-size: 1.1rem;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
  }

  .result_table table tr *:last-child,
  .prefecture_table table tr *:not(:nth-child(3)) {
    text-align: center;
  }

  .result_table table tr>*:not(:nth-child(-n+2), :last-child),
  .prefecture_table table tr>*:not(:first-child, :last-child) {
    padding: .2em 0.5em;
  }

  .prefecture_table table tr>*:nth-child(3) {
    text-align: left;
    padding-left: 1em;
  }
  .result_table_02 table tr * {
    width: 55%;
  }
  .result_table_02 table tr *:not(:nth-child(2)) {
    text-align: right;
    padding-right: 2em;
    width: 45%;
  }

  .result_table,
  .prefecture_table {
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
  }

  .interview_wrap {
    margin: 150px auto 70px;
  }

  .interview_wrap .heading {
    padding-top: 5%;
  }

  .interview_inner dl {
    font-size: 17px;
    margin: 1em auto 1.2em;
  }

  .acc_wrap>* {
    font-size: 15px;
  }

}



/* contact_wrap */
.contact_wrap {
  margin-top: 12px;
  position: relative;
}

.contact_wrap:before {
  content: '';
  width: calc(100% - 40px);
  max-width: 956px;
  height: 8px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #00b2a4;
}

.contact_wrap .sec_title p {
  text-align: center;
}

.contact_wrap .contact_button {
  text-align: center;
}

.contact_wrap .contact_button a {
  text-align: center;
  background-color: #ff3c6c;
  color: #fff;
  letter-spacing: 0.02em;
  display: inline-block;
  position: relative;
  transition: all 0.3s;
  padding: .5em 2em;
  border-radius: 10px;
  margin-top: 2em;
}

.contact_wrap img {
  display: block;
  margin: 2em auto 0;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, .2);
}

@media screen and (max-width: 767px) {
  .contact_wrap {
    padding-bottom: 50px;
  }

  .contact_button a {
    font-size: 16px;
  }

  .contact_wrap img {
    width: 40%;
  }

}

@media screen and (min-width: 768px) {
  .contact_wrap {
    padding-bottom: 82px;
  }

  .contact_button a {
    font-size: 20px;
  }

  .contact_button a:hover {
    opacity: .8;
  }

  .contact_wrap img {
    width: 20%;
  }


}


/* vta_wrap */
.vta_wrap {
  margin-top: 12px;
  position: relative;
}

.vta_wrap::before {
  content: '';
  width: calc(100% - 40px);
  max-width: 956px;
  height: 8px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #00b2a4;
}

.vta_wrap .content {
  margin-top: 56px;
}

.vta_logo img {
  width: 100%;
}

.vta_wrap .content .text p {
  line-height: 1.87;
  letter-spacing: 0.08em;
}

.vta_wrap .content .img img {
  width: 100%;
}

.vta_features {
  margin-top: 49px;
}

.vta_features .features_item_wrap {
  margin-top: 40px;
}

.vta_features .features_item {
  border: 2px solid #000;
  box-shadow: 3px 3px #000;
}

.vta_features .features_item .item_head {
  text-align: center;
  min-height: 2.8em;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.vta_features .features_item .item_head strong {
  letter-spacing: 0.06em;
  font-weight: normal;
  display: block;
}

.vta_features .features_item:nth-child(3) .item_head strong {
  line-height: 1.44;
  letter-spacing: 0.06em;
}

.vta_features .features_item .img {
  margin-top: 8px;
  width: 100%;
}

.vta_features .features_item .img img {
  width: 100%;
}

.vta_features .features_item .text {
  margin-top: 14px;
}

.vta_features .features_item .text p {
  line-height: 1.85;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .vta_wrap {
    padding-bottom: 50px;
  }

  .vta_logo {
    width: 100%;
  }

  .vta_wrap .content .text {
    margin-top: 35px;
  }

  .vta_wrap .content .text p {
    font-size: 1.4rem;
  }

  .vta_wrap .content .img {
    width: 100%;
    margin: 30px auto 0;
  }

  .vta_features .features_item_wrap {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .vta_features .features_item {
    width: 100%;
    margin: 0 10px 3px 10px;
    padding: 18px 20px 23px;
  }

  .vta_features .features_item_wrap .slick-prev {
    left: -10px;
    width: 20px;
    height: 20px;
    z-index: 1;
  }

  .vta_features .features_item_wrap .slick-prev::before {
    content: '';
    width: 20px;
    height: 20px;
    border-top: 3px solid #00b2a4;
    border-right: 3px solid #00b2a4;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    display: inline-block;
  }

  .vta_features .features_item_wrap .slick-next {
    right: -10px;
    width: 20px;
    height: 20px;
    z-index: 1;
  }

  .vta_features .features_item_wrap .slick-next::before {
    content: '';
    width: 20px;
    height: 20px;
    border-top: 3px solid #00b2a4;
    border-right: 3px solid #00b2a4;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
  }

  .vta_features .features_item_wrap .slick-dots {
    bottom: -35px;
  }

  .vta_features .features_item_wrap .slick-dots li button:before {
    color: #00b2a4;
  }

  .vta_features .features_item_wrap .slick-dots li.slick-active button:before {
    color: #00b2a4;
  }

  .vta_features .features_item_wrap.slick-dotted.slick-slider {
    margin-bottom: 50px;
  }

  .vta_features .features_item .item_head {
    font-size: 1.6rem;
  }

  .vta_features .features_item .item_head strong {
    font-size: 1.8rem;
  }

  .vta_features .features_item .item_head strong.small {
    font-size: 1.6rem;
  }

  .vta_features .features_item .text p {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 768px) {
  .vta_wrap {
    padding-bottom: 107px;
  }

  .vta_logo {
    width: 50%;
    margin: 0 auto;
  }

  .vta_wrap .content .text {
    margin-top: 57px;
  }

  .vta_wrap .content .text p {
    font-size: 16px;
  }

  .vta_wrap .content .img {
    width: 83.3%;
    margin: 60px auto 0;
  }

  .vta_features .features_item_wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .vta_features .features_item {
    width: 31.2%;
    padding: 18px 2.3% 23px;
  }

  .vta_features .features_item .item_head {
    font-size: 1.87vw;
  }

  .vta_features .features_item .item_head strong {
    font-size: 2.08vw;
  }

  .vta_features .features_item:nth-child(3) .item_head strong {
    font-size: 1.87vw;
  }

  .vta_features .features_item .text p {
    font-size: 1.45vw;
  }
}

@media screen and (min-width: 960px) {
  .vta_features .features_item .item_head {
    font-size: 18px;
  }

  .vta_features .features_item .item_head strong {
    font-size: 20px;
  }

  .vta_features .features_item:nth-child(3) .item_head strong {
    font-size: 18px;
  }

  .vta_features .features_item .text p {
    font-size: 14px;
  }
}

/* footer */
footer {
  padding-bottom: 38px;
}

footer .inner_wrap {
  padding-top: 30px;
  position: relative;
}

footer .inner_wrap::before {
  content: '';
  width: calc(100% - 40px);
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.footer_logo {
  margin: 0 auto;
}

.footer_logo img {
  width: 100%;
}

.copyright {
  text-align: center;
}

.copyright small {
  font-size: 10px;
  letter-spacing: 0.08em;
}


.anc_btn {
  position: fixed;
  z-index: 9;
}

.anc_btn a {
  background-color: #ff3c6c;
  border-radius: 50vh;
  color: #fff;
  letter-spacing: 0.1em;
  display: flex;
  position: relative;
  text-align: center;
  justify-content: center;
  align-content: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 2.0);
  line-height: 1.4;
}

.anc_btn a * {
  font-style: normal;
  width: 100%;
}

.anc_btn a i {
  transition: all .4s;
  -webkit-transition: all .4s;
  -ms-transition: all .4s;
}

.anc_btn.rev a i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}

.anc_btn {
  animation: 1.5s ease-in .5s infinite alternate forwards running move;
  -webkit-animation: 1.5s ease-in .5s infinite alternate forwards running move;
}

@keyframes move {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
  }

  100% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
  }
}

@media screen and (max-width: 767px) {

  .anc_btn {
    right: 3%;
    bottom: 70px;
  }

  .anc_btn a {
    width: 6em;
    height: 6em;
    font-size: 1.2rem;
  }

  .anc_btn a span {
    padding-top: 1em;
  }

  .anc_btn a i {
    padding-top: 0.3em;
  }


  .footer_logo {
    width: 50%;
  }

  .copyright {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {

  .anc_btn {
    right: 3%;
    bottom: 4%;
  }

  .anc_btn a {
    width: 106px;
    height: 106px;
    font-size: 14px;
  }

  .anc_btn a:hover {
    background-color: #fe658b;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
  }

  .anc_btn a span {
    padding-top: 1em;
  }

  .anc_btn a i {
    padding-top: 0.3em;
    transition: all .4s;
    -webkit-transition: all .4s;
    -ms-transition: all .4s;
  }

  .anc_btn.rev a i {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
  }

  .footer_logo {
    width: 31.9%;
  }

  .copyright {
    margin-top: 15px;
  }
}