@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;
}

.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;
  }
}

.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: #EA4032;
  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);
}

/*	ヘッダー
-------------------------------------------------------- */
.headerCta {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10000;
  padding-right: 20px;
}
@media screen and (max-width: 600px) {
  .headerCta {
    display: none;
  }
}
.headerCta__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: #EA4032;
  border-radius: 20px 20px 0 0;
  margin-left: auto;
}
.headerNav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  background: #f9f9f9;
}
@media screen and (max-width: 600px) {
  .headerNav {
    display: block;
  }
}
.headerNav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #999;
}
.headerNav__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.headerNav__item:not(:last-of-type) {
  border-right: 1px solid #ccc;
}
.headerNav__link {
  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;
  padding: 15px 0;
}
.headerNav__text {
  font-size: 1.3rem;
  font-weight: 700;
  margin-left: 5px;
}

/*	フッター
-------------------------------------------------------- */
.footer {
  background: #33A752;
  text-align: center;
  color: #fff;
  padding: 20px 0;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 20px 0 70px;
  }
}
.footer__copyright {
  font-size: 1.2rem;
}

/*	TOPページ
-------------------------------------------------------- */
.mv {
  background: #FFF8E5;
  border-top: 10px solid #33A752;
  padding: 0 60px;
}
@media screen and (max-width: 600px) {
  .mv {
    padding: 0 20px;
  }
}
.mv__container {
  position: relative;
  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;
  max-width: 1200px;
}
@media screen and (max-width: 600px) {
  .mv__container {
    display: block;
    padding-bottom: 60px;
  }
}
.mv__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 100px 0 120px;
}
@media screen and (max-width: 600px) {
  .mv__text {
    padding: 40px 0 30px;
  }
}
.mv__title {
  position: relative;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 50px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .mv__title {
    font-size: 7.5vw;
    text-align: center;
    margin-bottom: 30px;
  }
}
.mv__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__title span.start {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mv__title strong {
  color: #EA4032;
}
.mv__subtitle {
  position: relative;
  font-size: 4.2rem;
  font-weight: 700;
  color: #33A752;
  margin-bottom: 60px;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
@media screen and (max-width: 600px) {
  .mv__subtitle {
    font-size: 6.5vw;
    text-align: center;
    margin-bottom: 30px;
  }
}
.mv__subtitle.start {
  opacity: 1;
}
.mv__btn {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.mv__btn.start {
  opacity: 1;
}
.mv__link {
  display: block;
  width: 460px;
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #EA4032;
  border-radius: 20px;
  padding: 30px 0;
}
@media screen and (max-width: 600px) {
  .mv__link {
    width: 85%;
    font-size: 2rem;
    padding: 20px 0;
    margin-inline: auto;
  }
}
.mv__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48%;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
@media screen and (max-width: 600px) {
  .mv__image {
    text-align: center;
  }
}
.mv__image.start {
  opacity: 1;
}

.about__container {
  max-width: 1200px;
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .about__container {
    padding: 80px 0;
  }
}
.about__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 50px;
}
@media screen and (max-width: 600px) {
  .about__content {
    display: block;
  }
}
.about__content:not(:last-of-type) {
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  .about__content:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
.about__content.is-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.about__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 42%;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%;
  max-width: 500px;
}
@media screen and (max-width: 600px) {
  .about__image {
    margin: 0 auto 20px;
  }
}
.about__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1973E8;
  margin-bottom: 15px;
}
@media screen and (max-width: 600px) {
  .about__title {
    font-size: 2rem;
  }
}
.about__subtitle {
  font-size: 3.2rem;
  font-weight: 700;
  color: #EA4032;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .about__subtitle {
    font-size: 2.6rem;
  }
}
.about__description {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .about__description {
    font-size: 1.6rem;
  }
}

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

.plan__container {
  max-width: 1000px;
  padding: 120px 0 100px;
}
@media screen and (max-width: 600px) {
  .plan__container {
    padding: 60px 0;
  }
}
.plan__title {
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
  color: #EA4032;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .plan__title {
    font-size: 3rem;
  }
}
.plan__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.plan__tab {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 40px 40px 0 0;
  padding: 25px 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .plan__tab {
    font-size: 5vw;
    border-radius: 20px 20px 0 0;
    padding: 20px 0;
  }
}
.plan__tab:hover {
  opacity: 0.7;
}
.plan__tab::before {
  content: "";
  position: absolute;
  top: -100px;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 600px) {
  .plan__tab::before {
    top: -50px;
    width: 60px;
    height: 60px;
  }
}
.plan__tab.is-plan1 {
  background: #33A752;
}
.plan__tab.is-plan1::before {
  left: 40px;
  background: url(../img/icon_sword01.svg) no-repeat center/contain;
}
@media screen and (max-width: 600px) {
  .plan__tab.is-plan1::before {
    left: 25px;
  }
}
.plan__tab.is-plan2 {
  background: #1973E8;
}
.plan__tab.is-plan2::before {
  right: 40px;
  background: url(../img/icon_shield01.svg) no-repeat center/contain;
}
@media screen and (max-width: 600px) {
  .plan__tab.is-plan2::before {
    right: 25px;
  }
}
.plan__item {
  display: none;
  border-radius: 0 0 40px 40px;
  padding: 60px 20px 80px;
}
@media screen and (max-width: 600px) {
  .plan__item {
    border-radius: 0 0 20px 20px;
    padding: 40px 20px;
  }
}
.plan__item.is-plan1 {
  border: 10px solid #33A752;
}
.plan__item.is-plan1 .plan__subtitle {
  color: #33A752;
}
.plan__item.is-plan2 {
  border: 10px solid #1973E8;
}
.plan__item.is-plan2 .plan__subtitle {
  color: #1973E8;
}
.plan__item.is-selected {
  display: block;
}
.plan__subtitle {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .plan__subtitle {
    font-size: 6.5vw;
  }
}
.plan__subtitle strong {
  color: #EA4032;
}
.plan__description {
  max-width: 620px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  margin: 0 auto 30px;
}
@media screen and (max-width: 600px) {
  .plan__description {
    font-size: 1.6rem;
  }
}
.plan__price {
  max-width: 780px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  color: #EA4032;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .plan__price {
    font-size: 2rem;
  }
}

.business__container {
  max-width: 1000px;
  padding-bottom: 150px;
}
@media screen and (max-width: 600px) {
  .business__container {
    padding-bottom: 80px;
  }
}
.business__image {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .business__image img {
    width: 70%;
  }
}
.business__content {
  background: #FFF8E5;
  border-radius: 40px;
  padding: 50px 0;
}
@media screen and (max-width: 600px) {
  .business__content {
    border-radius: 20px;
    padding: 40px 20px;
  }
}
.business__title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #FBBB03;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .business__title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.business__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 2%;
  max-width: 850px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .business__list {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px 0;
    margin-bottom: 30px;
  }
}
.business__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 32%;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  padding-left: 1.5em;
}
@media screen and (max-width: 600px) {
  .business__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 48%;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    font-size: 1.6rem;
    padding-left: 1.2em;
  }
}
.business__item::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #FBBB03;
}
@media screen and (max-width: 600px) {
  .business__item::before {
    width: 12px;
    height: 12px;
  }
}
.business__subtitle {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  color: #EA4032;
}
@media screen and (max-width: 600px) {
  .business__subtitle {
    font-size: 2rem;
  }
}

.form {
  background: #D6EDDC;
}
.form__container {
  max-width: 1200px;
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .form__container {
    padding: 80px 0;
  }
}
.form__title {
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
  color: #EA4032;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .form__title {
    font-size: 3rem;
  }
}
.form__text {
  max-width: 800px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #33A752;
  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__head {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .formPolicy__head {
    font-size: 1.6rem;
  }
}
.formPolicy__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #33A752;
  border-bottom: 1px solid #33A752;
  padding: 30px 0 5px;
  margin-bottom: 10px;
}
.formPolicy__description {
  font-size: 1.4rem;
}
.formPolicy__list {
  margin-top: 5px;
}
.formPolicy__list li {
  position: relative;
  font-size: 1.4rem;
  padding-left: 1em;
}
.formPolicy__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__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: #EA4032;
  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 {
  padding: 80px 0 100px;
}
@media screen and (max-width: 600px) {
  .message__container {
    padding: 60px 0;
  }
}
.message__image {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .message__image img {
    width: 50%;
  }
}
.message__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .message__text {
    font-size: 1.6rem;
  }
}