@charset "UTF-8";
/*================================================
ブレイクポイント
================================================*/
/*================================================
カラー
================================================*/
/*================================================
フォント情報
================================================*/
html {
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/*================================================
変数
================================================*/
/* 基本設定
===================================== */
body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.0625rem;
  }
}

.wrapper {
  overflow: hidden;
}

.inner {
  max-width: 64rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-inline: 1.25rem;
  }
}

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

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

/* 共通パーツ
===================================== */
#page-top a {
  position: absolute;
  z-index: 999;
  top: -1.5625rem;
  right: 24.8125rem;
  width: 3.125rem;
  height: 3.125rem;
}
@media screen and (max-width: 767px) {
  #page-top a {
    right: 1.25rem;
  }
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.5;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    text-decoration: underline;
  }
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUp {
  -webkit-animation: fadeUp 0.5s ease;
          animation: fadeUp 0.5s ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
}

.delay-1 {
  animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  -webkit-animation-delay: 0.35s;
  -o-animation-delay: 0.35s;
}

.delay-3 {
  animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
}

.delay-4 {
  animation-delay: 0.65s;
  -moz-animation-delay: 0.65s;
  -webkit-animation-delay: 0.65s;
  -o-animation-delay: 0.65s;
}

.delay-5 {
  animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
}

.scroll-area {
  overflow-x: scroll;
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.375rem;
}
@media screen and (max-width: 767px) {
  .heading {
    gap: 1.375rem;
  }
}

.heading__subtitle {
  color: #ed6c00;
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4166666667;
  padding: 0.0625rem 3.5625rem 0.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .heading__subtitle {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    padding: 0.125rem 1.875rem;
  }
}
.heading__subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.3125rem;
  height: 1.3125rem;
  border-top: 0.1875rem solid #23a8d9;
  border-left: 0.1875rem solid #23a8d9;
  border-radius: 0.125rem;
}
@media screen and (max-width: 767px) {
  .heading__subtitle::before {
    width: 0.75rem;
    height: 0.75rem;
    border-top: 0.125rem solid #23a8d9;
    border-left: 0.125rem solid #23a8d9;
    border-radius: 0.125rem;
  }
}
.heading__subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1.3125rem;
  height: 1.3125rem;
  border-bottom: 0.1875rem solid #23a8d9;
  border-right: 0.1875rem solid #23a8d9;
  border-radius: 0.125rem;
}
@media screen and (max-width: 767px) {
  .heading__subtitle::after {
    width: 0.75rem;
    height: 0.75rem;
    border-bottom: 0.125rem solid #23a8d9;
    border-right: 0.125rem solid #23a8d9;
    border-radius: 0.125rem;
  }
}

.heading__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  padding-bottom: 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .heading__title {
    gap: 0.3125rem;
    padding-bottom: 1.375rem;
  }
}
.heading__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.25rem;
  height: 0.75rem;
  background: url(../img/heading-accent.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .heading__title::after {
    width: 1.625rem;
    height: 0.375rem;
  }
}
.heading__title img {
  width: 41.125rem;
}
@media screen and (max-width: 767px) {
  .heading__title img {
    width: 20rem;
  }
}
.heading__title span {
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1.0666666667;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .heading__title span {
    font-size: 1.5625rem;
    line-height: 1.44;
    letter-spacing: 0.05em;
  }
}
.heading__title .number {
  color: #ed6c00;
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .heading__title .number {
    font-size: 2.5rem;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }
}

.cta-button {
  display: inline-block;
  width: 33.375rem;
  height: 5.625rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 5.625rem;
  letter-spacing: 0.075em;
  background: #58be4a url(../img/btn-line.png) no-repeat center center/32.5rem 4.875rem;
  border-radius: 3rem;
  -webkit-box-shadow: 0 0.375rem 0 #43673e;
          box-shadow: 0 0.375rem 0 #43673e;
  padding-left: 4rem;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .cta-button {
    width: 20.9375rem;
    height: 3.75rem;
    font-size: 1.25rem;
    line-height: 3.75rem;
    background: #58be4a url(../img/btn-line.png) no-repeat center center/20.3125rem 3.1875rem;
    border-radius: 1.875rem;
    -webkit-box-shadow: 0 0.25rem 0 #43673e;
            box-shadow: 0 0.25rem 0 #43673e;
    padding-left: 2.6875rem;
  }
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.9375rem;
  height: 2.5625rem;
  background: url(../img/btn-icon.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .cta-button::before {
    left: 4.0625rem;
    width: 1.875rem;
    height: 1.625rem;
  }
}
.cta-button:hover {
  -webkit-transform: translateY(0.375rem);
          transform: translateY(0.375rem);
  -webkit-box-shadow: 0 0 0 #43673e;
          box-shadow: 0 0 0 #43673e;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .cta-button:hover {
    -webkit-transform: translateY(0.25rem);
            transform: translateY(0.25rem);
  }
}
@media screen and (max-width: 767px) {
  .cta-button--small {
    width: 20.0625rem;
    background: #58be4a url(../img/btn-line.png) no-repeat center center/19.375rem 3.1875rem;
  }
}
.cta-button--fix {
  width: 29.9375rem;
  height: 5.375rem;
  font-size: 1.75rem;
  line-height: 5.375rem;
  background: #58be4a url(../img/btn-line.png) no-repeat center center/29rem 4.5625rem;
  -webkit-box-shadow: 0 0.5rem 0 #43673e;
          box-shadow: 0 0.5rem 0 #43673e;
  padding-left: 3.375rem;
}
.cta-button--fix::before {
  left: 5.8125rem;
  width: 2.625rem;
  height: 2.3125rem;
  background: url(../img/btn-icon.png) no-repeat center center/contain;
}
.cta-button--fix:hover {
  -webkit-transform: translateY(0.5rem);
          transform: translateY(0.5rem);
}

.fixed-button {
  display: inline-block;
  width: 29.9375rem;
  height: 5.375rem;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 5.375rem;
  letter-spacing: 0.075em;
  background: #58be4a url(../img/btn-line.png) no-repeat center center/29rem 4.5625rem;
  -webkit-box-shadow: 0 0.5rem 0 #43673e;
          box-shadow: 0 0.5rem 0 #43673e;
  border-radius: 3rem;
  padding-left: 3.375rem;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fixed-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5.8125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.625rem;
  height: 2.3125rem;
  background: url(../img/btn-icon.png) no-repeat center center/contain;
}
.fixed-button:hover {
  -webkit-transform: translateY(0.5rem);
          transform: translateY(0.5rem);
  -webkit-box-shadow: 0 0 0 #43673e;
          box-shadow: 0 0 0 #43673e;
  opacity: 1;
}

.home-button {
  display: inline-block;
  width: 28.3125rem;
  height: 5.25rem;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 5.25rem;
  letter-spacing: 0.075em;
  background: #ea6392 url(../img/btn-line-home.png) no-repeat center center/27.625rem 4.5rem;
  border-radius: 2.625rem;
  -webkit-box-shadow: 0 0.375rem 0 #7e3850;
          box-shadow: 0 0.375rem 0 #7e3850;
  padding-left: 2.9375rem;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .home-button {
    width: 20.0625rem;
    height: 3.75rem;
    font-size: 1.25rem;
    line-height: 3.75rem;
    background: #ea6392 url(../img/btn-line-home.png) no-repeat center center/1.9375rem 3.1875rem;
    border-radius: 1.875rem;
    -webkit-box-shadow: 0 0.25rem 0 #7e3850;
            box-shadow: 0 0.25rem 0 #7e3850;
    padding-left: 2.25rem;
  }
}
.home-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.1875rem;
  height: 2.125rem;
  background: url(../img/btn-icon-home.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .home-button::before {
    left: 3.9375rem;
    width: 1.5625rem;
    height: 1.5rem;
  }
}
.home-button:hover {
  -webkit-transform: translateY(0.375rem);
          transform: translateY(0.375rem);
  -webkit-box-shadow: 0 0 0 #7e3850;
          box-shadow: 0 0 0 #7e3850;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .home-button:hover {
    -webkit-transform: translateY(0.25rem);
            transform: translateY(0.25rem);
  }
}

.cta {
  margin-inline: auto;
  width: 53.125rem;
  height: 32.375rem;
  background: url(../img/cta-bg.png) no-repeat center center/contain;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta {
    width: 21.5625rem;
    height: 15.125rem;
    background: url(../img/cta-bg_sp.png) no-repeat center center/contain;
    margin-left: -0.3125rem;
  }
}

.cta__button {
  position: absolute;
  bottom: 3.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .cta__button {
    bottom: 1.875rem;
  }
}

#fix-cta {
  opacity: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 767px) {
  #fix-cta {
    bottom: 0.625rem;
    right: 0.625rem;
  }
}

.fix-cta {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fix-cta {
    width: 6.25rem;
  }
}

.fix-cta-pc {
  width: 120rem;
  height: 8.125rem;
  background: #fff;
  background-size: 120rem 10.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.75rem;
  position: relative;
}
.fix-cta-pc::before {
  content: "";
  position: absolute;
  top: -0.625rem;
  left: 0;
  width: 100%;
  height: 0.625rem;
  background: #58be4a;
}
.fix-cta-pc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10.75rem;
  background: url(../img/fix-cta-bg.png) no-repeat center center/120rem 10.75rem;
}

.fix-cta-pc__text img {
  width: 32.75rem;
}

.fix-cta-pc__button {
  position: relative;
  z-index: 999;
}

.fix-cta-sp a {
  width: 6.25rem;
  height: 6.25rem;
}

#fix-cta.show {
  opacity: 1;
}

/* header
===================================== */
.header {
  width: 100%;
  height: 5rem;
  background: #fff;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.125rem;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    height: 3.125rem;
  }
}
.header__logo a img {
  width: 16.75rem;
}
@media screen and (max-width: 767px) {
  .header__logo a img {
    width: 10.4375rem;
  }
}

/* footer
===================================== */
.footer {
  margin-bottom: 8.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-bottom: 0;
  }
}

.footer-main {
  text-align: center;
  padding: 45px 0;
  background-color: #505050;
}

.footer__text {
  color: #fff;
  font-size: 12px;
  line-height: 2.1666666667;
  letter-spacing: 0.025em;
}

.footer-notes {
  margin: 50px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid #707070;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.footer-copyright {
  margin: 10px 0 0;
  font-size: 12px;
}
.footer-copyright small {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}

/* fv
===================================== */
.fv {
  margin-top: -5rem;
  padding-top: 9.6875rem;
  padding-bottom: 4.375rem;
  background: url(../img/fv-bg.png) no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .fv {
    margin-top: -3.125rem;
    padding-top: 4.25rem;
    padding-bottom: 1.875rem;
    background: url(../img/fv-bg_sp.png) no-repeat top center/cover;
  }
}

.fv__button {
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__button {
    margin-top: 0.75rem;
  }
}

/* about
===================================== */
.about {
  padding-top: 4.375rem;
  padding-bottom: 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.about__decoration01,
.about__decoration02 {
  position: absolute;
  z-index: -1;
}

.about__decoration01 {
  top: 13.1875rem;
  left: 16.125rem;
  width: 16.1875rem;
  height: 16.1875rem;
  background: url(../img/about-decoration01.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .about__decoration01 {
    display: none;
  }
}

.about__decoration02 {
  bottom: -5.4375rem;
  right: 19.6875rem;
  width: 23.5rem;
  height: 23.5rem;
  background: url(../img/about-decoration02.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .about__decoration02 {
    bottom: auto;
    right: auto;
    top: 17.625rem;
    left: 4.375rem;
    width: 24.4375rem;
    height: 24.4375rem;
  }
}

.about__content {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .about__content {
    margin-top: 0.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}

.about__img {
  width: 30.875rem;
}
@media screen and (max-width: 767px) {
  .about__img {
    width: 100%;
  }
}

.about__text {
  width: calc(100% - 30.875rem - 2.5rem);
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.8421052632;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .about__text {
    width: 100%;
    font-size: 1.0625rem;
    line-height: 1.8823529412;
  }
}
.about__text span {
  color: #ed6c00;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.8421052632;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .about__text span {
    font-size: 1.0625rem;
    line-height: 1.8823529412;
  }
}

/* merit
===================================== */
.merit {
  background: #f8f7f1;
}

.merit__summary {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  padding-top: 6.25rem;
  padding-bottom: 11.25rem;
  background: url(../img/merit-summary-bg.png) no-repeat top center/100% 54.125rem;
}
@media screen and (max-width: 767px) {
  .merit__summary {
    padding-top: 3.75rem;
    padding-bottom: 7.1875rem;
    background: url(../img/merit-summary-bg_sp.png) no-repeat top center/100% 86.25rem;
  }
}

.merit__title {
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .merit__title span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .merit__title .block {
    width: 100%;
    text-align: center;
  }
}
.merit__title img {
  padding-top: 0.625rem;
  width: 2.25rem;
}
@media screen and (max-width: 767px) {
  .merit__title img {
    padding-top: 0.3125rem;
    width: 1.25rem;
  }
}

.merit-summary__items {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .merit-summary__items {
    margin-top: 1.125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.1875rem;
  }
}

.merit-summary__item {
  width: 20.9375rem;
}
@media screen and (max-width: 767px) {
  .merit-summary__item {
    width: 100%;
  }
}

.merit-summary__item-img {
  width: 19.875rem;
  position: relative;
  z-index: 1;
}

.merit-summary__item-body {
  margin-top: -5.125rem;
  width: 100%;
  height: 14.625rem;
  border-radius: 0.625rem;
  background: #fff;
  padding: 6.8125rem 1.0625rem 1.9375rem 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .merit-summary__item-body {
    height: 12.375rem;
    padding: 6.4375rem 1.0625rem 2.1875rem 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .merit-summary__item-body--type1 {
    height: 14rem;
  }
}
@media screen and (max-width: 767px) {
  .merit-summary__item-body--type2 {
    height: 10.75rem;
  }
}

.merit-summary__item-text {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.8421052632;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .merit-summary__item-text {
    font-size: 1.0625rem;
    line-height: 1.5294117647;
  }
}
.merit-summary__item-text span {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.8421052632;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(30%, rgba(255, 245, 2, 0.2)), color-stop(70%, rgba(255, 245, 2, 0.2)), to(transparent));
  background: linear-gradient(transparent 0%, rgba(255, 245, 2, 0.2) 30%, rgba(255, 245, 2, 0.2) 70%, transparent 100%);
}
@media screen and (max-width: 767px) {
  .merit-summary__item-text span {
    font-size: 1.0625rem;
    line-height: 1.5294117647;
  }
}

.merit-summary__item-number {
  position: absolute;
  bottom: -1.5rem;
  right: 0;
  color: #ed6c00;
  font-family: "Barlow", sans-serif;
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
}
.merit-summary__item-number--blue {
  color: #23a8d9;
}

.merit__detail {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .merit__detail {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

.merit-detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .merit-detail__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.merit-detail__item-wrap {
  width: calc(100% - 30.9375rem - 2.5rem);
}
@media screen and (max-width: 767px) {
  .merit-detail__item-wrap {
    width: 100%;
    display: contents;
  }
}

.merit-detail__item-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-heading {
    gap: 0;
  }
}

.merit-detail__item-subtitle {
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-subtitle {
    font-size: 1.0625rem;
    line-height: 1.8823529412;
  }
}

.merit-detail__item-title {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-title {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}
.merit-detail__item-title .strong {
  color: #ed6c00;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-title .strong {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}
.merit-detail__item-title .strong--blue {
  color: #23a8d9;
}

.merit-detail__item-number {
  position: absolute;
}

.merit-detail__item-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9444444444;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-text {
    font-size: 1.0625rem;
    line-height: 1.8823529412;
    letter-spacing: 0.025em;
  }
}
.merit-detail__item-text span {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9444444444;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(30%, rgba(255, 245, 2, 0.2)), color-stop(70%, rgba(255, 245, 2, 0.2)), to(transparent));
  background: linear-gradient(transparent 0%, rgba(255, 245, 2, 0.2) 30%, rgba(255, 245, 2, 0.2) 70%, transparent 100%);
}
@media screen and (max-width: 767px) {
  .merit-detail__item-text span {
    font-size: 1.0625rem;
    line-height: 1.8823529412;
    letter-spacing: 0.025em;
  }
}

.merit-detail__item-img {
  width: 30.9375rem;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-img {
    width: 100%;
  }
}

.merit-detail__item-design {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-design {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.merit-detail__item-design .merit-detail__item-heading {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.merit-detail__item-design .merit-detail__item-number {
  bottom: 0;
  right: 0;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 13.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4198113208;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-design .merit-detail__item-number {
    bottom: 0.625rem;
    font-size: 6.8125rem;
    line-height: 1.3302752294;
  }
}
.merit-detail__item-design .merit-detail__item-text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-design .merit-detail__item-text {
    margin-top: 1.125rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 767px) {
  .merit-detail__item-design .merit-detail__item-img {
    margin-top: 1.875rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.merit-detail__item-design .merit-detail__item-img figcaption {
  margin-top: 0.3125rem;
  color: #a3a3a3;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-design .merit-detail__item-img figcaption {
    margin-top: 0.1875rem;
    text-align: right;
    font-size: 0.8125rem;
    line-height: 1.4615384615;
  }
}

.merit-detail__item-loan {
  margin-top: 6.25rem;
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .merit-detail__item-loan {
    margin-top: 3.75rem;
  }
}
.merit-detail__item-loan .merit-detail__item-box {
  width: 75rem;
  margin-inline: auto;
  padding: 4.3125rem 5.5rem 3.8125rem;
  background: #fff;
  border-radius: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  -webkit-box-shadow: 0 0.9375rem 0 #eae7df;
          box-shadow: 0 0.9375rem 0 #eae7df;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-loan .merit-detail__item-box {
    width: 100%;
    padding: 2.625rem 1.25rem 2.625rem;
    gap: 0;
    -webkit-box-shadow: 0 0.625rem 0 #eae7df;
            box-shadow: 0 0.625rem 0 #eae7df;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.merit-detail__item-loan .merit-detail__item-number {
  top: -4.375rem;
  left: 0;
  color: #f8f7f1;
  font-size: 13.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.7311320755;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-loan .merit-detail__item-number {
    top: -3.75rem;
    left: auto;
    right: -6.25rem;
    font-size: 6.8125rem;
    line-height: 1.3302752294;
  }
}
.merit-detail__item-loan .merit-detail__item-text {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-loan .merit-detail__item-text {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .merit-detail__item-loan .merit-detail__item-img {
    margin-top: 2.3125rem;
  }
}
.merit-detail__item-loan .merit-detail__item-img figcaption {
  margin-top: 1.25rem;
  color: #a3a3a3;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-loan .merit-detail__item-img figcaption {
    margin-top: 0.875rem;
    font-size: 0.8125rem;
    line-height: 1.5384615385;
  }
}

.merit-detail__item-choice {
  margin-top: 9.5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-choice {
    margin-top: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.merit-detail__item-choice .merit-detail__item-number {
  bottom: -2.5rem;
  right: 0;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 13.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4198113208;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-choice .merit-detail__item-number {
    bottom: 0.3125rem;
    right: -3.75rem;
    font-size: 6.8125rem;
    line-height: 1.3302752294;
  }
}
.merit-detail__item-choice .merit-detail__item-text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .merit-detail__item-choice .merit-detail__item-text {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .merit-detail__item-choice .merit-detail__item-img {
    margin-top: 1.875rem;
  }
}

/* reason
===================================== */
.reason {
  padding-top: 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason {
    padding-top: 3.75rem;
  }
}

.reason__decoration01 {
  position: absolute;
  top: 21rem;
  right: 14.125rem;
  width: 22.6875rem;
  height: 22.6875rem;
  background: url(../img/reason-decoration01.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .reason__decoration01 {
    top: 50.5rem;
    right: -2.9375rem;
    width: 15.875rem;
    height: 15.875rem;
  }
}

.reason__decoration02 {
  position: absolute;
  top: 62.0625rem;
  left: 10.75rem;
  width: 30.8125rem;
  height: 30.8125rem;
  background: url(../img/reason-decoration02.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .reason__decoration02 {
    top: auto;
    bottom: 37.8125rem;
    left: -6.875rem;
    width: 16.875rem;
    height: 16.875rem;
  }
}

.reason__decoration03 {
  position: absolute;
  bottom: 26.75rem;
  right: 11.25rem;
  width: 23.6875rem;
  height: 23.6875rem;
  background: url(../img/reason-decoration03.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .reason__decoration03 {
    bottom: 16.9375rem;
    right: -3.1875rem;
    width: 9.6875rem;
    height: 9.6875rem;
  }
}

.reason__decoration04 {
  display: none;
}
@media screen and (max-width: 767px) {
  .reason__decoration04 {
    display: block;
    position: absolute;
    top: 17.1875rem;
    left: -2.625rem;
    width: 10.5625rem;
    height: 10.5625rem;
    background: url(../img/reason-decoration04.png) no-repeat center center/contain;
    z-index: -1;
  }
}

@media screen and (max-width: 767px) {
  .reason__title {
    gap: 0;
  }
}

.reason__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .reason__item-title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0.9375rem;
  }
}
.reason__item-title img {
  width: 5.625rem;
}
@media screen and (max-width: 767px) {
  .reason__item-title img {
    width: 2.8125rem;
  }
}
.reason__item-title span {
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .reason__item-title span {
    font-size: 1.0625rem;
    line-height: 1.4705882353;
  }
}
.reason__item-title .strong {
  color: #23a8d9;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .reason__item-title .strong {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.reason__item-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9444444444;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .reason__item-text {
    font-size: 1.0625rem;
    line-height: 1.8823529412;
  }
}
.reason__item-text span {
  color: #ed6c00;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.9444444444;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .reason__item-text span {
    font-size: 1.0625rem;
    line-height: 1.8823529412;
  }
}

.reason__item01 {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .reason__item01 {
    margin-top: 1.5625rem;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .reason__item01 .reason__item-text {
    margin-top: 1.875rem;
  }
}
.reason__item01 .reason__item-img {
  margin-inline: auto;
  width: 53.125rem;
}
@media screen and (max-width: 767px) {
  .reason__item01 .reason__item-img {
    margin-top: 1.5625rem;
    width: 42.875rem;
  }
}

.reason__item02 {
  margin-top: 6.5625rem;
  margin-left: calc(50% - 50vw);
  margin-right: -9.875rem;
  padding-block: 4.375rem 4.25rem;
  padding-left: calc(50vw - 50%);
  padding-right: 9.875rem;
  border-radius: 0 1.25rem 1.25rem 0;
  background: #f8f7f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .reason__item02 {
    margin-top: 3.625rem;
    margin-right: -0.625rem;
    padding-block: 1.5625rem 2.625rem;
    padding-right: 0.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 1.5625rem;
  }
}
.reason__item02 .reason__item-title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.reason__item02 .reason__item-img {
  width: 32.8125rem;
}
@media screen and (max-width: 767px) {
  .reason__item02 .reason__item-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 18.75rem;
    margin-inline: auto;
  }
}
.reason__item02 .reason__item-wrap {
  width: calc(100% - 32.8125rem - 1.5625rem);
}
@media screen and (max-width: 767px) {
  .reason__item02 .reason__item-wrap {
    width: 100%;
    display: contents;
  }
}
.reason__item02 .reason__item-text {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .reason__item02 .reason__item-text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0;
  }
}

.reason__item03 {
  margin-top: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .reason__item03 {
    margin-top: 3.3125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.reason__item03 .reason__item-title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.reason__item03 .reason__item-img {
  width: 32.8125rem;
}
@media screen and (max-width: 767px) {
  .reason__item03 .reason__item-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 18.75rem;
    margin-inline: auto;
  }
}
.reason__item03 .reason__item-wrap {
  width: calc(100% - 32.8125rem - 1.5625rem);
}
@media screen and (max-width: 767px) {
  .reason__item03 .reason__item-wrap {
    display: contents;
  }
}
.reason__item03 .reason__item-text {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .reason__item03 .reason__item-text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0;
  }
}

.reason__cta {
  margin-top: 6.25rem;
  margin-bottom: -6.375rem;
}
@media screen and (max-width: 767px) {
  .reason__cta {
    margin-top: 3.75rem;
    margin-bottom: -3.875rem;
  }
}

/* case
===================================== */
.case {
  padding-top: 14.5rem;
  padding-bottom: 7.5rem;
  background: #f8f7f1;
}
@media screen and (max-width: 767px) {
  .case {
    padding-top: 8.1875rem;
    padding-bottom: 4.25rem;
  }
}

.case__inner {
  max-width: 100%;
}

.case__content {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  margin-left: 28rem;
  padding-right: 53.125rem;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .case__content {
    overflow-x: auto;
    overflow-y: auto;
    margin-left: 0;
    padding-right: 0;
    padding-bottom: 0.5rem;
  }
}
.case__content::-webkit-scrollbar {
  display: none;
}

.case__boxes {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8125rem;
  width: 197.625rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .case__boxes {
    margin-top: 1.875rem;
    gap: 1.875rem;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.case__box {
  width: 64rem;
  height: 27.6875rem;
  border-radius: 0.625rem;
  background: #fff;
  -webkit-box-shadow: 0 1.25rem 0 #eae7df;
          box-shadow: 0 1.25rem 0 #eae7df;
  padding: 2.5rem 2.25rem 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .case__box {
    width: 100%;
    height: auto;
    -webkit-box-shadow: 0 0.5rem 0 #eae7df;
            box-shadow: 0 0.5rem 0 #eae7df;
    padding: 4.625rem 1.375rem 1.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.case-box__textarea {
  width: calc(100% - 31.25rem - 2.375rem);
}
@media screen and (max-width: 767px) {
  .case-box__textarea {
    display: contents;
  }
}

.case-box__attribute {
  position: absolute;
  top: -1.375rem;
  left: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .case-box__attribute {
    top: -0.625rem;
    left: 1.4375rem;
    gap: 0.75rem;
  }
}

.case-box__attribute-photo {
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .case-box__attribute-photo {
    width: 4.8125rem;
  }
}

.case-box__attribute-text {
  margin-bottom: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .case-box__attribute-text {
    margin-bottom: 0.4375rem;
    gap: 0.125rem;
  }
}

.case-box__attribute-place {
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .case-box__attribute-place {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.case-box__attribute-family {
  display: inline-block;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1.2941176471;
  letter-spacing: 0.05em;
  padding: 0.375rem 1.125rem;
  border-radius: 1.125rem;
  background: #ed6c00;
}
@media screen and (max-width: 767px) {
  .case-box__attribute-family {
    font-size: 0.875rem;
    line-height: 1.5625rem;
    padding: 0;
    width: 13.1875rem;
    height: 1.5625rem;
    text-align: center;
    border-radius: 0.8125rem;
  }
}

.case-box__title {
  color: #000;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.56;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .case-box__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.case-box__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9444444444;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .case-box__text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}
.case-box__text span {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.9444444444;
  letter-spacing: 0.025em;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(30%, rgba(255, 245, 2, 0.2)), color-stop(70%, rgba(255, 245, 2, 0.2)), to(transparent));
  background: linear-gradient(transparent 0%, rgba(255, 245, 2, 0.2) 30%, rgba(255, 245, 2, 0.2) 70%, transparent 100%);
}
@media screen and (max-width: 767px) {
  .case-box__text span {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}

.case-box__slider {
  width: 31.25rem;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .case-box__slider {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    padding-bottom: 2.9375rem;
  }
}

.case__box01 .case-box__title {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .case__box01 .case-box__title {
    margin-top: 0;
  }
}
.case__box01 .case-box__text {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .case__box01 .case-box__text {
    margin-top: 0;
  }
}

.case__box02 .case-box__title {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .case__box02 .case-box__title {
    margin-top: 0;
  }
}
.case__box02 .case-box__text {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .case__box02 .case-box__text {
    margin-top: 0;
  }
}
.case__box02 .slider-pagination-page {
  width: 3.7916666667rem;
}
@media screen and (max-width: 767px) {
  .case__box02 .slider-pagination-page {
    width: 1.9166666667rem;
  }
}

.case__box03 .case-box__title {
  margin-top: 6.0625rem;
}
@media screen and (max-width: 767px) {
  .case__box03 .case-box__title {
    margin-top: 0;
  }
}
.case__box03 .case-box__text {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .case__box03 .case-box__text {
    margin-top: 0;
  }
}
.case__box03 .slider-pagination-page {
  width: 3.7916666667rem;
}
@media screen and (max-width: 767px) {
  .case__box03 .slider-pagination-page {
    width: 1.9166666667rem;
  }
}

.splide__slide img {
  width: 100%;
  height: auto;
}

.splide__arrow {
  top: auto;
  bottom: -4.125rem;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .splide__arrow {
    bottom: -2.9375rem;
  }
}

.splide__arrow--prev {
  left: 0;
}

.splide__arrow--next {
  right: 0;
}

.button {
  background-color: transparent;
  width: 3.125rem;
  height: 3.125rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .button {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3.125rem;
  height: 3.125rem;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .button::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.prev::before {
  background-image: url(../img/arrow-prev.png);
}

.next::before {
  background-image: url(../img/arrow-next.png);
}

.button:disabled::before {
  opacity: 0.5;
}

/* ページネーションのスタイル */
.slider-pagination-page {
  margin: 0;
  width: 4.55rem;
  height: 0.5625rem;
  opacity: 1;
  border-radius: 0;
  background-color: #f8f7f1;
}
@media screen and (max-width: 767px) {
  .slider-pagination-page {
    width: 2.3rem;
    height: 0.3125rem;
  }
}
.slider-pagination-page.is-active {
  background: #ed6c00;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.slider-pagination {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0;
  border: 0;
  bottom: -2.875rem;
}
@media screen and (max-width: 767px) {
  .slider-pagination {
    bottom: -2rem;
  }
}
.slider-pagination li {
  margin-left: 0;
  margin-right: 0;
}

/* flow
===================================== */
.flow {
  padding-top: 6.25rem;
  padding-bottom: 11.375rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(80%, rgb(255, 255, 255)), to(rgb(234, 231, 223)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 80%, rgb(234, 231, 223) 100%);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-top: 3.75rem;
    padding-bottom: 5.25rem;
  }
}

.flow__decoration01 {
  position: absolute;
  top: 19.9375rem;
  left: 19.3125rem;
  width: 17rem;
  height: 17rem;
  background: url(../img/flow-decoration01.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .flow__decoration01 {
    top: 17.625rem;
    left: -2.625rem;
    width: 10.5rem;
    height: 10.5rem;
  }
}

.flow__decoration02 {
  position: absolute;
  top: 49.8125rem;
  right: 15rem;
  width: 26.875rem;
  height: 26.8125rem;
  background: url(../img/flow-decoration02.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .flow__decoration02 {
    top: 69.9375rem;
    left: -4.125rem;
    width: 15.875rem;
    height: 15.875rem;
  }
}

.flow__decoration03 {
  display: none;
}
@media screen and (max-width: 767px) {
  .flow__decoration03 {
    display: block;
    position: absolute;
    top: -9.625rem;
    right: -4.1875rem;
    width: 15.875rem;
    height: 15.875rem;
    background: url(../img/flow-decoration03.png) no-repeat center center/contain;
    z-index: -1;
  }
}

.flow__description {
  margin-top: 3.125rem;
  margin-inline: auto;
  padding-top: 1.25rem;
  width: 53.125rem;
  height: 5.25rem;
  background: url(../img/flow-description-bg.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .flow__description {
    margin-top: 1.875rem;
    padding-top: 0.875rem;
    width: 20.9375rem;
    height: 7.1875rem;
    background: url(../img/flow-description-bg_sp.png) no-repeat center center/contain;
  }
}
.flow__description p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__description p {
    font-size: 1.0625rem;
    line-height: 1.3529411765;
    letter-spacing: 0.05em;
  }
}
.flow__description p::before {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 4.75rem;
  width: 4.375rem;
  height: 0.1875rem;
  background: url(../img/flow-description-dot.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .flow__description p::before {
    left: 8.1875rem;
    width: 3.5rem;
    height: 0.1875rem;
  }
}

.flow__steps {
  margin-top: 2.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow__steps {
    margin-top: 0.625rem;
    gap: 0.9375rem;
  }
}

.flow__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .flow__step {
    gap: 0.625rem;
  }
}

.flow-step__number {
  width: 6.375rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .flow-step__number {
    width: 3.3125rem;
  }
}
.flow-step__number--line {
  position: relative;
  z-index: 2;
}
.flow-step__number--line::before {
  content: "";
  position: absolute;
  top: 3.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.125rem;
  height: 35.25rem;
  background: url(../img/flow-step-line.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .flow-step__number--line::before {
    top: 1.875rem;
    width: 0.125rem;
    height: 55.875rem;
    background: url(../img/flow-step-line_sp.png) no-repeat center center/contain;
  }
}

.flow-step__content {
  padding-top: 0.375rem;
  width: calc(100% - 6.375rem - 1.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .flow-step__content {
    width: calc(100% - 3.3125rem - 0.625rem);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4375rem;
  }
}

.flow-step__img {
  width: 17rem;
}
@media screen and (max-width: 767px) {
  .flow-step__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}

.flow-step__textarea {
  width: calc(100% - 17rem - 1.75rem);
}
@media screen and (max-width: 767px) {
  .flow-step__textarea {
    display: contents;
  }
}

.flow-step__title {
  color: #ed6c00;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .flow-step__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

.flow-step__text {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9444444444;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .flow-step__text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0;
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}
.flow-step__text span {
  color: #23a8d9;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.8421052632;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .flow-step__text span {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}

.flow__cta {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .flow__cta {
    margin-top: 2.5rem;
  }
}

/* recommend
===================================== */
.recommend {
  margin-top: -5.125rem;
  padding-top: 9.375rem;
  padding-bottom: 8.875rem;
  background: url(../img/recommend-bg.png) no-repeat top center;
  background-size: 121.25rem 56.75rem;
  height: 56.75rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .recommend {
    margin-top: -1.875rem;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    background: url(../img/recommend-bg_sp.png) no-repeat top center;
    background-size: 25rem 45rem;
    height: 45rem;
  }
}

.recommend__content {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .recommend__content {
    margin-top: 0.8125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}

.recommend__img {
  width: 32.6875rem;
}
@media screen and (max-width: 767px) {
  .recommend__img {
    width: 100%;
  }
}

.recommend__textarea {
  width: calc(100% - 32.6875rem - 3rem);
}
@media screen and (max-width: 767px) {
  .recommend__textarea {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .recommend__button {
    text-align: center;
  }
}

.recommend__text {
  margin-top: 2.1875rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.9444444444;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .recommend__text {
    margin-top: 1.875rem;
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}

/* faq
===================================== */
.faq {
  margin-top: -5rem;
  padding-top: 13.75rem;
  padding-bottom: 6.25rem;
  background: #eae7df;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .faq {
    margin-top: -3.375rem;
    padding-top: 6.5rem;
    padding-bottom: 3.75rem;
  }
}

.faq__inner {
  max-width: 53.125rem;
}

.faq__boxes {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .faq__boxes {
    margin-top: 1.875rem;
    margin-right: -0.3125rem;
    gap: 0.9375rem;
    padding-left: 1.25rem;
  }
}

.faq__box {
  border-radius: 0.625rem;
  background: #fff;
}

.faq-box__q {
  width: 100%;
  padding: 1.4375rem 3.1875rem 1.4375rem 2.375rem;
  text-align: left;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq-box__q {
    padding: 0.6875rem 3.3125rem 0.6875rem 1.6875rem;
  }
}
.faq-box__q::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: -1.8125rem;
  width: 3.125rem;
  height: 3.125rem;
  background: url(../img/q-icon.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .faq-box__q::before {
    top: 0;
    left: -1.25rem;
    width: 2.25rem;
    height: 2.25rem;
  }
}
.faq-box__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.8125rem;
  height: 0.6875rem;
  background: url(../img/faq-close-icon.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .faq-box__q::after {
    right: 1.5625rem;
  }
}

.faq-box__q-text {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.4545454545;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .faq-box__q-text {
    font-size: 1.0625rem;
    line-height: 1.3529411765;
  }
}

.faq-box__a {
  height: 0;
  overflow: hidden;
  padding: 0 2.375rem;
  position: relative;
  -webkit-transition: height 0.3s ease, padding 0.3s ease;
  transition: height 0.3s ease, padding 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq-box__a {
    padding: 0 1rem 0 1.6875rem;
  }
}
.faq-box__a.is-open {
  overflow: visible;
  height: auto;
  padding: 1.4375rem 2.375rem;
}
@media screen and (max-width: 767px) {
  .faq-box__a.is-open {
    padding: 0.8125rem 1rem 0.875rem 1.6875rem;
  }
}
.faq-box__a::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: -1.8125rem;
  width: 3.125rem;
  height: 3.125rem;
  background: url(../img/a-icon.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .faq-box__a::before {
    top: 0;
    left: -1.25rem;
    width: 2.25rem;
    height: 2.25rem;
  }
}
.faq-box__a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48.4375rem;
  height: 0.125rem;
  background: #eae7df;
}
@media screen and (max-width: 767px) {
  .faq-box__a::after {
    width: 17.1875rem;
  }
}

.faq-box__a-text {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .faq-box__a-text {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}

.is-open .faq-box__q::after {
  background: url(../img/faq-open-icon.png) no-repeat center center/contain;
}

/* shop
===================================== */
.shop {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background: #f7f7f1;
}
@media screen and (max-width: 767px) {
  .shop {
    padding-top: 3.75rem;
    padding-bottom: 4.375rem;
  }
}

.shop__inner {
  max-width: 75rem;
}

.shop-heading {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3571428571;
  text-align: center;
  letter-spacing: 0.01em;
}

.shop-area-list {
  margin-top: 3.125rem;
  padding: 2.8125rem 3.125rem 3.125rem;
  border-radius: 0.75rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .shop-area-list {
    margin-top: 1.875rem;
  }
}

.shop-area-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 2.6875rem 0 0;
  gap: 1.0625rem;
}

.shop-area-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.1875rem;
}

.shop-area-lb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 9.375rem;
  padding: 0.8125rem 0.9375rem;
  border-radius: 0.1875rem;
  background-color: #d7d2cb;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5555555556;
  letter-spacing: 0.02em;
}

.shop-pref-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.3125rem 0;
  gap: 1.125rem 1.25rem;
}

.shop-pref-item a,
.shop-pref-item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6.875rem;
  height: 2.25rem;
  padding: 0 1.25rem 0 0.9375rem;
  border-radius: 1.125rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.shop-pref-item a {
  background: #fff url(../img/ico_arrow_right_04.png) no-repeat right 0.6875rem top 50%;
  background-size: auto 0.5rem;
  color: #333;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
}

.shop-pref-item a:hover {
  background-color: #ef6d22;
  background-image: url(../img/ico_arrow_right_05.png);
  color: #fff;
  opacity: 1;
}

.shop-pref-item span {
  color: rgba(51, 51, 51, 0.5);
}

@media screen and (max-width: 767px) {
  .shop-heading {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .shop-area-list {
    padding: 2rem 0.875rem 2.8125rem;
  }
  .shop-area-items {
    margin: 2rem 0 0;
    display: block;
  }
  .shop-area-item {
    display: block;
  }
  .shop-area-item-inner {
    padding: 1.25rem 0.6875rem;
  }
  .shop-area-lb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 3.125rem;
    padding: 0.125rem 2rem 0 0.875rem;
    border-bottom: 0.0625rem solid #d7d2cb;
    background: url(../img/ico_plus.svg) no-repeat right 0.875rem top 50%;
    background-size: 0.9375rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }
  .is-active .shop-area-lb {
    background-image: url(../img/ico_minus.svg);
  }
  .shop-pref-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 0;
  }
  .shop-pref-item a,
  .shop-pref-item span {
    width: 100%;
  }
  .js-ac-target {
    display: none;
  }
}