@charset "UTF-8";
/*----------------*
  Typography
-----------------*/
/* font-family */
.font_sans {
  font-family: "Noto Sans JP", sans-serif;
}

.font_min {
  font-family: "Noto Serif JP", serif;
}

/* font-weight */
.fw_400 {
  font-weight: 400;
}

.fw_500 {
  font-weight: 500;
}

.fw_600 {
  font-weight: 600;
}

.fw_700 {
  font-weight: 700;
}

/* font-size */
.fz_20 {
  font-size: 20px;
  font-size: 5.1282051282vw;
}
@media screen and (min-width: 768px) {
  .fz_20 {
    font-size: 1.5rem;
  }
}

.fz_18 {
  font-size: 18px;
  font-size: 4.6153846154vw;
}
@media screen and (min-width: 768px) {
  .fz_18 {
    font-size: 1.375rem;
  }
}

.fz_16 {
  font-size: 16px;
  font-size: 4.1025641026vw;
}
@media screen and (min-width: 768px) {
  .fz_16 {
    font-size: 1.125rem;
  }
}

.fz_12 {
  font-size: 12px;
  font-size: 3.0769230769vw;
}
@media screen and (min-width: 768px) {
  .fz_12 {
    font-size: 0.875rem;
  }
}

/*----------------*
    base
------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

figure {
  margin: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #222222;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h2,
h3,
h4 {
  font-weight: 700;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
}

dd {
  margin-left: 0;
}

picture, figure {
  display: block;
}
picture img, figure img {
  width: 100%;
}

body {
  width: 100%;
  margin: 0;
  line-height: 1.6;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-break: strict;
  font-size: 14px;
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}

/*----------------*
    common
------------------*/
.inner {
  width: 100%;
  padding-left: 4.1vw;
  padding-right: 4.1vw;
}
@media screen and (min-width: 1240px) {
  .inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 500px) and (max-width: 1239px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.inner-s {
  width: 100%;
  padding-left: 4.15vw;
  padding-right: 4.15vw;
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .inner-s {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (min-width: 768px) {
  .inner-s {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sec-cta {
  background: url(../img/bg_cta.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 8.21vw;
  padding-bottom: 2vw;
}
.sec-cta .cta__img {
  width: 100%;
  margin-bottom: 5vw;
}
@media screen and (min-width: 768px) {
  .sec-cta .cta__img {
    width: 57%;
    margin-bottom: 12px;
  }
  .sec-cta .cta__img img {
    -webkit-filter: drop-shadow(0px 0px 8px rgba(207, 224, 183, 0.8));
            filter: drop-shadow(0px 0px 8px rgba(207, 224, 183, 0.8));
  }
}
@media screen and (min-width: 768px) {
  .sec-cta {
    background: url(../img/bg_cta_pc.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 56px;
    padding-bottom: 42px;
  }
  .sec-cta .inner {
    max-width: 960px;
    margin: 0 auto;
  }
}

/* MV, sec-cta 共通*/
.cta__txtCont {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .cta__txtCont {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 22px;
  }
}
.cta__lead {
  line-height: 1.8;
  margin-bottom: 3vw;
  font-size: 1.1em;
}

@media screen and (min-width: 768px) {
  .cta__lead {
    margin-bottom: 12px;
  }
}
.cta__ttl {
  width: 100%;
  margin-bottom: 3vw;
  -webkit-filter: drop-shadow(0px 0px 8px rgba(207, 224, 183, 0.8));
          filter: drop-shadow(0px 0px 8px rgba(207, 224, 183, 0.8));
}
@media screen and (min-width: 768px) {
  .cta__ttl {
    width: 41.8%;
    margin-bottom: 12px;
  }
}
.cta__btnCont {
  text-align: center;
}
.cta__txt {
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 0.4vw;
}
@media screen and (min-width: 768px) {
  .cta__txt {
    margin-bottom: 0;
    font-size: 22px;
  }
}
.cta__txt p {
  display: inline-block;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
  position: relative;
}
.cta__txt p:before, .cta__txt p:after {
  content: "";
  display: inline-block;
  width: 0.26vw;
  height: 2.5vw;
  background-color: #868686;
  position: absolute;
  bottom: 2px;
}
@media screen and (min-width: 768px) {
  .cta__txt p:before, .cta__txt p:after {
    width: 1px;
    height: 10px;
    bottom: 5px;
  }
}
.cta__txt p:before {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  left: -2vw;
}
@media screen and (min-width: 768px) {
  .cta__txt p:before {
    left: -7px;
  }
}
.cta__txt p:after {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  right: -2vw;
}
@media screen and (min-width: 768px) {
  .cta__txt p:after {
    right: -7px;
  }
}
.cta__btn {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cta__btn {
    width: 698px;
    margin: -2px auto 0;
  }
}

/*------ text style ------*/
.center {
  text-align: center;
}

.c_orange {
  color: #FD8039;
}

.c_grey {
  color: #606060;
}

.c_green {
  color: #80CBAA;
}

.sec__ttl {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-size: 7.6923076923vw;
}
@media screen and (min-width: 768px) {
  .sec__ttl {
    font-size: 3rem;
  }
}

/*------ responsive layout ------*/
@media screen and (min-width: 768px) {
  .pc-n {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-n {
    display: none;
  }
}
/*----------------*
    main visual
------------------*/
.mv__obi {
  color: #fff;
  background-color: #FD8039;
  padding-top: 3.08vw;
  padding-bottom: 3.08vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .mv__obi {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .mv__obi p {
    font-size: 20px;
  }
}
.mv__main {
  background: url(../img/mv_img.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  padding-top: 10vw;
  padding-bottom: 21vw;
}
@media screen and (min-width: 768px) {
  .mv__main {
    background: url(../img/mv_img_pc.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 74px;
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 820px) {
  .mv .inner-pc {
    max-width: 900px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 819px) {
  .mv .inner-pc {
    padding-left: 40px;
  }
}
.mv__copy02 {
  width: 52%;
  padding-left: 6.67vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 768px) {
  .mv__copy02 {
    width: 280px;
    margin-bottom: 0;
    padding-left: 0;
  }
}
.mv__logo {
  width: 39.5%;
  padding-left: 6.67vw;
}
@media screen and (min-width: 768px) {
  .mv__logo {
    width: 144px;
    padding-left: 0;
    margin-bottom: 23px;
  }
}
.mv__spCta {
  background: url(../img/bg_cta.png) no-repeat;
  background-size: cover;
  padding-top: 3vw;
  padding-bottom: 2.5vw;
  position: relative;
}
.mv__spCta--ttl {
  width: 96%;
  position: absolute;
  top: -50vw;
  left: 2vw;
}
.mv__pcCta {
  width: 650px;
  margin-bottom: 48px;
}
.mv__pcCta--ttl {
  width: 650px;
  margin-left: -8px;
  margin-bottom: 2px;
}
.mv__pcCta .cta__lead {
  margin-bottom: 13px;
}
.mv .cta__img {
  width: 100%;
  margin-bottom: 7vw;
}
@media screen and (min-width: 768px) {
  .mv .cta__img img {
    -webkit-filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.15));
            filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.15));
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .mv .cta__btnCont.sp-n .cta__txt {
    font-size: 22px;
    margin-bottom: 0;
  }
}

.intro {
  background-color: #fff;
}
.intro__ttl {
  background-color: #D3EDE0;
  text-align: center;
  padding: 2.8vw;
}
@media screen and (min-width: 768px) {
  .intro__ttl {
    padding: 24px;
  }
}
.intro__problem {
  background: url(../img/bg_intro.png) no-repeat;
  background-size: cover;
  padding-top: 6.15vw;
  padding-bottom: 6.15vw;
}
@media screen and (min-width: 768px) {
  .intro__problem {
    background: url(../img/bg_intro_pc.png) no-repeat;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.intro__list {
  background-color: #fff;
  border: 1px solid #FFB189;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.56vw;
  padding: 3vw;
}
@media screen and (min-width: 768px) {
  .intro__list {
    width: 683px;
    margin: 0 auto;
    row-gap: 10px;
    padding: 16px 80px;
    font-size: 16px;
  }
}
.intro__list li {
  line-height: 1.5;
  padding-left: 5.9vw;
  padding-bottom: 1.8vw;
  position: relative;
  border-bottom: 1px solid #FD8039;
}
@media screen and (min-width: 768px) {
  .intro__list li {
    padding-left: 24px;
    padding-bottom: 7px;
  }
}
.intro__list li:before {
  content: "";
  display: inline-block;
  width: 5vw;
  height: 5vw;
  background: url(../img/icon_check.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.8vw;
  left: 0;
}
@media screen and (min-width: 768px) {
  .intro__list li:before {
    width: 17px;
    height: 17px;
    top: 5px;
  }
}
@media screen and (min-width: 768px) {
  .intro .pc-bg {
    background: url(../img/bg_intro_pc.jpg) repeat;
    background-size: contain;
    padding-top: 26px;
  }
}
.intro__desc {
  width: 100%;
  background-color: #fff;
  border-image-source: url(../img/border_intro.png);
  border-image-slice: 4;
  border-image-width: 4px;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: 6vw 4.1vw 3.5vw;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .intro__desc {
    max-width: 683px;
    margin: 0 auto;
    border-image-slice: 6;
    border-image-width: 6px;
    padding: 55px 80px 40px;
  }
}
.intro__desc:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 20.51vw;
  background: url(../img/bg_arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -20.51vw;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .intro__desc:after {
    background: url(../img/bg_arrow_pc.png) no-repeat;
    background-size: contain;
    width: 560px;
    height: 80px;
    bottom: -79px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.intro__desc--ttl {
  width: 89%;
  margin: 0 auto 6.5vw;
}
@media screen and (min-width: 768px) {
  .intro__desc--ttl {
    margin-bottom: 28px;
  }
}
.intro__desc--img {
  margin-bottom: 4.5vw;
}
@media screen and (min-width: 768px) {
  .intro__desc--img {
    margin-bottom: 16px;
  }
}
.intro__desc--txt {
  line-height: 1.8;
  position: relative;
}
@media screen and (min-width: 768px) {
  .intro__desc--txt {
    font-size: 18px;
  }
}
.intro__desc--txt p:not(:last-of-type) {
  margin-bottom: 1.25vw;
}
@media screen and (min-width: 768px) {
  .intro__desc--txt p:not(:last-of-type) {
    margin-bottom: 5px;
  }
}
.intro__desc--txt p:nth-of-type(4) {
  margin-top: 3.5vw;
  margin-bottom: 3.5vw;
}
@media screen and (min-width: 768px) {
  .intro__desc--txt p:nth-of-type(4) {
    margin-top: 13px;
    margin-bottom: 14px;
    text-align: center;
  }
}
.intro__desc--txt p:nth-of-type(5) {
  margin-bottom: 2vw;
}
@media screen and (min-width: 768px) {
  .intro__desc--txt p:nth-of-type(5) {
    max-width: 404px;
    margin: 0 auto 3px;
  }
}
.intro__desc--txt p:nth-of-type(6) {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .intro__desc--txt p:nth-of-type(6) {
    text-align: center;
  }
}
.intro__desc--txt .obi {
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(94.28deg, #FADCC0 0%, #DFEBD2 54.54%, #E8EFDE 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  padding: 1.03vw;
  margin-bottom: 1.8vw;
}
@media screen and (min-width: 768px) {
  .intro__desc--txt .obi {
    padding: 4px;
    margin-bottom: 8px;
  }
}
.intro__desc--txt .txt-result {
  width: 82%;
  position: absolute;
  bottom: -19vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .intro__desc--txt .txt-result {
    max-width: 364px;
    bottom: -109px;
  }
}
.intro__comments {
  padding-top: 20.51vw;
  padding-bottom: 4.1vw;
}
@media screen and (min-width: 768px) {
  .intro__comments {
    padding-top: 104px;
    padding-bottom: 56px;
  }
}
.intro__comments--list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.05vw;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .intro__comments--list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .intro__comments--list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: initial;
  }
}
.intro__comments--item {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(134, 161, 158, 0.3019607843);
          box-shadow: 0px 0px 8px 0px rgba(134, 161, 158, 0.3019607843);
  padding: 4.1vw 4.1vw 2.8vw;
}
@media screen and (min-width: 768px) {
  .intro__comments--item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    row-gap: 16px;
    padding: 16px 16px 24px;
  }
  .intro__comments--item:first-of-type .item-txt p:last-of-type {
    margin-bottom: -11px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .intro__comments--item {
    width: 32%;
  }
}
@media screen and (min-width: 1024px) {
  .intro__comments--item {
    width: 19.5%;
  }
}
.intro__comments--item .item-img {
  width: 22%;
}
@media screen and (min-width: 768px) {
  .intro__comments--item .item-img {
    width: 97px;
    margin: 0 auto;
  }
}
.intro__comments--item .item-txt {
  width: 73.5%;
}
.intro__comments--item .item-txt p:first-of-type {
  line-height: 1.8;
  margin-bottom: 1vw;
}
.intro__comments--item .item-txt span {
  display: block;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .intro__comments--item .item-txt {
    width: 100%;
    height: 100%;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 7px;
  }
  .intro__comments--item .item-txt p:first-of-type {
    line-height: 1.75;
    margin-bottom: 0;
  }
  .intro__comments--item .item-txt p.fz_12 {
    font-size: 12px;
  }
  .intro__comments--item .item-txt p:last-of-type span {
    line-height: 1;
    display: block;
    margin-bottom: 4px;
  }
}
.intro__bnr {
  background: url(../img/bnr01_bg.jpg) no-repeat;
  background-size: cover;
  padding: 12.5vw 0 12vw 4.1vw;
}
@media screen and (min-width: 768px) {
  .intro__bnr {
    background: url(../img/bnr01_bg_pc.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 72px 0;
  }
  .intro__bnr .inner-pc {
    max-width: 780px;
    margin: 0 auto;
  }
}
.intro__bnr picture {
  width: 71%;
}
@media screen and (min-width: 768px) {
  .intro__bnr picture {
    width: 53%;
  }
}

.step {
  padding-top: 6.15vw;
  padding-bottom: 8.5vw;
}
@media screen and (min-width: 768px) {
  .step {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.step__ttl {
  width: 89%;
  margin: 0 auto 6.8vw;
}
@media screen and (min-width: 768px) {
  .step__ttl {
    width: 47.5%;
    margin-bottom: 64px;
  }
}
.step__wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .step__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 56px;
  }
}
.step__cont {
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step__cont {
    width: 420px;
    margin: 0 auto;
  }
  .step__cont .fz_16 {
    font-size: 16px;
  }
  .step__cont .fz_12 {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .step__cont {
    width: 30%;
  }
}
.step__cont.step__01 {
  border: 2px solid #FFB189;
}
.step__cont.step__01 .step__cont--program h4:after {
  background: #FD8039;
}
.step__cont.step__02 {
  border: 2px solid #80CBAA;
}
.step__cont.step__02 .step__cont--program h4:after {
  background: #80CBAA;
}
.step__cont.step__03 {
  border: 2px solid #ccc;
}
.step__cont.step__03 .step__cont--program h4:after {
  background: #868686;
}
.step__cont:not(:last-of-type) {
  margin-bottom: 8.5vw;
}
@media screen and (min-width: 768px) {
  .step__cont:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.step__cont:after {
  content: "";
  display: inline-block;
  width: 64%;
  height: 8.5vw;
  position: absolute;
  bottom: calc(-8.5vw - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step__cont:after {
    width: 64%;
    height: 56px;
    bottom: -58px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 1024px) {
  .step__cont:after {
    width: 17%;
    height: 320px;
    bottom: initial;
    left: initial;
    top: 50%;
    right: -17.5%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.step__cont.step__01:after {
  background: #FFB189;
}
.step__cont.step__02:after {
  background: #80CBAA;
}
.step__cont.step__03:after {
  background: #B4B4B4;
}
@media screen and (min-width: 1024px) {
  .step__cont.step__03:after {
    display: none;
  }
}
.step__cont--label {
  width: 25%;
  position: absolute;
  top: -1.8vw;
  left: -2.9vw;
}
@media screen and (min-width: 768px) {
  .step__cont--label {
    width: 88px;
    top: -6px;
    left: -11px;
  }
}
.step__cont--img {
  width: 100%;
}
.step__cont--inner {
  padding: 4.1vw;
}
@media screen and (min-width: 768px) {
  .step__cont--inner {
    width: 100%;
    height: 73%;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.step__cont--ttl {
  margin-bottom: 4.1vw;
}
@media screen and (min-width: 768px) {
  .step__cont--ttl {
    margin-bottom: 16px;
  }
}
.step__cont--txt {
  line-height: 1.75;
  margin-bottom: 4.1vw;
}
@media screen and (min-width: 768px) {
  .step__cont--txt {
    margin-bottom: 16px;
  }
}
.step__cont--program {
  background: #F9F9F9;
  padding: 4.1vw;
}
@media screen and (min-width: 768px) {
  .step__cont--program {
    padding: 16px 16px 16px 18px;
  }
}
.step__cont--program h4 {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 4.5vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step__cont--program h4 {
    margin-bottom: 18px;
  }
}
.step__cont--program h4:after {
  content: "";
  display: inline-block;
  width: 4.1vw;
  height: 0.51vw;
  position: absolute;
  bottom: -3.5vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .step__cont--program h4:after {
    width: 16px;
    height: 2px;
    bottom: -13px;
  }
}
.step__cont--program li {
  line-height: 2;
}

.bg_long {
  background: url(../img/bg_long.png) no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
}
@media screen and (min-width: 768px) {
  .bg_long {
    background: url(../img/bg_long_pc.png) no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
  }
}

.main-presenter {
  padding-top: 10.26vw;
  padding-right: 1.15vw;
}
@media screen and (min-width: 768px) {
  .main-presenter {
    padding-top: 56px;
    padding-bottom: 58px;
  }
}
@media screen and (min-width: 768px) and (max-width: 920px) {
  .main-presenter {
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .main-presenter__inner {
    max-width: 874px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 920px) {
  .main-presenter__inner {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
}
.main-presenter__ttl {
  width: 14.5%;
}
@media screen and (min-width: 768px) {
  .main-presenter__ttl {
    width: 8.4%;
    margin-left: 1%;
  }
}
@media screen and (min-width: 768px) and (max-width: 920px) {
  .main-presenter__ttl {
    margin-left: 20px;
  }
}
.main-presenter__cont {
  width: 82%;
}
@media screen and (min-width: 768px) {
  .main-presenter__cont {
    width: 89.5%;
  }
}
@media screen and (min-width: 768px) {
  .main-presenter__pcFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 25px;
  }
}
.main-presenter__img01 {
  margin-bottom: 0.5vw;
}
@media screen and (min-width: 768px) {
  .main-presenter__img01 {
    width: 57.5%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .main-presenter__txt {
    width: 40%;
  }
}
.main-presenter__txt--title {
  margin-bottom: 1vw;
}
@media screen and (min-width: 768px) {
  .main-presenter__txt--title {
    margin-bottom: 18px;
  }
}
.main-presenter__txt--title dt {
  display: block;
  width: 23.5%;
  margin: 0 auto 1.5vw;
}
.main-presenter__txt--title dt img {
  display: block;
}
@media screen and (min-width: 768px) {
  .main-presenter__txt--title dt {
    width: 85px;
    margin-right: auto;
    margin-left: 0;
    margin-bottom: 5px;
  }
}
.main-presenter__txt--title dd {
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main-presenter__txt--title dd {
    text-align: left;
  }
}
.main-presenter__txt--desc {
  line-height: 1.75;
  margin-bottom: 2vw;
}
@media screen and (min-width: 768px) {
  .main-presenter__txt--desc {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.main-presenter__imgList {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  row-gap: 2vw;
}
@media screen and (min-width: 768px) {
  .main-presenter__imgList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.main-presenter__imgList li {
  width: 49%;
}
@media screen and (min-width: 768px) {
  .main-presenter__imgList li {
    width: 24.3%;
  }
}

.message {
  padding-top: 16.5vw;
  padding-bottom: 6vw;
}
@media screen and (min-width: 768px) {
  .message {
    padding-top: 0;
    padding-bottom: 36px;
  }
  .message .inner {
    max-width: 640px;
    margin: 0 auto;
  }
}
.message__ttl {
  width: 46.5%;
  margin: 0 auto 6vw;
}
@media screen and (min-width: 768px) {
  .message__ttl {
    width: 259px;
    margin-bottom: 32px;
  }
}
.message__copy01 {
  width: 92.5%;
  margin: 0 auto 4vw;
}
@media screen and (min-width: 768px) {
  .message__copy01 {
    width: 408px;
    margin-bottom: 36px;
  }
}
.message__copy02 {
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .message__copy02 {
    margin-bottom: 24px;
  }
}
.message__img {
  margin-bottom: 4.1vw;
}
@media screen and (min-width: 768px) {
  .message__img {
    margin-bottom: 25px;
  }
}
.message__txt p {
  line-height: 1.75;
  margin-bottom: 4.1vw;
}
@media screen and (min-width: 768px) {
  .message__txt p {
    margin-bottom: 18px;
  }
}

.review {
  padding-bottom: 10.5vw;
}
@media screen and (min-width: 768px) {
  .review {
    padding-bottom: 56px;
    margin-top: -2px;
  }
}
.review__ttl {
  background: url(../img/bnr02_bg.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  padding-top: 7.5vw;
  padding-left: 2.5vw;
  padding-bottom: 5.5vw;
}
@media screen and (min-width: 768px) {
  .review__ttl {
    background: url(../img/bnr02_bg_pc.png) no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 76px;
    padding-left: 0;
    padding-bottom: 74px;
  }
}
@media screen and (min-width: 768px) {
  .review__ttl--inner {
    max-width: 818px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 860px) {
  .review__ttl--inner {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.review__ttl h2 {
  width: 65.5%;
}
@media screen and (min-width: 768px) {
  .review__ttl h2 {
    width: 360px;
  }
}
.review .inner {
  padding-top: 6.15vw;
}
@media screen and (min-width: 768px) {
  .review .inner {
    padding-top: 56px;
  }
}
.review__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4.1vw;
}
@media screen and (min-width: 768px) {
  .review__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    row-gap: 40px;
  }
}
.review__item {
  -webkit-box-shadow: 0px 0px 8px 0px rgba(186, 186, 186, 0.5);
          box-shadow: 0px 0px 8px 0px rgba(186, 186, 186, 0.5);
  padding: 4.1vw 4.5vw;
  /*
  @include pc{
      &:nth-of-type(1) .item-img{
          margin-bottom: 9px;
      }

      &:nth-of-type(1) .item-lead{
          margin-bottom: 14px;
      }
  }*/
}
@media screen and (min-width: 768px) {
  .review__item {
    padding: 16px 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .review__item {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  .review__item {
    width: 31.2%;
  }
}
.review__item .item-img {
  margin-bottom: 5vw;
}
@media screen and (min-width: 768px) {
  .review__item .item-img {
    margin-bottom: 17px;
  }
}
.review__item .item-img img {
  display: block;
  width: 30%;
  margin: 0 auto 3vw;
}
@media screen and (min-width: 768px) {
  .review__item .item-img img {
    width: 96px;
    margin-bottom: 1px;
  }
}
.review__item .item-img figcaption {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .review__item .item-img figcaption strong {
    font-size: 14px;
  }
}
.review__item .item-img figcaption span {
  display: block;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .review__item .item-img figcaption span {
    font-size: 12px;
    margin-top: -7px;
  }
}
.review__item .item-lead {
  margin-bottom: 5vw;
}
@media screen and (min-width: 768px) {
  .review__item .item-lead {
    margin-bottom: 23px;
  }
}
.review__item .item-txt {
  line-height: 1.8;
  font-size: 14px;
}
.review__item.item03 .item-lead {
  width: 94%;
}
.review__item.item06 .item-lead {
  width: 94%;
}

.presenter {
  background: url(../img/bg_presenter.png) no-repeat;
  background-size: 100% auto;
  background-position: top 7.8% center;
  padding-top: 10.5vw;
  padding-bottom: 10vw;
}
@media screen and (min-width: 768px) {
  .presenter {
    max-width: 1440px;
    margin: 0 auto;
    background: url(../img/bg_presenter_pc.png) no-repeat;
    background-size: 1440px auto;
    background-position: top 127px center;
    padding-top: 56px;
    padding-bottom: 52px;
  }
}
.presenter__ttl {
  width: 53%;
  margin: 0 auto 10vw;
}
@media screen and (min-width: 768px) {
  .presenter__ttl {
    width: 325px;
    margin-bottom: 68px;
  }
}
.presenter__col01 {
  padding-bottom: 19vw;
}
@media screen and (min-width: 768px) {
  .presenter__col01 {
    background: none;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 989px) {
  .presenter__col01 .pc-inner {
    max-width: 100%;
    padding-left: 40px;
  }
}
@media screen and (min-width: 990px) {
  .presenter__col01 .pc-inner {
    max-width: 924px;
    margin: 0 auto;
  }
}
.presenter__col01--main {
  width: 100%;
}
.presenter__col01--main .lead {
  width: 65.5%;
  margin-left: 2vw;
}
@media screen and (min-width: 768px) {
  .presenter__col01--main .lead {
    width: 391px;
    margin-left: 0;
    margin-bottom: 12px;
    -webkit-filter: drop-shadow(4px 4px 12px rgba(146, 146, 146, 0.5));
            filter: drop-shadow(4px 4px 12px rgba(146, 146, 146, 0.5));
  }
}
.presenter__col01--main .txt {
  margin-top: -1.5vw;
  margin-left: 4.1vw;
  line-height: 2;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .presenter__col01--main .txt {
    font-size: 14px;
    margin-top: 0;
    margin-left: 0;
  }
}
.presenter__col01--main .txt p:first-of-type {
  margin-bottom: 3.5vw;
}
@media screen and (min-width: 768px) {
  .presenter__col01--main .txt p:first-of-type {
    margin-bottom: 12px;
  }
}
.presenter__subttl01 {
  width: 73%;
  margin: 0 auto 2.5vw;
}
@media screen and (min-width: 768px) {
  .presenter__subttl01 {
    width: 377px;
    margin: 0 auto 45px 0;
  }
}
.presenter__subttl02 {
  margin-bottom: 6.5vw;
}
@media screen and (min-width: 768px) {
  .presenter__subttl02 {
    margin-bottom: 42px;
  }
}
.presenter__subttl03 {
  margin-bottom: 8.5vw;
}
@media screen and (min-width: 768px) {
  .presenter__subttl03 {
    margin-bottom: 42px;
  }
}
.presenter__subttl02, .presenter__subttl03 {
  text-align: center;
}
.presenter__subttl02 span, .presenter__subttl03 span {
  position: relative;
}
.presenter__subttl02 span:after, .presenter__subttl03 span:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.77vw;
  background: linear-gradient(45deg, #fadcc0, #DFEBD2, #E8EFDE);
  position: absolute;
  bottom: -1vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .presenter__subttl02 span:after, .presenter__subttl03 span:after {
    height: 3px;
    bottom: -4px;
  }
}
.presenter__col02--lead {
  text-align: center;
  line-height: 2;
  margin-bottom: 6.15vw;
}
@media screen and (min-width: 768px) {
  .presenter__col02--lead {
    font-size: 18px;
    margin-bottom: 38px;
  }
}
@media screen and (min-width: 768px) and (max-width: 810px) {
  .presenter__col02--lead .pc-n {
    display: block;
  }
}
.presenter__col02--list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5.5vw;
}
@media screen and (min-width: 768px) {
  .presenter__col02--list {
    max-width: 756px;
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .presenter__col02--item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 47.5%;
  }
}
.presenter__col02--item .item-img {
  width: 48%;
}
@media screen and (min-width: 768px) {
  .presenter__col02--item .item-img {
    width: 100%;
    margin-bottom: 4px;
  }
}
.presenter__col02--item .item-txt {
  width: 50%;
  margin-top: 1vw;
}
@media screen and (min-width: 768px) {
  .presenter__col02--item .item-txt {
    width: 100%;
    margin-top: 0;
  }
  .presenter__col02--item .item-txt dl {
    text-align: center;
  }
}
.presenter__col02--item .item-txt dt {
  font-weight: 700;
  display: block;
}
@media screen and (min-width: 768px) {
  .presenter__col02--item .item-txt dt {
    font-size: 16px;
  }
}
.presenter__col02--item .item-txt dd {
  color: #606060;
  line-height: 1.3;
  display: block;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 768px) {
  .presenter__col02--item .item-txt dd {
    font-size: 12px;
    margin-bottom: 7px;
  }
}
.presenter__col02--item .item-txt p {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .presenter__col02--item .item-txt p {
    font-size: 14px;
  }
}
.presenter__col03 {
  padding-top: 15vw;
}
@media screen and (min-width: 768px) {
  .presenter__col03 {
    padding-top: 72px;
  }
}
.presenter__col03--list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10.5vw;
}
@media screen and (min-width: 768px) {
  .presenter__col03--list {
    max-width: 756px;
    margin: 0 auto;
    row-gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.presenter__col03--list .item-img {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 4.1vw;
}
@media screen and (min-width: 768px) {
  .presenter__col03--list .item-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-bottom: 14px;
  }
}
.presenter__col03--list .item-img picture {
  width: 35%;
}
@media screen and (min-width: 768px) {
  .presenter__col03--list .item-img picture {
    width: 100%;
    margin-bottom: 12px;
  }
}
.presenter__col03--list .item-img dl {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .presenter__col03--list .item-img dl {
    width: 100%;
  }
}
.presenter__col03--list .item-img dt {
  display: block;
  font-weight: 700;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 768px) {
  .presenter__col03--list .item-img dt {
    font-size: 16px;
    margin-bottom: 7px;
  }
}
.presenter__col03--list .item-img dd {
  color: #606060;
  line-height: 1.3;
  display: block;
}
@media screen and (min-width: 768px) {
  .presenter__col03--list .item-img dd {
    font-size: 12px;
  }
}
.presenter__col03--list .item-txt {
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .presenter__col03--list .item-txt {
    line-height: 1.8;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .presenter__col03--item {
    width: 47.5%;
  }
}

.faq {
  background: url(../img/bg_faq.png) repeat;
  padding-top: 6vw;
  padding-bottom: 6vw;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 56px;
    padding-bottom: 52px;
  }
  .faq .inner {
    max-width: 756px;
    margin: 0 auto;
  }
}
.faq__ttl {
  width: 23.5%;
  margin: 0 auto 9vw;
}
@media screen and (min-width: 768px) {
  .faq__ttl {
    width: 106px;
    margin-bottom: 52px;
  }
}
.faq__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3vw;
}
@media screen and (min-width: 768px) {
  .faq__list {
    row-gap: 12px;
  }
}
.faq__item {
  padding-bottom: 3.5vw;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .faq__item {
    padding-bottom: 13px;
  }
}
.faq__item--question {
  font-weight: 700;
  padding-left: 5.5%;
  margin-bottom: 3.5vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq__item--question {
    font-size: 18px;
    padding-left: 22px;
    margin-bottom: 10px;
  }
}
.faq__item--question::before {
  content: "";
  display: inline-block;
  width: 4vw;
  height: 4vw;
  background: url(../img/icon_q.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0.3vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .faq__item--question::before {
    width: 12px;
    height: 18px;
    left: 2px;
  }
}
.faq__item--answer {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .faq__item--answer {
    font-size: 16px;
  }
}

.policy {
  padding-top: 10vw;
  padding-bottom: 14vw;
}
@media screen and (min-width: 768px) {
  .policy {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.policy .inner {
  max-width: 800px;
}
.policy h1 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.5rem;
}
.policy h2 {
  font-size: 18px;
  margin: 2rem 0 0.3rem;
  font-size: 1rem;
}
.policy h3 {
  font-weight: 700;
  margin: 0.5rem 0 0.2rem;
}
.policy h3, .policy p, .policy li {
  font-size: 0.875rem;
}
.policy ol {
  margin: initial;
  padding-left: 1rem;
}
.policy ol li {
  list-style: decimal;
}
.policy a {
  text-decoration: underline;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.policy a:hover {
  opacity: 0.7;
}
.policy .mt_1r {
  margin-top: 1rem;
}

.footer-policy {
  padding-bottom: 20px;
}
.footer-policy p, .footer-policy a {
  color: #222222;
  font-size: 12px;
}

/*----------------*
    footer
------------------*/
.footer {
  padding-top: 3vw;
  padding-bottom: 4vw;
  background: #FD8039;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 12px;
    padding-bottom: 14px;
  }
}
.footer__nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4vw;
     -moz-column-gap: 4vw;
          column-gap: 4vw;
  margin-bottom: 0.5vw;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    margin-bottom: 4px;
  }
}
.footer__nav a {
  text-decoration: underline;
}
.footer__copy {
  color: #fff;
}
.footer__nav a, .footer__copy a {
  display: inline-block;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__nav a:hover, .footer__copy a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .footer .fz_12 {
    font-size: 12px;
  }
}


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

.cta__lead {
  line-height: 1.8;
  margin-bottom: 3vw;
  font-size: 1.3em;
  text-align: center;
}

.mv__main {
    height: 350px;
}
}