@charset "UTF-8";
/* CSS Document */
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

/* フォントを画面幅に合わせて可変させるCSS */
html {
  font-size: 20px;
  font-size: min(2.6666666667vw, 20px);
  /*ベースを10pxにしています*/
}

img {
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

html {
  font-size: 62.5%;
  /*ベースを10pxにしています*/
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #3e3e3e;
  font-family: "Noto Sans JP", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  /*ベースを10pxにしています*/
  font-weight: 400;
  line-height: 1.4;
  width: 100%;
}
body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body *::before, body *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a,
button {
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
}
a:hover,
button:hover {
  opacity: 0.7;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
  font: inherit;
  outline: none;
}

textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  resize: none;
}

label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

select::-ms-expand {
  display: none;
}

.is-hide {
  display: none;
}

.fade-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}
.fade-up.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

header {
  background: #fff;
  height: 110px;
}
header .header-inner {
  padding: 15px 0;
}
header .logo {
  height: 80px;
}
header .logo img {
  height: 100%;
  width: auto;
}

footer {
  background: #16b29f;
  color: #fff;
  padding: 52px 0 42px;
  position: relative;
}
footer .page-top-btn {
  bottom: 40px;
  position: absolute;
  right: 40px;
}
footer .page-top-btn a,
footer .page-top-btn button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 76px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 76px;
}
footer .footer-inner {
  margin: 0 auto;
  width: 1000px;
}
footer .footer-top-cts,
footer .footer-bottom-cts {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer-img {
  margin: 0;
  width: 192px;
}
footer .footer-logo {
  margin: 0 auto 35px;
  width: 620px;
}
footer .footer-read-txt {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
footer nav {
  border-top: 1px solid #fff;
  margin: 42px 0 0;
  padding: 25px 0 0;
}
footer .footer-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 25px;
}
footer .footer-nav-link a {
  color: #fff;
  font-size: 1.5rem;
}
footer address {
  font-size: 1.2rem;
}
footer .copy-right {
  font-size: 1.2rem;
}

.float-btn {
  bottom: 0;
  -webkit-box-shadow: 0 -2.5px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2.5px 3px 0 rgba(0, 0, 0, 0.1);
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
}
.float-btn a,
.float-btn button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f6ae6a;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  gap: 10px;
  gap: 10px;
  height: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.float-btn a .label,
.float-btn button .label {
  -ms-flex-line-pack: center;
      align-content: center;
  background: #fff;
  border-radius: 50px;
  color: #f6ae6a;
  font-size: 1.2rem;
  font-weight: 700;
  height: 20px;
  line-height: 1;
  width: 40px;
}

.page-lp {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 1400px;
}
.page-lp .left-body {
  margin: 0 auto;
  width: 1000px;
}
.page-lp .right-body {
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 400px;
}

.section-cts .section-inner {
  margin: 0 auto;
}

.mainv {
  margin: 0 0 100px;
}
.mainv .section-inner {
  background: -webkit-gradient(linear, left top, left bottom, from(#16b29f), to(#47bfb1));
  background: linear-gradient(to bottom, #16b29f 0%, #47bfb1 100%);
  border-radius: 60px;
  max-width: 100%;
  padding: 0;
}
.mainv .mainv-back {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/mainv_bg.webp) no-repeat bottom left/616px 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 668px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 0 0 0 60px;
}
.mainv .ttl {
  margin: 0 auto 40px;
  padding: 40px 0 0;
  text-align: center;
  width: 418px;
}
.mainv .mainv-icon-list {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0;
}
.mainv .mainv-icon-list .mainv-icon-card {
  width: 134px;
}
.mainv .mainv-img-box {
  margin: 0 0 0 auto;
  position: relative;
  width: 482px;
}
.mainv .mainv-img-box:after {
  background: url(../img/mainv_chara.webp) no-repeat center/contain;
  bottom: -150px;
  content: "";
  display: block;
  height: 165px;
  position: absolute;
  right: 50px;
  width: 132px;
}

.problems {
  margin: 0 0 112px;
}
.problems .section-ttl-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 32px;
}
.problems .problems-ttl-icon {
  height: 80px;
}
.problems .problems-ttl-icon img {
  height: 100%;
  width: auto;
}
.problems .section-ttl {
  color: #040000;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
.problems .section-ttl em {
  color: #00ac97;
  font-size: 5rem;
  font-weight: 900;
  padding: 0 5px;
}
.problems .problems-box {
  position: relative;
  z-index: 1;
}
.problems .problems-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.problems .problems-card {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.problems .problems-comment {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 328.01/226;
  background: url(../img/problems_balloon.webp) no-repeat center/contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: 226px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 0 0;
  position: relative;
  text-align: center;
  z-index: 1;
}
.problems .problems-comment .ttl {
  color: #00ac97;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.problems .problems-comment .txt {
  font-size: 1.3rem;
  line-height: 2;
}
.problems .problems-list .problems-card:nth-of-type(1) .problems-comment:nth-of-type(2n) {
  margin: -46px 0;
}
.problems .problems-list .problems-card:nth-of-type(1) .problems-comment:nth-of-type(2n):after {
  background: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 45px;
  position: absolute;
  right: 40px;
  width: 130px;
}
.problems .problems-list .problems-card:nth-of-type(1) .problems-comment:nth-of-type(2n + 1) {
  -webkit-transform: translate(105px, 0);
          transform: translate(105px, 0);
}
.problems .problems-list .problems-card:nth-of-type(1) .problems-comment:last-of-type:after {
  content: none;
}
.problems .problems-list .problems-card:nth-of-type(2) .problems-comment:nth-of-type(2n) {
  margin: -46px 0;
}
.problems .problems-list .problems-card:nth-of-type(2) .problems-comment:nth-of-type(2n + 1) {
  margin: 0 -150px 0 0;
  -webkit-transform: translate(-105px, 0);
          transform: translate(-105px, 0);
}
.problems .problems-list .problems-card:nth-of-type(2) .problems-comment:nth-of-type(2n + 1):after {
  background: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 45px;
  position: absolute;
  right: 40px;
  width: 130px;
}
.problems .problems-list .problems-card:nth-of-type(2) .problems-comment:last-of-type:after {
  content: none;
}
.problems .chara-box {
  bottom: 0;
  height: 270px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 216px;
  z-index: 2;
}
.problems .problems-cont-txt {
  background: #00ac97;
  -webkit-clip-path: polygon(0 0, 50% 35%, 100% 0, 100% 65%, 50% 100%, 0 65%);
          clip-path: polygon(0 0, 50% 35%, 100% 0, 100% 65%, 50% 100%, 0 65%);
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  height: 376px;
  margin: -124px 0 66px;
  text-align: center;
}
.problems .problems-cont-txt p {
  letter-spacing: 0.05em;
  line-height: 1.56;
  padding-top: 174px;
}
.problems .problems-cont-txt .small {
  font-size: 1.8rem;
  letter-spacing: normal;
}
.problems .problems-cont-txt em {
  font-size: 4.2rem;
}
.problems .problems-cont-txt .under-line {
  background: linear-gradient(to top, #f6ae6a 0%, #f6ae6a 12px, transparent 12px, transparent 100%);
}

.problems-solution-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.problems-solution-box .detail-box {
  width: 390px;
}
.problems-solution-box .ttl {
  color: #040000;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 24px;
}
.problems-solution-box .ttl em {
  color: #00ac97;
}
.problems-solution-box .txt {
  color: #3e3e3e;
  font-size: 1.6rem;
  line-height: 1.88;
}
.problems-solution-box .problems-solution-img {
  width: 550px;
}

.features {
  padding-bottom: 150px;
}
.features .section-ttl {
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 70px;
}
.features .section-ttl .section-ttl-img {
  display: block;
  height: 40px;
  margin: 0 0 22px;
}
.features .section-ttl .section-ttl-img img {
  height: 100%;
  width: auto;
}
.features .features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 80px;
}
.features .features-card {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3e3e3e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.features .features-card:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}
.features .detail-box {
  width: 390px;
}
.features .features-card-ttl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00ac97;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  font-weight: 700;
  gap: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 20px;
}
.features .features-card-ttl .ttl-icon {
  width: 30px;
}
.features .features-read-txt {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 30px;
}
.features .features-detail-txt {
  font-size: 1.6rem;
  line-height: 1.88;
}
.features .features-card-img {
  position: relative;
  text-align: center;
  width: 570px;
}
.features .features-card-img:after {
  content: "";
  display: block;
  position: absolute;
}
.features .features-card:nth-of-type(1) .features-card-img:after {
  background: url(../img/features_sub_01_chara.webp) no-repeat center/contain;
  bottom: -25px;
  height: 120px;
  right: 0;
  width: 93px;
}
.features .features-card:nth-of-type(2) .features-card-img:after {
  background: url(../img/features_sub_02_chara.webp) no-repeat center/contain;
  bottom: -20px;
  height: 120px;
  left: 0;
  width: 93px;
}
.features .features-card:nth-of-type(3) .features-card-img:after {
  background: url(../img/features_sub_03_chara.webp) no-repeat center/contain;
  bottom: -20px;
  height: 138px;
  right: -2px;
  width: 120px;
}

.form .scroll-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: calc(100dvh - 98px);
  overflow-y: auto;
  padding: 40px 40px 0;
}
.form .scroll-box::-webkit-scrollbar {
  width: 6px;
}
.form .scroll-box::-webkit-scrollbar-track {
  background: #fff;
}
.form .scroll-box::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 50px;
}
.form .form-img {
  margin: 0 auto 20px;
  width: 150px;
}
.form .section-ttl {
  color: #00ac97;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 30px;
  text-align: center;
}
.form .section-ttl .notes {
  display: block;
  font-size: 1.5rem;
  margin: 0 0 6px;
}
.form .form-box {
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 15px;
}
.form .input-ttl {
  font-size: 1.2rem;
  margin: 0 0 5px;
}
.form .required-label {
  color: #f1676c;
  font-size: 0.8rem;
  vertical-align: text-top;
}
.form input {
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 6px;
  color: #3e3e3e;
  font-size: 1.5rem;
  font-weight: 700;
  height: 47px;
  padding: 0 10px;
  width: 100%;
}
.form input:focus {
  border-color: #3e3e3e;
}
.form input::-webkit-input-placeholder {
  color: #bababa;
  font-weight: 400;
}
.form input::-moz-placeholder {
  color: #bababa;
  font-weight: 400;
}
.form input:-ms-input-placeholder {
  color: #bababa;
  font-weight: 400;
}
.form input::-ms-input-placeholder {
  color: #bababa;
  font-weight: 400;
}
.form input::placeholder {
  color: #bababa;
  font-weight: 400;
}
.form input.error {
  background: #fff2f2;
}
.form textarea {
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 6px;
  color: #3e3e3e;
  font-size: 1.4rem;
  font-weight: 700;
  height: 103px;
  padding: 10px;
  resize: none;
  width: 100%;
}
.form textarea:focus {
  border-color: #3e3e3e;
}
.form textarea::-webkit-input-placeholder {
  color: #bababa;
  font-weight: 400;
}
.form textarea::-moz-placeholder {
  color: #bababa;
  font-weight: 400;
}
.form textarea:-ms-input-placeholder {
  color: #bababa;
  font-weight: 400;
}
.form textarea::-ms-input-placeholder {
  color: #bababa;
  font-weight: 400;
}
.form textarea::placeholder {
  color: #bababa;
  font-weight: 400;
}
.form textarea.error {
  background: #fff2f2;
}
.form .error-message-box {
  margin: 4px 0 0;
}
.form .error-message-box .erroe-message {
  margin: 5px 0 0;
}
.form .error-message-box .erroe-message:first-of-type {
  margin-top: 0;
}
.form .erroe-message {
  color: #f1676c;
  font-size: 1.2rem;
  padding: 0 0 0 21px;
  position: relative;
}
.form .erroe-message:before {
  background: url(../img/error_icon.webp) no-repeat center/contain;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 1px;
  width: 16px;
}
.form .agree-input-form .agree-ttl {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.form .agree-input-form .agree-txt {
  font-size: 1.2rem;
  line-height: 1.67;
}
.form .agree-input-form .agree-txt a {
  color: #00ac97;
  text-decoration: underline;
}
.form .form-submit-btn {
  padding: 20px;
}
.form .form-submit-btn a,
.form .form-submit-btn button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f6ae6a;
  border-radius: 50px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  gap: 10px;
  height: 58px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  width: 286px;
}
.form .form-submit-btn a .label,
.form .form-submit-btn button .label {
  -ms-flex-line-pack: center;
      align-content: center;
  background: #fff;
  border-radius: 50px;
  color: #f6ae6a;
  font-size: 1.2rem;
  font-weight: 700;
  height: 20px;
  line-height: 1;
  width: 40px;
}
.form .form-submit-btn a:disabled,
.form .form-submit-btn button:disabled {
  background: #eaeaea;
  color: #ccc;
  pointer-events: none;
}
.form .form-submit-btn a:disabled .label,
.form .form-submit-btn button:disabled .label {
  color: #ccc;
}

.modal-section {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  color: #3e3e3e;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  padding: 15px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}
.modal-section.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-section .modal-inner {
  background: #fff;
  border-radius: 40px;
  max-height: calc(100dvh - 30px);
  overflow-y: auto;
  position: relative;
  width: 760px;
}
.modal-section .modal-close-btn {
  height: 20px;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 20px;
}
.modal-section .modal-close-btn a,
.modal-section .modal-close-btn button {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}
.modal-section .modal-close-btn a:before, .modal-section .modal-close-btn a:after,
.modal-section .modal-close-btn button:before,
.modal-section .modal-close-btn button:after {
  background: #ccc;
  border-radius: 50px;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.modal-section .modal-close-btn a:before,
.modal-section .modal-close-btn button:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal-section .modal-close-btn a:after,
.modal-section .modal-close-btn button:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal-section .modal-btn-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-section .btn-cts {
  width: 200px;
}
.modal-section .btn-cts a,
.modal-section .btn-cts button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  height: 58px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.modal-section .btn-cts.type-submit a,
.modal-section .btn-cts.type-submit button {
  background: #f6ae6a;
  color: #fff;
}
.modal-section .btn-cts.type-cansel a,
.modal-section .btn-cts.type-cansel button {
  background: #f5f5f5;
  color: #040000;
}

.formconfirm-modal .modal-inner {
  padding: 35px 80px 42px;
}
.formconfirm-modal .modal-ttl {
  color: #040000;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 15px;
  text-align: center;
}
.formconfirm-modal .modal-txt {
  font-size: 1.5rem;
  text-align: center;
}
.formconfirm-modal .confirm-form-box {
  margin: 30px 0;
}
.formconfirm-modal .input-form {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px 0;
}
.formconfirm-modal .input-form:first-of-type {
  padding-top: 0;
}
.formconfirm-modal .input-form .input-ttl {
  font-size: 1.2rem;
  padding: 4px 0 0 10px;
  width: 136px;
}
.formconfirm-modal .input-form .input-body {
  font-size: 1.5rem;
  font-weight: 700;
  width: calc(100% - 136px);
}

.complete-modal {
  color: #040000;
}
.complete-modal .modal-inner {
  border-radius: 20px;
  padding: 40px 20px 30px;
  width: 300px;
}
.complete-modal .complete-image {
  margin: 0 auto 15px;
  width: 58px;
}
.complete-modal .complete-ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 15px;
  text-align: center;
}
.complete-modal .complete-message {
  font-size: 1.4rem;
  line-height: 1.72;
}