@charset "UTF-8";
/* breakpoint
=============================================== */
/* display
=============================================== */
.display-pc {
  display: none;
}
@media screen and (max-width: 1300px) {
  .display-pc {
    display: inline-block;
  }
}

.display-tab {
  display: none;
}
@media screen and (max-width: 800px) {
  .display-tab {
    display: inline-block;
  }
}

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

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

@media screen and (max-width: 800px) {
  .hidden-tab {
    display: none;
  }
}

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

/* style
=============================================== */
body {
  margin: 0 auto;
  max-width: 2000px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
}

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

p {
  text-align: justify;
}

.tac {
  text-align: center;
}

.font-en {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fsz-04 {
  font-size: 0.4em;
}

.fsz-06 {
  font-size: 0.6em;
}

.fsz-08 {
  font-size: 0.8em;
}

.fsz-12 {
  font-size: 1.2em;
}

.fsz-13 {
  font-size: 1.3em;
}

.fsz-14 {
  font-size: 1.4em;
}

.fsz-15 {
  font-size: 1.5em;
}

.fsz-16 {
  font-size: 1.6em;
}

.fsz-18 {
  font-size: 1.8em;
}

.fsz-20 {
  font-size: 2em;
}

.fo-bold {
  font-weight: bold;
}

/* wrapper
----------------------------------------------------------------------*/
.lp-wrapper {
  margin-inline: auto;
  max-width: 1300px;
  padding-inline: 10px;
}

.lp-inner {
  margin-inline: auto;
  max-width: 820px;
  padding-inline: 10px;
}

.text-accent {
  color: #082d60;
}

.text-purple {
  color: #082D60;
}

.text-pink {
  color: #FF519A;
}

.text-red {
  color: #c14a60;
}

.text-grad {
  background: -webkit-gradient(linear, left top, right top, from(#39567f), to(#082d60));
  background: -webkit-linear-gradient(left, #39567f 0%, #082d60 100%);
  background: linear-gradient(90deg, #39567f 0%, #082d60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-dot {
  display: inline-block;
  position: relative;
}
.text-dot::before {
  position: absolute;
  content: "";
  width: 6px;
  aspect-ratio: 1;
  border-radius: 3px;
  background-color: #082D60;
  top: -2px;
  left: calc(50% - 1px);
}

.header {
  height: 80px;
}
@media screen and (max-width: 800px) {
  .header {
    height: 60px;
  }
}

.header__logo {
  width: 140px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .header__logo {
    width: 100px;
  }
}

.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5em;
  font-size: 15px;
}

.header__left-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.header__action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 15px;
}
@media screen and (max-width: 1300px) {
  .header__action {
    gap: 10px;
  }
}

.header__action-btn {
  width: 250px;
  height: 40px;
  border-radius: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1300px) {
  .header__action-btn {
    width: 200px;
    height: 60px;
    font-size: 12px;
  }
}
@media screen and (max-width: 800px) {
  .header__action-btn {
    width: 90px;
    height: 50px;
    font-size: 10px;
  }
}

.header__action-btn:hover {
  opacity: 0.6;
}

.header__action-btn--contact {
  background-color: #FFAA00;
}

.header__action-btn--download {
  background-color: #4DA84B;
}

.header__hamburger {
  width: 40px;
  height: 30px;
  position: relative;
}
.header__hamburger > span:nth-of-type(1),
.header__hamburger > span:nth-of-type(2),
.header__hamburger > span:nth-of-type(3) {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  background-color: #082D60;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__hamburger > span:nth-of-type(1) {
  top: 0;
  left: 0;
}
.header__hamburger > span:nth-of-type(2) {
  top: calc(50% - 2px);
  left: 0;
}
.header__hamburger > span:nth-of-type(3) {
  top: calc(100% - 4px);
  left: 0;
}

.header__hamburger.is-open span:nth-of-type(1),
.header__hamburger.is-open span:nth-of-type(3) {
  top: calc(50% - 2px);
}

.header__modal {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  width: 100%;
  top: 80px;
  left: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__modal.is-show {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 800px) {
  .header__modal {
    top: 60px;
  }
}

.header__modal-nav {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 40px 0;
}

.header__modal-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5em;
}

/* 可変のフォントサイズを計算
=============================================== */
.mv {
  position: relative;
  z-index: 1;
}

.mv__btn-wrap {
  position: absolute;
  width: 40%;
  z-index: 1;
  bottom: 8%;
  left: 6%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 600px) {
  .mv__btn-wrap {
    width: 88%;
    bottom: 4%;
  }
}

.mv__btn {
  color: white;
  font-size: 32px;
  font-size: clamp(13px, 2vw, 32px);
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 7/1;
  background-color: #4DA84B;
  border-radius: 20px;
}
.mv__btn::after {
  position: absolute;
  content: "";
  width: 1em;
  aspect-ratio: 1;
  background: url(../img/btn-arrow.svg) no-repeat center center/contain;
  top: 50%;
  right: 1em;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 600px) {
  .mv__btn {
    font-size: 4vw;
  }
}

.mv__btn-shadow {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #398227;
  top: 6px;
  left: 0;
  z-index: -1;
}

.mv__btn-wrap:hover .mv__btn {
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}
.mv__btn-wrap:hover .mv__btn-shadow {
  display: none;
}

.mv__btn-catch {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  color: #000;
  font-size: 20px;
  font-size: clamp(10px, 1.25vw, 20px);
  font-weight: bold;
  text-align: center;
  padding: 0.2em 0.4em;
  border-radius: 20px;
  border: 1px solid #000;
  -webkit-transform: translateY(-70%);
      -ms-transform: translateY(-70%);
          transform: translateY(-70%);
}
@media screen and (max-width: 600px) {
  .mv__btn-catch {
    font-size: 3vw;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

/* トップ下のスライダー
----------------------------------------------------------------------*/
.top-slider {
  padding: 4% 0;
  overflow: hidden;
}

.worries {
  padding: 60px 0 100px;
  background-color: #e7eaf0;
  color: #000;
}
@media screen and (max-width: 800px) {
  .worries {
    padding: 40px 0 60px;
  }
}

.worries__ttl {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: bold;
  text-align: center;
  background-color: #ffaa00;
  padding: 18px;
  position: relative;
}
.worries__ttl::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #ffaa00;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -1px);
      -ms-transform: translate(-50%, -1px);
          transform: translate(-50%, -1px);
}
@media screen and (max-width: 800px) {
  .worries__ttl {
    padding: 8px;
  }
}

.worries__body {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 800px) {
  .worries__body {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.worries__list {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .worries__list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 10px;
  }
}

.worries__list > li {
  font-size: 18px;
  font-weight: bold;
  text-wrap: nowrap;
  padding: 10px 18px 10px 62px;
  background-color: #fff;
  border-radius: 25px;
  position: relative;
}
.worries__list > li::before {
  position: absolute;
  content: "";
  width: 25px;
  aspect-ratio: 1;
  background: url(../img/icon-checkbox.png) no-repeat center center/contain;
  top: 12px;
  left: 30px;
}
@media screen and (max-width: 800px) {
  .worries__list > li {
    font-size: 14px;
  }
}

.worries__img {
  width: 45%;
  min-width: 200px;
}

.solution__upper {
  padding: 60px 0 50px;
  background-color: #fafdff;
  color: #000;
  position: relative;
}
.solution__upper::after {
  position: absolute;
  content: "";
  width: 20vw;
  aspect-ratio: 3/1;
  background-color: #fafdff;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -1px);
      -ms-transform: translate(-50%, -1px);
          transform: translate(-50%, -1px);
}

.solution__ttl {
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
}

.solution__list {
  margin-top: 60px;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1300px) {
  .solution__list {
    margin-top: 30px;
    max-width: 570px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px 30px;
  }
}
@media screen and (max-width: 800px) {
  .solution__list {
    gap: 10px 20px;
  }
}

.solution__item {
  width: 170px;
  height: 170px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 15px rgba(215, 212, 212, 0.25);
          box-shadow: 0 4px 15px rgba(215, 212, 212, 0.25);
}
@media screen and (max-width: 800px) {
  .solution__item {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 600px) {
  .solution__item {
    width: 100px;
    height: 100px;
  }
}

.solution__item img {
  width: 100px;
}
@media screen and (max-width: 800px) {
  .solution__item img {
    width: 60px;
  }
}
@media screen and (max-width: 600px) {
  .solution__item img {
    width: 50px;
  }
}

.solution__item span {
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  .solution__item span {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .solution__item span {
    font-size: 12px;
  }
}

.solution__lower {
  padding: 130px 0 60px;
  background: url(../img/solution_bottom-bg.png) no-repeat right bottom/cover;
}
@media screen and (max-width: 800px) {
  .solution__lower {
    padding: 60px 0 30px;
  }
}

.solution__lower-txt {
  color: #fff;
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
  line-height: 2;
  text-shadow: 0 0 35px #082d60;
}

.reason {
  background-color: #e7eaf0;
  color: #000;
  padding: 130px 0 90px;
}
@media screen and (max-width: 800px) {
  .reason {
    padding: 60px 0 40px;
  }
}

.reason__ttl {
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
}

.reason__item {
  position: relative;
  margin-top: 160px;
  background-color: #fff;
  border-radius: 30px;
  padding: 100px 20px 40px;
}
@media screen and (max-width: 800px) {
  .reason__item {
    margin-top: 80px;
    padding: 60px 10px 20px;
  }
}
@media screen and (max-width: 600px) {
  .reason__item {
    margin-top: 60px;
  }
}

.reason__item-num {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 1;
  width: 130px;
  aspect-ratio: 1;
  border-radius: 65px;
  background-color: #082d60;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .reason__item-num {
    font-size: 18px;
    width: 80px;
  }
}
@media screen and (max-width: 600px) {
  .reason__item-num {
    font-size: 12px;
    width: 60px;
  }
}

.reason__item-ttl {
  position: relative;
  z-index: 2;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 500;
  text-align: center;
}

.reason__item-summery {
  margin-top: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .reason__item-summery {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.reason__item-txt {
  font-size: clamp(14px, 2vw, 20px);
}

.reason__item--01 .reason__item-txt {
  width: 55%;
}
@media screen and (max-width: 800px) {
  .reason__item--01 .reason__item-txt {
    width: 100%;
  }
}

.reason__item--01 .reason__item-img {
  width: 40%;
}
@media screen and (max-width: 800px) {
  .reason__item--01 .reason__item-img {
    margin-top: 30px;
    width: 50%;
    min-width: 200px;
  }
}

.reason__item-catch {
  margin-top: 60px;
  padding: 20px 0;
  font-size: clamp(18px, 3vw, 30px);
  color: #fff;
  font-weight: 500;
  text-align: center;
  background-color: #39567f;
}
@media screen and (max-width: 800px) {
  .reason__item-catch {
    margin-top: 30px;
  }
}

.reason__item--02 {
  position: relative;
}
.reason__item--02::before {
  position: absolute;
  content: "";
  width: 40%;
  aspect-ratio: 1;
  background: url(../img/reason_item-img02.png) no-repeat bottom right/contain;
  top: 30px;
  right: 0;
}
@media screen and (max-width: 1300px) {
  .reason__item--02::before {
    top: 70px;
  }
}
@media screen and (max-width: 1000px) {
  .reason__item--02::before {
    display: none;
  }
}

.reason__item--02 .reason__item-txt {
  width: 60%;
}
@media screen and (max-width: 800px) {
  .reason__item--02 .reason__item-txt {
    width: 100%;
  }
}

.reason__item--03 .reason__item-txt {
  margin-top: 45px;
  margin-bottom: 1em;
}

.reason__comparison {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.reason__comparison h3 {
  font-size: clamp(18px, 3vw, 30px);
  font-weight: normal;
  text-align: center;
}

.reason__comparison-body {
  padding: 30px 10px 30px;
}

.reason__comparison-flow--standard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #b8b8b8;
  color: #fff;
  font-size: 28px;
  font-size: clamp(10px, 2.1538461538vw, 28px);
  text-align: center;
  line-height: 1;
  overflow: hidden;
}

.reason__comparison-flow--standard span {
  display: inline-block;
  padding: 0.4em 0;
  position: relative;
}
.reason__comparison-flow--standard span:nth-of-type(1)::after, .reason__comparison-flow--standard span:nth-of-type(2)::after, .reason__comparison-flow--standard span:nth-of-type(3)::after {
  position: absolute;
  content: "";
  height: 100%;
  aspect-ratio: 1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 0;
  right: 0;
  -webkit-transform: translateX(160%) rotate(45deg);
      -ms-transform: translateX(160%) rotate(45deg);
          transform: translateX(160%) rotate(45deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
@media screen and (max-width: 450px) {
  .reason__comparison-flow--standard span:nth-of-type(1)::after, .reason__comparison-flow--standard span:nth-of-type(2)::after, .reason__comparison-flow--standard span:nth-of-type(3)::after {
    -webkit-transform: translateX(70%) rotate(45deg);
        -ms-transform: translateX(70%) rotate(45deg);
            transform: translateX(70%) rotate(45deg);
  }
}

.reason__comparison-txt--standard {
  background-color: #ebf2f6;
  padding: 0.4em;
  font-size: clamp(14px, 3vw, 30px);
  text-align: center;
}

.reason__comparison-detail-outer {
  overflow: scroll;
  width: 100%;
}

.reason__comparison-ttl--our {
  margin-block: min(7.5vw, 50px);
  margin-inline: auto;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: bold;
  position: relative;
}
.reason__comparison-ttl--our::after {
  position: absolute;
  content: "";
  width: 12em;
  aspect-ratio: 3/1;
  background-color: #ebf2f6;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -20%);
      -ms-transform: translate(-50%, -20%);
          transform: translate(-50%, -20%);
  z-index: -1;
}

.reason__comparison-scroll-wrap {
  overflow: scroll;
}

.reason__comparison-body--our {
  min-width: 750px;
  padding: 30px 10px;
}

.reason__comparison-flow--our {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#39567f), to(#082d60));
  background: -webkit-linear-gradient(left, #39567f 0%, #082d60 100%);
  background: linear-gradient(90deg, #39567f 0%, #082d60 100%);
  padding: 0.4em 0;
  color: #fff;
  font-size: 28px;
  font-size: clamp(14px, 2.1538461538vw, 28px);
  text-align: center;
  line-height: 1.4;
  overflow: hidden;
  position: relative;
}
.reason__comparison-flow--our::before {
  position: absolute;
  content: "";
  height: 140%;
  aspect-ratio: 1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  left: 33.3333333333%;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
      -ms-transform: translate(-100%, -50%) rotate(45deg);
          transform: translate(-100%, -50%) rotate(45deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.reason__comparison-flow--our::after {
  position: absolute;
  content: "";
  height: 140%;
  aspect-ratio: 1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  left: 66.6666666667%;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
      -ms-transform: translate(-100%, -50%) rotate(45deg);
          transform: translate(-100%, -50%) rotate(45deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.reason__comparison-flow--our span {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.reason__comparison-txt--our {
  text-align: center;
}

.reason__comparison-detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.reason__comparison-detail__item {
  margin-top: 10px;
  width: 33.3333333333%;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(125, 125, 125, 0.25);
          box-shadow: 0 4px 15px rgba(125, 125, 125, 0.25);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
}
.reason__comparison-detail__item.--01 img {
  width: 70%;
}
.reason__comparison-detail__item.--01 p {
  padding-inline: 1em;
  margin-bottom: 1em;
  font-size: clamp(12px, 1.6vw, 16px);
}
.reason__comparison-detail__item.--02 img, .reason__comparison-detail__item.--03 img {
  width: 90%;
}

.reason__automation {
  margin-top: 40px;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .reason__automation {
    max-width: 500px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.reason__automation-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 30px;
}
@media screen and (max-width: 800px) {
  .reason__automation-item {
    gap: 20px;
  }
}

.reason__automation-item h3 {
  font-size: 30px;
  font-size: clamp(18px, 2.3076923077vw, 30px);
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .reason__automation-item h3 {
    font-size: 24px;
    font-size: clamp(18px, 3vw, 24px);
  }
}

@media screen and (max-width: 1000px) {
  .reason__automation-item h3 > span {
    color: #fff;
    padding: 0 0.4em;
    background-color: #FF519A;
  }
}

.reason__automation-item p {
  font-size: 19px;
  font-size: clamp(14px, 1.4615384615vw, 19px);
  text-align: justify;
}
@media screen and (max-width: 1000px) {
  .reason__automation-item p {
    font-size: 20px;
    font-size: clamp(14px, 2.5vw, 20px);
  }
}

/* point01のスライダーの設定
----------------------------------------------------------------------*/
.reason__slider {
  margin-top: 40px;
  padding-bottom: 20px;
  overflow: hidden;
}

.reason__slide.swiper-slide {
  width: 400px;
  background-color: #fff;
  padding: 30px;
  border-radius: 30px;
  -webkit-box-shadow: 0 4px 15px #e3e2e2;
          box-shadow: 0 4px 15px #e3e2e2;
  cursor: -webkit-grab;
  cursor: grab;
}
.reason__slide.swiper-slide:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
@media screen and (max-width: 800px) {
  .reason__slide.swiper-slide {
    width: 340px;
    padding: 20px;
  }
}

.reason__slide-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.reason__slide-img > span {
  font-size: 15px;
}

.reason__slide-img > img {
  width: 220px;
}
@media screen and (max-width: 800px) {
  .reason__slide-img > img {
    width: 150px;
  }
}
@media screen and (max-width: 600px) {
  .reason__slide-img > img {
    width: 100px;
  }
}

.reason__slide-ttl {
  margin-top: 10px;
  height: 4em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  font-size: clamp(18px, 2.625vw, 21px);
  font-weight: normal;
  text-align: center;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 800px) {
  .reason__slide-ttl {
    height: 3em;
  }
}

.reason__slide-feature {
  margin-top: 20px;
}

.reason__slide-feature h4 {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  width: 7em;
  padding: 0.2em 0;
  background-color: #39567f;
}

.reason__slide-feature p {
  min-height: 2.4em;
  color: #39567f;
  font-size: 15px;
  margin: 0.5em 0 1em;
}

.reason__slide-desc {
  background-color: #f7f7f7;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 300;
}

.case {
  padding: 200px 0 60px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .case {
    padding: 140px 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .case {
    padding: 100px 0 40px;
  }
}

.case__ttl {
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
  position: relative;
}
.case__ttl::before {
  position: absolute;
  content: "CASE";
  font-size: 4em;
  color: #e7eaf0;
  font-weight: bold;
  top: -1.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .case__ttl::before {
    font-size: 3em;
  }
}

.case-swiper {
  margin-top: 80px;
  padding-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .case-swiper {
    margin-top: 40px;
    padding-bottom: 0;
  }
}

.case__slide.swiper-slide {
  max-width: 820px;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 30px;
  background-color: #f2f2f2;
  color: #000;
  -webkit-box-shadow: 0 4px 15px #bbbbbb;
          box-shadow: 0 4px 15px #bbbbbb;
  padding: 40px;
  cursor: -webkit-grab;
  cursor: grab;
}
.case__slide.swiper-slide:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
@media screen and (max-width: 800px) {
  .case__slide.swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
  }
}

.case__slide-txt-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 20px;
  font-size: clamp(14px, 2.5vw, 20px);
}

.case__slide-txt-wrap h3 {
  background: -webkit-gradient(linear, left top, right top, from(#39567f), to(#082d60));
  background: -webkit-linear-gradient(left, #39567f 0%, #082d60 100%);
  background: linear-gradient(90deg, #39567f 0%, #082d60 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 10px;
}

.case__slide-desc {
  margin-top: 1em;
  font-weight: normal;
  text-align: justify;
}

.case__slide-measure h4 {
  margin-top: 1em;
  padding-left: 1.4em;
  color: #39567f;
  font-weight: bold;
  position: relative;
}
.case__slide-measure h4::before {
  position: absolute;
  content: "";
  width: 0.4em;
  height: 100%;
  background-color: #39567f;
  top: 0;
  left: 0;
}

.case__slide-measure p {
  text-align: left;
}

.case__slide-point {
  margin-top: 1em;
  padding-inline: 1.4em 1em;
  padding-block: 0.5em;
  background-color: #fff;
  position: relative;
}
.case__slide-point::before {
  position: absolute;
  content: "";
  width: 0.4em;
  height: 100%;
  background-color: #39567F;
  top: 0;
  left: 0;
}

.case__slide-point h4 {
  color: #39567F;
  font-weight: bold;
}

.case__slide-img-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.case__slide-img-wrap > img {
  width: 250px;
}
@media screen and (max-width: 800px) {
  .case__slide-img-wrap > img {
    width: 100px;
  }
}

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

.cta {
  padding: 40px 0;
  background: url(../img/cta-bg.png) no-repeat center center/100% 100%;
}

.cta__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .cta__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}

.cta__txt {
  margin-bottom: 40px;
}

.cta__catch {
  background-color: #fff;
  color: #FF519A;
  font-size: clamp(14px, 2vw, 20px);
  text-align: center;
  padding: 10px 15px;
  border-radius: 15px;
}

.cta__ttl {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .cta__ttl {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
}

.cta__img {
  width: 40%;
  min-width: 250px;
}

.cta__btn-wrap {
  position: relative;
  top: 0;
  left: 0;
  max-width: 480px;
}

.cta__btn-shadow {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #398227;
  top: 6px;
  left: 0;
  z-index: 0;
}

.cta__btn-wrap:hover {
  top: 3px;
}
.cta__btn-wrap:hover .cta__btn-shadow {
  display: none;
}

.cta__btn {
  background-color: #4DA84B;
  border-radius: 20px;
  color: #fff;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: bold;
  padding: 0.5em 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.cta__btn::after {
  position: absolute;
  content: "";
  width: 0.8em;
  aspect-ratio: 1;
  background: url(../img/btn-arrow.svg) no-repeat center center/contain;
  top: 50%;
  right: 1em;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.cta__btn-wrap .free {
  top: 50%;
  display: inline-block;
  color: #4DA84B;
  font-size: 20px;
  font-weight: bold;
  text-wrap: nowrap;
  background-color: #fff;
  padding: 2px 4px;
  border-radius: 2px;
  margin-right: 0.4em;
}
@media screen and (max-width: 800px) {
  .cta__btn-wrap .free {
    font-size: 14px;
    left: 2em;
  }
}

.cta__btn-catch {
  position: absolute;
  top: 0;
  left: 0%;
  -webkit-transform: translateY(-70%);
      -ms-transform: translateY(-70%);
          transform: translateY(-70%);
  color: #000;
  font-size: 20px;
  padding: 4px 8px;
  border-radius: 1em;
  border: 1px solid #000;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .cta__btn-catch {
    font-size: 14px;
  }
}

.cta__catch.--02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background-color: transparent;
}

.cta__catch-circle {
  color: #FF519A;
  font-size: 25px;
  font-size: clamp(14px, 1.9230769231vw, 25px);
  font-weight: bold;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6em;
  height: 6em;
  border-radius: 71px;
  position: relative;
  -webkit-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
          transform: rotate(-10deg);
}

.cta__catch-txt {
  color: #fff;
  font-size: 35px;
  font-size: 35px;
  font-size: clamp(16px, 2.6923076923vw, 35px);
  font-weight: bold;
  text-align: left;
}

.cta__cost {
  color: #fff;
  font-size: 100px;
  font-size: clamp(50px, 7.6923076923vw, 100px);
  font-weight: bold;
  margin-left: 1em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.service {
  padding: 200px 0 60px;
  background-color: #fafdff;
  color: #000;
}
@media screen and (max-width: 800px) {
  .service {
    padding: 140px 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .service {
    padding: 100px 0 40px;
  }
}

.service__ttl {
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
  position: relative;
}
.service__ttl::before {
  position: absolute;
  content: "service";
  font-size: 4em;
  color: #e7eaf0;
  font-weight: bold;
  top: -1.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .service__ttl::before {
    font-size: 3em;
  }
}

.service__graph__scroll-wrap {
  padding-inline: 20px;
  padding-bottom: 20px;
  overflow: scroll;
}

.service__graph {
  margin-top: 30px;
  min-width: 1000px;
}
@media screen and (max-width: 800px) {
  .service__graph {
    min-width: 700px;
  }
}

.service__graph-flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.service__graph-flow__first,
.service__graph-flow__second {
  color: #fff;
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
  padding-block: 0.6em;
}

.service__graph-flow__first {
  width: 66.6666666667%;
  background-color: #39567f;
  position: relative;
}
.service__graph-flow__first::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 100%;
  background-color: #39567f;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 0;
  right: -25px;
}

.service__graph-flow__second {
  width: 33.3333333333%;
  background-color: #082d60;
}

.service__graph-content {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.service__graph-content__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 14px rgba(125, 125, 125, 0.25);
          box-shadow: 0 4px 14px rgba(125, 125, 125, 0.25);
  padding-block: 20px 30px;
}

.service__graph-content__item h3 {
  height: 2.8em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #39567f;
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
}

.service__graph-content__item p {
  margin-top: 1.5em;
  font-size: clamp(14px, 2vw, 20px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.flow {
  padding: 200px 0 150px;
  background-color: #fff;
  color: #000;
}
@media screen and (max-width: 800px) {
  .flow {
    padding: 140px 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .flow {
    padding: 100px 0 40px;
  }
}

.flow__ttl {
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
  position: relative;
}
.flow__ttl::before {
  position: absolute;
  content: "flow";
  font-size: 4em;
  color: #e7eaf0;
  font-weight: bold;
  top: -1.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .flow__ttl::before {
    font-size: 3em;
  }
}

.flow__list {
  margin-top: 40px;
  padding-inline: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  .flow__list {
    width: 70%;
    max-width: 500px;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
}

.flow__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 20px;
  background-color: #082D60;
  border-radius: 30px;
  color: #fff;
  padding: 40px 10px;
  position: relative;
}
.flow__item::before {
  position: absolute;
  content: "";
  width: 30px;
  aspect-ratio: 2/3;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .flow__item::before {
    width: 45px;
    aspect-ratio: 3/2;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    top: 100%;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.flow__item::after {
  position: absolute;
  content: "";
  width: 27px;
  aspect-ratio: 2/3;
  background-color: #082D60;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  right: -25px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .flow__item::after {
    width: 40px;
    aspect-ratio: 3/2;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    top: 100%;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.flow__item h3 {
  font-size: 30px;
  font-size: clamp(16px, 2.3076923077vw, 30px);
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .flow__item h3 {
    font-size: 30px;
    font-size: clamp(18px, 3.75vw, 30px);
  }
}

.flow__item p {
  font-size: 18px;
  font-size: clamp(12px, 1.3846153846vw, 18px);
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .flow__item p {
    font-size: 18px;
    font-size: clamp(12px, 2.25vw, 18px);
  }
}

.flow__item img {
  width: 45%;
  margin-inline: auto;
}
@media screen and (max-width: 1000px) {
  .flow__item img {
    width: 30%;
    max-width: 80px;
  }
}

.plan {
  padding: 200px 0 60px;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .plan {
    padding: 140px 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .plan {
    padding: 100px 0 40px;
  }
}

.plan__ttl {
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
  position: relative;
}
.plan__ttl::before {
  position: absolute;
  content: "plan";
  font-size: 4em;
  color: #e7eaf0;
  font-weight: bold;
  top: -1.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .plan__ttl::before {
    font-size: 3em;
  }
}

.plan__table__scroll-wrap {
  margin-top: 50px;
  padding-top: 60px;
  padding-bottom: 30px;
  overflow: scroll;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
  /* Chrome, Safari 対応 */
}
.plan__table__scroll-wrap::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 800px) {
  .plan__table__scroll-wrap {
    margin-top: 30px;
    padding-top: 40px;
  }
}

.plan__table {
  min-width: 800px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}

.plan__table-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  font-size: clamp(12px, 1.6vw, 23px);
}
.plan__table-item.is-heading {
  width: 25%;
  border-radius: 1em 0 0 1em;
  overflow: hidden;
}
.plan__table-item.is-standard {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.plan__table-item.is-standard::after {
  position: absolute;
  content: "";
  width: 20%;
  aspect-ratio: 1;
  background: url(../img/plan_crown.png) no-repeat bottom center/contain;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}
.plan__table-item.is-premium {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.plan__table-item.is-included {
  width: 20%;
  border-radius: 0 1em 1em 0;
  overflow: hidden;
}

.plan__table-item__head {
  padding: 0.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4.5em;
  min-height: 80px;
  font-size: clamp(16px, 2vw, 30px);
}
.is-heading .plan__table-item__head {
  background: #d9d9d9;
}
.is-heading .plan__table-item__head p {
  font-size: max(10px, 0.5em);
  padding-left: 1.2em;
  position: relative;
}
.is-heading .plan__table-item__head p::before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
}
.is-standard .plan__table-item__head {
  color: white;
  font-weight: bold;
  background-color: #39567f;
  line-height: 1.3;
}
.is-premium .plan__table-item__head {
  color: white;
  font-weight: bold;
  background-color: #16407b;
  line-height: 1.3;
}
.is-included .plan__table-item__head {
  color: white;
  font-weight: bold;
  background-color: #082d60;
}

.plan__table-item__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
}
.is-heading .plan__table-item__body {
  color: white;
}
.is-heading .plan__table-item__body > p {
  height: 2.4em;
  min-height: 35px;
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffaa00;
}
.is-standard .plan__table-item__body > p, .is-premium .plan__table-item__body > p {
  height: 2.4em;
  min-height: 35px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.is-standard .plan__table-item__body > p:nth-of-type(even), .is-premium .plan__table-item__body > p:nth-of-type(even) {
  background-color: #fbf9fb;
}
.is-included .plan__table-item__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #082d60;
  border-radius: 0 0 1em 0;
}
.is-included .plan__table-item__body > p {
  font-size: 0.9em;
}

.plan__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.plan__item {
  min-width: 280px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 30px;
  overflow: hidden;
}

.plan__item--trial {
  border: 2px solid #FF519A;
}
.plan__item--trial h3 {
  background-color: #FF519A;
}

.plan__item--standard {
  border: 2px solid #e320af;
}
.plan__item--standard h3 {
  background-color: #e320af;
}

.plan__item--premium {
  border: 2px solid #082d60;
}
.plan__item--premium h3 {
  background-color: #082d60;
}

.plan__item h3 {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding-block: 18px;
}

.plan__item-body {
  padding: 35px 10px;
  background-color: #fff;
  height: 100%;
}

.plan__monthly {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.plan__monthly-ttl {
  font-size: 20px;
  font-size: clamp(16px, 1.5384615385vw, 20px);
  font-weight: bold;
}

.plan__monthly-cost {
  font-size: 30px;
  font-size: clamp(20px, 2.3076923077vw, 30px);
  font-weight: bold;
}
.plan__monthly-cost .price {
  color: #d33c5b;
  font-weight: bold;
  font-size: 2em;
}

.plan__feature {
  background-color: #ffaa00;
  color: #fff;
  font-size: 20px;
  font-size: clamp(14px, 1.5384615385vw, 20px);
  font-weight: bold;
  text-align: center;
  padding: 8px;
}

.plan__content {
  margin-top: 1em;
  padding-left: 1em;
  font-size: 18px;
  font-size: clamp(14px, 1.3846153846vw, 18px);
}

.plan__bottom {
  margin-top: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .plan__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.plan__bottom-txt {
  font-size: 20px;
  font-size: clamp(14px, 4vw, 20px);
  font-weight: bold;
  color: #000;
}

.plan__bottom > img {
  width: 40%;
}

.plan__note {
  margin-top: 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  color: #000;
}
@media screen and (max-width: 600px) {
  .plan__note {
    font-size: 12px;
    margin-left: 0;
  }
}

.comparison {
  padding: 200px 0 60px;
  background-color: #fafdff;
  color: #000;
}
@media screen and (max-width: 800px) {
  .comparison {
    padding: 140px 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .comparison {
    padding: 100px 0 40px;
  }
}

.comparison__inner {
  max-width: 1000px;
}

.comparison__ttl {
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
  position: relative;
}
.comparison__ttl::before {
  position: absolute;
  content: "comparison";
  font-size: 4em;
  color: #e7eaf0;
  font-weight: bold;
  top: -1.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .comparison__ttl::before {
    font-size: 3em;
  }
}

.comparison__table__scroll-wrap {
  margin-top: 40px;
  overflow: scroll;
}

.comparison__table {
  width: 100%;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 800px) {
  .comparison__table {
    min-width: 600px;
  }
}

.comparison__table-head,
.comparison__table-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.comparison__table-head,
.comparison__table-body > div {
  border-bottom: 2px solid #989696;
}

.comparison__table .row {
  width: 20%;
}

.comparison__table .cell {
  width: 26.6666666667%;
  color: #fff;
}

.comparison__table-head .cell.--our {
  padding-inline: 10px;
}

.comparison__table-head .tab {
  padding-block: 40px;
  height: 100%;
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #d9d9d9;
  border-radius: 10px 10px 0 0;
}
.comparison__table-head .tab.--our {
  background-color: #ffaa00;
}
.comparison__table-head .tab.--our > img {
  width: 200px;
}
@media screen and (max-width: 800px) {
  .comparison__table-head .tab {
    padding-block: 20px;
  }
}

.comparison__table-body > div {
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(14px, 2vw, 20px);
}
@media screen and (max-width: 800px) {
  .comparison__table-body > div {
    height: 60px;
  }
}

.comparison__table-body .cell > img {
  width: 35px;
}
@media screen and (max-width: 800px) {
  .comparison__table-body .cell > img {
    width: 25px;
  }
}

.comparison__table-body .cell.--our {
  color: #c14a60;
  font-size: 1.5em;
  font-weight: bold;
  background-color: #fffaef;
}
@media screen and (max-width: 800px) {
  .comparison__table-body .cell.--our {
    font-size: 1.3em;
  }
}

.faq {
  padding: 200px 0 60px;
  color: #000;
}
@media screen and (max-width: 800px) {
  .faq {
    padding: 140px 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .faq {
    padding: 100px 0 40px;
  }
}

.faq__ttl {
  font-size: clamp(18px, 3vw, 30px);
  text-align: center;
  position: relative;
}
.faq__ttl::before {
  position: absolute;
  content: "Q&A";
  font-size: 4em;
  color: #e7eaf0;
  font-weight: bold;
  top: -1.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .faq__ttl::before {
    font-size: 3em;
  }
}

.faq__list {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.faq__item-question,
.faq__item-answer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq__item-question {
  min-height: 100px;
  background-color: #E7EAF0;
  font-weight: normal;
  position: relative;
  padding: 32px 80px;
}
@media screen and (max-width: 800px) {
  .faq__item-question {
    padding: 32px 45px;
  }
}
.faq__item-question::after {
  position: absolute;
  content: "";
  width: 1em;
  aspect-ratio: 3/2;
  background-color: #39567F;
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  .faq__item-question::after {
    right: 20px;
  }
}

.faq__item-answer {
  max-height: 0;
  overflow: hidden;
}

.faq__item-question__inner {
  position: relative;
}
@media screen and (max-width: 800px) {
  .faq__item-question__inner {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .faq__item-question__inner {
    font-size: 12px;
  }
}
.faq__item-question__inner::before {
  position: absolute;
  content: "Q";
  font-size: 2.2em;
  line-height: 1;
  color: #39567F;
  top: -9px;
  left: -50px;
}
@media screen and (max-width: 800px) {
  .faq__item-question__inner::before {
    font-size: 1.5em;
    top: 0;
    left: -30px;
  }
}

.faq__item-answer__inner {
  position: relative;
  padding: 32px 30px 32px 80px;
}
@media screen and (max-width: 800px) {
  .faq__item-answer__inner {
    font-size: 14px;
    padding: 32px 32px 32px 45px;
  }
}
@media screen and (max-width: 600px) {
  .faq__item-answer__inner {
    font-size: 12px;
  }
}
.faq__item-answer__inner::before {
  position: absolute;
  content: "A";
  font-size: 2.2em;
  line-height: 1;
  color: #39567F;
  top: 24px;
  left: 32px;
}
@media screen and (max-width: 800px) {
  .faq__item-answer__inner::before {
    font-size: 1.5em;
    top: 28px;
    left: 16px;
  }
}

.faq__item.is-open .faq__item-question::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.faq__item.is-open .faq__item-answer {
  max-height: 1000px;
}

.form__top {
  padding: 30px 0;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #FF519A), to(#082D60));
  background-image: -webkit-linear-gradient(left, #FF519A 0, #082D60 100%);
  background-image: linear-gradient(to right, #FF519A 0, #082D60 100%);
  color: #fff;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: bold;
}

.form__top h2 {
  font-size: 1.5em;
}

.form__top p {
  margin-top: 1em;
}

.form {
  background-color: #fff;
  padding: 100px 0;
}

.form label {
  display: inline-block;
  margin-bottom: 10px;
}

.form label > .required-label {
  margin-left: 6px;
  background-color: #D33C5B;
  color: #fff;
  font-size: 14px;
  padding: 2px 4px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #808080;
  margin-bottom: 20px;
}

.form textarea {
  aspect-ratio: 4;
}

.form input[type=submit] {
  margin-top: 40px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 130px;
  height: 40px;
  background-color: #F07740;
  border-radius: 6px;
  border: none;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-align: center;
}

.agree h3 {
  font-size: 12px;
  font-weight: bold;
}

.agree p {
  font-size: 12px;
}

.agree a {
  color: #0000EE;
  text-decoration: underline;
}

.fadein {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.fadein.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.anm-shiny {
  background-color: #4DA84B;
  background: -webkit-linear-gradient(135deg, #4DA84B 50%, rgb(142.2839506173, 204.0740740741, 140.9259259259) 60%, #4DA84B 70%);
  background: linear-gradient(-45deg, #4DA84B 50%, rgb(142.2839506173, 204.0740740741, 140.9259259259) 60%, #4DA84B 70%);
  background-size: 600% 100%;
  -webkit-animation: shine 20s infinite;
          animation: shine 20s infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  padding-bottom: 40px;
}