*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

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

ul, ol {
  list-style: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  background-color: #ffffff;
}

img {
  width: 100%;
  object-fit: contain;
  height: auto;
}

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

.md-only {
  display: none;
}
@media screen and (max-width: 959px) {
  .md-only {
    display: block;
  }
}

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

br.br-md {
  display: none;
}
@media screen and (max-width: 959px) {
  br.br-md {
    display: inline;
  }
}

.l-container {
  max-width: 1000px;
  width: min(66.6666666667vw, 1000px);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .l-container {
    width: calc(100vw - min(20vw, 300px));
    max-width: calc(100vw - min(20vw, 300px));
    margin-inline: auto;
  }
}
@media screen and (max-width: 959px) {
  .l-container {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
  }
}

.l-footer {
  background: #005bac;
  padding-bottom: 150px;
}
.l-footer__inner {
  padding-block: 32px 24px;
  max-width: 1000px;
  width: min(66.6666666667vw, 1000px);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .l-footer__inner {
    width: calc(100vw - min(20vw, 300px));
    max-width: calc(100vw - min(20vw, 300px));
    margin-inline: auto;
  }
}
.l-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.l-footer__logo {
  width: 129px;
  height: 35px;
  filter: brightness(0) invert(1);
}
.l-footer__copy {
  margin-top: 17px;
  color: #ffffff;
  font-size: 10px;
}
@media screen and (max-width: 959px) {
  .l-footer__copy {
    text-align: center;
  }
}

main {
  font-size: clamp(14px, 12.6666666667px + 0.3555555556vw, 18px);
  line-height: 1.67;
  font-weight: 500;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  height: 85px;
  gap: 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 6.3639px 6.3639px 0 0 #ffffff;
}
@media screen and (max-width: 959px) {
  .c-btn {
    width: 250px;
    height: 51px;
    font-size: 15px;
    box-shadow: 3px 3px 0 0 #ffffff;
    gap: 5px;
  }
}
.c-btn:hover {
  box-shadow: 0px 0px 0 0 #ffffff;
  transform: translateX(6.3639px);
  transform: translateY(6.3639px);
}
@media screen and (max-width: 959px) {
  .c-btn:hover {
    transform: translateX(3px);
    transform: translateY(3px);
  }
}
.c-btn > img {
  width: 43px;
  height: 40px;
}
@media screen and (max-width: 959px) {
  .c-btn > img {
    width: 26px;
    height: 24px;
  }
}
.c-btn__badge {
  font-size: 20px;
  width: 56px;
  height: 56px;
  background: #fd8402;
  border-radius: 9999px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 0.1em;
}
@media screen and (max-width: 959px) {
  .c-btn__badge {
    width: 33.6px;
    height: 33.6px;
    font-size: 10px;
  }
}
.c-btn--blue {
  background-image: linear-gradient(to top, #68cfff, #99deff);
  border: solid 3px #14aaf0;
  color: #000000;
}
@media screen and (max-width: 959px) {
  .c-btn--blue {
    border: solid 1.5px #14aaf0;
  }
}
.c-btn--primary {
  background-image: linear-gradient(to top, #ffdb00, #ffe535);
  color: #000000;
  border: solid 3px #f0a910;
  padding-right: 50px;
}
@media screen and (max-width: 959px) {
  .c-btn--primary {
    border: solid 1.5px #f0a910;
    padding-right: 25px;
  }
}
.c-btn--lg {
  padding: 24px 48px;
  font-size: 18px;
}

.c-heading {
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.c-heading__sub {
  font-size: 40px;
}
.c-heading__main {
  font-size: 60px;
}
@media screen and (max-width: 959px) {
  .c-heading {
    font-size: 24px;
  }
}
.c-heading--underline {
  padding-bottom: 12px;
  border-bottom: 4px solid #024ec1;
}
.c-heading__label {
  display: inline-block;
  background-color: #024ec1;
  color: #ffffff;
  font-size: 14px;
  padding: 4px 16px;
  margin-bottom: 8px;
}

.c-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
}
.c-badge--blue {
  background-color: #024ec1;
  color: #ffffff;
}
.c-badge--orange {
  background-color: #0052cf;
  color: #ffffff;
}

.c-card {
  background-color: #ffffff;
  border: 1px solid #3087ff;
  border-radius: 8px;
  padding: 24px;
}
.c-card--shadow {
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.c-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.p-hero__inner {
  padding-block: min(3.3333333333vw, 50px) 0;
  width: 100%;
  max-width: 100vw;
  margin-inline: 0;
  position: relative;
  background: url(../img/bg_hero.webp) center/cover no-repeat;
  z-index: 0;
}
@media screen and (max-width: 959px) {
  .p-hero__inner {
    padding-block: max(2.9333333333vw, 11px) 0;
    background: url(../img/bg_hero_sp.webp) bottom/cover no-repeat;
    overflow-x: hidden;
  }
}
.p-hero__content {
  width: calc(100% - min(13.3333333333vw, 200px));
  max-width: 1500px;
  margin-inline: auto;
  position: relative;
  left: 0;
  padding-bottom: min(2.0666666667vw, 31px);
}
@media screen and (max-width: 1100px) {
  .p-hero__content {
    left: min(5.3333333333vw, 80px);
  }
}
@media screen and (max-width: 959px) {
  .p-hero__content {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
    left: 0;
    padding-bottom: max(5.7333333333vw, 21.5px);
  }
}
.p-hero__logo {
  width: 100%;
  display: flex;
  margin-bottom: 65px;
}
@media screen and (max-width: 959px) {
  .p-hero__logo {
    margin-bottom: max(7.2666666667vw, 27.25px);
    flex-direction: column;
    align-items: center;
  }
}
.p-hero__logo img {
  width: clamp(104px, 9.24vw + 69.33px, 208px);
  height: clamp(21.5px, 1.91vw + 14.33px, 43px);
  margin-right: 20px;
}
@media screen and (max-width: 959px) {
  .p-hero__logo img {
    margin-bottom: max(0.8vw, 3px);
  }
}
.p-hero__logo-text {
  font-size: clamp(11px, 6.3333333333px + 1.2444444444vw, 25px);
  font-weight: bold;
}
.p-hero__catch {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .p-hero__catch {
    align-items: center;
  }
}
.p-hero__catch-sub {
  font-size: clamp(20px, 13.3333333333px + 1.7777777778vw, 40px);
  font-weight: bold;
  margin-bottom: 0.725em;
}
@media screen and (max-width: 959px) {
  .p-hero__catch-sub {
    margin-bottom: 0.523em;
  }
}
.p-hero__catch-main {
  font-size: clamp(25.25px, 16.8333333333px + 2.2444444444vw, 50.5px);
  font-weight: bold;
  color: #0052cf;
  margin-bottom: 14px;
}
@media screen and (max-width: 959px) {
  .p-hero__catch-main {
    margin-bottom: 11.5px;
  }
}
.p-hero__catch-main > span {
  background: linear-gradient(transparent 60%, #ffee60 40%);
}
.p-hero__catch-name {
  color: #0052cf;
  font-size: clamp(35.25px, 23.5px + 3.1333333333vw, 70.5px);
  font-weight: bold;
  margin-bottom: 72px;
}
@media screen and (max-width: 959px) {
  .p-hero__catch-name {
    margin-bottom: max(11.8666666667vw, 44.5px);
  }
}
.p-hero__stats {
  display: flex;
  gap: 14px;
  margin-bottom: 68px;
}
@media screen and (max-width: 959px) {
  .p-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: end;
    gap: max(3.0666666667vw, 11.5px);
    margin-bottom: max(10.8vw, 40.5px);
    position: relative;
    right: max(10.6666666667vw, 40px);
  }
}
@media screen and (max-width: 480px) {
  .p-hero__stats {
    right: 0;
  }
}
.p-hero__stats-item {
  background: #ffffff;
  box-shadow: 5.8px 6.9px 3px 0 rgba(149, 149, 149, 0.2);
  border: solid 2px #488ffb;
  border-radius: 10px;
  width: 21.25em;
  height: 9.313em;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1.278em 0;
  font-size: clamp(13px, 12px + 0.2666666667vw, 16px);
}
@media screen and (max-width: 959px) {
  .p-hero__stats-item {
    padding: 0.885em 0 1.192em;
    width: 15em;
    height: 8em;
    box-shadow: max(0.7733333333vw, 2.9px) max(0.92vw, 3.45px) max(0.4vw, 1.5px) 0 rgba(149, 149, 149, 0.2);
  }
}
@media screen and (max-width: 480px) {
  .p-hero__stats-item {
    width: 11.923em;
    height: 5.731em;
  }
}
.p-hero__stats-label {
  font-size: clamp(13px, 8.6666666667px + 1.1555555556vw, 26px);
  font-weight: bold;
  color: #024ec1;
  line-height: 1;
  display: flex;
  align-items: center;
}
.p-hero__stats-label > span {
  display: inline-block;
  background: #024ec1;
  font-size: 28px;
  width: 1.071em;
  height: 1.071em;
  border-radius: 9999px;
  margin-right: 0.1em;
}
@media screen and (max-width: 959px) {
  .p-hero__stats-label > span {
    width: max(4vw, 15px);
    height: max(4vw, 15px);
  }
}
.p-hero__stats-label.house > span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.1em;
}
.p-hero__stats-label.house > span > img {
  position: relative;
  width: 60%;
}
@media screen and (max-width: 959px) {
  .p-hero__stats-label.house > span > img {
    top: 8%;
  }
}
.p-hero__stats-label.yen > span {
  font-size: 28px;
  background: #024ec1;
  width: 1.071em;
  height: 1.071em;
  border-radius: 9999px;
  margin-right: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .p-hero__stats-label.yen > span {
    width: max(4vw, 15px);
    height: max(4vw, 15px);
  }
}
.p-hero__stats-label.yen > span > svg {
  color: #ffffff;
  width: 80%;
  height: 80%;
  position: relative;
  top: 12%;
}
@media screen and (max-width: 959px) {
  .p-hero__stats-label.yen > span > svg {
    top: 15%;
    left: 2%;
  }
}
.p-hero__stats-value {
  line-height: 1;
}
.p-hero__stats-string {
  color: #fd8402;
  font-size: clamp(17.75px, 10.5px + 1.9333333333vw, 39.5px);
  font-weight: bold;
  position: relative;
  margin-left: 0.1em;
}
.p-hero__stats-string.blue {
  color: #024ec1;
  margin-right: 0.25em;
  font-size: clamp(13px, 8.6666666667px + 1.1555555556vw, 26px);
  line-height: 1.2;
}
.p-hero__stats-note {
  font-size: clamp(8px, 6.6666666667px + 0.3555555556vw, 12px);
  color: #000000;
  position: absolute;
  left: 0;
  top: -0.2em;
}
@media screen and (max-width: 959px) {
  .p-hero__stats-note {
    top: -0.5em;
  }
}
.p-hero__stats-num {
  font-size: clamp(23.25px, 9.8333333333px + 3.5777777778vw, 63.5px);
  font-weight: 500;
  color: #fd8402;
  font-family: "Lato", sans-serif;
}
.p-hero__note {
  font-size: clamp(10px, 9.3333333333px + 0.1777777778vw, 12px);
  line-height: 1.2;
}
@media screen and (max-width: 959px) {
  .p-hero__note {
    width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  .p-hero__note {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
  }
}
.p-hero__image {
  position: absolute;
  z-index: -1;
  right: min(2vw, 30px);
  top: min(3.3333333333vw, 50px);
  width: min(42.4666666667vw, 637px);
  height: min(39.9333333333vw, 599px);
}
@media screen and (min-width: 1501px) {
  .p-hero__image {
    right: calc((100vw - 1500px) / 2);
  }
}
@media screen and (max-width: 959px) {
  .p-hero__image {
    width: max(53.6933333333vw, 201.35px);
    height: max(53.5466666667vw, 200.8px);
    top: unset;
    right: unset;
    bottom: max(5.3333333333vw, 20px);
    left: max(5.3333333333vw, 20px);
  }
}
@media screen and (max-width: 480px) {
  .p-hero__image {
    left: calc(-1 * max(2.1333333333vw, 8px));
    bottom: max(20.2666666667vw, 76px);
  }
}
.p-hero__cta-bar {
  position: relative;
  z-index: 2;
  height: 200px;
  padding-block: 35px 41px;
  background-image: linear-gradient(to right, #337fe6, #1371ee, #0150c9);
}
@media screen and (max-width: 959px) {
  .p-hero__cta-bar {
    height: auto;
    padding-block: 22px 27px;
  }
}
.p-hero__cta-bar-inner {
  width: 100%;
  max-width: 100vw;
  margin-inline: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.p-hero__cta-lead {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 959px) {
  .p-hero__cta-lead {
    padding-left: 1em;
    font-size: 15px;
    line-height: 1.53;
  }
  .p-hero__cta-lead:before, .p-hero__cta-lead:after {
    content: "";
    position: absolute;
    display: block;
    width: 2px;
    height: 45px;
    background: #ffffff;
    bottom: 0;
  }
  .p-hero__cta-lead::before {
    transform: rotate(-30deg);
    left: -10px;
  }
  .p-hero__cta-lead::after {
    transform: rotate(30deg);
    right: -3px;
  }
}
.p-hero__cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 49px;
}
@media screen and (max-width: 959px) {
  .p-hero__cta-btns {
    flex-direction: column-reverse;
    gap: 17px;
  }
}

.p-trouble {
  position: relative;
  padding-block: min(5.3333333333vw, 80px);
  background: url(../img/bg_trouble.webp) center/cover no-repeat;
}
@media screen and (max-width: 959px) {
  .p-trouble {
    padding-block: max(10.6666666667vw, 40px);
  }
}
.p-trouble__inner {
  width: 100%;
  max-width: 100vw;
  margin-inline: 0;
}
.p-trouble .c-heading {
  margin-bottom: 50px;
}
@media screen and (max-width: 959px) {
  .p-trouble .c-heading {
    margin-bottom: max(6.6666666667vw, 25px);
  }
}
.p-trouble .c-heading__sub {
  font-size: 24px;
}
@media screen and (max-width: 959px) {
  .p-trouble .c-heading__sub {
    font-size: clamp(16px, 13.3333333333px + 0.7111111111vw, 24px);
  }
}
.p-trouble .c-heading__main {
  font-size: 35.5px;
}
@media screen and (max-width: 959px) {
  .p-trouble .c-heading__main {
    font-size: clamp(24px, 20.1666666667px + 1.0222222222vw, 35.5px);
  }
}
.p-trouble .c-heading__em {
  color: #024ec1;
}
.p-trouble__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 1080px;
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 959px) {
  .p-trouble__list {
    gap: max(4.6666666667vw, 17.5px);
    margin-bottom: max(6.6666666667vw, 25px);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__list {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
  }
}
.p-trouble__item {
  width: 310px;
  border: solid 4px #488ffb;
  border-radius: 10px;
  background: #ffffff;
  padding: 59px 0 42px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .p-trouble__item {
    width: min(26.6666666667vw, 400px);
    min-width: 250px;
  }
}
@media screen and (max-width: 959px) {
  .p-trouble__item {
    width: max(40vw, 150px);
    padding: max(7.4666666667vw, 28px) 0 max(5.3333333333vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__item {
    padding: 20px 16px;
    min-width: 180px;
  }
}
.p-trouble__item:nth-of-type(2) .p-trouble__icon {
  height: 159px;
  margin-bottom: 43px;
}
@media screen and (max-width: 959px) {
  .p-trouble__item:nth-of-type(2) .p-trouble__icon {
    height: max(24vw, 90px);
    margin-bottom: max(5.7333333333vw, 21.5px);
  }
}
.p-trouble__item:nth-of-type(3) .p-trouble__icon {
  height: 141px;
  margin-bottom: 31px;
}
@media screen and (max-width: 959px) {
  .p-trouble__item:nth-of-type(3) .p-trouble__icon {
    height: max(24vw, 90px);
    margin-bottom: max(5.7333333333vw, 21.5px);
  }
}
.p-trouble__icon {
  height: 162px;
  margin-bottom: 43px;
}
@media screen and (max-width: 959px) {
  .p-trouble__icon {
    height: max(24vw, 90px);
    margin-bottom: max(5.7333333333vw, 21.5px);
  }
}
.p-trouble__icon img {
  height: 100%;
}
.p-trouble__text {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .p-trouble__text {
    font-size: clamp(14px, 11.3333333333px + 0.7111111111vw, 22px);
    line-height: 1.4;
  }
}
.p-trouble__resolve {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .p-trouble__resolve {
    margin-top: max(5.3333333333vw, 20px);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }
}
.p-trouble__resolve img {
  width: 87px;
  height: 81px;
  margin-right: 11px;
  transform: rotate(-40deg);
}
@media screen and (max-width: 959px) {
  .p-trouble__resolve img {
    position: absolute;
    width: max(11.6vw, 43.5px);
    height: max(10.8vw, 40.5px);
    margin-right: 0;
    margin-bottom: max(1.3333333333vw, 5px);
    left: 5em;
    top: -1em;
  }
}
.p-trouble__resolve-text {
  font-size: clamp(20px, 14.6666666667px + 1.4222222222vw, 36px);
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}
.p-trouble__resolve-em {
  color: #024ec1;
}
.p-trouble:after {
  position: absolute;
  content: "";
  display: block;
  width: min(12.1333333333vw, 182px);
  height: min(3vw, 45px);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #ffffff;
  left: calc(50% - min(12.1333333333vw, 182px) / 2);
  bottom: calc(-1 * min(2.3333333333vw, 35px));
}
@media screen and (max-width: 959px) {
  .p-trouble:after {
    width: max(24.2666666667vw, 91px);
    height: max(6vw, 22.5px);
    left: calc(50% - max(24.2666666667vw, 91px) / 2);
    bottom: calc(-1 * max(4.6666666667vw, 17.5px));
  }
}

.p-intro {
  padding-block: min(6.1333333333vw, 92px) min(7.8666666667vw, 118px);
  background-image: linear-gradient(to right, #3188ff, #1371ee);
}
@media screen and (max-width: 959px) {
  .p-intro {
    padding-block: max(17.3333333333vw, 65px) max(15.7333333333vw, 59px);
  }
}
.p-intro__inner {
  padding-block: 4.056em 5.722em;
  max-width: 1200px;
  width: min(80vw, 1200px);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .p-intro__inner {
    width: calc(100vw - min(6.6666666667vw, 100px));
    max-width: calc(100vw - min(6.6666666667vw, 100px));
    margin-inline: auto;
  }
}
.p-intro__inner {
  position: relative;
  box-shadow: 6.4px 7.7px min(0.8vw, 12px) 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 959px) {
  .p-intro__inner {
    padding-block-end: 3em;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
  }
}
.p-intro__inner .inner-top {
  position: absolute;
  width: min(13.4vw, 201px);
  top: calc(-1 * min(13vw, 195px));
  right: 5.278em;
}
@media screen and (max-width: 1100px) {
  .p-intro__inner .inner-top {
    width: min(13.3333333333vw, 200px);
    top: calc(-1 * min(sp(97.5), 97.5px));
    right: min(6.6666666667vw, 100px);
  }
}
.p-intro__inner .inner-btm {
  position: absolute;
  width: 20.944em;
  height: 10.444em;
  left: calc(50% - 10.472em);
  bottom: -7.5em;
}
@media screen and (max-width: 959px) {
  .p-intro__inner .inner-btm {
    width: 15em;
    left: calc(50% - 7.5em);
    bottom: -6.7em;
  }
}
.p-intro__inner {
  background: #ffffff;
}
.p-intro__inner .c-heading {
  margin-bottom: 4.611em;
}
@media screen and (max-width: 959px) {
  .p-intro__inner .c-heading {
    margin-bottom: 2em;
  }
}
.p-intro__inner .c-heading__sub {
  font-size: clamp(18px, 12px + 1.6vw, 36px);
  margin-bottom: 0.639em;
}
.p-intro__inner .c-heading__main {
  font-size: clamp(20px, 13.5px + 1.7333333333vw, 39.5px);
}
.p-intro__inner .c-heading__em-bg {
  display: inline-block;
  padding: 0 0.5em;
  font-size: 47px;
  font-size: clamp(22px, 13.6666666667px + 2.2222222222vw, 47px);
  color: #ffffff;
  background: #fd8402;
  margin-right: 12px;
}
@media screen and (max-width: 959px) {
  .p-intro__inner .c-heading__em-bg {
    margin-right: 0;
    margin-bottom: 0.3em;
  }
}
.p-intro__label {
  position: absolute;
  top: -1em;
  left: calc(50% - 7.5em);
  width: 15em;
  color: #ffffff;
  font-size: 24px;
  font-size: clamp(18px, 16px + 0.5333333333vw, 24px);
  border-radius: 9999px;
  font-weight: bold;
  background-image: linear-gradient(to right, #169af7, #1371ee, #0150c9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-intro__label-em {
  color: #fcff00;
}
.p-intro__about {
  position: relative;
  max-width: 1000px;
  width: min(66.6666666667vw, 1000px);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .p-intro__about {
    width: calc(100vw - min(20vw, 300px));
    max-width: calc(100vw - min(20vw, 300px));
    margin-inline: auto;
  }
}
.p-intro__about {
  background: #ffffff;
  border-radius: 10px;
  border: solid 4px #3087ff;
  margin-bottom: 3.611em;
  padding: 3.222em 1em 2.444em;
}
@media screen and (max-width: 959px) {
  .p-intro__about {
    width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    margin-inline: auto;
  }
}
.p-intro__about-text {
  font-size: clamp(14px, 12.6666666667px + 0.3555555556vw, 18px);
  font-weight: bold;
  text-align: center;
}
.p-intro__about-em.blue {
  color: #327ee7;
}
.p-intro__about-em.orange {
  color: #fd8402;
}
.p-intro__about-em.big {
  font-size: 1.222em;
}
.p-intro__merit {
  position: relative;
  max-width: 1000px;
  width: min(66.6666666667vw, 1000px);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .p-intro__merit {
    width: calc(100vw - min(20vw, 300px));
    max-width: calc(100vw - min(20vw, 300px));
    margin-inline: auto;
  }
}
.p-intro__merit {
  background: #ffffff;
  border-radius: 10px;
  border: solid 4px #3087ff;
  margin-bottom: 3.611em;
  padding: 3.611em 1em 2.111em;
}
@media screen and (max-width: 959px) {
  .p-intro__merit {
    width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    margin-inline: auto;
  }
}
.p-intro__merit-item {
  position: relative;
  width: min(55.8666666667vw, 838px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background-color: #fbfaee;
}
@media screen and (max-width: 480px) {
  .p-intro__merit-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}
.p-intro__merit-item:nth-of-type(1), .p-intro__merit-item:nth-of-type(2) {
  padding: 20px;
  margin-bottom: 35px;
}
.p-intro__merit-item:nth-of-type(1)::after, .p-intro__merit-item:nth-of-type(2)::after {
  position: absolute;
  content: "";
  display: block;
  background-color: #8f8f8f;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 29px;
  height: 16px;
  bottom: -8px;
  left: calc(50% - 14.5px);
}
@media screen and (max-width: 959px) {
  .p-intro__merit-item:nth-of-type(1)::after, .p-intro__merit-item:nth-of-type(2)::after {
    bottom: -27px;
  }
}
.p-intro__merit-item:nth-of-type(2) .p-intro__merit-icon {
  width: 3.056em;
  height: 2.833em;
  top: calc(50% - 1.4165em);
  left: 2.889em;
}
@media screen and (max-width: 959px) {
  .p-intro__merit-item:nth-of-type(2) .p-intro__merit-icon {
    left: unset;
    top: unset;
  }
}
.p-intro__merit-item:nth-of-type(3) {
  padding: 25px 20px;
}
.p-intro__merit-item:nth-of-type(3) .p-intro__merit-icon {
  width: 3.778em;
  height: 4em;
  top: calc(50% - 2em);
  left: 2.222em;
}
@media screen and (max-width: 959px) {
  .p-intro__merit-item:nth-of-type(3) .p-intro__merit-icon {
    left: unset;
    top: unset;
  }
}
.p-intro__merit-item:nth-of-type(3) .p-intro__merit-text {
  display: flex;
  flex-direction: column;
}
.p-intro__merit-icon {
  position: absolute;
  width: 6.556em;
  height: 4.333em;
  top: calc(50% - 39px);
  left: min(1.2vw, 18px);
}
@media screen and (max-width: 959px) {
  .p-intro__merit-icon {
    margin-bottom: 0.5em;
    position: relative;
    margin-inline: auto;
    left: unset;
    top: unset;
  }
}
.p-intro__merit-em.blue {
  color: #327ee7;
}
.p-intro__merit-em.orange {
  color: #fd8402;
}
.p-intro__merit-em.big {
  font-size: 30px;
  font-size: clamp(20px, 16.6666666667px + 0.8888888889vw, 30px);
}
.p-intro__merit-text {
  font-size: 24px;
  font-size: clamp(15px, 12px + 0.8vw, 24px);
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .p-intro__merit-text {
    text-align: center;
  }
}
.p-intro__merit-text.btm {
  font-size: 20px;
  font-size: clamp(12px, 9.3333333333px + 0.7111111111vw, 20px);
}
.p-intro__graph {
  position: relative;
  max-width: 1000px;
  width: min(66.6666666667vw, 1000px);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .p-intro__graph {
    width: calc(100vw - min(20vw, 300px));
    max-width: calc(100vw - min(20vw, 300px));
    margin-inline: auto;
  }
}
.p-intro__graph {
  background: #ffffff;
  border-radius: 10px;
  border: solid 4px #3087ff;
  font-weight: bold;
  padding: 3.389em 20px 1.667em;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .p-intro__graph {
    font-size: clamp(10px, 7.3333333333px + 0.7111111111vw, 18px);
    width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    margin-inline: auto;
  }
}
.p-intro__graph-title {
  font-size: 30px;
  font-size: clamp(24px, 22px + 0.5333333333vw, 30px);
  margin-bottom: 1em;
}
@media screen and (max-width: 959px) {
  .p-intro__graph-title {
    text-align: center;
  }
}
.p-intro__graph-em {
  background: linear-gradient(transparent 60%, #ffee5e 40%);
}
.p-intro__graph-image {
  max-width: 739px;
  width: 41.056em;
  height: 13.278em;
  margin-bottom: 33.8px;
}
@media screen and (max-width: 959px) {
  .p-intro__graph-image {
    width: 100%;
    height: auto;
  }
}
.p-intro__graph-compare {
  max-width: 838px;
  width: min(55.8666666667vw, 838px);
  background-color: #fbfaee;
  padding: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 42px;
}
@media screen and (max-width: 959px) {
  .p-intro__graph-compare {
    width: 100%;
  }
}
.p-intro__graph-compare-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 959px) {
  .p-intro__graph-compare-item {
    justify-content: center;
    gap: 0.8em;
  }
}
.p-intro__graph-compare-item img {
  font-size: clamp(12px, 10px + 0.5333333333vw, 18px);
  width: 4.778em;
  margin-right: 1.111em;
}
@media screen and (max-width: 959px) {
  .p-intro__graph-compare-item img {
    width: 4em;
  }
}
.p-intro__graph-compare-item > p {
  font-size: 18px;
  font-size: clamp(14px, 12.6666666667px + 0.3555555556vw, 18px);
}
.p-intro__graph-compare-em {
  font-size: 1.444em;
  line-height: 1;
}
.p-intro__graph-compare-embig {
  font-size: 1.154em;
}
.p-intro__graph-lead {
  margin-top: 21.2px;
  font-size: 14px;
  font-size: clamp(10px, 8.6666666667px + 0.3555555556vw, 14px);
  font-weight: 500;
  width: min(55.8666666667vw, 838px);
  text-align: end;
}
@media screen and (max-width: 959px) {
  .p-intro__graph-lead {
    width: 100%;
    text-align: start;
  }
}
.p-intro__conclusion {
  margin-top: min(3.6666666667vw, 55px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 959px) {
  .p-intro__conclusion-image {
    position: absolute;
  }
}
.p-intro__conclusion-image--left {
  width: 6.667em;
  height: 9.056em;
  margin-right: 3.5em;
}
@media screen and (max-width: 959px) {
  .p-intro__conclusion-image--left {
    margin-right: 0;
    left: max(8vw, 30px);
    top: -0.6em;
    width: max(9.0666666667vw, 34px);
  }
}
@media screen and (max-width: 480px) {
  .p-intro__conclusion-image--left {
    width: max(17.0666666667vw, 64px);
    top: -0.6em;
    left: 0.5em;
  }
}
.p-intro__conclusion-image--right {
  width: 8.944em;
  height: 10.778em;
  margin-left: 0.222em;
}
@media screen and (max-width: 959px) {
  .p-intro__conclusion-image--right {
    margin-left: 0;
    top: -0.6em;
    width: max(11.7333333333vw, 44px);
    right: max(8vw, 30px);
  }
}
@media screen and (max-width: 480px) {
  .p-intro__conclusion-image--right {
    width: max(19.7333333333vw, 74px);
    top: -0.6em;
    right: 0.5em;
  }
}
.p-intro__conclusion-text {
  font-size: 40px;
  font-size: clamp(20px, 13.3333333333px + 1.7777777778vw, 40px);
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .p-intro__conclusion-text {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .p-intro__conclusion-text {
    margin-top: 2.3em;
  }
}
.p-intro__conclusion-text p {
  text-align: center;
}
.p-intro__conclusion-label {
  font-size: 30px;
  font-size: clamp(16px, 11.3333333333px + 1.2444444444vw, 30px);
}
.p-intro__conclusion-em {
  color: #fd8402;
}

.p-reason {
  padding-block: 6.667em;
}
@media screen and (max-width: 959px) {
  .p-reason {
    padding-block: 3.571em;
  }
}
.p-reason__inner .c-heading__main {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #024ec1;
  font-size: clamp(24px, 18.3333333333px + 1.5111111111vw, 41px);
  margin-bottom: 0.927em;
}
@media screen and (max-width: 959px) {
  .p-reason__inner .c-heading__main {
    margin-bottom: 1.2em;
  }
}
.p-reason__inner .c-heading__main img {
  width: clamp(153px, 13.6vw + 102px, 306px);
  height: clamp(31.5px, 2.8vw + 21px, 63px);
  margin-right: 0.5em;
}
.p-reason__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  gap: 2.889em;
}
@media screen and (max-width: 959px) {
  .p-reason__list {
    gap: 3em;
  }
}
.p-reason__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  gap: 1.389em;
}
@media screen and (max-width: 959px) {
  .p-reason__item {
    gap: 1em;
  }
}
.p-reason__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .p-reason__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-direction: column-reverse;
    gap: max(3.3333333333vw, 12.5px);
  }
}
.p-reason__content--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 959px) {
  .p-reason__content--reverse {
    flex-direction: column-reverse;
  }
}
.p-reason__layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  gap: 1.389em;
}
@media screen and (max-width: 959px) {
  .p-reason__layout {
    gap: 0.8em;
  }
}
.p-reason__num {
  font-family: "Lato", sans-serif;
  color: #024ec1;
  font-size: 60px;
  line-height: 1;
  font-size: clamp(40px, 33.3333333333px + 1.7777777778vw, 60px);
}
@media screen and (max-width: 959px) {
  .p-reason__num {
    text-align: center;
  }
}
.p-reason__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  gap: 8px;
}
@media screen and (max-width: 959px) {
  .p-reason__title {
    width: 16em;
    margin-inline: auto;
    gap: 0.221em;
  }
}
.p-reason__title-em {
  display: inline-block;
  width: fit-content;
  color: #ffffff;
  background: #024ec1;
  font-size: 40px;
  font-size: clamp(22px, 16px + 1.6vw, 40px);
  padding: 0 0.5em;
  line-height: 1.5em;
}
@media screen and (max-width: 959px) {
  .p-reason__title-em {
    width: 100%;
    text-align: center;
  }
}
.p-reason__title-em .accent {
  color: #fcff00;
}
.p-reason__text {
  line-height: 2;
  margin-left: 16px;
}
@media screen and (max-width: 959px) {
  .p-reason__text {
    text-align: center;
    margin-left: 0;
    line-height: 1.67;
  }
}
.p-reason__image {
  width: 16.722em;
  height: 18.056em;
  position: relative;
  bottom: -1.333em;
}
@media screen and (max-width: 959px) {
  .p-reason__image {
    width: 12em;
    height: auto;
    margin-inline: auto;
    bottom: unset;
  }
}
.p-reason__image.btm {
  top: 0.667em;
  width: 15.722em;
  height: 15.611em;
  right: 2.944em;
  position: relative;
}
@media screen and (max-width: 959px) {
  .p-reason__image.btm {
    top: unset;
    right: unset;
    width: 12em;
    height: auto;
    margin-bottom: 0.2em;
    margin-inline: auto;
  }
}
.p-reason__badges {
  margin-top: min(5vw, 75px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-left: calc(-1 * min(2.4vw, 36px));
}
@media screen and (max-width: 959px) {
  .p-reason__badges {
    margin-top: 0;
    gap: max(1.8666666667vw, 7px);
  }
}
.p-reason__badge {
  background: url(../img/img_reason02.webp) center/contain no-repeat;
  width: 8.611em;
  height: 8.611em;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .p-reason__badge {
    width: 6.429em;
    height: 6.429em;
  }
}
.p-reason__badge-label {
  font-size: 20px;
  color: #ffffff;
  font-size: clamp(10px, 6.6666666667px + 0.8888888889vw, 20px);
}
.p-reason__badge-value {
  color: #fcff00;
  font-size: 34px;
  font-size: clamp(21px, 16.6666666667px + 1.1555555556vw, 34px);
}
.p-reason__badge-value strong {
  font-size: 2.353em;
}

.p-about__inner {
  width: 100%;
  max-width: 100vw;
  margin-inline: 0;
}
.p-about__company {
  max-width: 1000px;
  width: min(66.6666666667vw, 1000px);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .p-about__company {
    width: calc(100vw - min(20vw, 300px));
    max-width: calc(100vw - min(20vw, 300px));
    margin-inline: auto;
  }
}
.p-about__company {
  padding: 42px 1em;
  border: solid 4px #1a75b8;
}
@media screen and (max-width: 959px) {
  .p-about__company {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
    padding: 1em;
  }
}
.p-about__company-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(3vw, 45px);
}
@media screen and (max-width: 959px) {
  .p-about__company-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-direction: column-reverse;
  }
}
.p-about__company-title {
  font-size: clamp(24px, 18.6666666667px + 1.4222222222vw, 40px);
  text-align: center;
  margin-bottom: 1.15em;
}
@media screen and (max-width: 959px) {
  .p-about__company-title {
    margin-bottom: 0.8em;
  }
}
.p-about__company-logo {
  width: min(20.3333333333vw, 305px);
  height: min(5.4vw, 81px);
}
@media screen and (max-width: 959px) {
  .p-about__company-logo {
    width: 12em;
    height: auto;
    margin-bottom: 1em;
  }
}
.p-about__switch {
  background: url(../img/bg_swtih.svg) bottom/100% auto no-repeat;
  padding-block: 5em;
}
@media screen and (max-width: 959px) {
  .p-about__switch {
    padding-block-start: 3em;
    padding-block-end: 0;
    background-image: url(../img/bg_swtih.svg);
    background-position: center 52%;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.p-about__switch-inner {
  max-width: 1000px;
  width: min(66.6666666667vw, 1000px);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .p-about__switch-inner {
    width: calc(100vw - min(20vw, 300px));
    max-width: calc(100vw - min(20vw, 300px));
    margin-inline: auto;
  }
}
.p-about__switch-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .p-about__switch-inner {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
  }
}
.p-about__switch-lead {
  font-size: clamp(20px, 16.6666666667px + 0.8888888889vw, 30px);
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .p-about__switch-lead {
    line-height: 1.4;
    margin-bottom: 0.8em;
  }
}
.p-about__switch-content {
  margin-top: 1.989em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(3.0666666667vw, 46px);
}
@media screen and (max-width: 959px) {
  .p-about__switch-content {
    width: 100vw;
    margin-top: 0.5em;
    gap: 0.5em;
    align-items: start;
    padding-bottom: 3em;
    background: #e5f9ff;
  }
}
@media screen and (max-width: 480px) {
  .p-about__switch-content {
    background: none;
    padding-bottom: 0;
  }
}
.p-about__switch-list {
  display: flex;
  flex-wrap: wrap;
  gap: min(1.7333333333vw, 26px);
}
@media screen and (max-width: 959px) {
  .p-about__switch-list {
    gap: 0.3em;
  }
}
.p-about__switch-item {
  width: 11.111em;
  height: 11.111em;
  background: url(../img/circle_about.webp) center/contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .p-about__switch-item {
    width: 6.8em;
    height: 6.8em;
  }
}
.p-about__switch-circle {
  font-size: 22px;
  font-size: clamp(14px, 11.3333333333px + 0.7111111111vw, 22px);
  font-weight: bold;
  line-height: 1.36;
  text-align: center;
}
.p-about__switch-image {
  width: 11.611em;
  height: 11.778em;
}
@media screen and (max-width: 959px) {
  .p-about__switch-image {
    height: auto;
    background: #e5f9ff;
  }
  .p-about__switch-image img {
    width: 8em;
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  .p-about__switch-image {
    padding-bottom: 3em;
    margin-top: 0px;
    width: 100vw;
  }
}

.p-cta-banner {
  padding-block: 3.667em 0;
  background-image: linear-gradient(to right, #3188ff, #1371ee);
}
@media screen and (max-width: 959px) {
  .p-cta-banner {
    padding-block: 2.667em 0;
  }
}
.p-cta-banner.second .p-cta-banner__inner {
  padding-block-end: 12px;
  max-width: 1500px;
  margin-inline: auto;
}
@media screen and (max-width: 959px) {
  .p-cta-banner.second .p-cta-banner__inner {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
  }
}
.p-cta-banner.second .p-cta-banner__text {
  margin-top: 1.45em;
}
@media screen and (max-width: 959px) {
  .p-cta-banner.second .p-cta-banner__text {
    margin-bottom: 2.5em;
  }
}
.p-cta-banner.second .p-cta-banner__image {
  right: min(4vw, 60px);
}
@media screen and (max-width: 959px) {
  .p-cta-banner.second .p-cta-banner__image {
    right: -1em;
  }
}
.p-cta-banner.second .p-cta-banner__note {
  font-size: clamp(10px, 9.3333333333px + 0.1777777778vw, 12px);
  text-align: end;
  padding-right: min(18vw, 270px);
}
@media screen and (max-width: 1100px) {
  .p-cta-banner.second .p-cta-banner__note {
    padding-right: min(16.6666666667vw, 250px);
  }
}
@media screen and (max-width: 959px) {
  .p-cta-banner.second .p-cta-banner__note {
    padding-right: 8em;
  }
}
.p-cta-banner.third {
  padding-block-start: 0;
}
.p-cta-banner.third .p-cta-banner__inner {
  padding-block: 35px;
  width: 100%;
  max-width: 100vw;
  margin-inline: 0;
  max-width: 1500px;
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .p-cta-banner.third .p-cta-banner__inner {
    padding-block-end: min(6.6666666667vw, 100px);
  }
}
@media screen and (max-width: 959px) {
  .p-cta-banner.third .p-cta-banner__inner {
    width: 100%;
  }
}
.p-cta-banner.third .p-cta-banner__image {
  right: min(4vw, 60px);
}
@media screen and (max-width: 959px) {
  .p-cta-banner.third .p-cta-banner__image {
    right: 2px;
    bottom: 0;
  }
}
.p-cta-banner__inner {
  padding-block-end: 2.056em;
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin-inline: 0;
  max-width: 1500px;
  margin-inline: auto;
}
@media screen and (max-width: 959px) {
  .p-cta-banner__inner {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
  }
}
.p-cta-banner__title {
  font-size: clamp(24px, 18.6666666667px + 1.4222222222vw, 40px);
  color: #fcff00;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .p-cta-banner__title {
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0.5em;
  }
}
.p-cta-banner__title--lg {
  font-size: clamp(23px, 10.8333333333px + 3.2444444444vw, 59.5px);
  color: #fcff00;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0.2em;
}
.p-cta-banner__sub {
  font-size: clamp(16px, 9.5px + 1.7333333333vw, 35.5px);
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 959px) {
  .p-cta-banner__sub {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
.p-cta-banner__text {
  font-size: clamp(14px, 12px + 0.5333333333vw, 20px);
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5em;
  font-weight: bold;
  line-height: 1.4;
}
.p-cta-banner__btns {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 2.722em;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .p-cta-banner__btns {
    gap: 17px;
  }
}
.p-cta-banner__note {
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 1.338em;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .p-cta-banner__note {
    font-size: clamp(13px, 8.6666666667px + 1.1555555556vw, 26px);
  }
}
.p-cta-banner__image {
  position: absolute;
  bottom: 0;
  right: min(4vw, 60px);
  width: min(13.2666666667vw, 199px);
  height: min(14.9333333333vw, 224px);
}
@media screen and (max-width: 1100px) {
  .p-cta-banner__image {
    width: 7.5em;
    height: auto;
    right: min(0.6666666667vw, 10px);
  }
}
@media screen and (max-width: 959px) {
  .p-cta-banner__image {
    width: 6em;
    height: auto;
    right: -0.907em;
  }
}
.p-cta-banner__cols {
  max-width: 1500px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  gap: 49px;
}
@media screen and (max-width: 959px) {
  .p-cta-banner__cols {
    gap: max(5.3333333333vw, 20px);
  }
}
.p-cta-banner__col {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.p-cta-banner__col .c-btn--blue {
  color: #000000;
}
.p-cta-banner__col-label {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .p-cta-banner__col-label {
    margin-bottom: 0.2em;
  }
}

.p-result {
  padding-block: 5.556em;
}
@media screen and (max-width: 959px) {
  .p-result {
    padding-block: 3em 5em;
  }
}
.p-result__inner {
  max-width: 1200px;
  width: min(80vw, 1200px);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .p-result__inner {
    width: calc(100vw - min(6.6666666667vw, 100px));
    max-width: calc(100vw - min(6.6666666667vw, 100px));
    margin-inline: auto;
  }
}
@media screen and (max-width: 959px) {
  .p-result__inner {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
  }
}
.p-result__inner .c-heading {
  margin-bottom: 3.056em;
}
@media screen and (max-width: 959px) {
  .p-result__inner .c-heading {
    margin-bottom: 1em;
  }
}
.p-result__inner .c-heading__main {
  font-size: 36px;
  font-size: clamp(20px, 14.6666666667px + 1.4222222222vw, 36px);
  margin-bottom: 0.411em;
}
.p-result__inner .c-heading__sub {
  font-size: 24px;
  font-size: clamp(14px, 10.6666666667px + 0.8888888889vw, 24px);
}
.p-result__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 29px;
}
@media screen and (max-width: 959px) {
  .p-result__list {
    padding: 0px;
  }
}
.p-result__item {
  padding: 25px;
  width: 350px;
  border-radius: 10px;
  box-shadow: 1.3px 1.5px 20px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 959px) {
  .p-result__item {
    width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    margin-inline: auto;
    margin-inline: unset;
    max-width: 350px;
  }
}
.p-result__image {
  width: 300px;
  height: 162px;
}
@media screen and (max-width: 959px) {
  .p-result__image {
    width: 100%;
    height: auto;
  }
}
.p-result__image > img {
  width: 100%;
  object-fit: cover;
}
.p-result__type {
  font-size: 20px;
  font-size: clamp(18px, 17.3333333333px + 0.1777777778vw, 20px);
  text-align: center;
  font-weight: bold;
  margin: 0.65em 0;
}
.p-result__saving {
  padding: 14px 0 10px;
  line-height: 1;
  background-color: #d3effd;
  margin-bottom: min(1.7066666667vw, 25.6px);
}
.p-result__saving-label {
  font-size: 15.5px;
  font-size: clamp(14px, 13.5px + 0.1333333333vw, 15.5px);
  text-align: center;
  margin-bottom: 0.3em;
}
.p-result__saving-value {
  text-align: center;
  font-size: 20px;
  font-size: clamp(18px, 17.3333333333px + 0.1777777778vw, 20px);
  font-weight: bold;
}
.p-result__saving-value > span {
  font-size: 1.5em;
}
.p-result__compare {
  position: relative;
  margin-bottom: 24px;
}
.p-result__compare > img {
  width: 11.111em;
  height: 128/128em;
}
.p-result__compare-bar--before {
  background-color: #d9ba8a;
}
.p-result__compare-bar--after {
  background-color: #d3effd;
}
.p-result__compare-badge {
  position: absolute;
  display: block;
  color: #ffffff;
  background-color: #075ccc;
  border-radius: 9999px;
  line-height: 1.2;
  text-align: center;
  padding-block: 25px;
  width: 118px;
  height: 118px;
  font-size: 24px;
  font-weight: bold;
  top: 9.4px;
  right: -30px;
}
@media screen and (max-width: 959px) {
  .p-result__compare-badge {
    top: 0;
    right: -1.7em;
  }
}
.p-result__compare-badge:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #075ccc;
  width: 24.8px;
  height: 19.5px;
  clip-path: polygon(0 60%, 100% 0, 100% 100%);
  left: -14.5px;
  bottom: 31px;
}
.p-result__compare-badge > span {
  font-size: 34px;
}
.p-result__compare-badge > span.yaku {
  font-size: 15.5px;
}
.p-result__price {
  display: flex;
  flex-direction: column;
  gap: 0;
  gap: 11px;
}
@media screen and (max-width: 959px) {
  .p-result__price {
    gap: 0.5em;
  }
}
.p-result__price-row {
  display: flex;
  align-items: center;
}
.p-result__price-label {
  font-size: 13.5px;
  font-size: clamp(10.5px, 9.5px + 0.2666666667vw, 13.5px);
  padding: 8px 18px;
}
.p-result__price-label--before {
  background-color: #d9ba8a;
}
.p-result__price-label--after {
  background-color: #d3effd;
}
.p-result__price-value {
  font-weight: bold;
  font-size: 16px;
  font-size: clamp(14px, 13.3333333333px + 0.1777777778vw, 16px);
  margin-left: 0.688em;
}
.p-result__price-value > span {
  font-size: 1.531em;
}

.p-feature {
  padding-block-end: 6.667em;
}
@media screen and (max-width: 959px) {
  .p-feature {
    padding-block-end: 4em;
  }
}
.p-feature__inner {
  width: 100%;
  max-width: 100vw;
  margin-inline: 0;
}
.p-feature__inner .c-heading__main {
  font-size: 30px;
  margin-bottom: 1.833em;
}
@media screen and (max-width: 959px) {
  .p-feature__inner .c-heading__main {
    font-size: clamp(18px, 14px + 1.0666666667vw, 30px);
    margin-bottom: 1em;
  }
}
.p-feature__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(1.8666666667vw, 28px);
}
@media screen and (max-width: 1100px) {
  .p-feature__list {
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 254px);
  }
}
@media screen and (max-width: 959px) {
  .p-feature__list {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .p-feature__list {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
    gap: max(2.6666666667vw, 10px);
  }
}
.p-feature__item {
  padding: 1.333em 1.333em 2.278em;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  width: 254px;
  border-radius: 20px;
  border: solid 4px #52c6f6;
  background: #ffffff;
}
@media screen and (max-width: 959px) {
  .p-feature__item {
    width: 100%;
    max-width: 254px;
  }
}
@media screen and (max-width: 480px) {
  .p-feature__item {
    border: solid 2px #52c6f6;
    padding: 1em 0.7em 1em;
    max-width: unset;
    width: 100%;
    gap: 0.8em;
  }
}
.p-feature__icon {
  width: 100px;
  height: 100px;
  display: block;
  background-color: #e6f5fa;
  border-radius: 9999px;
  margin-bottom: 1.056em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .p-feature__icon {
    margin-bottom: 0;
    width: max(18.6666666667vw, 70px);
    height: max(18.6666666667vw, 70px);
    flex-shrink: 0;
  }
}
.p-feature__icon > img {
  mix-blend-mode: multiply;
  width: 79px;
  height: 79px;
}
.p-feature__title {
  font-size: clamp(15px, 12.8333333333px + 0.5777777778vw, 21.5px);
  margin-bottom: 1.209em;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .p-feature__title {
    margin-bottom: 0.5em;
  }
}
.p-feature__text {
  font-size: clamp(12px, 11.1666666667px + 0.2222222222vw, 14.5px);
  line-height: 1.69;
}
@media screen and (max-width: 480px) {
  .p-feature__text {
    line-height: 1.4;
  }
}

.p-plan {
  padding-block: 4.722em;
}
@media screen and (max-width: 959px) {
  .p-plan {
    padding-block: 3em;
  }
}
.p-plan__inner {
  max-width: 1100px;
  width: min(73.3333333333vw, 1100px);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .p-plan__inner {
    width: calc(100vw - min(13.3333333333vw, 200px));
    max-width: calc(100vw - min(13.3333333333vw, 200px));
    margin-inline: auto;
  }
}
.p-plan__inner .c-heading {
  margin-bottom: min(4.3333333333vw, 65px);
}
.p-plan__inner .c-heading__sub {
  font-size: clamp(18px, 14px + 1.0666666667vw, 30px);
}
.p-plan__inner .c-heading__main {
  font-size: clamp(24px, 17px + 1.8666666667vw, 45px);
}
.p-plan__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.222em;
  display: grid;
  grid-template-columns: repeat(2, 48%);
}
@media screen and (max-width: 959px) {
  .p-plan__list {
    gap: 2em;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__list {
    display: flex;
  }
}
.p-plan__item {
  max-width: 500px;
  box-shadow: 0.278em 0.483em 1em 0.111em rgba(51, 51, 51, 0.2);
  padding-bottom: 2.5em;
}
@media screen and (max-width: 959px) {
  .p-plan__item {
    max-width: 400px;
  }
}
@media screen and (max-width: 480px) {
  .p-plan__item {
    width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    margin-inline: auto;
  }
}
.p-plan__item.blue .p-plan__check-item:before {
  background-color: #3086fd;
}
.p-plan__item.teal .p-plan__check-item:before {
  background-color: #03cdc7;
}
.p-plan__head--blue {
  background: #3086fd;
}
.p-plan__head--teal {
  background: #03cdc7;
}
.p-plan__title {
  font-size: 30px;
  font-size: clamp(20px, 16.6666666667px + 0.8888888889vw, 30px);
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  padding: 1em 0;
  font-weight: bold;
}
.p-plan__recommend-label {
  font-size: clamp(14px, 12px + 0.5333333333vw, 20px);
  text-align: center;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  border-bottom: 3px solid #000000;
  width: fit-content;
  margin-inline: auto;
  margin-block: 2em;
}
@media screen and (max-width: 959px) {
  .p-plan__recommend-label {
    margin-block: 1.5em;
  }
}
.p-plan__check-list {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  gap: 0.5em;
}
@media screen and (max-width: 959px) {
  .p-plan__check-list {
    gap: 0.3em;
  }
}
.p-plan__check-item {
  font-size: 21.5px;
  font-size: clamp(16px, 14.1666666667px + 0.4888888889vw, 21.5px);
  font-weight: bold;
  width: fit-content;
  display: flex;
  align-items: center;
}
.p-plan__check-item:before {
  content: "";
  display: inline-block;
  width: 1.219em;
  height: 1.219em;
  border-radius: 9999px;
  background: url(../img/checkmark.svg);
  background-size: 12.9px 9.4px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 0.735em;
  padding-top: 0.1em;
}
.p-plan__check-em {
  color: #fd8402;
}

.p-market {
  border-top: 6px solid #3086fd;
  box-shadow: 5px 8.7px 18px 2px rgba(51, 51, 51, 0.2);
  max-width: 1100px;
  width: min(73.3333333333vw, 1100px);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .p-market {
    width: calc(100vw - min(13.3333333333vw, 200px));
    max-width: calc(100vw - min(13.3333333333vw, 200px));
    margin-inline: auto;
  }
}
.p-market {
  padding: min(4.6666666667vw, 70px) 20px min(6.6666666667vw, 100px);
}
@media screen and (max-width: 959px) {
  .p-market {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
  }
}
@media screen and (max-width: 959px) {
  .p-market__inner {
    width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    margin-inline: auto;
  }
}
.p-market__inner .c-heading {
  margin-bottom: 2.583em;
}
@media screen and (max-width: 959px) {
  .p-market__inner .c-heading {
    margin-bottom: 1em;
  }
}
.p-market__inner .c-heading__sub {
  font-size: clamp(18px, 10.6666666667px + 1.9555555556vw, 40px);
}
.p-market__inner .c-heading__main {
  font-size: clamp(26px, 14.6666666667px + 3.0222222222vw, 60px);
  color: #3086fd;
}
.p-market__title {
  font-size: 21.5px;
}
.p-market__tab {
  width: min(54.6666666667vw, 820px);
  margin-inline: auto;
}
@media screen and (max-width: 959px) {
  .p-market__tab {
    width: 100%;
    max-width: 400px;
  }
}
.p-market__tab-list {
  border-radius: 10px;
  border: solid 1px #3086fd;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  display: flex;
  overflow: hidden;
}
.p-market__tab-item {
  width: fit-content;
  font-size: clamp(12px, 8.6666666667px + 0.8888888889vw, 22px);
  line-height: 1;
  font-weight: bold;
  text-align: center;
  padding-block: 1.091em;
  padding-inline: 2.273em 0.455em;
}
@media screen and (max-width: 959px) {
  .p-market__tab-item {
    padding-inline: 2em 0.2em;
    padding-block: 0.8em;
    line-height: 1.2;
  }
}
.p-market__tab-item--active {
  background-color: #3086fd;
  color: #ffffff;
  padding-inline: 2em;
  width: fit-content;
}
.p-market__recommend {
  width: min(54.6666666667vw, 820px);
  max-width: 820px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .p-market__recommend {
    width: 100%;
  }
}
.p-market__recommend-label {
  margin-top: 2.5em;
  margin-bottom: 1.167em;
  margin-inline: auto;
  font-size: clamp(16px, 13.3333333333px + 0.7111111111vw, 24px);
  font-weight: bold;
  width: fit-content;
  color: #3086fd;
  border-bottom: 4px solid #3086fd;
}
@media screen and (max-width: 959px) {
  .p-market__recommend-label {
    margin-top: 1.5em;
    border-bottom: 2px solid #3086fd;
    margin-bottom: 1em;
  }
}
.p-market__recommend-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(4vw, 60px);
  margin-bottom: 3.333em;
}
@media screen and (max-width: 959px) {
  .p-market__recommend-list {
    column-gap: max(5.3333333333vw, 20px);
    row-gap: max(8vw, 30px);
    margin-bottom: 1em;
  }
}
.p-market__recommend-item {
  width: 11.611em;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .p-market__recommend-item {
    width: 9em;
  }
}
.p-market__recommend-icon {
  margin-bottom: 0.778em;
}
.p-market__recommend-icon img {
  height: 148px;
}
@media screen and (max-width: 959px) {
  .p-market__recommend-icon img {
    height: 7em;
  }
}
.p-market__recommend-icon.check-mark {
  width: 1.456em;
  height: 1.456em;
  background: url(../img/checkmark.svg) center/contain no-repeat;
  background-size: 0.722em 0.522em;
  padding: 3px;
  background-color: #3086fd;
  border-radius: 9999px;
}
.p-market__recommend-text {
  font-size: clamp(16px, 13.1666666667px + 0.7555555556vw, 24.5px);
  text-align: center;
  font-weight: bold;
  line-height: 1.47;
}
.p-market__recommend-note {
  width: min(54.6666666667vw, 820px);
  margin-inline: auto;
  margin-bottom: 4.778em;
  font-size: clamp(12px, 10px + 0.5333333333vw, 18px);
}
@media screen and (max-width: 959px) {
  .p-market__recommend-note {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .p-market__recommend-note {
    width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    margin-inline: auto;
  }
}
.p-market__recommend-note > a {
  color: #06c;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #06c;
}
.p-market__graph-layout {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 52.5px;
  margin-bottom: 3.778em;
}
@media screen and (max-width: 959px) {
  .p-market__graph-layout {
    margin-bottom: 1.5em;
    gap: max(5.3333333333vw, 20px);
  }
}
@media screen and (max-width: 480px) {
  .p-market__graph-layout {
    margin-bottom: 0;
  }
}
.p-market__graph-image {
  width: 605px;
  height: 372px;
}
@media screen and (max-width: 959px) {
  .p-market__graph-image {
    width: max(80.6666666667vw, 302.5px);
    height: auto;
  }
}
.p-market__graph-badge {
  font-size: 20px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #ffffff;
  background-color: #3086fd;
  border-radius: 9999px;
  padding: 2.3em 1em;
  position: relative;
  line-height: 1;
  font-size: clamp(12px, 9.3333333333px + 0.7111111111vw, 20px);
}
@media screen and (max-width: 480px) {
  .p-market__graph-badge {
    padding: 1em 0.8em;
    top: -1.5em;
  }
}
.p-market__graph-badge:before {
  position: absolute;
  content: "";
  display: block;
  width: 1.125em;
  height: 1.3em;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  left: -1.05em;
  top: calc(50% - 0.525em);
  background-color: #3086fd;
}
.p-market__text {
  width: min(53.9333333333vw, 809px);
  font-size: clamp(12px, 10px + 0.5333333333vw, 18px);
  line-height: 1.67;
  margin-inline: auto;
  margin-bottom: 3.833em;
}
@media screen and (max-width: 959px) {
  .p-market__text {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .p-market__text {
    width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    margin-inline: auto;
  }
}
.p-market__notice {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  background-color: #fcfaee;
  padding: 1.389em 2.778em 3.167em;
}
@media screen and (max-width: 1100px) {
  .p-market__notice {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .p-market__notice {
    border-radius: 20px;
    padding: 2em 1em 2em;
    width: 100%;
  }
}
.p-market__notice-head {
  display: flex;
  align-items: end;
  margin-inline: auto;
  margin-bottom: 2.883em;
}
@media screen and (max-width: 959px) {
  .p-market__notice-head {
    position: relative;
    margin-bottom: 2em;
  }
}
.p-market__notice-badge {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.641em;
  height: 4.461em;
  font-size: 19.5px;
  font-size: clamp(12px, 9.5px + 0.6666666667vw, 19.5px);
  border-radius: 9999px;
  background-color: #fbdb00;
  transform: rotate(-15deg);
  margin-right: 0.831em;
  flex-shrink: 0;
}
.p-market__notice-lead {
  font-size: clamp(17px, 11.3333333333px + 1.5111111111vw, 34px);
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-left: -0.374em;
}
@media screen and (max-width: 959px) {
  .p-market__notice-lead {
    line-height: 1.2;
  }
}
.p-market__notice-title {
  font-size: 61px;
  font-size: clamp(25px, 13px + 3.2vw, 61px);
  color: #024ec1;
  line-height: 1.3;
  margin-right: calc(-1 * min(1.8vw, 27px));
}
.p-market__notice-image {
  width: min(13.9333333333vw, 209px);
  height: auto;
  position: relative;
  right: calc(-1 * min(1.8vw, 27px));
}
@media screen and (max-width: 959px) {
  .p-market__notice-image {
    width: 5.5em;
    height: auto;
    position: absolute;
    right: 0;
    top: -0.5em;
  }
}
.p-market__notice-body {
  gap: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .p-market__notice-body {
    gap: 2.5em;
  }
}
.p-market__notice-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  font-weight: bold;
  width: 380px;
}
@media screen and (max-width: 1100px) {
  .p-market__notice-item {
    width: 47%;
  }
}
@media screen and (max-width: 959px) {
  .p-market__notice-item {
    width: max(50.6666666667vw, 190px);
  }
}
.p-market__notice-item-upper {
  padding-block: 1.944em;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  line-height: 1;
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 4.5px 7.8px 3px 0 rgba(149, 149, 149, 0.2);
  border: solid 2px #488ffb;
}
.p-market__notice-item-label {
  font-size: 29.5px;
  font-size: clamp(18px, 14.1666666667px + 1.0222222222vw, 29.5px);
  color: #024ec1;
  margin-bottom: 0.705em;
}
.p-market__notice-item-value {
  font-size: 40px;
  font-size: clamp(22px, 16px + 1.6vw, 40px);
  color: #fd8402;
}
.p-market__notice-item-num {
  font-size: 79.5px;
  font-size: clamp(40px, 26.8333333333px + 3.5111111111vw, 79.5px);
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.p-market__notice-item-title {
  font-size: 29.5px;
  font-size: clamp(16px, 11.5px + 1.2vw, 29.5px);
  margin-block: 1.186em 0.9em;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .p-market__notice-item-title {
    margin-block: 1em 0.8em;
  }
}
.p-market__notice-item-text {
  font-size: clamp(12px, 10px + 0.5333333333vw, 18px);
}
@media screen and (max-width: 959px) {
  .p-market__notice-item-text {
    line-height: 1.4;
  }
}
.p-market__description {
  width: min(54.6666666667vw, 820px);
  margin: 0 auto;
  margin-top: 3.389em;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  border-radius: 4px;
  border: solid 2px #cecece;
  padding: 23px 35px;
}
@media screen and (max-width: 959px) {
  .p-market__description {
    padding: 1.5em;
    width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    margin-inline: auto;
  }
}
.p-market__description-title {
  font-size: 18px;
  font-size: clamp(16px, 15.3333333333px + 0.1777777778vw, 18px);
  line-height: 1.67;
  margin-bottom: 15px;
}
.p-market__description-body p {
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (max-width: 959px) {
  .p-market__description-body p {
    line-height: 1.7;
  }
}

.p-campaign {
  margin: 122px auto 100px;
}
@media screen and (max-width: 959px) {
  .p-campaign {
    margin: 60px auto 50px;
  }
}
.p-campaign__inner {
  width: min(62.6666666667vw, 940px);
}
@media screen and (max-width: 959px) {
  .p-campaign__inner {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .p-campaign__inner {
    width: 100%;
    max-width: 100vw;
    margin-inline: 0;
  }
}

.p-market.green {
  border-top: 6px solid #03cdc7;
  padding-block-end: min(5.6666666667vw, 85px);
}
.p-market.green .p-market__lead {
  width: min(54vw, 810px);
  max-width: 810px;
  margin-inline: auto;
  margin-bottom: 2.661em;
}
@media screen and (max-width: 959px) {
  .p-market.green .p-market__lead {
    width: 100%;
  }
}
.p-market.green .p-market__title {
  color: #03cdc7;
}
.p-market.green .p-market__tab-list {
  border: 1px solid #03cdc7;
}
.p-market.green .p-market__tab-item--active {
  background-color: #03cdc7;
}
.p-market.green .p-market__recommend-list {
  gap: min(3.3333333333vw, 50px);
}
@media screen and (max-width: 959px) {
  .p-market.green .p-market__recommend-list {
    column-gap: max(5.3333333333vw, 20px);
    row-gap: max(8vw, 30px);
    margin-bottom: 1em;
  }
}
.p-market.green .p-market__recommend-item {
  width: 12.778em;
}
@media screen and (max-width: 959px) {
  .p-market.green .p-market__recommend-item {
    width: 9em;
  }
}
.p-market.green .p-market__recommend-label {
  width: fit-content;
  color: #03cdc7;
  border-bottom: 4px solid #03cdc7;
}
@media screen and (max-width: 959px) {
  .p-market.green .p-market__recommend-label {
    border-bottom: 2px solid #03cdc7;
  }
}
@media screen and (max-width: 959px) {
  .p-market.green .p-market__recommend-icon img {
    width: 9em;
    height: 7em;
  }
}
.p-market.green .p-market__recommend-icon.check-mark {
  width: 1.456em;
  height: 1.456em;
  background: url(../img/checkmark.svg) center/contain no-repeat;
  background-size: 0.722em 0.522em;
  padding: 3px;
  border-radius: 9999px;
  background-color: #03cdc7;
}
.p-market.green .p-market__recommend-note {
  margin-bottom: 0;
}

.p-price {
  margin-top: min(9.6666666667vw, 145px);
  background: url(../img/bg_plan_select.webp) center/cover no-repeat;
  padding-block: min(8.6vw, 129px) min(9.5333333333vw, 143px);
}
.p-price .c-heading__main {
  font-size: 40px;
  font-size: clamp(22px, 16px + 1.6vw, 40px);
  margin-bottom: 1.075em;
}
.p-price__table {
  font-size: 22.5px;
  font-size: clamp(12px, 8.5px + 0.9333333333vw, 22.5px);
  margin-inline: auto;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 959px) {
  .p-price__table {
    line-height: 1.2;
  }
}
.p-price__th {
  color: #ffffff;
}
.p-price__th--current {
  border-radius: 20px 20px 0 0;
  background: #515151;
  padding: 1.978em 2.222em 1.711em;
  width: min(23.3333333333vw, 350px);
}
@media screen and (max-width: 959px) {
  .p-price__th--current {
    padding: 1em 0.3em 1em;
    width: max(30.6666666667vw, 115px);
  }
}
.p-price__th--idex {
  border-radius: 20px 20px 0 0;
  background: #3086fd;
  border: 1.31px solid #ffffff;
  width: min(23.3333333333vw, 350px);
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .p-price__th--idex {
    padding: 0.5em 0em 0.5em;
    width: max(40vw, 150px);
  }
}
.p-price__td {
  background: #f2f2f2;
  text-align: center;
  padding-block: 0.978em;
  border-left: 4px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 959px) {
  .p-price__td {
    border-left: 2px solid #ccc;
  }
}
.p-price__td.btm {
  border-bottom: none;
}
.p-price__td-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .p-price__td-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.p-price__td--usage {
  background: #d4f2ff;
  line-height: 1.3;
  padding-inline: 1.191em 1.662em;
  text-align: start;
  border-left: none;
  border-bottom: 2px solid #ffffff;
  font-size: clamp(12px, 8.5px + 0.9333333333vw, 22.5px);
}
@media screen and (max-width: 959px) {
  .p-price__td--usage {
    padding-inline: 0.2em;
    min-width: 82px;
  }
}
.p-price__td--usage img {
  margin-right: 0.489em;
}
@media screen and (max-width: 959px) {
  .p-price__td--usage img {
    margin-right: 0;
    width: 2.857em;
  }
}
.p-price__td--usage.sun {
  border-radius: 20px 0 0 0;
}
.p-price__td--usage.sun img {
  width: 51px;
  height: 51px;
}
@media screen and (max-width: 959px) {
  .p-price__td--usage.sun img {
    width: 2.857em;
  }
}
.p-price__td--usage.moon {
  border-radius: 0 0 0 20px;
  border-bottom: none;
}
.p-price__td--usage.moon img {
  width: 41px;
  height: 42px;
}
@media screen and (max-width: 959px) {
  .p-price__td--usage.moon img {
    width: 2.857em;
  }
}
.p-price__td--plan {
  background: #ffffff;
  color: #0150c2;
  border-left: 4px solid #3086fd;
  border-right: 4px solid #3086fd;
}
@media screen and (max-width: 959px) {
  .p-price__td--plan {
    border-left: 2px solid #3086fd;
    border-right: 2px solid #3086fd;
  }
}
.p-price__td--plan.green {
  color: #03cdc7;
}
.p-price__td--plan.green .p-price__plan-link {
  background: #03cdc7;
}
.p-price__td--plan.green.btm {
  border-bottom: 4px solid #3086fd;
}
@media screen and (max-width: 959px) {
  .p-price__td--plan.green.btm {
    border-bottom: 2px solid #3086fd;
  }
}
.p-price__plan-name {
  font-size: 30px;
  font-size: clamp(14px, 8.6666666667px + 1.4222222222vw, 30px);
  line-height: 1;
  margin-bottom: 0.2em;
  font-weight: bold;
}
.p-price__plan-link {
  background: #3086fd;
  font-size: 15px;
  font-size: clamp(9px, 7px + 0.5333333333vw, 15px);
  color: #ffffff;
  border-radius: 9999px;
  padding: 0.2em 3em;
}
@media screen and (max-width: 959px) {
  .p-price__plan-link {
    padding: 0.2em 1em;
  }
}
.p-price__plan-link > span {
  font-size: 12px;
}

.p-faq {
  padding-block: 5.556em;
}
@media screen and (max-width: 959px) {
  .p-faq {
    padding-block: 3em;
  }
}
.p-faq__inner {
  max-width: 1000px;
  width: min(66.6666666667vw, 1000px);
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .p-faq__inner {
    width: calc(100vw - min(20vw, 300px));
    max-width: calc(100vw - min(20vw, 300px));
    margin-inline: auto;
  }
}
@media screen and (max-width: 959px) {
  .p-faq__inner {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .p-faq__inner {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
  }
}
.p-faq__inner .c-heading__main {
  font-size: 30px;
  font-size: clamp(18px, 14px + 1.0666666667vw, 30px);
  margin-bottom: 1em;
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  gap: 20px;
}
@media screen and (max-width: 959px) {
  .p-faq__list {
    gap: max(4vw, 15px);
  }
}
.p-faq__item {
  padding: 29px 54px 49px 59px;
  border-radius: 20px;
  box-shadow: 4.5px 7.8px 3px 0 rgba(149, 149, 149, 0.2);
  border: solid 2px #488ffb;
  background-color: #fff;
}
@media screen and (max-width: 959px) {
  .p-faq__item {
    padding: 1em;
  }
}
.p-faq__question {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  font-size: 22px;
  font-size: clamp(15px, 12.6666666667px + 0.6222222222vw, 22px);
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .p-faq__question {
    margin-bottom: 0.7em;
  }
}
.p-faq__icon {
  font-weight: bold;
  flex-shrink: 0;
}
.p-faq__icon--q {
  font-size: 28px;
  font-size: clamp(20px, 17.3333333333px + 0.7111111111vw, 28px);
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.786em;
  height: 1.786em;
  background-color: #0150c2;
  border-radius: 9999px;
  color: #ffffff;
  margin-right: 1.179em;
}
@media screen and (max-width: 959px) {
  .p-faq__icon--q {
    margin-right: 0.5em;
  }
}
.p-faq__icon--a {
  font-size: 40px;
  font-size: clamp(28px, 24px + 1.0666666667vw, 40px);
  margin-right: 1.175em;
  padding-left: 0.275em;
}
@media screen and (max-width: 959px) {
  .p-faq__icon--a {
    margin-right: 0.7em;
  }
}
.p-faq__answer {
  display: flex;
  align-items: start;
}
.p-faq__answer-lead {
  font-size: 22px;
  font-size: clamp(15px, 12.6666666667px + 0.6222222222vw, 22px);
  font-weight: bold;
}
.p-faq__answer-text {
  font-size: 20px;
  font-size: clamp(14px, 12px + 0.5333333333vw, 20px);
  line-height: 2;
}
@media screen and (max-width: 959px) {
  .p-faq__answer-text {
    line-height: 1.67;
  }
}
.p-faq__link {
  color: #06c;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #06c;
}

.p-flow {
  padding-block: 5.556em 4.444em;
}
@media screen and (max-width: 959px) {
  .p-flow {
    padding-block: 3em;
  }
}
.p-flow__inner {
  width: 100%;
  max-width: 100vw;
  margin-inline: 0;
}
.p-flow__inner .c-heading__main {
  font-size: 30px;
  margin-bottom: 2em;
}
@media screen and (max-width: 959px) {
  .p-flow__inner .c-heading__main {
    margin-bottom: 1em;
    font-size: 18px;
    line-height: 1.53;
    position: relative;
    width: fit-content;
    margin-inline: auto;
  }
  .p-flow__inner .c-heading__main > span {
    display: none;
  }
  .p-flow__inner .c-heading__main:before, .p-flow__inner .c-heading__main:after {
    content: "";
    position: absolute;
    display: block;
    width: 2px;
    height: 45px;
    background: #000000;
    bottom: 0;
  }
  .p-flow__inner .c-heading__main::before {
    transform: rotate(-30deg);
    left: -1.2em;
  }
  .p-flow__inner .c-heading__main::after {
    transform: rotate(30deg);
    right: -1.2em;
  }
}
.p-flow__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin-inline: auto;
}
@media screen and (max-width: 959px) {
  .p-flow__list {
    max-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .p-flow__list {
    max-width: 240px;
  }
}
.p-flow__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  width: 220px;
  border-radius: 20px;
  box-shadow: 4.5px 7.8px 10px 0 rgba(149, 149, 149, 0.2);
  border: solid 1px #488ffb;
  background-color: #f6fdff;
  position: relative;
  padding-block: 1.056em 1.278em;
}
@media screen and (max-width: 959px) {
  .p-flow__item {
    padding-block: 1.056em 1em;
    width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    margin-inline: auto;
    padding-inline: 1em 1em;
    gap: 0.2em;
  }
}
.p-flow__item:nth-of-type(1)::after, .p-flow__item:nth-of-type(2)::after, .p-flow__item:nth-of-type(3)::after {
  position: absolute;
  content: "";
  display: block;
  width: 16px;
  height: 24.8px;
  background-color: #0051bf;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: calc(50% - 12.4px);
  right: -27px;
}
@media screen and (max-width: 959px) {
  .p-flow__item:nth-of-type(1)::after, .p-flow__item:nth-of-type(2)::after, .p-flow__item:nth-of-type(3)::after {
    width: 1.378em;
    height: 0.889em;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    left: calc(50% - 0.689em);
    top: unset;
    bottom: -1.7em;
  }
}
.p-flow__step {
  font-size: 16.5px;
  font-size: clamp(13px, 11.8333333333px + 0.3111111111vw, 16.5px);
  font-weight: bold;
  color: #ffffff;
  border-radius: 9999px;
  background-color: #488ffb;
  line-height: 1;
  padding: 0.485em 1.212em;
  margin-bottom: 1.03em;
}
@media screen and (max-width: 959px) {
  .p-flow__step {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 959px) {
  .p-flow__content {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0em;
    padding-inline: 1em 0;
  }
}
.p-flow__icon {
  margin-bottom: 1.333em;
}
@media screen and (max-width: 959px) {
  .p-flow__icon {
    width: 6em;
    margin-bottom: 0;
  }
}
.p-flow__icon img {
  width: 153px;
  height: 138px;
}
@media screen and (max-width: 959px) {
  .p-flow__icon img {
    width: 6em;
    height: 5em;
    margin-inline: auto;
  }
}
.p-flow__label {
  font-size: 20px;
  text-align: center;
  font-size: clamp(15px, 13.3333333333px + 0.4444444444vw, 20px);
}
@media screen and (max-width: 959px) {
  .p-flow__label {
    text-align: center;
    width: 57%;
  }
}

.p-cta {
  background: url(../img/bg_p-cta.webp) center/cover no-repeat;
  padding-block: 4.278em 3.5em;
}
@media screen and (max-width: 959px) {
  .p-cta {
    padding-block: 3em 2em;
  }
}
.p-cta__inner {
  box-shadow: 2.5px 4.3px 30px 0 rgba(4, 0, 0, 0.35);
  width: min(70.3333333333vw, 1055px);
  max-width: 1055px;
  background: #ffffff;
  border-radius: 40px;
  padding-block: 3.111em 2.278em;
}
@media screen and (max-width: 959px) {
  .p-cta__inner {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
  }
}
.p-cta__title {
  font-size: 40px;
  font-size: clamp(25px, 20px + 1.3333333333vw, 40px);
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  color: #034ec3;
  margin-bottom: 1em;
}
.p-cta__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.p-cta__badge {
  width: 214px;
  font-size: 16px;
  font-weight: bold;
  color: #024ec1;
  position: relative;
  border-radius: 10px;
  box-shadow: 4.5px 7.8px 3px 0 rgba(149, 149, 149, 0.2);
  border: solid 2px #488ffb;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  padding-block: 1.167em 1.389em;
  line-height: 1;
}
.p-cta__badge .icon {
  display: inline-block;
  width: 30px;
  height: 29px;
  margin: 0 19px 0 0;
  padding: 5.1px 6.1px 7px 7px;
  background-color: #024ec1;
  border-radius: 9999px;
}
.p-cta__badge .icon img {
  width: 16.9px;
  height: 16.9px;
}
.p-cta__badge .yaku {
  font-size: 20px;
}
.p-cta__badge .accent {
  color: #fd8402;
}
.p-cta__badge-title {
  display: flex;
  align-items: center;
  font-size: 28px;
  margin-bottom: 0.4em;
}
.p-cta__badge-title.first {
  font-size: 16px;
}
.p-cta__badge-num {
  font-size: 40px;
  font-family: "Lato", sans-serif;
}
.p-cta__badge-em {
  font-size: 28px;
  color: #fd8402;
}
.p-cta__badge-sub {
  position: relative;
  font-size: 30px;
}
.p-cta__badge-note {
  position: absolute;
  font-size: 12px;
  color: #000000;
  left: 0;
  top: -0.3em;
}
.p-cta__text {
  font-size: 16px;
  font-size: clamp(14px, 13.3333333333px + 0.1777777778vw, 16px);
  font-weight: bold;
  line-height: 1.63;
  text-align: center;
  margin-block: 1.438em 1em;
}
.p-cta__btns {
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 2.722em;
  justify-content: center;
}
@media screen and (max-width: 959px) {
  .p-cta__btns {
    gap: 20px;
  }
}
.p-cta .c-btn {
  box-shadow: min(0.3vw, 4.5px) min(0.52vw, 7.8px) 0 0 #e3e3e3;
}
.p-cta .c-btn:hover {
  box-shadow: 0px 0px 0 0 #e3e3e3;
}
.p-cta__note {
  text-align: center;
  font-weight: bold;
  margin-top: 2em;
  font-size: clamp(12px, 10.6666666667px + 0.3555555556vw, 16px);
}
.p-cta__footnote {
  width: min(70.3333333333vw, 1055px);
  margin: 0 auto;
  color: #ffffff;
  text-align: end;
  font-size: 12px;
  font-size: clamp(10px, 9.3333333333px + 0.1777777778vw, 12px);
  margin-top: 17px;
}

.p-sticky-cta {
  position: fixed;
  width: 100vw;
  bottom: 0;
  background-color: #d3e3ff;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 37px;
  padding: 35px 0 29px;
}
@media screen and (max-width: 959px) {
  .p-sticky-cta {
    gap: max(2.6666666667vw, 10px);
  }
}
.p-sticky-cta__btn {
  width: clamp(170px, 22.22vw + 86.67px, 420px);
  font-size: 24px;
  position: relative;
  padding-top: 24px;
  padding-bottom: 0.583em;
  font-size: clamp(13px, 9.3333333333px + 0.9777777778vw, 24px);
}
@media screen and (max-width: 959px) {
  .p-sticky-cta__btn {
    padding-top: 1.231em;
    font-size: clamp(13px, 11.3333333333px + 0.4444444444vw, 18px);
    min-width: 170px;
  }
}
.p-sticky-cta__btn > img {
  width: 43px;
  height: 47px;
  margin-right: 21px;
}
@media screen and (max-width: 959px) {
  .p-sticky-cta__btn > img {
    width: 26px;
    height: 23.5px;
    margin-right: 0;
  }
}
.p-sticky-cta .c-btn--blue {
  background-image: linear-gradient(to top, #0660dc, #2f87fe);
  color: #ffffff;
}
.p-sticky-cta .c-btn--blue img {
  width: 19px;
}
.p-sticky-cta .c-btn--primary {
  padding-right: 0;
}
.p-sticky-cta__label {
  position: absolute;
  font-size: 18px;
  border-radius: 9999px;
  top: -1.028em;
}
@media screen and (max-width: 959px) {
  .p-sticky-cta__label {
    font-size: 11px;
  }
}
.p-sticky-cta__label.before {
  padding: 0.5em 2.444em 0.55em;
  background-color: #61d4ff;
  box-shadow: 1.5px 2.6px 6px 0 rgba(4, 0, 0, 0.35);
  color: #000000;
}
.p-sticky-cta__label.later {
  box-shadow: 1.5px 2.6px 6px 0 rgba(4, 0, 0, 0.1);
  background-color: #fd6c02;
  padding: 0.5em 0.833em 0.55em;
  color: #ffffff;
  left: calc(50% - 150px);
}
@media screen and (max-width: 959px) {
  .p-sticky-cta__label.later {
    font-size: 10px;
    padding: 0.7em 0.55em 0.75em;
    left: calc(50% - 80.5px);
  }
}

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

@media screen and (min-width: 960px) {
  .u-md-only {
    display: none !important;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
