@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap");
:root {
  --default-font: 'M PLUS Rounded 1c', sans-serif;
  --default: #333333;
  --green: #90C325;
  --blue: #1BB9EE;
  --thin-blue: #F0F5F8;
  --orange: #F8B62B;
  --gray: #F5F5F5;
}

@media (max-width: 750px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 751px) {
  .sp-only {
    display: none !important;
  }
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--default-font);
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--default);
}

@media (max-width: 750px) {
  body {
    font-size: 1.4rem;
  }
}

p {
  line-height: 1.6;
}

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

a {
  color: var(--blue);
}

.main {
  overflow: hidden;
}

.inner {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1090px;
  margin: auto;
  padding: 0 15px;
}

.center {
  text-align: center;
}

.common-headline01 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 5;
}

@media (max-width: 750px) {
  .common-headline01 {
    font-size: 2.2rem;
  }
}

.common-headline01:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 4px;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--green);
}

.common-headline02 {
  font-size: 2.2rem;
  font-weight: 700;
  display: inline-block;
  padding: 0 23px;
  position: relative;
  margin-bottom: 25px;
  z-index: 5;
}

@media (max-width: 750px) {
  .common-headline02 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.common-headline02:before, .common-headline02:after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background-color: var(--blue);
  border-radius: 100%;
}

.common-headline02:before {
  left: 0;
}

.common-headline02:after {
  right: 0;
}

.g-orange {
  background: transparent -webkit-linear-gradient(359deg, #F8B62B 0%, #E06700 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(91deg, #F8B62B 0%, #E06700 100%) 0% 0% no-repeat padding-box;
}

.g-blue {
  background: transparent -webkit-gradient(linear, left top, right top, from(#1FB9EE), to(#90C325)) 0% 0% no-repeat padding-box;
  background: transparent -webkit-linear-gradient(left, #1FB9EE 0%, #90C325 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #1FB9EE 0%, #90C325 100%) 0% 0% no-repeat padding-box;
}

.btn > * {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 345px;
  width: 100%;
  height: 60px;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  border-radius: 60px;
  -webkit-box-shadow: 0px 0px 8px #3333334D;
          box-shadow: 0px 0px 8px #3333334D;
  position: relative;
  z-index: 1;
}

.btn > *:hover {
  cursor: pointer;
}

.btn > * span {
  display: inline-block;
  padding-left: 33px;
  position: relative;
}

.btn > * span:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}

.btn > *:before {
  position: absolute;
  content: "";
  top: 50%;
  right: 28px;
  width: 8px;
  height: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.btn._demo > * {
  background: transparent -webkit-gradient(linear, left top, right top, from(#1FB9EE), to(#90C325)) 0% 0% no-repeat padding-box;
  background: transparent -webkit-linear-gradient(left, #1FB9EE 0%, #90C325 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #1FB9EE 0%, #90C325 100%) 0% 0% no-repeat padding-box;
}

.btn._demo > * span:before {
  width: 22px;
  height: 22px;
  background-image: url(../images/star.svg);
}

.btn._contact > * {
  background: transparent -webkit-linear-gradient(359deg, #F8B62B 0%, #E06700 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(91deg, #F8B62B 0%, #E06700 100%) 0% 0% no-repeat padding-box;
}

.btn._contact > * span:before {
  width: 22px;
  height: 16px;
  background-image: url(../images/mail.svg);
}

.btn._adop > * {
  background-color: #D0121B;
}

.btn._adop > * span {
  padding-left: 22px;
}

.btn._adop > * span:before {
  width: 17px;
  height: 17px;
  background-image: url(../images/icon_blank.svg);
}

.btn._verification > * {
  background-color: #63C151;
}

.btn._reverse > * {
  background-color: #969696;
}

.btn._reverse > *:before {
  right: auto;
  left: 28px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  z-index: -1;
}

.contact__area {
  background-color: var(--green);
  padding: 34px 15px 30px;
}

@media (max-width: 750px) {
  .contact__area {
    padding: 30px 15px;
  }
}

.contact__area-box {
  background-color: #fff;
  border-radius: 16px;
  padding: 0 26px 6px;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 750px) {
  .contact__area-box {
    padding: 16px 10px 16px;
  }
}

.contact__area-box-inner {
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
}

@media (max-width: 750px) {
  .contact__area-box-inner {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 750px) {
  .contact__area-box-inner ._img {
    margin-bottom: 20px;
  }
}

.contact__area-box-inner ._link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
  height: 90px;
  border-radius: 90px;
  border: solid 4px #fff;
  position: relative;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
}

@media (max-width: 750px) {
  .contact__area-box-inner ._link a {
    font-size: 1.8rem;
    text-align: center;
  }
}

.contact__area-box-inner ._link a:before {
  position: absolute;
  content: "";
  right: 40px;
  top: 50%;
  width: 13px;
  height: 19px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: 13px 19px;
}

.contact__area .note {
  font-size: 1.4rem;
  margin-top: 15px;
}

@media (max-width: 750px) {
  .contact__area .note {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}

.header {
  height: 780px;
  background-image: url(../images/header_pc.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
  position: relative;
}

@media (max-width: 750px) {
  .header {
    height: 181.33vw;
    background-position: left -72vw top 54vw;
    background-size: 306vw;
  }
}

.header:before {
  position: absolute;
  content: "";
  width: 590px;
  height: 460px;
  left: 50%;
  top: calc(100% - 83px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  border-radius: 100%;
}

@media (max-width: 750px) {
  .header:before {
    width: 92vw;
    height: 72vw;
    top: calc(100% - 50px);
  }
}

.header:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F5F6F8;
  left: 0;
  top: 0;
  z-index: -1;
}

.header__menu {
  padding: 18px;
}

@media (max-width: 750px) {
  .header__menu {
    padding: 0;
  }
}

.header__menu.fixed {
  position: fixed;
  width: 100%;
  height: 116px;
  left: 0;
  top: 0;
  z-index: 100;
}

.header__menu.fixed .header__menu-inner {
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}

@media (max-width: 750px) {
  .header__menu.fixed .header__menu-inner {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.header__menu-inner {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  height: 80px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  border-radius: 80px;
  padding: 0 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 750px) {
  .header__menu-inner {
    height: 60px;
    border-radius: 0;
  }
}

@media (max-width: 750px) {
  .header__menu-inner .logo {
    width: 50%;
  }
}

.header__menu-inner .logo a img {
  max-width: 164px;
  width: 100%;
}

.header__menu-inner .header-link {
  min-width: 345px;
}

@media (max-width: 750px) {
  .header__menu-inner .header-link {
    width: 50%;
    min-width: auto;
    text-align: right;
    padding-left: 6px;
  }
}

.header__menu-inner .header-link .btn a {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 750px) {
  .header__menu-inner .header-link .btn a {
    max-width: 140px;
    width: 100%;
    height: 40px;
    font-size: 1.2rem;
    margin-left: auto;
  }
}

@media (max-width: 750px) {
  .header__menu-inner .header-link .btn a:before {
    display: none;
  }
}

.header-content {
  padding: 0 15px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin-top: 116px;
}

@media (max-width: 750px) {
  .header-content {
    margin-top: 60px;
  }
}

.header-content .inner {
  position: relative;
}

.header-content .inner > * {
  position: absolute;
}

.header-content .inner .img01 {
  left: 0;
  top: 61px;
}

@media (max-width: 750px) {
  .header-content .inner .img01 {
    left: 9.8vw;
    top: 26.4vw;
  }
}

@media (max-width: 970px) {
  .header-content .inner .img01 img {
    width: 40.1vw;
  }
}

@media (max-width: 750px) {
  .header-content .inner .img01 img {
    width: calc(100vw - 25.6vw);
  }
}

.header-content .inner .img02 {
  left: 0;
  top: 264px;
}

@media (max-width: 750px) {
  .header-content .inner .img02 {
    left: 0;
    top: 64.8vw;
  }
}

@media (max-width: 970px) {
  .header-content .inner .img02 img {
    width: 40.1vw;
  }
}

@media (max-width: 750px) {
  .header-content .inner .img02 img {
    width: 72vw;
  }
}

.header-content .inner .img03 {
  left: 0;
  top: 388px;
}

@media (max-width: 750px) {
  .header-content .inner .img03 {
    left: 0;
    top: 86.6vw;
  }
}

@media (max-width: 970px) {
  .header-content .inner .img03 img {
    width: 34vw;
  }
}

@media (max-width: 750px) {
  .header-content .inner .img03 img {
    width: 69.3vw;
  }
}

.header-content .inner .img04 {
  right: 0;
  top: 42px;
}

@media (max-width: 750px) {
  .header-content .inner .img04 {
    left: 0;
    top: 0;
    right: auto;
  }
}

@media (max-width: 750px) {
  .header-content .inner .img04 img {
    width: 35.8vw;
  }
}

@media (max-width: 750px) {
  .header-content .inner .img04 img {
    width: calc(100vw - 30px);
  }
}

.header-content .inner .img05 {
  right: 0;
  top: 122px;
  width: 350px;
}

@media (max-width: 750px) {
  .header-content .inner .img05 {
    right: 0;
    top: 95.2vw;
    width: 246px;
  }
}

@media (max-width: 970px) {
  .header-content .inner .img05 img {
    width: 47.52vw;
  }
}

@media (max-width: 750px) {
  .header-content .inner .img05 img {
    width: 100%;
  }
}

.header-content .inner .img06 {
  right: 0;
  top: 62px;
  width: 350px;
}

@media (max-width: 750px) {
  .header-content .inner .img06 {
    left: 0;
    top: 9vw;
  }
}

.header-content .inner .img06 img {
  width: 100%;
}

@media (max-width: 970px) {
  .header-content .inner .img06 img {
    width: 100%;
  }
}

@media (max-width: 750px) {
  .header-content .inner .img06 img {
    width: 100%;
  }
}

.header .demo {
  position: fixed;
  right: 0;
  top: 698px;
  z-index: 50;
}

.header .demo:hover {
  cursor: pointer;
}

@media (max-width: 750px) {
  .header .demo {
    max-width: 200px;
    top: auto;
    bottom: 0;
  }
}

.sec01 {
  margin-bottom: 95px;
}

.sec01 .illust {
  text-align: center;
  background-image: url(../images/dot.svg);
  background-repeat: repeat-x;
  background-position: center;
}

.sec01 .illust-img {
  display: inline-block;
  position: relative;
}

.sec01 .illust-img:before, .sec01 .illust-img:after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
}

.sec01 .illust-img:before {
  background-image: url(../images/parts01_left.svg);
  left: -414px;
  top: 67px;
  width: 216px;
  height: 63px;
}

.sec01 .illust-img:after {
  background-image: url(../images/parts01_right.svg);
  width: 287px;
  height: 85px;
  top: 50px;
  right: -440px;
}

.sec01 .headline {
  text-align: center;
}

.sec01 .headline p {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}

.sec01 .headline p span {
  font-size: 3.2rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(98%, #F8F856), color-stop(0%, transparent));
  background: -webkit-linear-gradient(transparent 70%, #F8F856 98%, transparent 0%);
  background: linear-gradient(transparent 70%, #F8F856 98%, transparent 0%);
  color: var(--default);
}

.sec01 .headline-title {
  font-size: 2.8rem;
  color: var(--green);
  font-weight: 700;
  padding-top: 57px;
  background-image: url(../images/arrow_down.svg);
  background-repeat: no-repeat;
  background-position: center top 23px;
  margin-bottom: 25px;
}

@media (max-width: 750px) {
  .sec01 .headline-title {
    padding-top: 36px;
    background-position: center top 14px;
    margin-bottom: 5px;
  }
}

.sec01 p {
  text-align: center;
  font-weight: 500;
}

@media (max-width: 750px) {
  .sec01 p {
    text-align: left;
  }
}

.sec01 p span {
  color: var(--blue);
}

.sec01 .box {
  background-color: var(--green);
  border-radius: 16px;
  margin-top: 30px;
}

.sec01 .box-inner {
  padding: 50px 58px 60px;
}

@media (max-width: 750px) {
  .sec01 .box-inner {
    padding: 35px 8px;
  }
}

.sec01 .box-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

@media (max-width: 750px) {
  .sec01 .box-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}

.sec01 .pickup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-37px);
          transform: translateY(-37px);
  margin-top: 30px;
  margin-bottom: 60px;
}

@media (max-width: 970px) {
  .sec01 .pickup {
    -webkit-transform: translateY(-3.8vw);
            transform: translateY(-3.8vw);
  }
}

@media (max-width: 750px) {
  .sec01 .pickup {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    text-align: center;
    padding: 35px 0 30px;
    position: relative;
  }
}

.sec01 .pickup-img {
  width: 100px;
}

@media (max-width: 970px) {
  .sec01 .pickup-img {
    width: 10.3vw;
  }
}

@media (max-width: 750px) {
  .sec01 .pickup-img {
    position: absolute;
    width: 37.33vw;
    left: 0;
    top: -22px;
    -webkit-transform: translateY(-5.33vw);
            transform: translateY(-5.33vw);
  }
}

.sec01 .pickup p {
  width: calc(100% - 100px);
  font-size: 2.4rem;
  font-weight: 700;
}

@media (max-width: 970px) {
  .sec01 .pickup p {
    font-size: 2.47vw;
    width: calc(100% - 10.3vw);
  }
}

@media (max-width: 750px) {
  .sec01 .pickup p {
    font-size: 4.8vw;
    text-align: left;
    width: 60%;
    position: absolute;
    right: 0;
    top: -15px;
  }
}

.sec01 .pickup p img {
  max-width: 164px;
  width: 100%;
}

@media (max-width: 970px) {
  .sec01 .pickup p img {
    max-width: 16.9vw;
  }
}

@media (max-width: 750px) {
  .sec01 .pickup p img {
    max-width: 34.6vw;
    margin-top: -1.5%;
    margin-right: 5px;
  }
}

.sec01 .pickup p .wave {
  display: inline-block;
  color: var(--default);
  -webkit-text-decoration: underline wavy var(--orange);
          text-decoration: underline wavy var(--orange);
  padding-bottom: 5px;
  line-height: 1.5;
}

.sec01 .note {
  margin: 45px auto 40px;
  background-color: #F0F5F8;
  padding: 20px;
  font-size: 1.4rem;
  width: 90%;
}

@media (max-width: 750px) {
  .sec01 .note {
    font-size: 1.2rem;
    width: 100%;
  }
}

.sec01 .note ul li a {
  text-decoration: underline;
}

.sec01 .schedule {
  background-color: #F0F5F8;
  padding: 25px 35px 30px;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 750px) {
  .sec01 .schedule {
    padding: 20px;
    font-size: 1.6rem;
  }
}

.sec01 .schedule .simekiri {
  background-color: #6E6E6E;
  padding: 16px;
  position: relative;
  margin-bottom: 15px;
}

.sec01 .schedule .simekiri::after {
  content: "";
  background-image: url(../images/simekiri.png);
  background-size: cover;
  width: 91px;
  height: 91px;
  position: absolute;
  top: -15px;
  right: 50px;
}

@media (max-width: 750px) {
  .sec01 .schedule .simekiri::after {
    top: -10px;
    width: 77px;
    height: 77px;
    right: -20px;
  }
}

@media (max-width: 750px) {
  .sec01 .schedule .simekiri {
    padding: 16px;
  }
}

.sec01 .schedule .uketuketyuu {
  background-color: #fff;
  padding: 16px;
  position: relative;
  color: #D33636;
}

.sec01 .schedule .uketuketyuu::after {
  content: "";
  background-image: url(../images/uketuketyui.png);
  background-size: cover;
  width: 91px;
  height: 91px;
  position: absolute;
  top: -15px;
  right: 50px;
}

@media (max-width: 750px) {
  .sec01 .schedule .uketuketyuu::after {
    top: -10px;
    width: 77px;
    height: 77px;
    right: -20px;
  }
}

@media (max-width: 750px) {
  .sec01 .schedule .uketuketyuu {
    padding: 16px;
  }
}

.sec01 .btn a {
  margin: 0 auto;
}

.sec02 {
  background-color: var(--thin-blue);
  padding-top: 55px;
  position: relative;
  z-index: 1;
}

.sec02:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  left: 0;
  top: -14px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-image: url(../images/wave.svg);
  z-index: -1;
}

.sec02 .headline {
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.sec02 .headline-inner {
  display: inline-block;
  position: relative;
}

@media (max-width: 750px) {
  .sec02 .headline-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.sec02 .headline-inner .sub {
  color: var(--green);
  font-size: 2.2rem;
  padding: 0 10px;
  position: relative;
}

@media (max-width: 750px) {
  .sec02 .headline-inner .sub {
    font-size: 1.6rem;
  }
}

.sec02 .headline-inner .sub:before, .sec02 .headline-inner .sub:after {
  position: absolute;
  content: "";
  width: 3px;
  height: 25px;
  border-radius: 3px;
  background-color: var(--green);
  top: 50%;
}

.sec02 .headline-inner .sub:before {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-15deg);
          transform: translateY(-50%) rotate(-15deg);
}

.sec02 .headline-inner .sub:after {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(15deg);
          transform: translateY(-50%) rotate(15deg);
}

.sec02 .headline-inner p {
  display: inline;
  font-size: 2.8rem;
}

@media (max-width: 750px) {
  .sec02 .headline-inner p {
    font-size: 2.2rem;
    display: inline-block;
    text-align: center;
  }
}

.sec02 .headline-inner p span {
  padding-top: 5px;
  background-position: top left;
  background-repeat: repeat-x;
  background-size: 1em 0.5em;
  background-image: -webkit-radial-gradient(center, circle, #F8B62B 20%, transparent 20%);
  background-image: radial-gradient(circle at center, #F8B62B 20%, transparent 20%);
}

.sec02 .headline-inner img {
  position: absolute;
  left: 100%;
  bottom: 0;
}

@media (max-width: 750px) {
  .sec02 .headline-inner img {
    position: relative;
    left: auto;
    width: 50px;
  }
}

.sec02 .headline-inner .sp-only {
  margin-top: 13px 0 15px;
}

.sec02 .box01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -20px;
  margin-bottom: 40px;
}

@media (max-width: 750px) {
  .sec02 .box01 {
    margin-left: 0;
  }
}

.sec02 .box01 .one {
  padding: 0 20px 20px;
  width: calc((100% / 3) - 20px);
  margin-left: 20px;
  min-height: 269px;
  border-radius: 26px 0 26px 0;
  background-color: #fff;
  text-align: center;
}

@media (max-width: 750px) {
  .sec02 .box01 .one {
    width: 100%;
    margin-left: 0;
    margin-bottom: 13px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 20px;
    min-height: 120px;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.sec02 .box01 .one .img {
  height: 173px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 750px) {
  .sec02 .box01 .one .img {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 90px;
    height: auto;
  }
}

@media (max-width: 750px) {
  .sec02 .box01 .one .text {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: calc(100% - 90px);
    text-align: left;
  }
}

.sec02 .box01 .one .text p {
  font-weight: 700;
}

@media (max-width: 750px) {
  .sec02 .box01 .one .text p {
    font-size: 4.2vw;
  }
}

.sec02 .pickup {
  text-align: center;
  font-weight: 700;
  margin-bottom: 45px;
}

@media (max-width: 750px) {
  .sec02 .pickup {
    margin-bottom: 40px;
  }
}

.sec02 .pickup .sub {
  font-size: 2.8rem;
}

@media (max-width: 750px) {
  .sec02 .pickup .sub {
    font-size: 4.8vw;
  }
}

.sec02 .pickup p {
  font-size: 2.8rem;
}

@media (max-width: 750px) {
  .sec02 .pickup p {
    font-size: 7.4vw;
  }
}

.sec02 .pickup p .green {
  color: var(--green);
}

.sec02 .pickup p .f-l {
  font-size: 3.6rem;
}

@media (max-width: 750px) {
  .sec02 .pickup p .f-l {
    font-size: 9.6vw;
  }
}

.sec02 .pickup p .underline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(#F8F856));
  background: -webkit-linear-gradient(transparent 50%, #F8F856 100%);
  background: linear-gradient(transparent 50%, #F8F856 100%);
}

.sec02 .box02 {
  position: relative;
  z-index: 1;
}

.sec02 .box02:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 50%;
  left: calc(((100vw - 100%) / 2) - (100vw - 100%));
  bottom: 0;
  background-color: #fff;
  z-index: -1;
}

.sec02 .box02-inner {
  background-color: #fff;
  padding: 35px 20px;
  text-align: center;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media (max-width: 750px) {
  .sec02 .box02-inner {
    padding: 30px 2.6vw;
  }
}

@media (max-width: 750px) {
  .sec02 .box02-inner .title {
    padding: 0 2vw;
  }
}

.sec02 .box02-inner .title p {
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 750px) {
  .sec02 .box02-inner .title p {
    display: inline-block;
    font-size: 5.3vw;
    text-align: right;
    letter-spacing: 0;
  }
}

.sec02 .box02-inner .title p span {
  font-size: 2.8rem;
  color: var(--green);
}

@media (max-width: 750px) {
  .sec02 .box02-inner .title p span {
    font-size: 7.4vw;
  }
}

.sec03 {
  padding: 60px 0 100px;
}

@media (max-width: 750px) {
  .sec03 {
    padding: 60px 0 60px;
  }
}

.sec03 .headline {
  margin-bottom: 50px;
}

@media (max-width: 750px) {
  .sec03 .headline {
    margin-bottom: 15px;
  }
}

.sec03 .box01 {
  margin-bottom: 50px;
}

.sec03 .box01 .split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media (max-width: 750px) {
  .sec03 .box01 .split {
    margin-top: 20px;
  }
}

.sec03 .box01 .split .img {
  width: 260px;
}

@media (max-width: 750px) {
  .sec03 .box01 .split .img {
    width: 100%;
    text-align: center;
    margin: 20px 40px 18px;
  }
}

.sec03 .box01 .split .text {
  width: calc(100% - 260px);
  padding-left: 30px;
}

@media (max-width: 750px) {
  .sec03 .box01 .split .text {
    width: 100%;
    padding-left: 0;
  }
}

.sec03 .box02 .split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -38px;
}

@media (max-width: 750px) {
  .sec03 .box02 .split {
    margin-left: 0;
  }
}

.sec03 .box02 .split .one {
  width: calc((100% / 2) - 38px);
  margin-left: 38px;
  margin-bottom: 30px;
}

@media (max-width: 750px) {
  .sec03 .box02 .split .one {
    margin-left: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}

.sec03 .box02 .split .one:last-child {
  margin-bottom: 0;
}

.sec03 .box02 .split .one__title {
  height: 87px;
  color: #fff;
  font-weight: 700;
  border-radius: 26px 0 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}

@media (max-width: 750px) {
  .sec03 .box02 .split .one__title {
    height: auto;
    padding: 15px 10px;
  }
}

.sec03 .box02 .split .one__title .number {
  font-size: 1.8rem;
}

.sec03 .box02 .split .one__title .text {
  font-size: 2rem;
}

@media (max-width: 970px) {
  .sec03 .box02 .split .one__title .text {
    font-size: 1.7rem;
  }
}

@media (max-width: 750px) {
  .sec03 .box02 .split .one__title .text {
    font-size: 5.3vw;
    font-size: 2rem;
  }
}

.sec03 .box02 .split .one__content {
  border-radius: 0 0 26px 0;
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
  padding: 20px;
  min-height: 192px;
}

@media (max-width: 750px) {
  .sec03 .box02 .split .one__content {
    min-height: auto;
  }
}

.sec03 .pickup {
  margin-top: 47px;
}

@media (max-width: 750px) {
  .sec03 .pickup {
    margin-top: 25px;
  }
}

.sec03 .pickup-text {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 750px) {
  .sec03 .pickup-text {
    font-size: 1.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}

.sec03 .pickup-text img {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0 18px;
  max-width: 280px;
}

.sec03 .pickup ._contact {
  margin-top: 60px;
}

@media (max-width: 750px) {
  .sec03 .pickup ._contact {
    margin-top: 30px;
  }
}

.sec03 .pickup ._contact > * {
  margin: 0 auto;
}

.sec03 .pickup .btn-list {
  text-align: center;
  max-width: 715px;
  margin: 60px auto 0;
}

@media (max-width: 750px) {
  .sec03 .pickup .btn-list {
    margin: 30px auto 0;
  }
}

.sec03 .pickup .btn-list-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-left: -25px;
}

@media (max-width: 750px) {
  .sec03 .pickup .btn-list-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
  }
}

.sec03 .pickup .btn-list-inner .btn {
  width: calc((100% / 2) - 25px);
  margin-left: 25px;
}

.sec03 .pickup .btn-list-inner .btn a {
  margin: 0 auto;
}

@media (max-width: 750px) {
  .sec03 .pickup .btn-list-inner .btn {
    margin-left: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}

.sec03 .pickup .btn-list-inner .btn._contact {
  margin-top: 0;
  margin-bottom: 0;
}

.sec04 {
  background-color: var(--green);
  padding: 90px 0 210px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 750px) {
  .sec04 {
    padding: 30px 0 95px;
  }
}

.sec04:before {
  position: absolute;
  content: "";
  width: 1200px;
  height: 1200px;
  border-radius: 100%;
  background-color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(100% - 142px);
}

@media (max-width: 750px) {
  .sec04:before {
    width: 768px;
    height: 768px;
    top: calc(100% - 65px);
  }
}

.sec04 .box {
  background-color: #fff;
  border-radius: 16px;
  padding: 60px 40px;
}

@media (max-width: 750px) {
  .sec04 .box {
    padding: 35px 20px;
  }
}

.sec04 .box .headline {
  text-align: center;
}

.sec04 .box .headline-inner {
  display: inline-block;
  position: relative;
}

.sec04 .box .headline-inner p {
  font-size: 1.8rem;
  margin-top: 15px;
}

@media (max-width: 750px) {
  .sec04 .box .headline-inner p {
    font-size: 1.4rem;
  }
}

@media (min-width: 751px) {
  .sec04 .box .headline-inner .img {
    position: absolute;
    left: calc(100% + 25px);
    top: 50%;
    width: 112px;
    height: 129px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (max-width: 750px) {
  .sec04 .box .headline-inner .img {
    margin-bottom: 20px;
  }
}

.sec04 .box .pickup {
  margin: 15px 0 60px;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  min-height: 154px;
  padding: 30px 0;
}

@media (max-width: 750px) {
  .sec04 .box .pickup {
    padding: 25px;
    margin: 0 0 20px;
  }
}

.sec04 .box .pickup .split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.sec04 .box .pickup .split .img {
  width: 39%;
  padding: 0 20px;
  text-align: center;
}

@media (max-width: 750px) {
  .sec04 .box .pickup .split .img {
    width: 100%;
    margin-bottom: 15px;
  }
}

.sec04 .box .pickup .split .img img {
  max-width: 217px;
  width: 100%;
}

.sec04 .box .pickup .split .text {
  width: 61%;
  padding-right: 30px;
}

@media (max-width: 750px) {
  .sec04 .box .pickup .split .text {
    width: 100%;
    padding: 0 0 0 10px;
  }
}

.sec04 .box .pickup .split .text-list {
  color: var(--orange);
}

.sec04 .box .pickup .split .text-list li {
  list-style-type: disc;
  margin-bottom: 5px;
  font-weight: 500;
}

@media (max-width: 750px) {
  .sec04 .box .pickup .split .text-list li {
    font-size: 1.6rem;
  }
}

.sec04 .box .pickup .split .text-list li span {
  color: var(--default);
}

.sec04 .video {
  position: relative;
}

.sec04 .video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 750px) {
  .sec04 .video-btn {
    width: 38px;
    height: 38px;
    width: 10.13vw;
    height: 10.13vw;
  }
}

.sec04 .video-btn:hover {
  cursor: pointer;
}

.sec04 .video-btn.playActive {
  display: none;
}

.sec04 .video video {
  width: 100%;
  opacity: 0.45;
}

.sec04 .video.active video {
  opacity: 1;
}

.sec05 {
  padding-bottom: 115px;
}

@media (max-width: 750px) {
  .sec05 {
    padding-bottom: 95px;
  }
}

.sec05 .common-headline01 {
  margin-bottom: 35px;
}

.sec05 .box {
  background-color: #fff;
  border-radius: 28px 0 28px 0;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
  padding: 30px 40px 69px;
  margin-bottom: 88px;
  position: relative;
}

@media (max-width: 750px) {
  .sec05 .box {
    padding: 20px 20px 85px;
  }
}

.sec05 .box:last-child {
  margin-bottom: 0;
}

.sec05 .box .split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
}

.sec05 .box .split:before {
  position: absolute;
  content: "";
  width: 39px;
  height: 40px;
  background-image: url(../images/arrow_down2.svg);
  background-repeat: no-repeat;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sec05 .box .split .img {
  width: 27%;
  text-align: right;
  position: relative;
}

.sec05 .box .split .img:before {
  position: absolute;
  content: "";
  width: 95px;
  height: 95px;
  left: 0;
  top: -7px;
  background-repeat: no-repeat;
}

.sec05 .box .split .img._01:before {
  background-image: url(../images/modelcase01.svg);
}

.sec05 .box .split .img._02:before {
  background-image: url(../images/modelcase02.svg);
}

.sec05 .box .split .img._03:before {
  background-image: url(../images/modelcase03.svg);
}

.sec05 .box .split .text {
  width: 73%;
  padding-left: 30px;
}

@media (max-width: 750px) {
  .sec05 .box .split .text {
    width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 750px) {
  .sec05 .box .split .text .group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 750px) {
  .sec05 .box .split .text .group .img {
    width: 136px;
    min-width: 136px;
    padding: 27px 0 0 36px;
  }
}

@media (max-width: 750px) {
  .sec05 .box .split .text .group .img:before {
    width: 80px;
    height: 80px;
    background-size: contain;
  }
}

.sec05 .box .split .text .group .title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 750px) {
  .sec05 .box .split .text .group .title {
    font-size: 1.8rem;
    padding-left: 17px;
  }
}

.sec05 .box .split .text .problem {
  background-color: var(--gray);
  border-radius: 18px;
  padding: 20px 28px;
}

@media (max-width: 750px) {
  .sec05 .box .split .text .problem {
    padding: 20px;
  }
}

.sec05 .box .split .text .problem-title {
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: solid 1px var(--green);
  margin-bottom: 10px;
}

.sec05 .box .split .text .problem .list {
  margin-left: 1em;
}

.sec05 .box .split .text .problem .list li {
  list-style-type: disc;
  color: var(--orange);
  font-size: 1.6rem;
  margin-bottom: 5px;
}

@media (max-width: 750px) {
  .sec05 .box .split .text .problem .list li {
    font-size: 1.4rem;
  }
}

.sec05 .box .split .text .problem .list li span {
  color: var(--default);
}

.sec05 .box .solution {
  position: absolute;
  width: calc(100% - 60px);
  min-height: 58px;
  border-radius: 12px;
  background-color: var(--orange);
  left: 50%;
  bottom: -29px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 750px) {
  .sec05 .box .solution {
    text-align: center;
    width: calc(100% - 40px);
    padding: 12px;
    min-height: 74px;
    bottom: -37px;
  }
}

.sec05 .box .solution > * {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 750px) {
  .sec05 .box .solution > * {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

.sec06 {
  background-color: var(--gray);
  padding: 110px 0 100px;
}

@media (max-width: 750px) {
  .sec06 {
    padding: 50px 0;
  }
}

.sec06 .box {
  margin-top: 47px;
}

.sec06 .box .split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -20px;
}

@media (max-width: 750px) {
  .sec06 .box .split {
    margin-left: 0;
  }
}

.sec06 .box .split .one {
  width: calc((100% / 3) - 20px);
  margin-left: 20px;
}

@media (max-width: 750px) {
  .sec06 .box .split .one {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.sec06 .box .split .one .group {
  text-align: center;
  min-height: 296px;
}

@media (max-width: 750px) {
  .sec06 .box .split .one .group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
    min-height: auto;
  }
}

.sec06 .box .split .one .group .img {
  margin-bottom: 35px;
}

@media (max-width: 750px) {
  .sec06 .box .split .one .group .img {
    width: 100px;
    min-width: 100px;
    margin-bottom: 0;
  }
}

@media (max-width: 750px) {
  .sec06 .box .split .one .group .title {
    padding-left: 20px;
  }
}

.sec06 .box .split .one .group .title > * {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.28;
}

@media (max-width: 750px) {
  .sec06 .box .split .one .group .title > * {
    font-size: 1.8rem;
    text-align: left;
  }
}

.sec07 {
  overflow: hidden;
}

@media (max-width: 750px) {
  .sec07 {
    background-color: var(--gray);
  }
}

.sec07-bk {
  background-image: url(../images/bk02.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
}

.sec07 .common-headline01 {
  margin-bottom: 45px;
}

.sec07 .box01 {
  margin-top: 0;
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}

.sec07 .box01:before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 200%;
  left: calc(((100vw - 100%) / 2) - (100vw - 100%));
  bottom: 75%;
  background-color: var(--gray);
  z-index: -1;
}

.sec07 .box01:after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  left: calc(((100vw - 100%) / 2) - (100vw - 100%) - 137px);
  bottom: -178px;
  background-image: url(../images/bk01.svg);
  background-repeat: no-repeat;
  opacity: 0.06;
  z-index: -2;
}

@media (max-width: 750px) {
  .sec07 .box01:after {
    display: none;
  }
}

.sec07 .box01 .split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -6px;
}

@media (max-width: 750px) {
  .sec07 .box01 .split {
    margin-left: 0;
  }
}

.sec07 .box01 .split .one {
  width: calc((100% / 4) - 6px);
  margin-left: 6px;
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  min-height: 250px;
  padding: 20px;
  margin-bottom: 10px;
}

.sec07 .box01 .split .one.calc3 {
  width: 32.7%;
  padding: 20px 55px;
}

@media (max-width: 750px) {
  .sec07 .box01 .split .one.calc3 {
    width: 100%;
    padding: 10px 15px;
  }
}

@media (max-width: 750px) {
  .sec07 .box01 .split .one {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
    min-height: 80px;
    border-radius: 8px;
    padding: 10px 15px;
    padding: 2.66vw 4vw;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.sec07 .box01 .split .one .group {
  min-height: 105px;
  text-align: center;
}

@media (max-width: 750px) {
  .sec07 .box01 .split .one .group {
    min-height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 43%;
  }
}

.sec07 .box01 .split .one .group .img {
  height: 60px;
}

@media (max-width: 750px) {
  .sec07 .box01 .split .one .group .img {
    height: auto;
    width: 43px;
    width: 11vw;
  }
}

@media (max-width: 750px) {
  .sec07 .box01 .split .one .group .title {
    padding-left: 5px;
    width: calc(100% - 11vw);
  }
}

.sec07 .box01 .split .one .group .title > * {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.sec07 .box01 .split .one .group .title > * span {
  font-size: 1.4rem;
}

@media (max-width: 750px) {
  .sec07 .box01 .split .one .group .title > * {
    font-size: 1.4rem;
    font-size: 3.5vw;
  }
}

@media (max-width: 750px) {
  .sec07 .box01 .split .one .text {
    width: 57%;
    line-height: 1.38;
  }
}

.sec07 .slide01 {
  padding-top: 115px;
}

@media (max-width: 750px) {
  .sec07 .slide01 {
    padding-top: 55px;
  }
}

.sec07 .slide01 .swiper-wrapper .swiper-slide {
  text-align: center;
}

.sec07 .slide01 .swiper-wrapper .swiper-slide .img {
  border-radius: 12px;
}

@media (max-width: 750px) {
  .sec07 .slide01 .swiper-wrapper .swiper-slide .img {
    padding: 0 35px;
  }
}

.sec07 .slide01 .swiper-wrapper .swiper-slide span {
  font-size: 1.8rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 26px;
}

@media (max-width: 750px) {
  .sec07 .slide01 .swiper-wrapper .swiper-slide span {
    margin-top: 18px;
  }
}

.sec07 .slide01 .swiper-button {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 100%;
}

.sec07 .slide01 .swiper-button:after {
  display: none;
}

.sec07 .slide01 .swiper-button-next {
  background-image: url(../images/arrow_right.svg);
  right: calc((100% / 3) - 25px);
}

@media (max-width: 750px) {
  .sec07 .slide01 .swiper-button-next {
    right: calc((50% - 130px) - 40px);
  }
}

@media (max-width: 400px) {
  .sec07 .slide01 .swiper-button-next {
    right: 0;
  }
}

.sec07 .slide01 .swiper-button-prev {
  background-image: url(../images/arrow_left.svg);
  left: calc((100% / 3) - 25px);
}

@media (max-width: 750px) {
  .sec07 .slide01 .swiper-button-prev {
    left: calc((50% - 130px) - 40px);
  }
}

@media (max-width: 400px) {
  .sec07 .slide01 .swiper-button-prev {
    left: 0;
  }
}

.sec07 .slide01 .swiper-button:after {
  z-index: 100;
}

.sec07 .slide02 {
  margin: 80px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 115px;
}

@media (max-width: 750px) {
  .sec07 .slide02 {
    margin: 45px auto 0;
    padding-bottom: 60px;
  }
}

.sec07 .slide02-inner {
  width: 2250px;
}

@media (max-width: 750px) {
  .sec07 .slide02-inner {
    max-width: 100%;
    padding: 0 15px;
  }
}

.sec07 .slide02 .swiper .swiper-wrapper .swiper-slide {
  text-align: center;
}

.sec07 .slide02 .swiper .swiper-wrapper .swiper-slide .img {
  border-radius: 12px;
}

.sec07 .slide02 .swiper .swiper-wrapper .swiper-slide span {
  font-size: 1.8rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 26px;
}

@media (max-width: 750px) {
  .sec07 .slide02 .swiper .swiper-wrapper .swiper-slide span {
    margin-top: 18px;
  }
}

.sec07 .slide02 .swiper .swiper-button {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 100%;
  z-index: 100;
}

.sec07 .slide02 .swiper .swiper-button-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  -webkit-transform: translateY(-9px);
          transform: translateY(-9px);
  z-index: 1;
}

.sec07 .slide02 .swiper .swiper-button > * {
  z-index: 100;
}

.sec07 .slide02 .swiper .swiper-button:after {
  display: none;
}

.sec07 .slide02 .swiper .swiper-button-next {
  background-image: url(../images/arrow_right.svg);
  right: 0;
}

.sec07 .slide02 .swiper .swiper-button-prev {
  background-image: url(../images/arrow_left.svg);
  left: 0;
}

.sec08 {
  background-color: var(--gray);
  padding: 80px 0 60px;
}

@media (max-width: 750px) {
  .sec08 {
    padding: 60px 0;
  }
}

.sec08 .inner._only {
  max-width: 1090px;
}

.sec08 .common-headline01 {
  margin-bottom: 35px;
}

.sec08 .box01 {
  margin-top: 30px;
}

@media (max-width: 750px) {
  .sec08 .box01 {
    margin-top: 0;
  }
}

.sec08 .box01 .split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -20px;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split {
    margin-left: -1.78vw;
  }
}

@media (max-width: 750px) {
  .sec08 .box01 .split {
    margin-left: 0;
  }
}

.sec08 .box01 .split .one {
  width: calc((100% / 4) - 13px);
  margin-left: 13px;
  border-radius: 12px;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one {
    margin-left: 1.2vw;
    width: calc((100% / 4) - 1.2vw);
  }
}

@media (max-width: 750px) {
  .sec08 .box01 .split .one {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.sec08 .box01 .split .one:last-child {
  margin-bottom: 0;
}

.sec08 .box01 .split .one-title {
  padding: 0;
  line-height: 1;
  text-align: center;
  position: relative;
  height: 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sec08 .box01 .split .one-title img {
  max-width: 220px;
  position: absolute;
  left: 50%;
  top: -54px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sec08 .box01 .split .one-title span {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one-title span {
    font-size: 2.32vw;
  }
}

.sec08 .box01 .split .one .content {
  background-color: #fff;
  border-radius: 0 0 12px 12px;
  margin: 0 2px 2px;
  padding: 20px 20px 0;
  min-height: 590px;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one .content {
    padding: 33px 1.78vw 0;
  }
}

@media (max-width: 750px) {
  .sec08 .box01 .split .one .content {
    min-height: auto;
    padding-bottom: 30px;
  }
}

.sec08 .box01 .split .one .content-headline {
  text-align: center;
  border-bottom: 1px solid #C7C7C7;
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.sec08 .box01 .split .one .content-headline .free {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  width: 180px;
  height: 40px;
  border-radius: 40px;
  background-color: #F27BA3;
  margin: 0 auto 14px;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one .content-headline .free {
    font-size: 1.6vw;
  }
}

.sec08 .box01 .split .one .content-headline .price {
  font-weight: 700;
  font-size: 1.6rem;
  min-height: 75px;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one .content-headline .price {
    font-size: 1.42vw;
  }
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one .content-headline .price {
    font-size: 1.42vw;
  }
}

.sec08 .box01 .split .one .content-headline .price .f-color-orange {
  color: var(--orange);
}

.sec08 .box01 .split .one .content-headline .price .f-size-s {
  font-size: 1.6rem;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one .content-headline .price .f-size-s {
    font-size: 1.6vw;
  }
}

.sec08 .box01 .split .one .content-headline .price .f-size-l {
  font-size: 3rem;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one .content-headline .price .f-size-l {
    font-size: 2.67vw;
  }
}

.sec08 .box01 .split .one .content-headline .price .f-ray {
  text-decoration: line-through;
}

.sec08 .box01 .split .one .content-headline .price small {
  font-size: 1rem;
}

.sec08 .box01 .split .one .content-list li {
  border-bottom: solid 1px #F0F5F8;
  letter-spacing: 0;
  border-bottom: 1px solid #C7C7C7;
  padding-bottom: 18px;
  margin-bottom: 18px;
  text-align: center;
  font-size: 1.6rem;
}

.sec08 .box01 .split .one .content-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one .content-list li {
    padding: 0.98vw 0;
  }
}

.sec08 .box01 .split .one .content-list li .f-color {
  color: #868686;
}

.sec08 .box01 .split .one .content-list li .pr {
  padding-right: 5px;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one .content-list li .pr {
    padding-right: 1.33vw;
  }
}

.sec08 .box01 .split .one .content-list li .f-color-red {
  color: #F8B62B;
}

.sec08 .box01 .split .one .content-list li .f-size-s {
  font-size: 1.4rem;
  font-weight: 700;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one .content-list li .f-size-s {
    font-size: 1.25vw;
  }
}

.sec08 .box01 .split .one .content-list li .f-size-m {
  font-size: 1.7rem;
  font-weight: 700;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one .content-list li .f-size-m {
    font-size: 1.51vw;
  }
}

.sec08 .box01 .split .one .content-list li .f-size-l {
  font-size: 2.4rem;
  font-weight: 700;
}

@media (max-width: 1120px) and (min-width: 751px) {
  .sec08 .box01 .split .one .content-list li .f-size-l {
    font-size: 2.14vw;
  }
}

.sec08 .box01 .split .one._01 {
  background-color: var(--green);
}

.sec08 .box01 .split .one._02 {
  background: #F8B62B;
}

.sec08 .box01 .split .one._03 {
  background-color: #1FB9EE;
}

.sec08 .box01 .split .one._04 {
  background-color: #F27BA3;
}

.sec08 .note {
  text-align: left;
  margin-top: 40px;
}

@media (max-width: 750px) {
  .sec08 .note {
    margin-top: 20px;
  }
}

.sec08 .note-list li {
  font-size: 1.4rem;
}

@media (max-width: 750px) {
  .sec08 .note-list li {
    font-size: 1.2rem;
    padding-left: 2.6em;
    text-indent: -2.6em;
  }
  .sec08 .note-list li.last {
    padding-left: 3.6em;
    text-indent: -3.6em;
  }
}

.sec08 .note-list li span {
  color: #DB6F5E;
}

.sec08 .plus {
  text-align: center;
  margin: 30px 0 30px;
}

@media (max-width: 750px) {
  .sec08 .plus {
    margin: 25px 0 20px;
  }
}

.sec08 .box02 {
  background-color: #fff;
  padding: 30px 60px 15px;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media (max-width: 750px) {
  .sec08 .box02 {
    padding: 35px 20px 25px;
  }
}

.sec08 .box02 .title p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 750px) {
  .sec08 .box02 .title p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1;
    margin-bottom: 10px;
  }
}

.sec08 .box02 .title p .common-headline02 {
  margin-bottom: 0;
}

.sec08 .box02 .title p .f-small {
  font-size: 1.4rem;
}

@media (max-width: 750px) {
  .sec08 .box02 .title p .f-small {
    font-size: 1.2rem;
  }
}

.sec08 .box02 .content-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  border-bottom: solid 1px #868686;
  padding: 15px 0;
}

@media (max-width: 750px) {
  .sec08 .box02 .content-list li {
    border-bottom-color: #868686;
  }
}

.sec08 .box02 .content-list li:last-child {
  border-bottom: none;
}

.sec08 .box02 .content-list li .list-name {
  width: 41%;
  font-weight: 700;
}

@media (max-width: 750px) {
  .sec08 .box02 .content-list li .list-name {
    width: 55%;
  }
}

.sec08 .box02 .content-list li .list-text {
  width: 59%;
}

@media (max-width: 750px) {
  .sec08 .box02 .content-list li .list-text {
    width: 45%;
  }
}

.sec08 .box02 .content .box02-note {
  text-align: right;
  font-size: 1.4rem;
}

@media (max-width: 750px) {
  .sec08 .box02 .content .box02-note {
    font-size: 1.2rem;
  }
}

.sec08 .sec08-img {
  width: 525px;
  margin: 50px auto 0;
}

@media (max-width: 750px) {
  .sec08 .sec08-img {
    width: 246px;
    margin: 25px auto 0;
  }
}

.sec08 .box03 {
  background-color: #fff;
  padding: 30px 60px 15px;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media (max-width: 750px) {
  .sec08 .box03 {
    padding: 35px 20px 35px;
  }
}

.sec08 .box03 .title {
  text-align: center;
}

.sec08 .box03 .title p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 750px) {
  .sec08 .box03 .title p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1;
    margin-bottom: 10px;
  }
}

.sec08 .box03 .title p .common-headline02 {
  margin-bottom: 0;
}

.sec08 .box03 .title p .f-small {
  font-size: 1.4rem;
}

@media (max-width: 750px) {
  .sec08 .box03 .title p .f-small {
    font-size: 1.2rem;
  }
}

.sec08 .box03 .lead {
  font-size: 1.6rem;
  line-height: 3.2rem;
  text-align: center;
  margin: 20px 0 35px;
}

.sec08 .box03 .lead span {
  color: #F27BA3;
  font-weight: bold;
}

.sec08 .box03 .box03-img {
  margin: 30px 0;
}

@media (max-width: 750px) {
  .sec08 .box03 .box03-img {
    margin: 20px 0;
  }
}

.sec08 .box03 .push {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.sec08 .box03 .push span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(#F8F856));
  background: -webkit-linear-gradient(transparent 50%, #F8F856 100%);
  background: linear-gradient(transparent 50%, #F8F856 100%);
}

@media (max-width: 750px) {
  .sec08 .box03 .push {
    margin-bottom: 0;
  }
}

.sec08 .box03-note {
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: center;
  margin: 30px 0;
}

.sec08 .box03-note span {
  color: #DB6F5E;
}

@media (max-width: 750px) {
  .sec08 .box03-note {
    font-size: 1.2rem;
    line-height: 1.7rem;
    margin: 20px auto;
    text-align: left;
    width: 90%;
  }
}

.sec09 {
  padding: 120px 0 130px;
}

@media (max-width: 750px) {
  .sec09 {
    padding: 60px 0 60px;
  }
}

.sec09 .inner .common-headline01 {
  margin-bottom: 20px;
}

.sec10 {
  background-color: var(--orange);
  padding: 120px 0 74px;
}

@media (max-width: 750px) {
  .sec10 {
    padding: 60px 0;
  }
}

.sec10 .inner {
  max-width: 1120px;
}

.sec10 .box {
  width: 100%;
  padding: 60px 90px;
  background-color: #fff;
  border-radius: 26px;
}

@media (max-width: 750px) {
  .sec10 .box {
    border-radius: 16px;
    padding: 60px 15px 30px;
  }
}

.sec10 .box .common-headline01 {
  margin-bottom: 40px;
}

.sec10 .box .one {
  margin-bottom: 40px;
}

@media (max-width: 750px) {
  .sec10 .box .one {
    margin-bottom: 9px;
  }
}

.sec10 .box .one .question {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding: 0 30px;
  position: relative;
}

@media (max-width: 750px) {
  .sec10 .box .one .question {
    padding: 0 12px;
  }
}

.sec10 .box .one .question:before, .sec10 .box .one .question:after {
  position: absolute;
  content: "";
  background-color: var(--orange);
  border-radius: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.sec10 .box .one .question:before {
  right: 30px;
  top: 40px;
  width: 14px;
  height: 2px;
}

@media (max-width: 750px) {
  .sec10 .box .one .question:before {
    right: 12px;
    top: 34px;
  }
}

.sec10 .box .one .question:after {
  top: 34px;
  right: 36px;
  width: 2px;
  height: 14px;
}

@media (max-width: 750px) {
  .sec10 .box .one .question:after {
    right: 18px;
    top: 28px;
  }
}

.sec10 .box .one .question.active:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sec10 .box .one .question.active:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sec10 .box .one .question .q {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.86;
  padding: 24px 24px 24px 45px;
  position: relative;
}

@media (max-width: 750px) {
  .sec10 .box .one .question .q {
    font-size: 1.6rem;
    padding: 21px 21px 21px 45px;
  }
}

.sec10 .box .one .question .q:hover {
  cursor: pointer;
}

.sec10 .box .one .question .q:before, .sec10 .box .one .question .q:after {
  position: absolute;
  content: "";
  top: 50%;
  width: 39px;
  height: 39px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 100%;
}

.sec10 .box .one .question .q:before {
  background-color: var(--orange);
}

.sec10 .box .one .question .q:after {
  background-image: url(../images/q.svg);
  background-repeat: no-repeat;
  background-position: center top;
}

.sec10 .box .one .question .a {
  display: none;
  font-size: 1.6rem;
  padding: 24px 0 24px 45px;
  border-top: solid 1px #F0F5F8;
}

@media (max-width: 750px) {
  .sec10 .box .one .question .a {
    font-size: 1.4rem;
    padding: 21px 10px 21px 45px;
  }
}

.sec10 .box .one .question .a-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 15px 0;
}

.sec10 .box .one .question .a-list {
  margin-bottom: 20px;
}

.sec10 .box .one .question .a-list li {
  list-style-type: disc;
  color: var(--orange);
  margin-left: 1em;
}

.sec10 .box .one .question .a-list li span {
  color: var(--default);
}

.sec10 .box .one .question .a p {
  position: relative;
}

.sec10 .box .one .question .a p:first-child:before {
  position: absolute;
  content: "";
  left: -45px;
  top: -8px;
  width: 39px;
  height: 39px;
  background-image: url(../images/a.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.sec11 {
  background-color: #F5F5F5;
  padding: 90px 0;
}

@media (max-width: 750px) {
  .sec11 {
    padding: 60px 0;
  }
}

.sec11 .headline {
  text-align: center;
  margin-bottom: 50px;
}

.sec11 .headline-inner {
  display: inline-block;
  position: relative;
}

.sec11 .headline-inner .illust {
  position: absolute;
  right: -143px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sec11 .box01 {
  padding: 30px 40px;
  background-color: #fff;
  border-radius: 8px;
  min-height: 182px;
  margin-bottom: 50px;
}

@media (max-width: 750px) {
  .sec11 .box01 {
    padding: 0 20px 5px;
  }
}

.sec11 .box01 .split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media (max-width: 750px) {
  .sec11 .box01 .split {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}

.sec11 .box01 .split .img {
  width: 188px;
}

@media (max-width: 750px) {
  .sec11 .box01 .split .img {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 20px;
  }
}

.sec11 .box01 .split .img .adop {
  max-width: 150px;
}

@media (max-width: 750px) {
  .sec11 .box01 .split .img .adop {
    max-width: 100px;
  }
}

.sec11 .box01 .split .text {
  width: calc(100% - 188px);
}

@media (max-width: 750px) {
  .sec11 .box01 .split .text {
    width: 100%;
    text-align: center;
  }
}

.sec11 .box01 .split .text .common-headline02 {
  margin-bottom: 10px;
}

@media (max-width: 750px) {
  .sec11 .box01 .split .text p {
    text-align: left;
  }
}

.sec11 .box02 {
  margin-top: 50px;
  margin-bottom: 30px;
}

@media (max-width: 750px) {
  .sec11 .box02 {
    margin-bottom: 0;
    margin-top: 20px;
  }
}

.sec11 .box02 .split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -30px;
}

@media (max-width: 750px) {
  .sec11 .box02 .split {
    margin-left: 0;
  }
}

.sec11 .box02 .split .one {
  width: calc((100% / 2) - 30px);
  margin-left: 30px;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  min-height: 213px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}

@media (max-width: 750px) {
  .sec11 .box02 .split .one {
    margin-left: 0;
    width: 100%;
    min-height: 140px;
    margin-bottom: 10px;
    padding: 20px;
  }
}

@media (max-width: 750px) {
  .sec11 .box02 .split .one:last-child {
    margin-bottom: 0;
  }
}

.sec11 .box02 .split .one .common-headline02 {
  margin-bottom: 10px;
}

@media (max-width: 750px) {
  .sec11 .box02 .split .one p {
    line-height: 1.4;
  }
}

.sec11 .btn {
  margin-top: 60px;
  margin-top: 20px;
}

.sec11 .btn a {
  margin: 0 auto;
}

.sec12 {
  padding: 100px 0 80px;
}

@media (max-width: 750px) {
  .sec12 {
    padding: 60px 0;
  }
}

.sec12 .inner._only {
  max-width: 1090px;
}

.sec12 .common-headline01 {
  margin-bottom: 35px;
}

.sec12 .sec12-img {
  width: 1080px;
  text-align: center;
  margin: 40px auto 40px;
}

@media (max-width: 750px) {
  .sec12 .sec12-img {
    margin: 30px auto 30px;
    width: 100%;
  }
}

.sec12 .btn-list {
  text-align: center;
  max-width: 715px;
  margin: 60px auto 0;
}

@media (max-width: 750px) {
  .sec12 .btn-list {
    margin: 30px auto 0;
  }
}

.sec12 .btn-list-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-left: -25px;
}

@media (max-width: 750px) {
  .sec12 .btn-list-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
  }
}

.sec12 .btn-list-inner .btn {
  width: calc((100% / 2) - 25px);
  margin-left: 25px;
}

.sec12 .btn-list-inner .btn a {
  margin: 0 auto;
}

@media (max-width: 750px) {
  .sec12 .btn-list-inner .btn {
    margin-left: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}

.sec12 .btn-list-inner .btn._contact {
  margin-top: 0;
  margin-bottom: 0;
}

.sec12 .sec12-text1 {
  font-size: 1.8rem;
  text-align: center;
}

.sec12 .sec12-text1 a {
  color: #F8B62B;
}

[v-cloak] {
  display: none;
}

.page-contact .header {
  height: 116px;
}

@media (max-width: 750px) {
  .page-contact .header {
    height: 60px;
  }
}

.page-contact .header:before {
  display: none;
}

.thanks {
  padding: 80px 0;
}

.contact-form {
  background-color: #EAFAF7;
  padding: 80px 0;
}

.contact-form .headline {
  margin-bottom: 30px;
}

.contact-form .headline .common-headline01 {
  margin-bottom: 20px;
}

.contact-form .headline p {
  text-align: center;
}

.contact-form .form .error_list {
  border: solid 1px var(--blue);
  border-radius: 4px;
  font-size: 1.4rem;
  padding: 10px;
  font-weight: 700;
  margin: 0 auto 10px;
  background-color: #fff;
  width: 100%;
}

.contact-form .form__one {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border-bottom: solid 1px #DDDDDD;
}

.contact-form .form__one-label {
  width: 290px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 25px 30px;
  background-color: #63C151;
}

@media (max-width: 750px) {
  .contact-form .form__one-label {
    width: 100%;
    padding: 10px;
  }
}

.contact-form .form__one-label.mandatory {
  position: relative;
}

.contact-form .form__one-label.mandatory:before, .contact-form .form__one-label.mandatory:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 22px;
}

.contact-form .form__one-label.mandatory:before {
  background-color: #fff;
}

.contact-form .form__one-label.mandatory:after {
  content: "必須";
  color: red;
  font-size: 1.3rem;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-form .form__one-label label {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
}

.contact-form .form__one-input {
  width: calc(100% - 290px);
  background-color: #fff;
  padding: 15px 30px;
}

@media (max-width: 750px) {
  .contact-form .form__one-input {
    width: 100%;
    padding: 15px;
  }
}

.contact-form .form__one-input input,
.contact-form .form__one-input textarea {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  border: solid 1px #ccc;
  padding: 5px 10px;
}

@media (max-width: 750px) {
  .contact-form .form__one-input input,
  .contact-form .form__one-input textarea {
    padding: 10px;
  }
}

.contact-form .form__one-input input.error,
.contact-form .form__one-input textarea.error {
  background-color: #ffe9ed !important;
}

.contact-form .form__one-input textarea {
  padding: 10px;
}

.contact-form .form__one-input .space {
  white-space: break-spaces;
}

.contact-form .form .note {
  text-align: center;
  margin-top: 15px;
}

.contact-form .form .checks {
  margin: 20px 0;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-form .form .checks label:hover {
  cursor: pointer;
}

.contact-form .form .link {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form .form .link a:hover {
  text-decoration: underline;
}

.contact-form .form ._verification > * {
  margin: 0 auto;
}

.contact-form .form ._verification > *:hover {
  cursor: pointer;
}

.contact-form .btn > * {
  margin: 0 auto;
}

.contact-form .btn-list {
  max-width: 715px;
  margin: 30px auto 0;
}

.contact-form .btn-list-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-left: -25px;
}

@media (max-width: 750px) {
  .contact-form .btn-list-inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-left: 0;
  }
}

.contact-form .btn-list-inner > * {
  width: calc((100% / 2) - 25px);
  margin-left: 25px;
}

@media (max-width: 750px) {
  .contact-form .btn-list-inner > * {
    width: 100%;
    margin-left: 0;
  }
}

.contact-form .btn-list ._reverse {
  margin-bottom: 20px;
}

.footer {
  padding: 60px 0 185px;
  position: relative;
}

@media (max-width: 750px) {
  .footer {
    padding: 85px 0 130px;
  }
}

.footer .page-top {
  position: absolute;
  right: 46px;
  top: 40px;
}

.footer .page-top:hover {
  cursor: pointer;
}

@media (max-width: 750px) {
  .footer .page-top {
    right: 15px;
    top: 30px;
  }
}

.footer .box .split {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media (max-width: 750px) {
  .footer .box .split {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.footer .box .split > * {
  width: calc((100% / 3) - 0px);
}

@media (max-width: 750px) {
  .footer .box .split > * {
    width: 100%;
  }
}

.footer .box .split ._left .logo {
  max-width: 164px;
  margin-bottom: 30px;
}

.footer .box .split ._center {
  padding-left: 40px;
}

@media (max-width: 750px) {
  .footer .box .split ._center {
    margin-bottom: 30px;
  }
}

.footer .box .split ._center a {
  padding-left: 20px;
  color: var(--default);
  position: relative;
}

.footer .box .split ._center a:hover {
  text-decoration: underline;
}

.footer .box .split ._center a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #1FB9EE;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer .box .split ._center .address {
  padding-left: 20px;
  margin-top: 10px;
}

.footer .box .split ._right {
  padding-left: 40px;
}

.footer .box .split ._right a {
  position: relative;
  color: var(--default);
  padding-left: 20px;
}

.footer .box .split ._right a:hover {
  text-decoration: underline;
}

.footer .box .split ._right a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #1FB9EE;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer .box .split .center {
  margin-top: 60px;
}

@media (max-width: 750px) {
  .footer .box .split .center .btn a {
    margin: 0 auto;
  }
}

.footer .copy {
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 750px) {
  .footer .copy {
    margin-top: 60px;
  }
}

.footer .copy small {
  font-size: 1.4rem;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

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

.popup-inner .box {
  padding: 70px 40px 40px;
  background-color: #fff;
  text-align: center;
  position: relative;
}

@media (max-width: 750px) {
  .popup-inner .box {
    padding: 40px 20px 20px;
  }
}

.popup-inner .box-close {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 15px;
  right: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 750px) {
  .popup-inner .box-close {
    width: 22px;
    height: 22px;
  }
}

.popup-inner .box-close:hover {
  cursor: pointer;
}

.popup-inner .box-close:before, .popup-inner .box-close:after {
  position: absolute;
  content: "";
  background-color: #000;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.popup-inner .box-close:before {
  width: 100%;
  height: 4px;
}

@media (max-width: 750px) {
  .popup-inner .box-close:before {
    height: 3px;
  }
}

.popup-inner .box-close:after {
  width: 4px;
  height: 100%;
}

@media (max-width: 750px) {
  .popup-inner .box-close:after {
    width: 3px;
  }
}

.popup-inner .box-headline {
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
}

@media (max-width: 750px) {
  .popup-inner .box-headline {
    font-size: 2rem;
  }
}

.popup-inner .box-headline:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background-color: #1BB9EE;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.popup-inner .box-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 20px;
}

@media (max-width: 750px) {
  .popup-inner .box-text {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
/*# sourceMappingURL=style.css.map */