@charset "UTF-8";
/*******************************
Default Mixin
*******************************/
/*----------------------
フォントサイズ「rem」の使用
----------------------*/
/*******************************
Customized Mixin
*******************************/
/*********************************************
RESET
*********************************************/
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap);
@import url(https://use.fontawesome.com/releases/v5.10.2/css/all.css);
@import url(https://fonts.googleapis.com/css2?family=Comfortaa&display=swap);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  line-height: inherit;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

html {
  overflow-y: scroll;
}

img {
  vertical-align: middle;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

a {
  text-decoration: none;
}

button {
  border: none;
  background-color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
}

/*********************************************
DEFAULT
*********************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body * {
  -webkit-text-size-adjust: 100%;
}

a img {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

a:hover {
  text-decoration: underline;
}

a:hover img {
  opacity: .8;
}

iframe[name=google_conversion_frame] {
  position: absolute;
  top: 0;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*********************************************
Customize
*********************************************/
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

a {
  color: #000;
}

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

.m-wrapper {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1024px) {
  .m-wrapper {
    max-width: 91.25%;
  }
}

.m-telLink {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .m-telLink {
    pointer-events: auto;
    text-decoration: underline;
  }
}

.m-btn01 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
  width: 262px;
  border-radius: 50px;
  padding: 12.5px 0px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 640px) {
  .m-btn01 {
    width: 100px;
    font-size: 10px;
    font-size: 1rem;
    padding: 5px;
    border-radius: 15px;
    text-align: center;
  }
}

.m-btn01:hover {
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.m-btn01-border01 {
  border: 2px solid #EB6D73;
  color: #EB6D73;
}

.m-btn01-border01:hover {
  background-color: #EB6D73;
  color: #FFFFFF;
}

.m-btn01-border02 {
  border: 1px solid #EB6D73;
  border-bottom: 1px dashed #EB6D73;
  color: #EB6D73;
  background: rgba(235, 109, 115, 0.2);
}

.m-btn01-border02:hover {
  color: #FFFFFF;
  background: rgba(235, 109, 115, 0.7);
}

.m-btn01-border03 {
  border: 1px solid #8AA3D0;
  border-top: 0;
  background: rgba(138, 163, 208, 0.2);
  color: #8AA3D0;
}

.m-btn01-border03:hover {
  color: #FFFFFF;
  background: rgba(138, 163, 208, 0.7);
}

.m-btn02 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 25.7607px;
  font-size: 2.57607rem;
  color: #FFFFFF;
  width: 422px;
  position: relative;
  border-radius: 50px;
  padding: 19px 0;
}

@media screen and (max-width: 640px) {
  .m-btn02 {
    width: 260px;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 10px 0;
  }
}

.m-btn02:hover {
  text-decoration: none;
  opacity: .8;
}

.m-btn02::after {
  content: '';
  position: absolute;
  background-image: url(../img/arrow-btn02.png);
  height: 14px;
  width: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 28px;
  background-position: center;
  background-repeat: no-repeat;
}

.m-btn02-style01 {
  background-color: #EB6D73;
}

@media screen and (max-width: 640px) {
  .m-btn02-style01 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.m-btn02-style02 {
  background-color: #8AA3D0;
}

@media screen and (max-width: 640px) {
  .m-btn02-style02 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 640px) {
  .m-title-img {
    width: 50%;
    margin: 0 auto;
  }
}

.m-content .ttl {
  font-size: 27px;
  font-size: 2.7rem;
  font-weight: 500;
  margin-bottom: 25px;
}

@media screen and (max-width: 640px) {
  .m-content .ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.m-content .txt {
  line-height: 3.1;
}

@media screen and (max-width: 640px) {
  .m-content .txt {
    line-height: 1.8;
  }
}

.mp0 {
  margin: 0px;
  padding: 0px;
}

.p0 {
  padding: 0px !important;
}

.m0 {
  margin: 0px !important;
}

.pT0 {
  padding-top: 0px !important;
}

.pT5 {
  padding-top: 5px !important;
}

.pT10 {
  padding-top: 10px !important;
}

.pT15 {
  padding-top: 15px !important;
}

.pT20 {
  padding-top: 20px !important;
}

.pT30 {
  padding-top: 30px !important;
}

.pT40 {
  padding-top: 40px !important;
}

.pT50 {
  padding-top: 50px !important;
}

.pT60 {
  padding-top: 60px !important;
}

.pB5 {
  padding-bottom: 5px !important;
}

.pB10 {
  padding-bottom: 10px !important;
}

.pB20 {
  padding-bottom: 20px !important;
}

.pB30 {
  padding-bottom: 30px !important;
}

.pB40 {
  padding-bottom: 40px !important;
}

.pB50 {
  padding-bottom: 50px !important;
}

.pB60 {
  padding-bottom: 60px !important;
}

.pL5 {
  padding-left: 5px !important;
}

.pL10 {
  padding-left: 10px !important;
}

.pL20 {
  padding-left: 20px !important;
}

.pL30 {
  padding-left: 30px !important;
}

.pL40 {
  padding-left: 40px !important;
}

.pL50 {
  padding-left: 50px !important;
}

.pL60 {
  padding-left: 60px !important;
}

.pR0 {
  padding-right: 0px !important;
}

.pR10 {
  padding-right: 10px !important;
}

.pR20 {
  padding-right: 20px !important;
}

.pR30 {
  padding-right: 35px !important;
}

.pR40 {
  padding-right: 20px !important;
}

.pR50 {
  padding-right: 55px !important;
}

.pR60 {
  padding-right: 55px !important;
}

.mT0 {
  margin-top: 0px !important;
}

.mT5 {
  margin-top: 5px !important;
}

.mT10 {
  margin-top: 10px !important;
}

.mT15 {
  margin-top: 15px !important;
}

.mT20 {
  margin-top: 20px !important;
}

.mT25 {
  margin-top: 25px !important;
}

.mT30 {
  margin-top: 30px !important;
}

.mT40 {
  margin-top: 40px !important;
}

.mT50 {
  margin-top: 50px !important;
}

.mT60 {
  margin-top: 60px !important;
}

.mB0 {
  margin-bottom: 0px !important;
}

.mB10 {
  margin-bottom: 10px !important;
}

.mB20 {
  margin-bottom: 20px !important;
}

.mB25 {
  margin-bottom: 25px !important;
}

.mB30 {
  margin-bottom: 30px !important;
}

.mB40 {
  margin-bottom: 40px !important;
}

.mB50 {
  margin-bottom: 50px !important;
}

.mB60 {
  margin-bottom: 60px !important;
}

.mL0 {
  margin-left: 0px !important;
}

.mL10 {
  margin-left: 10px !important;
}

.mL15 {
  margin-left: 15px !important;
}

.mL20 {
  margin-left: 20px !important;
}

.mL30 {
  margin-left: 30px !important;
}

.mR0 {
  margin-right: 0px !important;
}

.mR5 {
  margin-right: 5px !important;
}

.mR10 {
  margin-right: 10px !important;
}

.mR20 {
  margin-right: 20px !important;
}

.mR30 {
  margin-right: 30px !important;
}

.mR40 {
  margin-right: 40px !important;
}

.tCenter {
  text-align: center !important;
}

.tLeft {
  text-align: left !important;
}

.tRight {
  text-align: right !important;
}

.fLeft {
  float: left !important;
}

.fRight {
  float: right !important;
}

/*******************************
Style Start
*******************************/
.is-pc-hidden {
  display: none;
}

@media screen and (max-width: 640px) {
  .is-pc-hidden {
    display: inline-block;
  }
}

.is-sp-hidden {
  display: inline-block;
}

@media screen and (max-width: 640px) {
  .is-sp-hidden {
    display: none;
  }
}

/*******************************
Style
*******************************/
.l-header {
  padding: 25px 47px 0px 53px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}

@media screen and (max-width: 640px) {
  .l-header {
    padding: 20px;
  }
}

@media screen and (max-width: 640px) {
  .l-header .logo {
    width: 41%;
  }
}

.l-header__menu {
  padding-top: 11px;
  width: 361px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .l-header__menu {
    width: auto;
    z-index: 2000;
  }
}

.l-header__menu .btn-wrap {
  width: 262px;
}

@media screen and (max-width: 640px) {
  .l-header__menu .btn-wrap {
    width: 100px;
    margin-right: 50px;
  }
}

.l-header__menu .btn-wrap .btnJs {
  cursor: pointer;
}

.l-header__menu .btn-wrap .down-btn {
  display: none;
}

.l-header__menu .menu-icon {
  height: 53px;
  width: 53px;
  position: fixed;
  z-index: 2000;
  right: 48px;
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  .l-header__menu .menu-icon {
    width: 40px;
    height: 40px;
    right: 20px;
  }
}

.l-header__menu .menu-icon span {
  position: absolute;
  display: inline-block;
  height: 8px;
  width: 53px;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

@media screen and (max-width: 640px) {
  .l-header__menu .menu-icon span {
    width: 40px;
    height: 5px;
  }
}

.l-header__menu .menu-icon span:nth-child(1) {
  background-color: #FCCF00;
  top: 0;
}

.l-header__menu .menu-icon span:nth-child(2) {
  background-color: #A2BBE1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.l-header__menu .menu-icon span:nth-child(3) {
  background-color: #BFDDAD;
  bottom: 0;
}

.l-header__menu .menu-icon.is-active span:nth-child(1) {
  -webkit-transform: translateY(22px) rotate(47deg);
          transform: translateY(22px) rotate(47deg);
}

@media screen and (max-width: 640px) {
  .l-header__menu .menu-icon.is-active span:nth-child(1) {
    -webkit-transform: translateY(18px) rotate(47deg);
            transform: translateY(18px) rotate(47deg);
  }
}

.l-header__menu .menu-icon.is-active span:nth-child(2) {
  -webkit-transform: translateY(-5px) rotate(-47deg);
          transform: translateY(-5px) rotate(-47deg);
}

@media screen and (max-width: 640px) {
  .l-header__menu .menu-icon.is-active span:nth-child(2) {
    -webkit-transform: translateY(-3px) rotate(-47deg);
            transform: translateY(-3px) rotate(-47deg);
  }
}

.l-header__menu .menu-icon.is-active span:nth-child(3) {
  opacity: 0;
}

.l-header .menu-block {
  position: fixed;
  z-index: 1999;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background-color: #FFFFFF;
  padding-top: 12%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

@media screen and (max-width: 640px) {
  .l-header .menu-block {
    padding-top: 25%;
  }
}

.l-header .menu-block.is-active {
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.l-header .menu-block .menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 876px;
  margin: 0 auto;
  width: 80%;
}

@media screen and (max-width: 640px) {
  .l-header .menu-block .menu-wrap .logo-m-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 37%;
    max-width: 209px;
  }
}

.l-header .menu-block .menu-wrap .menu {
  width: calc(100% - 212px);
  padding-left: 33%;
}

@media screen and (max-width: 640px) {
  .l-header .menu-block .menu-wrap .menu {
    width: 100%;
    padding-left: 0;
  }
}

.l-header .menu-block .menu-wrap .menu ul .item {
  padding: 14px 0;
}

@media screen and (max-width: 640px) {
  .l-header .menu-block .menu-wrap .menu ul .item {
    padding: 6px 0;
  }
}

.l-header .menu-block .menu-wrap .menu ul .item .link {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  .l-header .menu-block .menu-wrap .menu ul .item .link {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.l-header .menu-block .menu-wrap .menu ul .item .link:hover {
  text-decoration: none;
  opacity: .7;
}

.l-main__sct01 {
  position: relative;
}

@media screen and (max-width: 640px) {
  .l-main__sct01 {
    padding-top: 25vw;
  }
}

.l-main__sct01 .sct01-img {
  position: relative;
}

.l-main__sct01 .sct01-img img {
  width: 100%;
}

.l-main__sct01 .sct01-img .txt {
  position: absolute;
  font-size: 46.6001px;
  font-size: 4.66001rem;
  color: #EB6D73;
  top: 25.8%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: .51em;
  left: 17.2%;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .l-main__sct01 .sct01-img .txt {
    font-size: 6vw;
    left: 9.2%;
    top: 6.8%;
  }
}

.l-main__sct01 .sct01-text {
  position: absolute;
  bottom: -1.6%;
  right: 20%;
}

@media screen and (max-width: 640px) {
  .l-main__sct01 .sct01-text {
    position: relative;
    bottom: auto;
    right: auto;
    width: 91.25%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

.l-main__sct01 .sct01-text .txt {
  color: #EB6D73;
  line-height: 3.1;
}

@media screen and (max-width: 640px) {
  .l-main__sct01 .sct01-text .txt {
    line-height: 1.8;
  }
}

.l-main__sct02 {
  padding-top: 255px;
  background-image: url(../img/sct02-bg.png);
  background-repeat: no-repeat;
  background-position: center 99px;
  background-size: cover;
  padding-bottom: 180px;
  position: relative;
}

@media screen and (max-width: 640px) {
  .l-main__sct02 {
    padding-top: 95px;
    background-image: url(../img/sct02-bg__sp.png);
    background-position: center 30px;
    background-size: 100% 96%;
    padding-bottom: 26px;
  }
}

.l-main__sct02 .partner-img {
  position: absolute;
  left: 8.5%;
  top: 6.6%;
}

@media screen and (max-width: 640px) {
  .l-main__sct02 .partner-img {
    display: none;
  }
}

.l-main__sct02 .sct02-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding-right: 21px;
}

@media screen and (max-width: 640px) {
  .l-main__sct02 .sct02-wrap {
    padding-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-main__sct02 .sct02-wrap .m-content {
  padding-top: 53px;
  padding-left: 84px;
}

@media screen and (max-width: 640px) {
  .l-main__sct02 .sct02-wrap .m-content {
    padding-left: 0;
  }
}

.l-main__sct02 .sct02-wrap .m-content .ttl {
  color: #8AA3D0;
  line-height: 1.6;
  letter-spacing: 0.4px;
}

.l-main__sct02 .sct02-wrap .m-content .txt {
  color: #8AA3D0;
}

.l-main__sct02 .sct02-wrap .main-img {
  position: absolute;
  right: -8.3%;
  bottom: -63%;
}

@media screen and (max-width: 640px) {
  .l-main__sct02 .sct02-wrap .main-img {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }
}

.l-main__sct03 {
  background-image: url(../img/sct03-bg.png);
  padding-top: 209px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  margin-top: -61px;
  padding-bottom: 164px;
}

@media screen and (max-width: 640px) {
  .l-main__sct03 {
    padding-top: 90px;
    padding-bottom: 82px;
    margin-top: -70px;
    background-image: url(../img/sct03-bg__sp.png);
  }
}

.l-main__sct03 .partner-img {
  position: absolute;
  top: -3%;
  left: 8%;
}

@media screen and (max-width: 640px) {
  .l-main__sct03 .partner-img {
    display: none;
  }
}

.l-main__sct03 .sct03-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 640px) {
  .l-main__sct03 .sct03-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-main__sct03 .sct03-wrap .m-title-img {
  position: relative;
  z-index: 1;
  padding-top: 11%;
}

@media screen and (max-width: 640px) {
  .l-main__sct03 .sct03-wrap .m-title-img {
    padding-left: 0;
    padding-top: 0;
    width: 60%;
  }
}

@media screen and (max-width: 640px) {
  .l-main__sct03 .sct03-wrap .m-content {
    padding-top: 30px;
  }
}

.l-main__sct03 .sct03-wrap .m-content .ttl {
  margin-bottom: 16px;
}

.l-main__sct03 .sct03-wrap .m-content .ttl, .l-main__sct03 .sct03-wrap .m-content .txt {
  color: #8BC782;
}

.l-main__sct03 .sct03-wrap .main-img {
  position: absolute;
  z-index: 0;
  left: 0;
  top: -18%;
}

@media screen and (max-width: 640px) {
  .l-main__sct03 .sct03-wrap .main-img {
    position: relative;
    left: auto;
    top: auto;
    width: 50%;
    margin: 20px auto 0;
  }
}

.l-main__sct04 {
  padding-top: 36px;
  padding-bottom: 18px;
  position: relative;
}

@media screen and (max-width: 640px) {
  .l-main__sct04 {
    padding-bottom: 0;
  }
}

.l-main__sct04 .partner-img {
  display: none;
}

@media screen and (max-width: 640px) {
  .l-main__sct04 .partner-img {
    display: inline-block;
    width: 60px;
    left: 9%;
    top: -5.5%;
    position: absolute;
  }
}

.l-main__sct04 .sct04-wrap .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 49px;
}

@media screen and (max-width: 640px) {
  .l-main__sct04 .sct04-wrap .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.l-main__sct04 .sct04-wrap .title .m-content {
  color: #8BC782;
}

@media screen and (max-width: 640px) {
  .l-main__sct04 .sct04-wrap .title .m-content {
    padding-top: 30px;
  }
}

.l-main__sct04 .sct04-wrap .title .m-content .ttl {
  margin-bottom: 0;
}

.l-main__sct04 .sct04-wrap .row-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 51px;
  padding-top: 90px;
}

@media screen and (max-width: 640px) {
  .l-main__sct04 .sct04-wrap .row-flex {
    padding: 0 22px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-main__sct04 .sct04-wrap .row-flex .inner {
  max-width: 309px;
  width: 28.091%;
}

@media screen and (max-width: 640px) {
  .l-main__sct04 .sct04-wrap .row-flex .inner {
    width: 100%;
    max-width: 100%;
    margin-bottom: 60px;
  }
}

.l-main__sct04 .sct04-wrap .row-flex .inner-img {
  height: 278px;
  text-align: center;
}

.l-main__sct04 .sct04-wrap .row-flex .inner-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.l-main__sct04 .sct04-wrap .row-flex .inner-content {
  padding-top: 24px;
}

@media screen and (max-width: 640px) {
  .l-main__sct04 .sct04-wrap .row-flex .inner-content {
    padding-top: 10px;
  }
}

.l-main__sct04 .sct04-wrap .row-flex .inner-content .ttl {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #8BC782;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .l-main__sct04 .sct04-wrap .row-flex .inner-content .ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.l-main__sct04 .sct04-wrap .row-flex .inner-content .txt {
  color: #8BC782;
  padding: 0 2px;
}

.l-main__sct05 {
  padding-top: 268px;
  position: relative;
  padding-bottom: 116px;
}

@media screen and (max-width: 640px) {
  .l-main__sct05 {
    padding-top: 0;
    padding-bottom: 80px;
  }
}

.l-main__sct05 .main-img {
  position: absolute;
  top: 0;
  left: 43%;
}

@media screen and (max-width: 640px) {
  .l-main__sct05 .main-img {
    width: 65%;
    position: relative;
    left: 0;
    margin: 0 auto;
  }
}

.l-main__sct05 .sct05-wrap {
  position: relative;
}

@media screen and (max-width: 640px) {
  .l-main__sct05 .sct05-wrap {
    padding-top: 30px;
  }
}

.l-main__sct05 .sct05-wrap .m-title-img {
  padding-left: 15px;
}

@media screen and (max-width: 640px) {
  .l-main__sct05 .sct05-wrap .m-title-img {
    padding-left: 0;
    width: 55%;
  }
}

.l-main__sct05 .sct05-wrap .partner-img {
  position: absolute;
  right: 6.8%;
  top: -27px;
}

@media screen and (max-width: 640px) {
  .l-main__sct05 .sct05-wrap .partner-img {
    width: 60px;
    right: 0%;
  }
}

.l-main__sct05 .sct05-wrap .row-wrap {
  padding-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .l-main__sct05 .sct05-wrap .row-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-main__sct05 .sct05-wrap .row-wrap .inner {
  max-width: 328px;
  width: 29.819%;
}

@media screen and (max-width: 640px) {
  .l-main__sct05 .sct05-wrap .row-wrap .inner {
    width: 85%;
    max-width: 100%;
    margin: 0 auto 35px;
  }
  .l-main__sct05 .sct05-wrap .row-wrap .inner:first-of-type .number {
    width: 45%;
  }
}

.l-main__sct05 .sct05-wrap .row-wrap .inner-img {
  position: relative;
}

@media screen and (max-width: 640px) {
  .l-main__sct05 .sct05-wrap .row-wrap .inner-img {
    text-align: center;
  }
}

.l-main__sct05 .sct05-wrap .row-wrap .inner-img .number {
  bottom: -23px;
  left: -53px;
  position: absolute;
}

@media screen and (max-width: 640px) {
  .l-main__sct05 .sct05-wrap .row-wrap .inner-img .number {
    width: 55%;
    left: -20px;
  }
}

.l-main__sct05 .sct05-wrap .row-wrap .inner-content {
  padding-top: 10px;
}

.l-main__sct05 .sct05-wrap .row-wrap .inner-content .ttl {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  color: #F6AC19;
  padding-bottom: 5px;
}

@media screen and (max-width: 640px) {
  .l-main__sct05 .sct05-wrap .row-wrap .inner-content .ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.l-main__sct05 .sct05-wrap .row-wrap .inner-content .txt {
  color: #F6AC19;
  padding: 0 20px;
}

@media screen and (max-width: 640px) {
  .l-main__sct05 .sct05-wrap .row-wrap .inner-content .txt {
    padding: 0;
  }
}

.l-main__sct06 {
  background-image: url(../img/sct06-bg.png);
  padding-top: 130px;
  position: relative;
  background-repeat: no-repeat;
  background-size: 100% 42%;
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 {
    padding-top: 96px;
    background-size: 100%;
    background-image: url(../img/sct06-bg__sp.png);
  }
}

.l-main__sct06 .m-wrapper {
  max-width: 1300px;
  width: 90%;
  position: relative;
}

.l-main__sct06 .partner-img {
  position: absolute;
  right: 1.5%;
  top: -7.1%;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .partner-img {
    width: 100px;
    top: -2.6%;
  }
}

.l-main__sct06 .m-title-img {
  text-align: center;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .m-title-img {
    width: 43%;
  }
}

.l-main__sct06 .sct06-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 41px;
}

.l-main__sct06 .sct06-wrap__content {
  width: 56%;
  max-width: 700px;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap__content {
    max-width: 100%;
    width: 100%;
  }
}

.l-main__sct06 .sct06-wrap__content .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 54px;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap__content .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .l-main__sct06 .sct06-wrap__content .inner:first-of-type .number img {
    width: 30%;
  }
}

.l-main__sct06 .sct06-wrap__content .inner .number {
  width: 185px;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap__content .inner .number {
    width: 100%;
    margin-bottom: 5px;
    text-align: center;
  }
  .l-main__sct06 .sct06-wrap__content .inner .number img {
    width: 35%;
  }
}

.l-main__sct06 .sct06-wrap__content .inner .txt {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  color: #EB6D73;
  line-height: 1.4;
  width: 321px;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap__content .inner .txt {
    width: 80%;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap__content .inner .icon {
    width: 20%;
  }
}

.l-main__sct06 .sct06-wrap__content .block-img {
  margin-top: -122px;
  width: 103%;
  padding-left: 7px;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap__content .block-img {
    margin-top: -77px;
    padding-left: 0;
    width: 105%;
  }
}

.l-main__sct06 .sct06-wrap02 {
  max-width: 820px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -66px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 129px;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap02 {
    padding: 0 10%;
    margin-top: -38px;
  }
}

.l-main__sct06 .sct06-wrap02 .inner {
  width: 192px;
  margin-bottom: 18px;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap02 .inner {
    width: 46%;
  }
}

.l-main__sct06 .sct06-wrap02 .inner:hover {
  text-decoration: none;
}

.l-main__sct06 .sct06-wrap02 .inner-img {
  text-align: center;
}

.l-main__sct06 .sct06-wrap02 .inner-content {
  text-align: center;
  color: #EB6D73;
  margin-top: 1px;
}

.l-main__sct06 .sct06-wrap02 .inner-content .name {
  font-weight: 600;
  line-height: 1.5;
}

.l-main__sct06 .sct06-wrap02 .inner-content .school {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.l-main__sct06 .main-img {
  position: absolute;
  top: 4.3%;
  left: -2.7%;
  z-index: -1;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .main-img {
    position: relative;
    top: auto;
    left: auto;
    width: 60%;
    margin: 30px auto;
  }
}

.l-main__sct06 .sct06-wrap03 {
  max-width: 910px;
  margin: 0 auto;
  padding-bottom: 78px;
  position: relative;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap03 {
    padding-bottom: 45px;
  }
}

.l-main__sct06 .sct06-wrap03::after {
  content: '';
  position: absolute;
  width: 100%;
  background-image: url(../img/border-bottom-style.png);
  height: 4px;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap03::after {
    display: none;
  }
}

.l-main__sct06 .sct06-wrap03 .ttl {
  text-align: center;
}

.l-main__sct06 .sct06-wrap03 .step-wrap {
  padding-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap03 .step-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-main__sct06 .sct06-wrap03 .step-wrap .inner {
  max-width: 245px;
  width: 27%;
  position: relative;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap03 .step-wrap .inner {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}

.l-main__sct06 .sct06-wrap03 .step-wrap .inner:not(:last-of-type) {
  margin-right: 10%;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap03 .step-wrap .inner:not(:last-of-type) {
    margin-right: 0;
    padding-bottom: 80px;
    margin-bottom: 18px;
  }
}

.l-main__sct06 .sct06-wrap03 .step-wrap .inner:not(:last-of-type)::after {
  content: '';
  position: absolute;
  background-image: url(../img/sct06-step01-arrow.png);
  height: 58px;
  width: 33px;
  background-position: center;
  background-repeat: no-repeat;
  top: 117px;
  right: -7%;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap03 .step-wrap .inner:not(:last-of-type)::after {
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    bottom: 0;
    top: auto;
    left: 50%;
    right: auto;
  }
}

.l-main__sct06 .sct06-wrap03 .btn-wrap {
  text-align: center;
  padding-top: 100px;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap03 .btn-wrap {
    padding-top: 70px;
  }
}

.l-main__sct06 .sct06-wrap03 .btn-wrap .txt {
  font-size: 13px;
  font-size: 1.3rem;
  color: #EB6D73;
  padding-top: 32px;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap03 .btn-wrap .txt {
    font-size: 11px;
    font-size: 1.1rem;
    padding-top: 20px;
  }
}

.l-main__sct06 .sct06-wrap03 .partner-img02 {
  position: absolute;
  bottom: -10.3%;
  left: -18.5%;
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap03 .partner-img02 {
    position: relative;
    bottom: auto;
    left: auto;
    text-align: center;
    width: 65%;
    margin: 0 auto;
    padding-top: 20px;
  }
}

.l-main__sct06 .sct06-wrap04 {
  max-width: 910px;
  margin: 141px auto 0;
  padding-bottom: 201px;
  position: relative;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap04 {
    padding-bottom: 90px;
    margin: 50px auto 0;
  }
}

.l-main__sct06 .sct06-wrap04 .ttl {
  text-align: center;
}

.l-main__sct06 .sct06-wrap04 .step-wrap {
  padding-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap04 .step-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 30px;
  }
}

.l-main__sct06 .sct06-wrap04 .step-wrap .inner {
  position: relative;
  max-width: 195px;
  width: 21.5%;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap04 .step-wrap .inner {
    max-width: 100%;
    text-align: center;
    width: 100%;
  }
}

.l-main__sct06 .sct06-wrap04 .step-wrap .inner:not(:last-of-type) {
  margin-right: 5%;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap04 .step-wrap .inner:not(:last-of-type) {
    margin-right: 0;
    padding-bottom: 60px;
  }
}

.l-main__sct06 .sct06-wrap04 .step-wrap .inner:not(:last-of-type)::after {
  content: '';
  position: absolute;
  background-image: url(../img/sct06-step02-arrow.png);
  height: 58px;
  width: 33px;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  right: -12%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap04 .step-wrap .inner:not(:last-of-type)::after {
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    left: 50%;
    right: auto;
    top: auto;
    bottom: 0;
  }
}

.l-main__sct06 .sct06-wrap04 .btn-wrap {
  text-align: center;
  padding-top: 74px;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap04 .btn-wrap {
    padding-top: 31px;
  }
}

.l-main__sct06 .sct06-wrap04 .btn-wrap .txt {
  font-size: 13px;
  font-size: 1.3rem;
  color: #8AA3D0;
  padding-top: 28px;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap04 .btn-wrap .txt {
    font-size: 11px;
    font-size: 1.1rem;
    padding-top: 20px;
  }
}

.l-main__sct06 .sct06-wrap04 .partner-img02 {
  position: absolute;
  right: -18.3%;
  z-index: 1;
  bottom: -16.6%;
}

@media screen and (max-width: 640px) {
  .l-main__sct06 .sct06-wrap04 .partner-img02 {
    position: relative;
    right: auto;
    bottom: auto;
    text-align: center;
    width: 75%;
    padding-top: 30px;
    margin: 0 auto;
  }
}

.l-main__sct07 {
  padding-bottom: 52px;
}

.l-main__sct07 .sct07-wrap {
  text-align: center;
  position: relative;
}

@media screen and (max-width: 640px) {
  .l-main__sct07 .sct07-wrap {
    padding: 0 5%;
  }
}

.l-main__sct07 .sct07-wrap::before {
  position: absolute;
  left: 0%;
  top: -37px;
  content: '';
  background-image: url(../img/sct07-border.png);
  width: 100%;
  height: 74px;
  z-index: 0;
}

@media screen and (max-width: 640px) {
  .l-main__sct07 .sct07-wrap::before {
    height: 3vw;
    background-size: 100%;
  }
}

.l-main__sct07 .sct07-wrap .content {
  padding-top: 55px;
  padding-bottom: 67px;
  background-color: #FFFFFF;
  position: relative;
}

@media screen and (max-width: 640px) {
  .l-main__sct07 .sct07-wrap .content {
    padding-top: 0;
    padding-bottom: 40px;
  }
}

.l-main__sct07 .sct07-wrap .content .logo {
  width: 70%;
  margin: 0 auto;
}

.l-main__sct07 .sct07-wrap .content .txt {
  color: #828181;
  line-height: 2.2;
  padding-top: 18px;
  padding-bottom: 35px;
}

@media screen and (max-width: 640px) {
  .l-main__sct07 .sct07-wrap .content .txt {
    text-align: left;
  }
}

.l-main__sct07 .sct07-wrap .m-btn-popup {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  color: #828181;
  width: 100px;
  border: 1px solid #828181;
  border-radius: 25px;
  margin: 0 auto;
  cursor: pointer;
}

.l-main__sct07 .sct07-wrap .m-btn-popup:hover {
  text-decoration: none;
  opacity: .8;
}

.l-main .popup {
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.l-main .popup.is-active {
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  opacity: 1;
  pointer-events: visible;
  visibility: visible;
}

.l-main .popup-wrap {
  position: absolute;
  max-width: 1010px;
  width: 91.25%;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.l-main .popup-wrap .ttl {
  font-size: 24px;
  font-size: 2.4rem;
  color: #8AA3D0;
  margin-bottom: 15px;
}

@media screen and (max-width: 640px) {
  .l-main .popup-wrap .ttl {
    font-size: 4vw;
  }
}

.l-main .popup-wrap .txt {
  color: #8AA3D0;
}

@media screen and (max-width: 640px) {
  .l-main .popup-wrap .txt {
    font-size: 11px;
  }
}

.l-main .popup-wrap .txt a {
  color: #8AA3D0;
}

@media screen and (max-width: 640px) {
  .l-main .popup-wrap .txt a {
    word-break: break-all;
  }
}

.l-main .popup-wrap .block-txt {
  padding-top: 32px;
  color: #8AA3D0;
}

@media screen and (max-width: 640px) {
  .l-main .popup-wrap .block-txt {
    padding-top: 15px;
  }
}

.l-main .popup-wrap .block-txt dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 640px) {
  .l-main .popup-wrap .block-txt dl {
    font-size: 2.7vw;
  }
}

.l-main .popup .close-popup {
  width: 44px;
  height: 44px;
  position: absolute;
  bottom: 25%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  .l-main .popup .close-popup {
    width: 10vw;
    height: 10vw;
    bottom: 18vw;
  }
}

.l-main .popup .close-popup span {
  display: inline-block;
  width: 44px;
  height: 6px;
  background-color: #8AA3D0;
}

@media screen and (max-width: 640px) {
  .l-main .popup .close-popup span {
    width: 10vw;
    height: 4px;
  }
}

.l-main .popup .close-popup span:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
          transform: translateY(5px) rotate(45deg);
}

@media screen and (max-width: 640px) {
  .l-main .popup .close-popup span:nth-child(1) {
    -webkit-transform: translateY(2px) rotate(45deg);
            transform: translateY(2px) rotate(45deg);
  }
}

.l-main .popup .close-popup span:nth-child(2) {
  -webkit-transform: translateY(-23px) rotate(-45deg);
          transform: translateY(-23px) rotate(-45deg);
}

.l-footer {
  background-image: url(../img/bg-footer.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 144px;
  padding-bottom: 14px;
  position: relative;
}

@media screen and (max-width: 640px) {
  .l-footer {
    padding-top: 65px;
    background-image: url(../img/bg-footer__sp.png);
  }
}

.l-footer .pagetotop {
  position: fixed;
  right: 2%;
  bottom: 170px;
}

@media screen and (max-width: 640px) {
  .l-footer .pagetotop {
    width: 40px;
    bottom: 130px;
  }
}

.l-footer .m-wrapper {
  max-width: 1160px;
  width: 91.25%;
}

@media screen and (max-width: 640px) {
  .l-footer .m-wrapper .logo {
    width: 55%;
  }
}

.l-footer .m-wrapper .info {
  color: #FFFFFF;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.l-footer .m-wrapper .info a {
  color: #FFFFFF;
}

@media screen and (max-width: 640px) {
  .l-footer .m-wrapper .info {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
/*# sourceMappingURL=style.css.map */