@charset "UTF-8";
/*
$over-md: $md + 1px;
$over-sm: $sm + 1px;
$over-sp: $sp + 1px;
@mixin mx {
    @media screen and (max-width: $mx) {
        @content;
    }
}
@mixin lg {
    @media screen and (max-width: $lg) {
        @content;
    }
}
@mixin over-md {
    @media screen and (min-width: $over-md) {
        @content;
    }
}
@mixin md {
    @media screen and (max-width: $md) {
        @content;
    }
}
@mixin over-sm {
    @media screen and (min-width: $over-sm) {
        @content;
    }
}
@mixin sm {
    @media screen and (max-width: $sm) {
        @content;
    }
}
@mixin over-sp {
    @media screen and (min-width: $over-sp) {
        @content;
    }
}
*/
/*	Reset
-------------------------------------------------------- */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

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

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  width: 100%;
}

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

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

input, textarea, select {
  font-family: inherit;
}

textarea {
  resize: vertical;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=text], input[type=number], input[type=tel], input[type=email], textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  color: currentColor;
}

input[type=submit], input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}
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;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #caccd6;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #caccd6;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #caccd6;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #caccd6;
}

input::placeholder, textarea::placeholder {
  color: #caccd6;
}

/*	共通設定
-------------------------------------------------------- */
html {
  font-size: 62.5%;
  overflow-x: auto;
}
html.is-fixed {
  overflow-x: visible;
}

body {
  background-color: #fff;
  color: #111;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Verdana", "Helvetica", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
}
body.is-fixed {
  position: fixed;
  width: 100vw;
  height: 100vh;
}

.container-padding {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

[class*=__container] {
  margin-left: auto;
  margin-right: auto;
}

.main {
  min-width: 1240px;
}
@media screen and (max-width: 600px) {
  .main {
    min-width: auto;
  }
}

.bg {
  background: #FBFBF9;
}

.page-h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 70px;
}
@media screen and (max-width: 600px) {
  .page-h2 {
    margin-bottom: 50px;
  }
}
.page-h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #FF3D00;
}
.page-h2 .en {
  margin-bottom: -10px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 600px) {
  .page-h2 .en {
    margin-bottom: -5px;
  }
}
@media screen and (max-width: 600px) {
  .page-h2 .en img {
    height: 70px;
    width: auto;
  }
}
.page-h2 .title {
  position: relative;
  font-size: 3.6rem;
  font-weight: 700;
  color: #FF3D00;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .page-h2 .title {
    font-size: 2.4rem;
  }
}
.page-h2 .title span {
  display: inline-block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.page-h2.start::after {
  -webkit-animation: h2-line 1.5s ease 0.3s 1 forwards;
          animation: h2-line 1.5s ease 0.3s 1 forwards;
}
@media screen and (max-width: 600px) {
  .page-h2.start::after {
    -webkit-animation: h2-line 0.7s ease 0.3s 1 forwards;
            animation: h2-line 0.7s ease 0.3s 1 forwards;
  }
}
.page-h2.start .en {
  opacity: 1;
}
.page-h2.start .title span {
  -webkit-animation: h2-title 0.8s ease 0.7s 1 forwards;
          animation: h2-title 0.8s ease 0.7s 1 forwards;
}
.page-h2.color::after {
  background: #15BC7F;
}
.page-h2.color .title {
  color: #15BC7F;
}

@-webkit-keyframes h2-line {
  from {
    width: 0;
  }
  to {
    width: 100vw;
  }
}

@keyframes h2-line {
  from {
    width: 0;
  }
  to {
    width: 100vw;
  }
}
@-webkit-keyframes h2-title {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes h2-title {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.link-btn01, .input-btn01, .input-btn02 {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 400px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #15BC7F;
  border: none;
  border-radius: 50px;
  padding: 20px 0;
}
@media screen and (max-width: 600px) {
  .link-btn01, .input-btn01, .input-btn02 {
    font-size: 1.8rem;
    max-width: 300px;
  }
}

.input-btn01, .input-btn02 {
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.input-btn01:hover, .input-btn02:hover {
  opacity: 0.7;
}
.input-btn01:disabled, .input-btn02:disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: default;
}

.input-btn02 {
  background: #999;
}

.br-u-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .br-u-sp {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .br-o-sp {
    display: none;
  }
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}
.fade.start {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li {
  margin: 0 6px;
}

.slick-dots li button:before {
  font-size: 16px;
}

.slick-prev, .slick-next {
  width: 50px;
  height: 50px;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-prev:before, .slick-next:before {
  font-size: 50px;
  color: #333;
}
@media screen and (max-width: 600px) {
  .slick-prev:before, .slick-next:before {
    font-size: 40px;
  }
}

/*	ヘッダー
-------------------------------------------------------- */
.header__cta {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10000;
  padding-right: 20px;
}
@media screen and (max-width: 600px) {
  .header__cta {
    width: 100%;
    padding-right: 0;
  }
}
.header__cta .btn {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
  height: 80px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  background: #007047;
  border-radius: 20px 20px 0 0;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .header__cta .btn {
    width: 100%;
    height: 50px;
    font-size: 1.8rem;
  }
}

/*	フッター
-------------------------------------------------------- */
.footer {
  background: #15BC7F;
}
.footer__container {
  text-align: center;
  color: #fff;
  padding: 60px 0 40px;
}
@media screen and (max-width: 600px) {
  .footer__container {
    padding: 60px 0 70px;
  }
}
.footer__logo {
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .footer__logo img {
    width: 250px;
  }
}
.footer-line {
  margin-bottom: 40px;
}
.footer-line__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-line__image {
  margin-bottom: 10px;
}
.footer-line__text {
  font-size: 1.4rem;
}
.footer__text {
  font-size: 1.2rem;
  margin-bottom: 40px;
}
.footer__text a {
  text-decoration: underline;
}
.footer__text a:hover {
  text-decoration: none;
}
.footer__copyright {
  font-size: 1.2rem;
}

/*	TOPページ
-------------------------------------------------------- */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .flex {
    display: block;
  }
}
.flex__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.7%;
      -ms-flex: 0 0 41.7%;
          flex: 0 0 41.7%;
  max-width: 500px;
}
@media screen and (max-width: 600px) {
  .flex__image {
    margin: 0 auto 20px;
  }
}
.flex__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flex.is-left .flex__text {
  padding-left: 60px;
}
@media screen and (max-width: 600px) {
  .flex.is-left .flex__text {
    padding-left: 0;
  }
}
.flex.is-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.flex.is-right .flex__text {
  padding-right: 60px;
}
@media screen and (max-width: 600px) {
  .flex.is-right .flex__text {
    padding-right: 0;
  }
}

.mv {
  background: #F3FFFB;
  border-top: 10px solid #15BC7F;
}
@media screen and (max-width: 600px) {
  .mv {
    background: #F3FFFB;
  }
}
.mv__container {
  position: relative;
}
.mv__text {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 40px 40px 80px;
  margin-inline: auto;
  -webkit-transition: opacity ease-in-out 0.7s;
  transition: opacity ease-in-out 0.7s;
}
@media screen and (max-width: 600px) {
  .mv__text {
    padding: 30px 0 0;
  }
}
.mv__text .logo {
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
@media screen and (max-width: 600px) {
  .mv__text .logo {
    max-width: 200px;
    margin: 0 auto 40px;
  }
}
.mv__text .logo.start {
  opacity: 1;
}
.mv__text .title {
  position: relative;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #15BC7F;
  margin-bottom: 40px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .mv__text .title {
    font-size: 7.5vw;
    text-align: center;
    margin-bottom: 30px;
  }
}
.mv__text .title span {
  display: inline-block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform ease 0.8s;
  transition: -webkit-transform ease 0.8s;
  transition: transform ease 0.8s;
  transition: transform ease 0.8s, -webkit-transform ease 0.8s;
}
.mv__text .title span.start {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mv__text .subtitle {
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 60px;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
@media screen and (max-width: 600px) {
  .mv__text .subtitle {
    max-width: 330px;
    font-size: 1.8rem;
    margin: 0 auto 40px;
  }
}
.mv__text .subtitle.start {
  opacity: 1;
}
.mv__text .subtitle .limit {
  position: absolute;
  top: -80px;
  left: 300px;
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  background: #FF8A13;
  border-radius: 50%;
  padding: 40px 30px;
  rotate: -9deg;
}
@media screen and (max-width: 600px) {
  .mv__text .subtitle .limit {
    top: -50px;
    left: 165px;
    font-size: 1.8rem;
    padding: 20px 25px;
  }
}
.mv__text .btn {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
@media screen and (max-width: 600px) {
  .mv__text .btn {
    display: none;
  }
}
.mv__text .btn.start {
  opacity: 1;
}
.mv__text .link {
  display: block;
  width: 400px;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #007047;
  border-radius: 20px;
  padding: 30px 0;
}
.mv__image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 60%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
@media screen and (max-width: 600px) {
  .mv__image {
    position: static;
    width: 100%;
    height: auto;
    text-align: center;
  }
}
.mv__image::after {
  content: "";
  position: absolute;
  inset: 0 auto auto -1px;
  width: calc(100% + 1px);
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgb(243, 255, 251)), to(rgba(243, 255, 251, 0)));
  background: -webkit-linear-gradient(left, rgb(243, 255, 251) 0%, rgba(243, 255, 251, 0) 100%);
  background: linear-gradient(to right, rgb(243, 255, 251) 0%, rgba(243, 255, 251, 0) 100%);
}
@media screen and (max-width: 600px) {
  .mv__image::after {
    display: none;
  }
}
.mv__image.start {
  opacity: 1;
}
.mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) {
  .mv__image img {
    -o-object-fit: fill;
       object-fit: fill;
    height: auto;
  }
}

.about__container {
  max-width: 1200px;
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .about__container {
    padding: 80px 0;
  }
}
.about__content:not(:last-of-type) {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .about__content:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
.about__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #15BC7F;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .about__title {
    font-size: 2.6rem;
  }
}
.about__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .about__text {
    font-size: 1.6rem;
  }
}

.cta {
  background: #007047;
}
.cta__container {
  max-width: 1200px;
  padding: 50px 0;
}
.cta__title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .cta__title {
    font-size: 4.8vw;
  }
}
.cta__link {
  display: block;
  max-width: 450px;
  width: 100%;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #FF3D00;
  border-radius: 50px;
  padding: 20px 0;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .cta__link {
    max-width: 350px;
    font-size: 2.2rem;
  }
}

.service__container {
  max-width: 1200px;
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .service__container {
    padding: 80px 0;
  }
}
.service__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #15BC7F;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .service__title {
    font-size: 2.6rem;
  }
}
.service__title strong {
  color: #FF3D00;
}
.service__text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .service__text {
    font-size: 1.8rem;
  }
}

.plan {
  background: #F3FFFB;
}
.plan__container {
  max-width: 1200px;
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .plan__container {
    padding: 80px 0;
  }
}
.plan__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #15BC7F;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .plan__title {
    font-size: 2.6rem;
  }
}
.plan__text {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .plan__text {
    font-size: 1.6rem;
  }
}
.plan__pc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .plan__pc {
    display: none;
  }
}
.plan__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 32%;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  max-width: 360px;
}
.plan__sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .plan__sp {
    display: block;
  }
}

.sample__container {
  max-width: 1200px;
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .sample__container {
    padding: 80px 0;
  }
}
.sample__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #15BC7F;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .sample__title {
    font-size: 2.6rem;
  }
}
.sample__slider {
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .sample__slider {
    max-width: 260px;
  }
}
.sample__item {
  padding: 0 10px;
}
@media screen and (max-width: 600px) {
  .sample__item {
    padding: 0 5px;
  }
}
.sample__inner {
  background: #F3FFFB;
  border: 1px solid #15BC7F;
  border-radius: 20px;
  padding: 25px 20px 30px;
}
.sample__image {
  text-align: center;
}
.sample__plan {
  width: 180px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #15BC7F;
  padding: 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .sample__plan {
    width: 140px;
    font-size: 1.4rem;
  }
}
.sample__name {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 600px) {
  .sample__name {
    font-size: 1.2rem;
  }
}
.sample__link {
  display: block;
  max-width: 220px;
  width: 100%;
  font-size: 1.6rem;
  text-align: center;
  color: #007047;
  background: #fff;
  border-radius: 25px;
  padding: 10px 0;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .sample__link {
    font-size: 1.4rem;
  }
}

.point {
  background: #FFF7EE;
}
.point__container {
  max-width: 1200px;
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .point__container {
    padding: 80px 0;
  }
}
.point__content:not(:last-of-type) {
  margin-bottom: 80px;
}
.point__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #15BC7F;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .point__title {
    font-size: 2.6rem;
  }
}
.point__subtitle {
  font-size: 2.6rem;
  font-weight: 700;
  color: #FF3D00;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .point__subtitle {
    font-size: 2.2rem;
  }
}
.point__subtitle.is-left {
  text-align: left;
}
@media screen and (max-width: 600px) {
  .point__subtitle.is-left {
    text-align: center;
  }
}
.point__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .point__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .point__text {
    text-align: left;
  }
}
.point__text.is-left {
  text-align: left;
}
.point__table {
  max-width: 1100px;
  margin: 40px auto 0;
}
.point__table thead th {
  width: 280px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #15BC7F;
  border: 1px solid #ccc;
  padding: 15px 0;
}
@media screen and (max-width: 600px) {
  .point__table thead th {
    width: 25%;
    font-size: 1.2rem;
  }
}
.point__table thead th.blank {
  width: 200px;
  background: none;
  border: none;
}
@media screen and (max-width: 600px) {
  .point__table thead th.blank {
    width: 13%;
  }
}
.point__table thead th.head-strong {
  width: 340px;
  background: #007047;
}
@media screen and (max-width: 600px) {
  .point__table thead th.head-strong {
    width: 29%;
  }
}
.point__table tbody th {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  background: #15BC7F;
  border: 1px solid #ccc;
  padding: 15px 0;
}
@media screen and (max-width: 600px) {
  .point__table tbody th {
    font-size: 1.4rem;
  }
}
.point__table tbody th .result {
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  .point__table tbody th .result {
    font-size: 2rem;
  }
}
.point__table tbody td {
  text-align: center;
  vertical-align: middle;
  background: #fff;
  border: 1px solid #ccc;
  padding: 15px 0;
}
.point__table tbody td.body-strong {
  background: #F3FFFB;
}
.point__table tbody td span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 6px;
}
@media screen and (max-width: 600px) {
  .point__table tbody td span {
    font-size: 1.2rem;
  }
}
.point__table tbody .text-good {
  color: #FF3D00;
}
.point__table tbody .text-bad {
  color: #0080FF;
}
.point__table tbody .score {
  font-size: 2.6rem;
  color: #FF3D00;
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  .point__table tbody .score {
    font-size: 2rem;
  }
}
.point__table .radius-tl {
  border-radius: 20px 0 0 0;
}
@media screen and (max-width: 600px) {
  .point__table .radius-tl {
    border-radius: 10px 0 0 0;
  }
}
.point__table .radius-tr {
  border-radius: 0 20px 0 0;
}
@media screen and (max-width: 600px) {
  .point__table .radius-tr {
    border-radius: 0 10px 0 0;
  }
}
.point__table .radius-bl {
  border-radius: 0 0 0 20px;
}
@media screen and (max-width: 600px) {
  .point__table .radius-bl {
    border-radius: 0 0 0 10px;
  }
}

.flow__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .flow__list {
    max-width: 250px;
    margin-inline: auto;
  }
}
.flow__item {
  position: relative;
  width: 240px;
}
.flow__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 80px;
  right: -13px;
  width: 25px;
  height: 50px;
  background: url(../img/icon_arrow01.svg) no-repeat center/contain;
}
@media screen and (max-width: 600px) {
  .flow__item:not(:last-of-type)::after {
    display: none;
  }
}
.flow__item .title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #15BC7F;
  margin-bottom: 10px;
}
.flow__item .icon {
  text-align: center;
  margin-bottom: 10px;
}
.flow__item .icon img {
  display: inline-block;
}
.flow__item .text {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.voice__container {
  max-width: 1200px;
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .voice__container {
    padding: 80px 0;
  }
}
.voice__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #15BC7F;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .voice__title {
    font-size: 2.6rem;
  }
}
.voice__slider {
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .voice__slider {
    max-width: 260px;
  }
}
.voice__item {
  padding: 0 8px;
}
.voice__item .inner {
  position: relative;
  height: 300px;
  background: #FBFBF9;
  padding: 15px;
  overflow: hidden;
}
.voice__item .inner::before {
  content: "";
  position: absolute;
  right: -4px;
  bottom: 9px;
  z-index: 2;
  width: 30px;
  height: 1px;
  background: #ddd;
  rotate: -45deg;
}
.voice__item .inner::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  border-width: 0px 0px 20px 20px;
  border-style: solid;
  border-color: transparent transparent #fff #fff;
  -webkit-box-shadow: 0 0 5px #666;
          box-shadow: 0 0 5px #666;
}
.voice__item .title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #15BC7F;
  margin-bottom: 5px;
}
.voice__item .score {
  font-size: 2rem;
  font-weight: 700;
  color: #FF3D00;
  margin-bottom: 5px;
}
.voice__item .text {
  font-size: 1.6rem;
}
.voice__media {
  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;
  max-width: 920px;
  border: 4px solid #15BC7F;
  border-radius: 40px;
  padding: 30px 40px;
  margin: 100px auto 0;
}
@media screen and (max-width: 600px) {
  .voice__media {
    display: block;
    border-radius: 20px;
    padding: 20px;
  }
}
.voice__media .title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #15BC7F;
}
@media screen and (max-width: 600px) {
  .voice__media .title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.voice__media .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
}
.voice__media .item {
  max-width: 220px;
  text-align: center;
}
.voice__media .image {
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .voice__media .image {
    margin-bottom: 5px;
  }
}
.voice__media .text {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .voice__media .text {
    font-size: 1.4rem;
  }
}

.option {
  background: #E5F2FF;
}
.option__container {
  max-width: 1200px;
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .option__container {
    padding: 80px 0;
  }
}
.option__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0080FF;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .option__title {
    font-size: 2.1rem;
  }
}
.option__list {
  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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .option__list {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    gap: 30px 0;
  }
}
.option__item {
  width: 180px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .option__item {
    width: 138px;
  }
}
@media screen and (max-width: 600px) {
  .option__icon img {
    width: 90%;
  }
}
.option__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  .option__text {
    font-size: 1.6rem;
    margin-top: 5px;
  }
}

.faq__container {
  position: relative;
  max-width: 1200px;
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .faq__container {
    padding: 80px 0;
  }
}
.faq__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #15BC7F;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .faq__title {
    font-size: 2.6rem;
  }
}
.faq__content {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .faq__content {
    max-width: 60rem;
  }
}
.faq__item {
  border-top: 1px solid #15BC7F;
  padding: 0 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .faq__item {
    padding: 0 1rem;
  }
}
.faq__item:last-child {
  border-bottom: 1px solid #15BC7F;
}
.faq__item.open {
  background: #F3FFFB;
}
.faq__item.open .q-btn::after {
  -webkit-transform: translate(-50%, -50%) rotateZ(0);
          transform: translate(-50%, -50%) rotateZ(0);
}
.faq__item dt {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem 0;
  cursor: pointer;
}
.faq__item .q-icon, .faq__item .a-icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 4rem;
      -ms-flex: 0 0 4rem;
          flex: 0 0 4rem;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 4rem;
  height: 4rem;
  font-family: "Roboto", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Verdana", "Helvetica", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  background: #15BC7F;
  border-radius: 50%;
  margin-right: 2rem;
}
@media screen and (max-width: 600px) {
  .faq__item .q-icon, .faq__item .a-icon {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 3rem;
        -ms-flex: 0 0 3rem;
            flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
    margin-right: 1.5rem;
  }
}
.faq__item .q-title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0.7rem 4rem 0 0;
}
@media screen and (max-width: 600px) {
  .faq__item .q-title {
    font-size: 1.6rem;
    padding: 0.3rem 3rem 0 0;
  }
}
.faq__item .q-btn {
  position: absolute;
  top: 3.5rem;
  right: 1.5rem;
}
@media screen and (max-width: 600px) {
  .faq__item .q-btn {
    top: 3rem;
    right: 1rem;
  }
}
.faq__item .q-btn::before, .faq__item .q-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.6rem;
  height: 0.4rem;
  background: #15BC7F;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 600px) {
  .faq__item .q-btn::before, .faq__item .q-btn::after {
    width: 2rem;
  }
}
.faq__item .q-btn::after {
  -webkit-transform: translate(-50%, -50%) rotateZ(270deg);
          transform: translate(-50%, -50%) rotateZ(270deg);
}
.faq__item dd {
  display: none;
  border-top: 1px solid #ccc;
  padding: 1.5rem 0;
}
.faq__item .a-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.faq__item .a-icon {
  background: #FF3D00;
}
.faq__item .a-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 1.7;
  padding: 0.6rem 0 1rem;
}
@media screen and (max-width: 600px) {
  .faq__item .a-text {
    font-size: 1.4rem;
    padding: 0.3rem 0 1rem;
  }
}
.faq__image {
  text-align: center;
  margin-top: 50px;
}

.form {
  background: #F3FFFB;
}
.form__container {
  max-width: 1200px;
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .form__container {
    padding: 80px 0;
  }
}
.form__text {
  max-width: 800px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #15BC7F;
  background: #fff;
  border-radius: 20px;
  padding: 20px 0;
  margin: 0 auto 60px;
}
@media screen and (max-width: 600px) {
  .form__text {
    font-size: 1.7rem;
  }
}
.form__table {
  max-width: 800px;
  margin: 0 auto 4rem;
}
.form__table th {
  width: 24rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  padding-top: 1.8rem;
}
@media screen and (max-width: 600px) {
  .form__table th {
    display: block;
    width: 100%;
    font-size: 1.6rem;
    padding: 0.8rem 0;
  }
}
.form__table th .required {
  display: inline-block;
  font-size: 1.4rem;
  color: #FF3D00;
  padding-left: 1rem;
}
.form__table td {
  font-size: 1.8rem;
  padding: 1rem 0;
}
@media screen and (max-width: 600px) {
  .form__table td {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    padding: 0;
  }
}
.form__table .input-text, .form__table .input-textarea, .form__table .input-select {
  width: 100%;
  font-family: inherit;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  padding: 1.2rem;
}
@media screen and (max-width: 600px) {
  .form__table .input-text, .form__table .input-textarea, .form__table .input-select {
    padding: 1rem 1.2rem;
  }
}
.form__table .form-select {
  position: relative;
  width: 100%;
}
.form__table .input-check {
  display: block;
  margin-bottom: 1rem;
  cursor: pointer;
}
.form__table .input-check input {
  margin-right: 1rem;
}
.form__table .error-msg {
  color: #FF3D00;
  margin-top: 0.5rem;
}
.form__table.confirm th {
  padding: 1.5rem 0;
}
.form__table.confirm td {
  padding: 1.5rem 0;
}
@media screen and (max-width: 600px) {
  .form__table.confirm td {
    padding: 0 0 2rem;
  }
}
.formPolicy {
  max-width: 800px;
  margin: 0 auto 30px;
}
.formPolicy__content {
  height: 300px;
  background: #fff;
  border-radius: 5px;
  padding: 40px 40px 60px;
  overflow-y: auto;
}
@media screen and (max-width: 600px) {
  .formPolicy__content {
    padding: 30px 20px 60px;
  }
}
.formPolicy__content .head {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .formPolicy__content .head {
    font-size: 1.6rem;
  }
}
.formPolicy__content .title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #15BC7F;
  border-bottom: 1px solid #15BC7F;
  padding: 30px 0 5px;
  margin-bottom: 10px;
}
.formPolicy__content .description {
  font-size: 1.4rem;
}
.formPolicy__content .list {
  margin-top: 5px;
}
.formPolicy__content .list li {
  position: relative;
  font-size: 1.4rem;
  padding-left: 1em;
}
.formPolicy__content .list li::before {
  content: "・";
  position: absolute;
  inset: 0 auto auto 0;
}
.form .form-agree {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .form .form-agree {
    font-size: 1.6rem;
  }
}
.form .form-agree label {
  cursor: pointer;
}
.form .form-agree a {
  text-decoration: underline;
}
.form .form-agree a:hover {
  text-decoration: none;
}
.form .error-msg-agree {
  font-size: 1.6rem;
  text-align: center;
  color: #FF3D00;
  margin-bottom: 2rem;
}
.form .form-btn-input {
  text-align: center;
  margin-top: 6rem;
}
.form .form-btn {
  text-align: center;
}
.form .form-btn-confirm {
  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;
}
@media screen and (max-width: 600px) {
  .form .form-btn-confirm {
    display: block;
  }
}
.form .form-btn-confirm div {
  width: 100%;
  max-width: 400px;
  margin: 20px;
}
@media screen and (max-width: 600px) {
  .form .form-btn-confirm div {
    text-align: center;
    margin: 20px auto;
  }
}
.form__title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #15BC7F;
  margin-bottom: 60px;
}
.form__note {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .form__note {
    font-size: 1.4rem;
  }
}
.form-complete {
  max-width: 800px;
  padding-bottom: 6rem;
  margin: 0 auto;
}
.form-complete__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #15BC7F;
  text-align: center;
  margin-bottom: 4rem;
}
.form-complete__text {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 6rem;
}
@media screen and (max-width: 600px) {
  .form-complete__text {
    font-size: 1.4rem;
  }
}
.form-complete__btn {
  text-align: center;
}

.message__container {
  max-width: 810px;
  padding: 100px 0 150px;
}
@media screen and (max-width: 600px) {
  .message__container {
    padding: 80px 0 120px;
  }
}
.message__image {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .message__image {
    max-width: 140px;
    margin: 0 auto 30px;
  }
}
.message__title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  color: #15BC7F;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .message__title {
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
}
.message__content {
  max-width: 800px;
  margin: 0 auto;
}
.message__content .text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .message__content .text {
    font-size: 1.4rem;
  }
}
.message__content .head {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 0.8;
  color: #fff;
  background: #15BC7F;
  padding: 0 8px;
  margin-right: 5px;
}
@media screen and (max-width: 600px) {
  .message__content .head {
    font-size: 2.8rem;
    padding: 0 5px;
  }
}
.message__content .list {
  margin: -20px 0 30px;
}
.message__content .item {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
  padding-left: 1em;
}
@media screen and (max-width: 600px) {
  .message__content .item {
    font-size: 1.4rem;
  }
}
.message__content .item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  color: #15BC7F;
}

.transaction__table {
  background: #fff;
  margin-bottom: 8rem;
}
.transaction__table th, .transaction__table td {
  font-size: 1.6rem;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #ccc;
  padding: 1.5rem;
}
@media screen and (max-width: 600px) {
  .transaction__table th, .transaction__table td {
    font-size: 1.2rem;
  }
}
.transaction__table th {
  width: 30%;
}