@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  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;
}

a {
  text-decoration: unset;
  color: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") right 0.75rem center/16px 12px;
  background-repeat: no-repeat;
}

input::-moz-placeholder {
  color: #c2c2c2;
  font-weight: normal;
}

input::placeholder {
  color: #c2c2c2;
  font-weight: normal;
}

.target {
  opacity: 0;
}

.action {
  animation-name: fadeInAnime;
  animation-delay: 0.2s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.2727272727vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.4;
  font-weight: 400;
  font-size: 1.6rem;
  color: #2b3333;
  background-color: #f2fcfa;
}

.container {
  width: 100%;
  --max-width: 108rem;
  max-width: calc(var(--max-width) + 4.8rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

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

@media screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

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

.fw-bold {
  font-weight: 700;
}

.mb0 {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

.page-section {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .page-section {
    padding: 6rem 0;
  }
}
.page-section h2,
.page-section h3,
.page-section h4 {
  margin-bottom: 1em;
  font-weight: bold;
  margin-top: 1.5em;
  font-size: 1.2em;
}
.page-section p {
  margin-bottom: 1em;
}
.page-section ul {
  list-style: disc;
  padding-left: 1.5em;
}
.page-section ol {
  list-style: decimal;
  padding-left: 1.5em;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

.c-primary {
  color: #01a66e;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 99;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.l-header__in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
@media screen and (min-width: 768px) {
  .l-header__in {
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-header__in {
    padding: 0.6rem 2rem;
    padding-right: 7rem;
  }
}
.l-header__logo {
  width: 36.8181818182%;
}
.l-header__logo a {
  display: block;
  padding: 0;
}
.l-header__logo img {
  display: block;
  width: 15rem;
}
.l-header__right {
  /*  display: flex;
  flex-direction: row-reverse;
  align-items: center; */
  gap: 1rem;
}
.l-header__button {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-header__button {
    flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .l-header__button {
    gap: 1rem;
  }
}
.l-header__button .item {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-header__button .item {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-header__button .item-btn {
  display: block;
  border-radius: 5rem;
  padding: 0.7rem 1rem;
}
.l-header__button .item-btn--phone {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.4rem;
  color: #00a66f;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}
.l-header__button .item-btn--phone .icon-phone {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  -webkit-mask: url(../images/common/icon-phone.svg) no-repeat center/contain;
          mask: url(../images/common/icon-phone.svg) no-repeat center/contain;
  background-color: currentColor;
}
@media screen and (min-width: 768px) {
  .l-header__button .item-btn--phone {
    border-radius: 4.8rem;
    font-size: 1.6rem;
    gap: 1rem;
    flex-direction: row;
    transition: ease-out 0.25s;
  }
  .l-header__button .item-btn--phone .icon-phone {
    transition: ease-out 0.25s;
  }
  .l-header__button .item-btn--phone:hover {
    color: #09bf64;
    background-color: #fff;
  }
}
.l-header__button .item-btn--form {
  color: #00a66f;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: normal;
  background: linear-gradient(8deg, #ff686c 7.07%, #ffb201 93.54%);
  color: #fff;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.l-header__button .item-btn--form .arrow {
  width: 0;
  height: 0;
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
  border-left: 1rem solid #fff;
}
@media screen and (min-width: 768px) {
  .l-header__button .item-btn--form {
    font-size: 1.6rem;
    transition: ease-out 0.25s;
  }
  .l-header__button .item-btn--form:hover {
    opacity: 0.9;
  }
}
.l-header__button .item-form {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .l-header__button .item-form {
    flex: auto;
    height: auto;
  }
}
.l-header__text {
  margin-top: 0.5rem;
}
.l-header__text p {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
}
.l-header__text p .small {
  font-weight: 400;
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  .l-header__text {
    margin-top: 0;
  }
  .l-header__text p {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header {
    background: #00a66f;
  }
  .l-header__logo {
    width: 15.5rem;
  }
  .l-header__logo a {
    padding: 0;
  }
  .l-header__logo img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    background-color: #00a66f;
  }
  .l-header__button {
    display: none;
  }
}

.l-gnav__btn {
  width: 6rem;
  height: 6rem;
  border: none;
  border-radius: 4px;
  position: relative;
  background: #fff;
  z-index: 102;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.l-gnav__btn span {
  display: block;
  position: absolute;
  height: 0;
  width: 2.7rem;
  border-top: 1px solid #cc5600;
  border-radius: 3px;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: margin 0.1s 0.2s ease, transform 0.3s, background 0.3s;
  width: 3.1rem;
  width: 37%;
}
.l-gnav__btn span:nth-child(1) {
  margin-top: -1rem;
  margin-top: -0.6em;
}
.l-gnav__btn span:nth-child(2) {
  transition: opacity 0.2s 0.2s;
}
.l-gnav__btn span:nth-child(3) {
  margin-top: 1rem;
  margin-top: 0.6em;
}
.l-gnav__btn.is-nav-open span {
  transition: top 0.2s cubic-bezier(0.5, 1, 0.89, 1), transform 0.3s 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  width: 2.8rem;
}
.l-gnav__btn.is-nav-open span:nth-child(1) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-gnav__btn.is-nav-open span:nth-child(2) {
  width: 0;
}
.l-gnav__btn.is-nav-open span:nth-child(3) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .l-gnav__btn {
    width: 5rem;
    height: 5rem;
  }
  .l-gnav__btn span {
    width: 2.2rem;
    width: 38%;
    border-top-width: 2px;
  }
  .l-gnav__btn span:nth-child(1) {
    margin-top: -0.7rem;
  }
  .l-gnav__btn span:nth-child(3) {
    margin-top: 0.7rem;
  }
}
@media screen and (min-width: 768px) {
  .l-gnav__btn {
    display: none;
  }
}

.l-gnav-nav {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  transition: visibility 0.3s linear, opacity 0.3s linear;
  background: linear-gradient(110deg, #00c76f, #8fb32f);
  padding: 6rem 2rem;
}
.l-gnav-nav .nav-logo {
  text-align: center;
}
.l-gnav-nav .nav-menu {
  margin-top: 3rem;
}
.l-gnav-nav .nav-menu li {
  text-align: center;
}
.l-gnav-nav .nav-menu li + li {
  margin-top: 2rem;
}
.l-gnav-nav .nav-menu a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}
.l-gnav-nav .nav-button {
  margin-top: 3rem;
}
.l-gnav-nav .nav-button li + li {
  margin-top: 2rem;
}
.l-gnav-nav .nav-button a {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #00a66f;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  line-height: 1;
  font-weight: 700;
  border-radius: 4rem;
  padding: 1rem 2rem;
  height: 5rem;
  margin: 0.5rem 0;
  width: 30rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.l-gnav-nav .nav-button .item-form a {
  background: linear-gradient(8deg, #ff686c 7.07%, #ffb201 93.54%);
  color: #fff;
}
.l-gnav-nav .nav-button .item-form .arrow {
  width: 0;
  height: 0;
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
  border-left: 1rem solid #fff;
}
.l-gnav-nav .nav-button .icon-phone {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  -webkit-mask: url(../images/common/icon-phone.svg) no-repeat center/contain;
          mask: url(../images/common/icon-phone.svg) no-repeat center/contain;
  background-color: currentColor;
}
.l-gnav-nav .nav-button .item-text {
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
}
.l-gnav-nav .nav-button .item-work {
  text-align: center;
  color: #fff;
}

.is-gnav-open .l-gnav-nav {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  background: #00a66f;
  padding: 2rem 0;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 12rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 3rem 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .footer_wrap .logo_footer {
    text-align: center;
  }
  .l-footer .footer_wrap .logo_footer img {
    width: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .footer_wrap .menu_footer {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #FFF;
    margin-top: 2rem;
  }
}
.l-footer .footer_wrap .menu_footer ul {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}
.l-footer .footer_wrap .menu_footer ul li a {
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  position: relative;
  padding-left: 1.6rem;
}
.l-footer .footer_wrap .menu_footer ul li a::before {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../images/common/arrow.svg) no-repeat center/contain;
  left: 0;
  top: 54%;
  transform: translateY(-50%) rotate(90deg);
}
.l-footer .footer_wrap .copyright {
  color: #fff;
  font-size: 1.4rem;
  align-self: center;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-footer .footer_wrap {
    display: block;
  }
  .l-footer .footer_wrap .menu_footer {
    grid-row: 1/2;
    grid-column: 1/3;
  }
  .l-footer .footer_wrap .menu_footer ul {
    display: grid;
    gap: 1rem;
  }
  .l-footer .footer_wrap .copyright {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .l-footer .footer_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .l-footer .footer_wrap .logo_footer {
    width: 21rem;
  }
  .l-footer .footer_wrap .logo_footer img {
    width: 15rem;
  }
  .l-footer .footer_wrap .menu_footer ul {
    gap: 2rem;
  }
  .l-footer .footer_wrap .menu_footer ul li a:hover {
    text-decoration: underline;
  }
}

#right_fixed {
  width: 100%;
  right: 0;
  padding: 0 1rem;
  position: fixed;
  z-index: 997;
  bottom: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s opacity;
}

#right_fixed.active {
  opacity: 1;
  visibility: visible;
}

.fixed_btns {
  display: flex;
  margin-left: -0.4rem;
  margin-right: -0.4rem;
}
@media screen and (min-width: 768px) {
  .fixed_btns {
    display: none !important;
  }
}

.fixed_btns .fixed_item {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.fixed_btns .fixed_item:only-child {
  width: 60%;
}

.fixed_btns .fixed_btn {
  display: block;
  text-decoration: none;
  text-align: center;
  border-radius: 0.8rem;
  padding: 2rem 0 1.2rem;
  position: relative;
}

.fixed_btns .fixed_btn .label {
  color: #000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  aspect-ratio: 143/34;
  width: 14.3rem;
  background: url(../images/common/btn_fixed_label.svg) center/contain no-repeat;
  font-size: 1.2rem;
  padding-top: 0.4em;
}

.fixed_btns .fixed_btn .text {
  color: #fff;
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.8;
}

.fixed_btns .fixed_btn .text .lg {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
}

.fixed_btns .fixed_btn--tel {
  background-color: #fff;
  border: 0.2rem solid #00a66f;
  filter: drop-shadow(0 0.3rem 0 #006141);
}
.fixed_btns .fixed_btn--tel .text {
  color: #00a66f;
}

.fixed_btns .fixed_btn--form {
  background: linear-gradient(8deg, #ff686c 7.07%, #ffb201 93.54%);
  filter: drop-shadow(0 0.3rem 0 #7c282b);
  padding: 2.2rem 0 1.2rem;
}

.fixed_btns .fixed_btn--form .text {
  color: #fff;
}

.form .fixed_btns {
  display: none !important;
}
.form .l-footer {
  padding-bottom: 3rem;
}

.p-notfound {
  padding-bottom: 8rem;
  padding-top: 8rem;
}
.p-notfound p {
  letter-spacing: 0.08em;
}
.p-notfound__title {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
}
.p-notfound__subtitle {
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 2rem;
  font-weight: 600;
}
.p-notfound .more {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-notfound {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .p-notfound__title {
    font-size: 3rem;
  }
  .p-notfound__subtitle {
    font-size: 1.1em;
  }
  .p-notfound__text {
    font-size: 1.3rem;
  }
}

.thanks {
  height: 100vh;
}
.thanks .page_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.thanks .page_wrap main {
  margin-top: 7rem;
}
.thanks .page-content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .thanks .page-content {
    margin-top: 4rem;
  }
}
.thanks .content-thanks {
  font-weight: 500;
  line-height: 1.6;
}
.thanks .tks-item {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0rem 0rem 3rem rgba(0, 0, 0, 0.05);
}
.thanks .tks-item + .tks-item {
  margin-top: 2rem;
}
.thanks .thanks-ttl {
  text-align: center;
  font-weight: bold;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #00a66e;
}
@media screen and (max-width: 767px) {
  .thanks .thanks-ttl {
    font-size: 2.4rem;
  }
}
.thanks .txt {
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .thanks .txt {
    font-size: 1.6rem;
  }
}
.thanks .txt-note {
  margin-top: 2rem;
}
.thanks .tk-button + .tk-button {
  margin-top: 2rem;
}
.thanks .tk-button__ttl {
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}
.thanks .tk-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 29.3rem;
  height: 6.4rem;
  max-width: 100%;
  margin: 0.2rem auto;
  text-align: center;
  padding: 1.2rem 1rem;
  padding-left: 4rem;
  background-color: #00a66f;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .thanks .tk-button__link {
    transition: 0.25s ease-out;
  }
  .thanks .tk-button__link:hover {
    opacity: 0.7;
  }
}
.thanks .tk-button__txt {
  text-align: center;
  font-size: 1.6rem;
}
.thanks .tk-button .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2.4rem;
}
.thanks .tk-button .icon-phone {
  width: 3rem;
  height: 3rem;
  display: block;
  -webkit-mask: url(../images/common/icon-phone.svg) no-repeat center/contain;
          mask: url(../images/common/icon-phone.svg) no-repeat center/contain;
  background-color: currentColor;
}
.thanks .tk-button .icon-line {
  width: 3rem;
  height: 3rem;
  display: block;
  -webkit-mask: url(../images/common/icon-line.svg) no-repeat center/contain;
          mask: url(../images/common/icon-line.svg) no-repeat center/contain;
  background-color: currentColor;
}
.thanks .tk-button .icon-email {
  width: 3rem;
  height: 3rem;
  display: block;
  -webkit-mask: url(../images/common/icon-email.svg) no-repeat center/contain;
          mask: url(../images/common/icon-email.svg) no-repeat center/contain;
  background-color: currentColor;
}
.thanks .tk-button--phone .tk-button__link {
  font-size: 2rem;
}
.thanks .tk-button--line .tk-button__link {
  background-color: #06c755;
}
.thanks .tk-button--mail .tk-button__link {
  background-color: #ffb201;
}
.thanks .tk-qr {
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .thanks .tk-qr img {
    width: 17.5rem;
  }
}

.title-wrap {
  text-align: center;
}
.title-wrap .title {
  position: relative;
  display: inline-block;
  padding: 0.7rem 2.5rem 0.7rem 2.5rem;
  max-width: 100%;
  border-radius: 5rem;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.35;
  text-align: center;
  color: #00a66e;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 4px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #01a86f 0%, #02ac6c 10.26%, #03b06b 17.33%, #05b469 25.99%, #06b866 32.91%, #09bd65 42.29%, #14c15e 52.4%, #3bc94c 62.35%, #63d238 71.01%, #82d829 81.26%, #b5e311 96.87%);
  border-radius: 10rem;
  margin-bottom: 1.3rem;
  box-shadow: 0px 0px 0.8rem 0px rgba(0, 0, 0, 0.5);
}
.title-wrap .title::after {
  content: "";
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1.5rem solid #00a66e;
  filter: drop-shadow(0px 0px 0.4rem rgba(0, 0, 0, 0.5));
}
@media screen and (min-width: 768px) {
  .title-wrap .title {
    font-size: 3.6rem;
    min-width: 32rem;
    padding: 1.7rem 4rem 1.7rem 4rem;
  }
  .title-wrap .title::after {
    bottom: -3.2rem;
    border-left: 2rem solid transparent;
    border-right: 2rem solid transparent;
    border-top: 3rem solid #00a66e;
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
  }
}

.more {
  text-align: center;
}
.more-btn {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border-radius: 10rem;
  display: inline-flex;
  padding: 1.2rem 2.7rem;
  padding-bottom: 1.4rem;
  justify-content: center;
  gap: 1.4rem;
  align-items: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
}
.more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #01a86f 0%, #02ac6c 10.26%, #03b06b 17.33%, #05b469 25.99%, #06b866 32.91%, #09bd65 42.29%, #14c15e 52.4%, #3bc94c 62.35%, #63d238 71.01%, #82d829 81.26%, #b5e311 96.87%);
  z-index: -2;
}
.more-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(-90deg, #01a86f 0%, #02ac6c 10.26%, #03b06b 17.33%, #05b469 25.99%, #06b866 32.91%, #09bd65 42.29%, #14c15e 52.4%, #3bc94c 62.35%, #63d238 71.01%, #82d829 81.26%, #b5e311 96.87%);
  z-index: -1;
  opacity: 0;
}
.more-btn.color1::before {
  background: linear-gradient(8deg, #ff686c 7.07%, #ffb201 93.54%);
}
.more-btn.color1::after {
  background: linear-gradient(8deg, #ff5a60 7.07%, #df9c00 93.54%);
}
.more-btn .arrow {
  /*  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%); */
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}
@media screen and (max-width: 767px) {
  .more-btn {
    padding-top: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .more-btn {
    font-size: 2.8rem;
  }
  .more-btn::after {
    transition: 0.25s all;
  }
  .more-btn:hover::after {
    opacity: 1;
  }
}

.l-main {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 6rem;
  }
}

.btn-top {
  position: fixed;
  bottom: 2rem;
  right: 1.2rem;
}
.btn-top .to-top {
  display: block;
  text-indent: -9999em;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #01a86f 0%, #02ac6c 10.26%, #03b06b 17.33%, #05b469 25.99%, #06b866 32.91%, #09bd65 42.29%, #14c15e 52.4%, #3bc94c 62.35%, #63d238 71.01%, #82d829 81.26%, #b5e311 96.87%);
  position: relative;
}
.btn-top .to-top::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/common/arrow-02.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .btn-top {
    bottom: 11rem;
  }
}

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

.page-content {
  margin-top: 8rem;
}

.btn-back-home {
  margin-top: 50px;
  text-align: center;
}
.btn-back-home a {
  border-radius: 5px;
  background: #00a66e;
  font-weight: 800;
  padding: 8px 47px;
  color: #fff;
  position: relative;
  font-weight: 800;
  display: inline-block;
}

.page_wrap {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.page_wrap .l-main {
  flex: 1;
}

.page_title {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  color: #00a66e;
}
.page_title span {
  display: block;
}

.page-error {
  padding: 6rem 0;
}

.tab {
  display: none;
}

.tab.current {
  display: block;
}

.form-wrap {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .form-wrap {
    margin-top: 20px;
  }
}

#form {
  background-color: #fff;
  padding: 50px 50px;
}
@media screen and (max-width: 767px) {
  #form {
    padding: 30px 15px;
  }
}

.step-confirm .form_step_wrap {
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .step-confirm .confirm {
    padding: 0.8rem;
  }
}
.step-confirm .group {
  align-items: flex-start;
}
.step-confirm .group .label {
  width: 40%;
}
.step-confirm .group .label::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .step-confirm .group .label {
    width: 100%;
    padding: 0;
    margin-bottom: 1rem;
  }
}
.step-confirm .attachment-group {
  border: 0;
  padding: 0;
}

.sub {
  font-size: 14px;
  margin-top: 10px;
  position: relative;
  padding-left: 14px;
  display: block;
  width: 100%;
}
.sub.larger {
  font-size: 16px;
}
.sub_no {
  font-size: 14px;
  margin-top: 10px;
}
.sub_red {
  color: red;
}
.sub::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.sub.sub1::before {
  content: "■";
}

.form-title {
  margin-top: 5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
}

.group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .group {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.group .confirm-group .confirm {
  width: 100%;
}
.group > label,
.group .label {
  display: flex;
  flex-wrap: wrap;
  width: 28%;
  font-weight: bold;
  margin-right: 20px;
  text-align: right;
  padding: 0.8rem;
  padding-left: 0;
  padding-right: 0;
  color: #01a66e;
}
@media screen and (max-width: 767px) {
  .group > label,
  .group .label {
    width: 100%;
    text-align: left;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .group > label,
  .group .label {
    justify-content: flex-end;
  }
}
.group > label:after,
.group .label:after {
  content: "任意";
  background-color: #e3e3e3;
  color: #000;
  margin-left: 1rem;
  font-size: 0.8em;
  padding: 0.3rem 1rem 0.6rem;
  border-radius: 0.4rem;
  white-space: nowrap;
  order: 2;
}
.group > label.required::after,
.group .label.required::after {
  content: "必須";
  background-color: #ffe500;
  color: #333;
}

.radio-list,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .radio-list,
  .check-list {
    padding-top: 1.5rem;
  }
}

.form-item {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .form-item .confirm {
    padding-left: 10px;
  }
}
.form-item.multiple .wrap-input {
  width: 100%;
  margin-top: 10px;
}
.form-item .block_error {
  display: block;
  width: 100%;
  margin-top: 1rem;
  color: rgb(217, 21, 21);
  font-size: 1.4rem;
}

.form-item-confirm {
  display: flex;
  flex-wrap: wrap;
}
.form-item-confirm .confirm {
  width: 60%;
}

input[type=text],
input[type=tel],
input[type=number],
input[type=email],
input[type=date],
input[type=time],
input[type=date-time],
select,
textarea {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  width: 100%;
  height: 5rem;
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=number],
  input[type=email],
  input[type=date],
  input[type=time],
  input[type=date-time],
  select,
  textarea {
    font-size: 1.75rem;
  }
}

input[type=radio],
input[type=checkbox] {
  transform: scale(1.3);
  margin-right: 1rem;
}

select {
  color: inherit;
  height: 5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  width: 100%;
  font-size: 1em;
}

input[type=file] {
  display: block;
  width: 100%;
  font: inherit;
  color: inherit;
}
input[type=file]::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  background: #fffff0;
  height: 3.7rem;
  padding: 0rem 1.5rem 0;
  line-height: 1;
  border-radius: 0.5rem;
  border: 0.1rem solid #ccc;
}
input[type=file].mask + input[type=file] {
  display: none !important;
}

.postcode-group,
.birthday-group {
  display: flex;
  align-items: center;
}
.postcode-group input,
.birthday-group input {
  margin-top: 0;
  width: 5.5em;
}
.postcode-group input::-moz-placeholder, .birthday-group input::-moz-placeholder {
  opacity: 1;
}
.postcode-group input::placeholder,
.birthday-group input::placeholder {
  opacity: 1;
}
.postcode-group span,
.birthday-group span {
  padding: 0 0.5rem;
}
.postcode-group #year,
.birthday-group #year {
  width: 7em;
}

.postcode-group {
  gap: 1rem;
}
.postcode-group input {
  width: 6.7em;
}

.attachment-group {
  border: 0.1rem solid #ccc;
  padding: 0.5rem;
  border-radius: 0.5rem;
  width: 100%;
}
.attachment-group + .attachment-group {
  margin-top: 2rem;
}
.attachment-group--with-label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.attachment-group--with-label .label {
  justify-content: flex-start;
  text-align: left;
  width: 120px;
  min-width: 0;
}
.attachment-group--with-label input[type=file] {
  flex: 1;
  width: auto;
}
@media screen and (max-width: 767px) {
  .attachment-group--with-label {
    order: 2;
  }
}

.preview_img {
  margin-top: 1rem;
}
.preview_img img {
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #868484;
  display: block;
  width: auto;
  max-width: 100%;
  height: 24rem;
}

.attachment-note {
  background-color: #fff2cc;
  border-radius: 0.5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .attachment-note {
    padding: 2rem 2rem 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .attachment-note {
    padding: 2rem 3rem 1.2rem;
  }
}
.attachment-note p {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.2em;
}

.form-action {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .form-action {
    gap: 2rem;
  }
}
.form-action .btn {
  width: 20rem;
  background-color: transparent;
  cursor: pointer;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border-radius: 10rem;
  display: inline-flex;
  padding: 2rem 3rem;
  padding-bottom: 1.8rem;
  justify-content: center;
  gap: 1.4rem;
  align-items: center;
  color: #fff;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
}
.form-action .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #01a86f 0%, #02ac6c 10.26%, #03b06b 17.33%, #05b469 25.99%, #06b866 32.91%, #09bd65 42.29%, #14c15e 52.4%, #3bc94c 62.35%, #63d238 71.01%, #82d829 81.26%, #b5e311 96.87%);
  z-index: -2;
}
.form-action .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(-90deg, #01a86f 0%, #02ac6c 10.26%, #03b06b 17.33%, #05b469 25.99%, #06b866 32.91%, #09bd65 42.29%, #14c15e 52.4%, #3bc94c 62.35%, #63d238 71.01%, #82d829 81.26%, #b5e311 96.87%);
  z-index: -1;
  opacity: 0;
}
.form-action .btn .arrow {
  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1.5rem solid #fff;
}
@media screen and (max-width: 767px) {
  .form-action .btn {
    padding-top: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .form-action .btn::after {
    transition: 0.25s all;
  }
  .form-action .btn:hover::after {
    opacity: 1;
  }
}
.form-action .btn:disabled {
  background-color: #ccc;
}
.form-action .btn.previous {
  background-color: #111;
}
.form-action .btn.previous::before, .form-action .btn.previous::after {
  content: none;
}
.form-action .btn.previous .arrow {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .form-action .btn {
    font-size: 1.8rem;
    gap: 1rem;
    padding: 1.5rem 2rem;
    padding-bottom: 1.3rem;
  }
}

.form-privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}
.form-privacy ._wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-privacy .block_error {
  text-align: center;
}

/* Steps Form Styling */
.steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: none;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  font-weight: bold;
  color: #ccc;
}

.step.active {
  color: black;
}

.step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #ccc;
  z-index: -1;
}

.step:first-child::before {
  left: 50%;
}

.step:last-child::before {
  right: 50%;
}

.step.active::before {
  background-color: black;
}

.step_name {
  background: white;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 5px;
}

#sender {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
#sender.sending {
  opacity: 1;
  visibility: visible;
}
#sender .sending-content {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
#sender .sending-content::before {
  content: "";
  display: block;
  margin: 0 auto;
  aspect-ratio: 1;
  width: 6rem;
  margin-bottom: 2rem;
  background: url(../images/sending.svg) center/contain no-repeat;
}

.inner {
  text-align: center;
}

h1.ttl-h1 {
  position: relative;
  display: inline-block;
  padding: 5px 40px 10px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 45px;
  color: #00a66e;
  background: linear-gradient(to right, #00c76f, #b0e91b);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 6px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #00c76f, #b0e91b);
  /* Viền */
}
@media screen and (max-width: 767px) {
  h1.ttl-h1 {
    font-size: 25px;
    padding: 5px 20px 10px 20px;
  }
}
h1.ttl-h1::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 13px solid #00a66e;
}
@media screen and (max-width: 767px) {
  h1.ttl-h1::after {
    bottom: -15px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #00a66e;
  }
}

.warn_not {
  margin-top: 40px;
  color: #000;
  display: none;
}
.warn_not .btn {
  text-decoration: none;
}
.warn_not .banner-notification {
  margin-top: 50px;
  padding-bottom: 3px;
  background: linear-gradient(to right, #00c76f, #8fb32f);
  color: #fff;
  cursor: pointer;
  padding: 3px;
}
@media screen and (max-width: 767px) {
  .warn_not .banner-notification {
    margin-top: 30px;
  }
}
.warn_not .banner-notification .banner-title {
  padding: 10px 20px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .warn_not .banner-notification .banner-title {
    padding: 10px 10px;
    padding-left: 5px;
    padding-right: 30px;
  }
}
.warn_not .banner-notification .banner-title::before, .warn_not .banner-notification .banner-title::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 40%;
  display: inline-block;
  width: 0.3vw;
  height: 2vw;
  max-width: 3px;
  max-height: 20px;
  background-color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .warn_not .banner-notification .banner-title::before, .warn_not .banner-notification .banner-title::after {
    width: 2px;
    height: 12px;
  }
}
.warn_not .banner-notification .banner-title::before {
  transform: rotate(90deg);
}
.warn_not .banner-notification .banner-title.active::after {
  transform: rotate(90deg);
}
.warn_not .banner-notification .banner-title .title-large {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .warn_not .banner-notification .banner-title .title-large {
    font-size: 20px;
  }
}
.warn_not .banner-notification .banner-title .title-medium {
  font-size: 25px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .warn_not .banner-notification .banner-title .title-medium {
    font-size: 15px;
  }
}
.warn_not .banner-notification .banner-content {
  color: #000;
  background: linear-gradient(to right, #00c76f, #b0e91b);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #00c76f, #b0e91b);
  padding: 30px 20px;
  display: none;
}
@media screen and (max-width: 767px) {
  .warn_not .banner-notification .banner-content {
    padding: 10px 10px;
  }
}
.warn_not .banner-notification .banner-content p {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .warn_not .banner-notification .banner-content p {
    font-size: 14px;
  }
}
.warn_not .banner-notification .banner-content p:last-child {
  margin-bottom: 0;
}
.warn_not.show {
  display: block;
}
.warn_not .title {
  font-weight: 800;
}
.warn_not .btn {
  font-size: 25px;
  font-weight: 800;
  padding: 8px 30px;
  color: #fff;
  background: #00a66e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 6px;
}
@media screen and (max-width: 767px) {
  .warn_not .btn {
    font-size: 22px;
  }
}

.step-title {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ccc;
}

.form-confirm-title {
  margin-top: 5rem;
  font-size: 2.8rem;
  text-align: center;
  color: #00a66e;
  font-weight: bold;
}
.form-confirm-title.hide {
  display: none;
}

.kyash-note {
  width: 100%;
  display: none;
}
.kyash-note .img {
  margin-top: 1rem;
}

.card_image {
  display: none;
}
.card_image.allow-file {
  display: flex;
}

.id_image.disallow-file {
  display: none;
}

.att_note .img {
  margin-top: 1rem;
  padding-left: 14px;
}
@media screen and (max-width: 767px) {
  .att_note .img {
    padding-left: 0;
  }
  .att_note .img img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 20rem;
  }
}

/** modal**/
.modal-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  max-width: calc(100% - 20px);
  z-index: 1002;
  height: 990px;
  max-height: 90dvh;
  border-radius: 16px;
  background-color: #fff;
  padding: 20px 10px;
}

.modal-window ::-webkit-scrollbar {
  width: 8px;
}

.modal-window ::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.modal-window ::-webkit-scrollbar-thumb {
  background: #8b8b8b;
  border-radius: 10px;
}

.modal-window ::-webkit-scrollbar-thumb:hover {
  background: #636363;
}

.modal-window .modal-body {
  padding: 12px 30px;
  height: 100%;
  overflow: auto;
}

@media screen and (max-width: 767px) {
  .modal-window {
    padding-top: 45px;
  }
  .modal-window .modal-body {
    padding: 0;
  }
}
@media screen and (min-width: 992px) and (max-height: 800px) {
  .modal-window {
    height: 90vh;
  }
}
.circle-close {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 2px solid #ff686c;
  padding: 7px 7px;
  transition: all 0.25s;
  border-radius: 10px;
  border-radius: 50%;
}

.circle-close-text {
  font-weight: bold;
  font-size: 18px;
  padding-top: 3px;
}

.circle-close-icon {
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .circle-close-icon {
    width: 25px;
    height: 25px;
  }
}

.circle-close-icon svg {
  width: 100%;
  height: auto;
}

.circle-close-icon svg g {
  transform: rotateZ(45deg);
  transform-origin: 50%;
  stroke: #ff686c;
  transition: stroke 0.25s ease-in-out;
}

@media screen and (max-width: 767px) {
  .circle-close {
    top: -10px;
    right: -10px;
  }
}
.modal-title {
  display: block;
  color: #01a66e;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}

.modal-content {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .modal-title {
    font-size: 1.2em;
  }
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 990;
}

.mk-button {
  margin-top: 2rem;
}
.mk-button__ttl {
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.mk-button--app a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 23.3rem;
  height: 5.4rem;
  max-width: 100%;
  margin: 0.2rem auto;
  text-align: center;
  padding: 1.2rem 1rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 5rem;
  position: relative;
  background-color: #01a66e;
}
.mk-button--app a .icon-arrow {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}

.valid-wrap {
  border-radius: 0.5rem;
  border: 0.2rem solid #01a66e;
  padding: 1rem;
  order: 3;
}

@media screen and (max-width: 767px) {
  .valid-wrap {
    order: 1;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .valid-wrap {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    max-width: 85%;
  }
}
.valid-ttl {
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 0.9em;
  font-weight: bold;
  color: #000;
}

.valid-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.valid-card .item {
  text-align: center;
}

.valid-card .item-txt {
  font-size: 0.8em;
}

.mlist {
  margin: 1em 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .form-note {
    order: 3;
  }
}

@media screen and (max-width: 767px) {
  #card_image .form-item .att_note {
    order: 1;
    margin-bottom: 1rem;
  }
  #card_image .form-item .att_note .sub {
    margin-top: 0;
  }
  #card_image .form-item .attachment-group {
    order: 2;
  }
}

.top .l-main {
  padding-bottom: 0;
}

.mv {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background: url(../images/top/mv-bg_sp.jpg) no-repeat center bottom/cover;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .mv {
    background: url(../images/top/mv-bg_pc.jpg) no-repeat center bottom/cover;
  }
}
.mv__inner {
  padding: 0 2rem;
  padding-bottom: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    max-width: 127.2rem;
    padding-right: 26rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 6rem;
  }
}
.mv__inner::after {
  content: "";
  position: absolute;
  background: url(../images/top/31854597_l.png) no-repeat bottom/contain;
  bottom: 0;
  right: -3.9rem;
  height: 41.2rem;
  z-index: 1;
  aspect-ratio: 674/1235;
}
@media screen and (min-width: 768px) {
  .mv__inner::after {
    width: 45.2rem;
    height: 63rem;
    right: -15rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .mv__inner::after {
    right: -9rem;
  }
}
.mv .mv-copy {
  padding-top: 1.8rem;
  text-align: left;
}
.mv .copy_01__text {
  color: #fcee21;
  /*  leading-trim: both;
  text-edge: cap;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #00a66f; */
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
  --stroke-width: 0.4rem;
  --stroke-color: #00a66f;
  text-shadow: calc(var(--stroke-width) * 1) calc(var(--stroke-width) * 0) 0 var(--stroke-color), calc(var(--stroke-width) * 0.9511) calc(var(--stroke-width) * 0.309) 0 var(--stroke-color), calc(var(--stroke-width) * 0.809) calc(var(--stroke-width) * 0.5878) 0 var(--stroke-color), calc(var(--stroke-width) * 0.5878) calc(var(--stroke-width) * 0.809) 0 var(--stroke-color), calc(var(--stroke-width) * 0.309) calc(var(--stroke-width) * 0.9511) 0 var(--stroke-color), calc(var(--stroke-width) * 0) calc(var(--stroke-width) * 1) 0 var(--stroke-color), calc(var(--stroke-width) * -0.309) calc(var(--stroke-width) * 0.9511) 0 var(--stroke-color), calc(var(--stroke-width) * -0.5878) calc(var(--stroke-width) * 0.809) 0 var(--stroke-color), calc(var(--stroke-width) * -0.809) calc(var(--stroke-width) * 0.5878) 0 var(--stroke-color), calc(var(--stroke-width) * -0.9511) calc(var(--stroke-width) * 0.309) 0 var(--stroke-color), calc(var(--stroke-width) * -1) calc(var(--stroke-width) * 0) 0 var(--stroke-color), calc(var(--stroke-width) * -0.9511) calc(var(--stroke-width) * -0.309) 0 var(--stroke-color), calc(var(--stroke-width) * -0.809) calc(var(--stroke-width) * -0.5878) 0 var(--stroke-color), calc(var(--stroke-width) * -0.5878) calc(var(--stroke-width) * -0.809) 0 var(--stroke-color), calc(var(--stroke-width) * -0.309) calc(var(--stroke-width) * -0.9511) 0 var(--stroke-color), calc(var(--stroke-width) * 0) calc(var(--stroke-width) * -1) 0 var(--stroke-color), calc(var(--stroke-width) * 0.309) calc(var(--stroke-width) * -0.9511) 0 var(--stroke-color), calc(var(--stroke-width) * 0.5878) calc(var(--stroke-width) * -0.809) 0 var(--stroke-color), calc(var(--stroke-width) * 0.809) calc(var(--stroke-width) * -0.5878) 0 var(--stroke-color), calc(var(--stroke-width) * 0.9511) calc(var(--stroke-width) * -0.309) 0 var(--stroke-color);
}
@media screen and (min-width: 768px) {
  .mv .copy_01__text {
    font-size: 9.6rem;
    letter-spacing: 0.2em;
    --stroke-width: 0.6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .mv .copy_01__text {
    font-size: 7.6rem;
  }
}
.mv .copy_01__textsm {
  color: #00a66f;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .mv .copy_01__textsm {
    font-size: 4.8rem;
  }
}
.mv .copy_02 {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.4rem;
  padding-left: 0.5rem;
}
.mv .copy_02 span {
  display: flex;
  width: 3rem;
  height: 3rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.8rem;
  background: #00a66f;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .mv .copy_02 {
    margin-top: 2rem;
  }
  .mv .copy_02 span {
    width: 8rem;
    height: 8rem;
    font-size: 4.8rem;
    border-radius: 1.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .mv .copy_02 span {
    width: 7rem;
    height: 7rem;
    font-size: 4.2rem;
  }
}
.mv .copy_card {
  margin-top: 2rem;
  background: #f2fcfa;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
  display: flex;
  padding: 2.4rem 2.7rem 2.4rem 2.7rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-left: -2rem;
  margin-right: -2rem;
}
.mv .copy_card__title {
  color: #00a66f;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .mv .copy_card__title {
    font-size: 2.3rem;
  }
}
.mv .copy_card ul {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}
.mv .copy_card ul li {
  flex: 1;
}
.mv .copy_card ul li .img {
  width: 7.6rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mv .copy_card ul li .txt {
  color: #00a66f;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .mv .copy_card {
    max-width: 54.4rem;
    padding: 2.4rem 1rem 2.4rem 1rem;
    margin-left: 0;
    margin-right: 0;
  }
  .mv .copy_card__title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .mv .copy_card__title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  .mv .copy_card ul {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    gap: 2.4rem;
  }
  .mv .copy_card ul li .img {
    width: 8.8rem;
  }
  .mv .copy_card ul li .txt {
    font-size: 2rem;
  }
}
.mv .max-rate {
  width: 25.4rem;
  height: 14.7rem;
  background: url(../images/top/mv-deco.png) no-repeat top center/contain;
  padding-top: 3rem;
  margin-top: 1.4rem;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv .max-rate {
    margin-left: -1rem;
  }
}
.mv .max-rate__title {
  color: #fcee21;
  font-weight: 900;
  line-height: 1.2;
  font-size: 2.4rem;
  letter-spacing: 4.8px;
  --stroke-width: 0.3rem;
  --stroke-color: #00a66f;
  text-shadow: calc(var(--stroke-width) * 1) calc(var(--stroke-width) * 0) 0 var(--stroke-color), calc(var(--stroke-width) * 0.9511) calc(var(--stroke-width) * 0.309) 0 var(--stroke-color), calc(var(--stroke-width) * 0.809) calc(var(--stroke-width) * 0.5878) 0 var(--stroke-color), calc(var(--stroke-width) * 0.5878) calc(var(--stroke-width) * 0.809) 0 var(--stroke-color), calc(var(--stroke-width) * 0.309) calc(var(--stroke-width) * 0.9511) 0 var(--stroke-color), calc(var(--stroke-width) * 0) calc(var(--stroke-width) * 1) 0 var(--stroke-color), calc(var(--stroke-width) * -0.309) calc(var(--stroke-width) * 0.9511) 0 var(--stroke-color), calc(var(--stroke-width) * -0.5878) calc(var(--stroke-width) * 0.809) 0 var(--stroke-color), calc(var(--stroke-width) * -0.809) calc(var(--stroke-width) * 0.5878) 0 var(--stroke-color), calc(var(--stroke-width) * -0.9511) calc(var(--stroke-width) * 0.309) 0 var(--stroke-color), calc(var(--stroke-width) * -1) calc(var(--stroke-width) * 0) 0 var(--stroke-color), calc(var(--stroke-width) * -0.9511) calc(var(--stroke-width) * -0.309) 0 var(--stroke-color), calc(var(--stroke-width) * -0.809) calc(var(--stroke-width) * -0.5878) 0 var(--stroke-color), calc(var(--stroke-width) * -0.5878) calc(var(--stroke-width) * -0.809) 0 var(--stroke-color), calc(var(--stroke-width) * -0.309) calc(var(--stroke-width) * -0.9511) 0 var(--stroke-color), calc(var(--stroke-width) * 0) calc(var(--stroke-width) * -1) 0 var(--stroke-color), calc(var(--stroke-width) * 0.309) calc(var(--stroke-width) * -0.9511) 0 var(--stroke-color), calc(var(--stroke-width) * 0.5878) calc(var(--stroke-width) * -0.809) 0 var(--stroke-color), calc(var(--stroke-width) * 0.809) calc(var(--stroke-width) * -0.5878) 0 var(--stroke-color), calc(var(--stroke-width) * 0.9511) calc(var(--stroke-width) * -0.309) 0 var(--stroke-color);
}
@media screen and (min-width: 768px) {
  .mv .max-rate__title {
    font-size: 3.2rem;
    --stroke-width: 0.4rem;
  }
}
.mv .max-rate__txt {
  color: #fe0032;
  text-align: center;
  font-size: 5rem;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0px 0px 6px #fff100;
}
.mv .max-rate__txt .unit {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .mv .max-rate__txt {
    font-size: 8.6rem;
  }
  .mv .max-rate__txt .unit {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .mv .max-rate {
    width: 37.1rem;
    height: 20.5rem;
  }
}
.mv .max-rate--02 .max-rate__title {
  font-size: 2.6rem;
}
.mv .max-rate--02 .max-rate__txt {
  font-size: 3.6rem;
  margin-top: 0.5rem;
}
.mv .max-rate--02 .max-rate__txt .small {
  font-size: 0.85em;
}
@media screen and (max-width: 767px) {
  .mv .max-rate--02 {
    padding-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .mv .max-rate--02 .max-rate__title {
    font-size: 3.8rem;
  }
  .mv .max-rate--02 .max-rate__txt {
    font-size: 5rem;
  }
}
.mv .mv-point {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 4.2rem;
  position: relative;
  z-index: 2;
}
.mv .mv-point .item {
  display: flex;
  padding: 0.8rem 0.3rem;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  border: 3px solid #01a86f;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 4px solid transparent;
  background-image: linear-gradient(#00a66f, #00a66f), linear-gradient(90deg, #01a86f 0%, #02ac6c 10.26%, #03b06b 17.33%, #05b469 25.99%, #06b866 32.91%, #09bd65 42.29%, #14c15e 52.4%, #3bc94c 62.35%, #63d238 71.01%, #82d829 81.26%, #b5e311 96.87%);
  box-shadow: 3px 4px 0px 0px rgba(0, 0, 0, 0.61);
  position: relative;
}
.mv .mv-point .item-num {
  position: absolute;
  top: -1rem;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 100px;
  border: 3px solid #fcee21;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  padding-bottom: 0.3rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  background-color: #fff;
  color: #06b866;
}
.mv .mv-point .item-text {
  color: #fcee21;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.mv .mv-point .item .icon {
  height: 8.2rem;
  width: 8.2rem;
  display: block;
  background: var(--img) no-repeat center/contain;
}
@media (max-width: 1300px) {
  .mv .mv-point .item .icon {
    height: 7.6rem;
    width: 7.6rem;
  }
}
.mv .mv-point .item .icon.icon-point1 {
  --img: url("../images/top/point1.svg");
}
@media screen and (min-width: 768px) {
  .mv .mv-point .item .icon.icon-point1 {
    width: 6.6rem;
  }
}
.mv .mv-point .item .icon.icon-point2 {
  --img: url("../images/top/point2.svg");
}
.mv .mv-point .item .icon.icon-point3 {
  --img: url("../images/top/point3.svg");
}
@media screen and (min-width: 768px) {
  .mv .mv-point {
    max-width: calc(100% - 5rem);
    margin-left: 0;
    margin-right: auto;
    margin-top: 5rem;
    gap: 4rem;
  }
  .mv .mv-point .item {
    gap: 1.5rem;
  }
  .mv .mv-point .item-num {
    width: 5rem;
    height: 5rem;
    font-size: 3.2rem;
    top: 0;
  }
  .mv .mv-point .item-text {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .mv .mv-point .item-text {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .mv .mv-point .item-3 {
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv .mv-point {
    gap: 1rem;
  }
  .mv .mv-point .item {
    gap: 0.5rem;
  }
  .mv .mv-point .item .icon {
    height: 2.8rem;
    width: 2.8rem;
  }
  .mv .mv-point .item-3 {
    gap: 0;
  }
}
.mv .mv-text {
  margin-top: 3rem;
  color: #00a66f;
  text-align: center;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 900;
  padding: 0.8rem 4.8rem;
  border-radius: 2rem;
  background: #f2fcfa;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-left: 5rem;
  z-index: 2;
}
.mv .mv-text::before {
  content: "";
  position: absolute;
  left: -1rem;
  bottom: 0rem;
  width: 5.4rem;
  height: 6.8rem;
  background: url(../images/top/541499.png) no-repeat bottom center/contain;
}
@media screen and (min-width: 768px) {
  .mv .mv-text {
    font-size: 2.1rem;
    padding: 2.4rem;
    padding-left: 8.8rem;
    max-width: calc(100% - 5rem);
    margin-top: 8rem;
  }
  .mv .mv-text::before {
    width: 10.8rem;
    height: 13.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .mv .mv-text {
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 768px) {
  .mv .copy-row {
    margin-top: 5rem;
    display: flex;
    align-items: end;
    gap: 3rem;
  }
  .mv .copy-row .copy_card,
  .mv .copy-row .max-rate {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .mv.ver2 .copy_card .copy_card__in {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  .mv.ver2 .copy_card .copy_card__title {
    text-align: left;
  }
  .mv.ver2 .copy_card ul {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .mv.ver2 .max-rate-wrap {
    gap: 2rem;
  }
  .mv.ver2.ver3 .copy-row {
    gap: 5rem;
  }
}

.mv.ver3 .copy_card__title {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .mv.ver3 .copy_card {
    padding: 2rem 2.7rem 2rem 2.7rem;
  }
}
.mv.ver3 .copy_card ul li .img {
  width: 7.5rem;
}
.mv.ver3 .copy_card ul li .txt {
  font-size: 1.8rem;
}
.mv.ver3 .max-rate--02 .max-rate__title {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .mv.ver3 .max-rate--02 .max-rate__title {
    font-size: 2.3rem;
  }
}
.mv.ver3 .max-rate--02 .max-rate__txt {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .mv.ver3 .max-rate--02 .max-rate__txt {
    font-size: 2.94rem;
  }
}
.mv.ver3 .copy-row {
  gap: 2rem;
}
.mv.ver3 .max-rate {
  width: 27.1rem;
  height: 15.5rem;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .mv.ver3 .max-rate {
    width: 20.7rem;
    height: 12rem;
    padding-top: 1.6rem;
    margin-top: 0;
  }
}
.mv.ver3 .max-rate-wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .mv.ver3 .max-rate-wrap {
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .mv.ver3 .mv-point {
    grid-template-columns: 1fr;
    max-width: 20rem;
    gap: 3rem;
    margin-top: 3rem;
  }
  .mv.ver3 .mv-point .item-text {
    font-size: 1.6rem;
  }
  .mv.ver3 .mv-point .item .icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .mv.ver3 .mv-point .item-text {
    font-size: 2.4rem;
  }
  .mv.ver3 .mv-point .item .icon {
    width: 7.2rem;
    height: 7.2rem;
  }
  .mv.ver3 .mv__inner::after {
    height: 59rem;
  }
}
@media screen and (max-width: 767px) {
  .mv.ver3 .mv__inner::after {
    height: 43.2rem;
    right: -2.9rem;
  }
}

.section-content {
  margin-top: 4.4rem;
}

.title2 {
  position: relative;
  padding: 2.4rem 1.6rem;
  max-width: 100%;
  border-radius: 2.4rem;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.35;
  text-align: center;
  color: #00a66e;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 4px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #01a86f 0%, #02ac6c 10.26%, #03b06b 17.33%, #05b469 25.99%, #06b866 32.91%, #09bd65 42.29%, #14c15e 52.4%, #3bc94c 62.35%, #63d238 71.01%, #82d829 81.26%, #b5e311 96.87%);
  margin-bottom: 2.4rem;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .title2 {
    margin-bottom: 6rem;
  }
}

.title2-top {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 900;
  background: url(../images/top/mark-title.png) no-repeat center/contain;
  width: 25rem;
  height: 11.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 4rem;
  padding-top: 1rem;
  margin-bottom: -5rem;
  position: relative;
  z-index: 3;
  transform: translateX(-3rem);
}
.title2-top .txt {
  transform: rotate(-13deg);
}
@media screen and (min-width: 768px) {
  .title2-top {
    margin-bottom: -6rem;
    transform: translateX(-8rem);
  }
}

@media screen and (min-width: 768px) {
  .title2-box {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.faq {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.faq-list {
  display: grid;
  gap: 4.8rem;
}
.faq-item {
  display: flex;
  padding: 0rem 2.4rem 1.2rem 2.4rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 2.4rem;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
.faq-item::before {
  content: "Q";
  content: "";
  /*  color: #fff;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  display: flex; */
  width: 4rem;
  height: 4rem;
  /*  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  background: #00a66f; */
  position: absolute;
  top: 0;
  left: 2.4rem;
  transform: translateY(-50%);
  background: url(../images/top/q.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .faq-item::before {
    width: 8rem;
    height: 8rem;
  }
}
.faq-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
  position: relative;
  padding-right: 3rem;
  padding-top: 3rem;
  width: 100%;
  cursor: pointer;
}
.faq-title::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: calc(50% + 1.5rem);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1.5rem dashed #000;
}
.faq-title.is_active::after {
  transform: translateY(-50%) rotate(-180deg);
}
@media screen and (min-width: 768px) {
  .faq-title {
    font-size: 2.4rem;
    padding-top: 5rem;
  }
}
.faq-content {
  width: 100%;
  font-size: 1.6rem;
  line-height: normal;
  padding-top: 1.2rem;
  border-top: 1px dashed #2b3333;
  padding-bottom: 1.2rem;
  margin-top: 1.2rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .faq-content {
    font-size: 2rem;
    padding-bottom: 2.4rem;
    margin-top: 2.4rem;
  }
}

.recommended {
  position: relative;
  overflow: hidden;
  padding-top: 0.6rem;
  padding-bottom: 1.5rem;
}
.recommended::after {
  content: "";
  position: absolute;
  width: 16.1rem;
  height: 106.6rem;
  background: url(../images/top/sline.svg) no-repeat center/contain;
  top: 12rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .recommended::after {
    width: 145.1rem;
    height: 85.5rem;
    background: url(../images/top/sline-02.svg) no-repeat center/contain;
    left: 45%;
    top: 2rem;
  }
}
.recommended .section-content {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .recommended .section-content {
    margin-top: 5.4rem;
  }
}
.recommended .container {
  --max-width: 139.2rem;
}
.recommended .list {
  display: grid;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .recommended .list {
    max-width: 33rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .recommended .list {
    grid-template-columns: repeat(6, 1fr);
    gap: 4.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .recommended .list {
    gap: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .recommended .list .item-01 {
    grid-row: 1/2;
    grid-column: 2/4;
  }
  .recommended .list .item-02 {
    grid-row: 1/2;
    grid-column: 4/6;
  }
  .recommended .list .item:nth-child(n+3) {
    grid-row: 2/3;
  }
  .recommended .list .item:nth-child(3) {
    grid-column: 1/3;
  }
  .recommended .list .item:nth-child(4) {
    grid-column: 3/5;
  }
  .recommended .list .item:nth-child(5) {
    grid-column: 5/7;
  }
}
.recommended .item {
  border-radius: 2.4rem;
  background: #fff;
  box-shadow: 0px 0px 1.5rem 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.recommended .item-title {
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .recommended .item-title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .recommended .item-title {
    font-size: 2.2rem;
  }
}
.recommended .item-text {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .recommended .item-text {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .recommended .item-text {
    font-size: 1.8rem;
  }
}
.recommended .item-img {
  text-align: center;
  height: 16.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recommended .item-img img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .recommended .item-img {
    height: 25rem;
  }
}
.recommended .item-body {
  flex: 1;
  display: flex;
  padding: 1.2rem 2.4rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  background: #09bf64;
}
@media screen and (min-width: 768px) {
  .recommended .item-body {
    padding: 2.4rem;
    gap: 2.4rem;
  }
}

.flow {
  padding: 4rem 0;
  overflow: hidden;
}
.flow .section-content {
  margin-top: 7rem;
}
@media screen and (min-width: 768px) {
  .flow .section-content {
    position: relative;
  }
  .flow .section-content::after {
    content: "";
    position: absolute;
    width: 115.1rem;
    height: 34.7rem;
    background: url(../images/top/sstep.svg) no-repeat center/contain;
    pointer-events: none;
    left: 15rem;
    top: 17rem;
    z-index: -1;
    background-size: 80%;
  }
}
.flow .list {
  display: grid;
  gap: 6.4rem;
}
@media screen and (min-width: 768px) {
  .flow .list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
  }
}
.flow .item {
  padding: 7.2rem 2.4rem 2.4rem 2.4rem;
  border-radius: 2.4rem;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
.flow .item-num {
  display: flex;
  width: 8rem;
  height: 8rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 10rem;
  background: #00a66f;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.flow .item-num span {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}
.flow .item-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
}
.flow .item-img {
  text-align: center;
  margin-bottom: 1.2rem;
}
.flow .item-img img {
  width: 10rem;
}
.flow .item-text {
  font-size: 1.6rem;
}
.flow .flow-img {
  text-align: center;
  position: relative;
}
.flow .flow-img::before {
  content: "";
  width: 23.8rem;
  height: 4.8rem;
  background: url(../images/top/step-arrow.png) no-repeat center/contain;
  display: inline-block;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .flow .flow-img {
    max-width: 104rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10rem;
  }
  .flow .flow-img::before {
    content: none;
  }
}

.voice {
  padding: 4rem 0;
}
.voice .section-content {
  margin-top: 6.6rem;
}
@media screen and (min-width: 768px) {
  .voice .section-content {
    margin-top: 8.6rem;
  }
}
.voice .list {
  display: grid;
  gap: 6.5rem;
}
@media screen and (min-width: 768px) {
  .voice .list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4.8rem;
  }
}
.voice .item {
  padding: 4.8rem 2.4rem 2.4rem 2.4rem;
  border-radius: 1.6rem;
  border-top: 5px solid #00a66f;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  /*  &:nth-child(2n) {
    .item-head {
      padding-left: 0;
      padding-right: 18rem;
      .img {
        left: auto;
        right: 0;
      }
    }
  } */
}
.voice .item .img {
  position: absolute;
  bottom: 0;
  left: -2rem;
}
.voice .item .img img {
  display: block;
  height: 15rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.voice .item-head {
  position: relative;
  padding-left: 18rem;
}
.voice .item-info {
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
}
.voice .item-text {
  margin-top: 1rem;
  flex: 1;
}
.voice .item-note {
  font-weight: 700;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px dashed #2b3333;
}
@media screen and (min-width: 768px) {
  .voice .item-head {
    padding-left: 13rem;
  }
}
.voice .item {
  /* .img--01{
    left: -2.0rem;
    width: 16rem;
    @include pc{
      width: 17.9rem;
    }
  }
  .img--02{
    width: 11.2rem;
    @include pc{
      width: 10.5rem;
      left: .2rem;
    }
  }
  .img--03{
    width: 12.9rem;
    left: -.5rem;
    @include pc{
      width: 14.5rem;
    }
  } */
}
.voice .item .img img {
  width: 100%;
}

.more {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .more {
    margin-top: 8rem;
  }
}

.cash-rate {
  padding: 4rem 0;
}
.cash-rate .title-wrap {
  transform: translateY(3.5rem);
  margin-top: -3.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .cash-rate .title-wrap {
    transform: translateY(5rem);
    margin-top: -5rem;
  }
}
.cash-rate .section-content {
  margin-top: 0;
}
.cash-rate .rate-box {
  border-radius: 2.4rem;
  background: #fff;
  padding-top: 6.3rem;
  padding-bottom: 3.7rem;
  box-shadow: 0px 4px 4rem 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .cash-rate .rate-box {
    padding-inline: 1rem;
    overflow: auto;
  }
}
@media screen and (min-width: 768px) {
  .cash-rate .rate-box {
    padding-top: 12.4rem;
  }
}
.cash-rate .rate-box .rate-item-title {
  margin-right: -1rem;
  background: linear-gradient(#01a86f 12.2rem, #f7f9e8 calc(100% - 12.2rem));
}
@media screen and (max-width: 767px) {
  .cash-rate .rate-box .rate-item-title {
    margin-right: 0;
    background: linear-gradient(90deg, #01a86f 50%, #f7f9e8 50%);
    background-size: calc(100% + 1px);
  }
}
.cash-rate .rate-box .rate-item-title ._title {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  padding: 2rem;
  -webkit-clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
          clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cash-rate .rate-box .rate-item-title ._title {
    font-size: 2.6rem;
    padding: 2rem 1rem;
    padding-bottom: 3rem;
    justify-content: center;
    -webkit-clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
            clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
  }
}
.cash-rate .rate-box .rate-item-title .title_01 {
  background-color: #b5e311;
  color: #000;
}
@media screen and (min-width: 768px) {
  .cash-rate .rate-box .rate-item-title .title_01 {
    height: 12.2rem;
  }
}
.cash-rate .rate-box .rate-item-title .title_02 {
  background: #877e17;
}
@media screen and (min-width: 768px) {
  .cash-rate .rate-box .rate-item-title .title_02 {
    height: calc(100% - 12.2rem);
  }
}
@media screen and (max-width: 767px) {
  .cash-rate .rate-box .rate-item-title {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  .cash-rate .rate-box .rate-row {
    display: grid;
    gap: 2px;
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .cash-rate .rate-box .rate-row {
    margin-top: -1px;
  }
}
.cash-rate .rate-box .rate-row .rate-item {
  background: #f7f9e8;
  border: 1px solid rgba(43, 51, 51, 0.2);
  /*       &:nth-child(2) {
    .rate-item__head {
      background-color: #14c15e;
    }
  }
  &:nth-child(3) {
    .rate-item__head {
      background-color: #07c47b;
    }
  }
  &:nth-child(4) {
    .rate-item__head {
      background-color: #01a86f;
    }
  }
  &:nth-child(5) {
    .rate-item__head {
      background-color: #dc6007;
    }
  } */
}
@media screen and (min-width: 768px) {
  .cash-rate .rate-box .rate-row .rate-item {
    border-bottom: 0;
    border-top: 0;
  }
  .cash-rate .rate-box .rate-row .rate-item:first-child {
    border-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .cash-rate .rate-box .rate-row .rate-item {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
  .cash-rate .rate-box .rate-row .rate-item:first-child {
    border-top: 0;
  }
}
.cash-rate .rate-box .rate-row .rate-item__head {
  background-color: #01a86f;
  text-align: center;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.35);
  font-size: 2.4rem;
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .cash-rate .rate-box .rate-row .rate-item__head {
    height: 12.2rem;
  }
}
.cash-rate .rate-box .rate-row .rate-item__body {
  color: #fe0032;
  text-align: center;
  font-size: 3.8rem;
  font-weight: 900;
  padding-bottom: 3.3rem;
  padding-top: 3.3rem;
  text-shadow: 0px 0px 6px #fff100;
}
.cash-rate .rate-box .rate-row .rate-item__body .unit {
  font-size: 2.4rem;
}
.cash-rate .rate-box .rate-row .rate-item__body .txt1 {
  font-size: 4.5rem;
}
@media screen and (max-width: 767px) {
  .cash-rate .rate-box .rate-row .rate-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cash-rate .rate-box .rate-row .rate-item__body {
    font-size: 3.2rem;
    padding-bottom: 2.3rem;
    padding-top: 2.3rem;
  }
}
.cash-rate .rate-box__in {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(43, 51, 51, 0.2);
}
@media screen and (min-width: 768px) {
  .cash-rate .rate-box__in {
    max-width: 95%;
    display: grid;
    grid-template-columns: 25rem 1fr;
  }
}
.cash-rate .rate-note {
  text-align: right;
  margin-top: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .cash-rate .rate-note {
    font-size: 2.4rem;
  }
}

.reason-section {
  padding: 6rem 0;
  /*  background: linear-gradient(
    90deg,
    #01a86f 0%,
    #02ac6c 10.26%,
    #03b06b 17.33%,
    #05b469 25.99%,
    #06b866 32.91%,
    #09bd65 42.29%,
    #14c15e 52.4%,
    #3bc94c 62.35%,
    #63d238 71.01%,
    #82d829 81.26%,
    #b5e311 96.87%
  ); */
  background: url(../images/top/reason-bg.png) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .reason-section {
    padding: 10rem 0;
  }
}

.reason .list {
  display: grid;
  gap: 2.4rem;
}
.reason .list .item {
  border-radius: 2.4rem;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 3.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .reason .list .item {
    padding: 3.5rem 1.2rem;
  }
}
.reason .list .item-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}
.reason .list .item-title::after {
  content: "";
  width: 32.7rem;
  height: 1.3rem;
  background: url(../images/top/uline.svg) no-repeat center/contain;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  pointer-events: none;
}
.reason .list .item-title span {
  font-size: 3.2rem;
  color: #00a66f;
}
@media screen and (max-width: 767px) {
  .reason .list .item-title::after {
    width: 22.7rem;
  }
}
@media screen and (min-width: 768px) {
  .reason .list .item-title {
    font-size: 2.8rem;
  }
  .reason .list .item-title span {
    font-size: 4.8rem;
  }
}
.reason .list .item-text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 1.2rem;
}
@media screen and (min-width: 768px) {
  .reason .list .item-text {
    font-size: 2rem;
    margin-top: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .reason .list {
    grid-template-columns: 1fr 1fr;
    gap: 4.8rem;
  }
}

.safe {
  padding-top: 8rem;
  padding-bottom: 10rem;
}
.safe .cta-banner .container {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .safe .title {
    width: 100%;
  }
}
.safe .list {
  display: grid;
  gap: 1.6rem;
  margin-top: 1.2rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .safe .list {
    padding-left: 0;
    padding-right: 0;
    max-width: 64.2rem;
  }
}
@media screen and (min-width: 768px) {
  .safe .list {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem 4.8rem;
  }
}
.safe .list li {
  padding: 1.2rem;
  background: #f2fcfa;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  padding-left: 3.8rem;
  position: relative;
}
.safe .list li::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  width: 1.6rem;
  height: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/top/mark.svg) no-repeat center/contain;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .safe .list li {
    font-size: 2rem;
    padding: 2.4rem;
    padding-left: 5.8rem;
  }
  .safe .list li::before {
    left: 2.4rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}
.safe__inner {
  position: relative;
  border-radius: 2.4rem;
  border: 2px solid #00a66f;
  background: #fff;
  padding-top: 2.5rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  border-radius: 2.4rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .safe__inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.safe .safe-title-02-wrap {
  text-align: center;
  margin-top: 7rem;
}
.safe .safe-title-02 {
  color: #fff;
  text-align: center;
  padding: 1.2rem 2.4rem;
  border-radius: 10rem;
  background: #00a66f;
  font-size: 2.4rem;
  font-weight: 700;
  display: inline-flex;
  margin-bottom: 1.3rem;
  position: relative;
}
.safe .safe-title-02::after {
  content: "";
  position: absolute;
  bottom: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1.5rem solid #00a66e;
  filter: drop-shadow(0px 0px 0.4rem rgba(0, 0, 0, 0.5));
}
.safe .safe-content-02 {
  margin-top: 4.2rem;
  padding: 3rem 2rem;
  padding-bottom: 19rem;
  background: url(../images/top/safe-content-02_bg.jpg) no-repeat center/cover;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}
@media screen and (min-width: 768px) {
  .safe .safe-content-02 {
    padding: 6rem 7rem;
  }
}
@media screen and (max-width: 767px) {
  .safe .safe-content-02 {
    background-size: 122rem;
  }
}
.safe .safe-content-02 .text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .safe .safe-content-02 .text {
    font-size: 2rem;
  }
}
.safe .safe-content-02::after {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  height: 28rem;
  aspect-ratio: 664/620;
  background: url(../images/top/30006200.png) no-repeat center/contain;
}
.safe .safe-content-02::after img {
  display: block;
}
@media screen and (min-width: 768px) {
  .safe .safe-content-02::after {
    height: 39rem;
    right: 10rem;
  }
}
.safe .safety-points {
  margin-top: 5rem;
}
.safe .safety-points__box {
  display: flex;
  padding: 4.8rem 0rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.3rem;
  border-radius: 2.4rem;
  background: #e5e9f2;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  position: relative;
}
.safe .safety-points__box::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 7rem;
  background: url(../images/top/safe_img.png) no-repeat center/contain;
  height: 30.5rem;
  aspect-ratio: 209/262;
}
@media screen and (min-width: 768px) {
  .safe .safety-points__box {
    padding: 8.8rem 0;
    padding-right: 17rem;
  }
}
@media screen and (max-width: 767px) {
  .safe .safety-points__box {
    padding-bottom: 28rem;
  }
  .safe .safety-points__box::before {
    height: 25.4rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.safe .safety-points__ttl {
  border-radius: 10rem;
  background: #00a66f;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  display: inline-flex;
  padding: 1.2rem 2.4rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 10rem;
  background: #00a66f;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
  font-size: 2.4rem;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .safe .safety-points__ttl {
    padding: 2.4rem 4.8rem;
    font-size: 3.6rem;
  }
}
.safe .safety-points__txt li {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00a66f;
  text-align: center;
  font-size: 1.4rem;
  gap: 0.8rem;
  font-weight: 500;
}
.safe .safety-points__txt li + li {
  margin-top: 2rem;
}
.safe .safety-points__txt li::before {
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  background: url(../images/top/check-mark2.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .safe .safety-points__txt li {
    font-size: 2.4rem;
    text-align: left;
    justify-content: start;
    gap: 2.4rem;
    font-weight: 900;
  }
  .safe .safety-points__txt li + li {
    margin-top: 4.8rem;
  }
}

.reason2 {
  padding-top: 8rem;
}
@media screen and (min-width: 768px) {
  .reason2 {
    padding-top: 15rem;
  }
}
.reason2 .title2-box {
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .reason2 .title2-box {
    max-width: 60rem;
  }
}
.reason2__inner {
  margin-left: -2.4rem;
  margin-right: -2.4rem;
}
.reason2__title {
  padding: 0px 2.4rem;
  box-shadow: 0rem 0rem 0.8rem 0rem rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 10rem;
  background: #00a66f;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding: 1.2rem 2.4rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateY(50%);
  margin-top: -2.9rem;
}
.reason2__box {
  border-radius: 2.4rem;
  background: #fff;
  box-shadow: 0rem 0rem 0.4rem 0rem rgba(0, 0, 0, 0.25);
  padding-top: 2.8rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .reason2__box {
    padding-bottom: 4.8rem;
    padding-right: 4.8rem;
    padding-left: 4.8rem;
  }
}
.reason2 .txt-desc {
  color: #000;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
.reason2 .txt-desc2 {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1rem 2.4rem;
  gap: 1rem;
  border-radius: 2.4rem;
  background: #f2fcfa;
  box-shadow: 0rem 0rem 0.4rem 0rem rgba(0, 0, 0, 0.25);
  border-radius: 2.4rem;
}
@media screen and (min-width: 768px) {
  .reason2 .txt-desc2 {
    text-align: center;
    padding: 2.4rem;
    font-size: 2rem;
  }
}
.reason2 .list {
  margin-bottom: 1.7rem;
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .reason2 .list .item-01 {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
.reason2 .list .item .img {
  text-align: center;
}
.reason2 .list .item .img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.reason2 .list .item .text {
  margin-top: 1.2rem;
  color: #00a66f;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .reason2 .list .item .text {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .reason2 .list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .reason2 .list .item .img img {
    width: 16.5rem;
  }
  .reason2 .list .item .text {
    margin-top: 2.4rem;
  }
  .reason2 .list .item-01 {
    order: 2;
  }
  .reason2 .list .item-02 {
    order: 1;
  }
  .reason2 .list .item-03 {
    order: 3;
  }
}

.cta-banner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .cta-banner {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.cta-banner__inner {
  display: flex;
  padding: 4.5rem 0.5rem;
  flex-direction: column;
  align-items: center;
  border-radius: 4.2rem;
  background: url(../images/top/cta-bg.png) no-repeat center/cover;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100vw - 4.8rem);
}
@media screen and (min-width: 768px) {
  .cta-banner__inner {
    background: url(../images/top/cta-bg_pc.png) no-repeat center/cover;
    background-size: auto;
    position: relative;
    padding-left: 25rem;
  }
  .cta-banner__inner::before {
    content: "";
    position: absolute;
    left: 11rem;
    bottom: 0;
    background: url(../images/top/cta-img.png) no-repeat center/cover;
    width: 24.4rem;
    height: 26.6rem;
  }
}
.cta-banner .cta-text_ttl {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
}
.cta-banner .cta-text_01 {
  margin-top: 1.2rem;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .cta-banner .cta-text_ttl {
    font-size: 2.4rem;
  }
  .cta-banner .cta-text_01 {
    font-size: 2rem;
  }
}
.cta-banner .cta-button {
  margin-top: 2.4rem;
  display: grid;
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}
.cta-banner .cta-button__item {
  text-align: center;
}
.cta-banner .cta-button__item-txt {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
}
.cta-banner .cta-button__item-txt span {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .cta-banner .cta-button__item:nth-child(1) {
    order: 2;
  }
  .cta-banner .cta-button__item:nth-child(2) {
    order: 1;
  }
  .cta-banner .cta-button__item:only-child {
    grid-column: 1/3;
  }
}
.cta-banner .cta-button .more-btn {
  height: 6rem;
}
@media screen and (max-width: 767px) {
  .cta-banner .cta-button .more-btn {
    width: 32.2rem;
  }
}
.cta-banner .cta-button .phone-btn {
  position: relative;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem 1rem 2rem;
  width: 32.2rem;
  height: 6rem;
  max-width: 100%;
  border-radius: 5rem;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
  color: #00a66e;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 4px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #01a86f 0%, #02ac6c 10.26%, #03b06b 17.33%, #05b469 25.99%, #06b866 32.91%, #09bd65 42.29%, #14c15e 52.4%, #3bc94c 62.35%, #63d238 71.01%, #82d829 81.26%, #b5e311 96.87%);
  border-radius: 10rem;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
}
.cta-banner .cta-button .phone-btn .icon {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  -webkit-mask: url(../images/common/icon-phone.svg) no-repeat center/contain;
          mask: url(../images/common/icon-phone.svg) no-repeat center/contain;
  background-color: #00a66f;
}
@media screen and (min-width: 768px) {
  .cta-banner .cta-button {
    grid-template-columns: 1fr 1fr;
  }
  .cta-banner .cta-button .phone-btn {
    font-size: 2.8rem;
    width: 30.7rem;
  }
}

.company-overview .co-box {
  background-color: #fff;
  box-shadow: 0rem 0rem 3rem rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .company-overview .co-box {
    padding: 3rem 1.5rem;
  }
  .company-overview .co-box .co-outline__item {
    border-bottom: 0.2rem solid #c5e2ef;
  }
  .company-overview .co-box .co-outline__item:last-child {
    border-bottom: none;
  }
  .company-overview .co-box .co-outline__item .co-key {
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) {
  .company-overview .co-box {
    padding: 7rem 13.5rem;
  }
  .company-overview .co-box .co-outline__item {
    display: flex;
  }
  .company-overview .co-box .co-outline__item .co-key,
  .company-overview .co-box .co-outline__item .co-value {
    padding: 2rem 3rem;
    border-bottom: 0.2rem solid #e5f7ff;
  }
  .company-overview .co-box .co-outline__item .co-key {
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.9rem;
    width: 26rem;
  }
  .company-overview .co-box .co-outline__item .co-value {
    font-size: 1.8rem;
    line-height: 3.3rem;
    width: calc(100% - 26rem);
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .company-overview .co-box .co-outline__item .co-value .note {
    font-size: 0.9em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .company-overview .co-box {
    padding: 4rem 5.5rem;
  }
  .company-overview .co-box .co-outline__item .co-key {
    width: 20rem;
  }
  .company-overview .co-box .co-outline__item .co-value {
    width: calc(100% - 20rem);
  }
}
@media screen and (max-width: 767px) {
  .company-overview .co-box .co-outline__item .co-key,
  .company-overview .co-box .co-outline__item .co-value {
    padding: 1rem 1rem;
  }
}