@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
} 
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 100%;
  /* 相対基準を統一 */
  font-size: calc(16 / 375 * 767px);
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1.7;
}

a,
span {
  display: inline-block;
  font-weight: inherit;
}

h2, h3, p, span, a, dt, dd {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

button {
  cursor: pointer;
  color: inherit;
  background: none;
  font-size: 0.875rem;
  font-family: inherit;
  border: none;
  padding: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.wrapper {
  color: #fff;
  background: #000;
  max-width: 767px;
  margin-inline: auto;
}

.inner {
  padding-inline: 1.125rem;
}

.heading {
  font-weight: 700;
  text-align: center;
}

.--highlight {
  position: relative;
}
.--highlight::before {
  content: "";
  background: rgba(255, 225, 0, 0.5);
  width: 100%;
  height: 1.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.--highlight span {
  position: relative;
  z-index: 1;
}

.common-heading {
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}

.common-heading__deco {
  width: 6.875rem;
  height: 0.25rem;
  border-top: 0.0625rem solid #F76C6D;
  border-bottom: 0.0625rem solid #F76C6D;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.common-heading__deco.--left {
  right: 97%;
}
.common-heading__deco.--right {
  left: 97%;
}

.common-heading__en {
  color: rgba(215, 141, 132, 0.1);
  font-size: 4rem;
}
.access .common-heading__en {
  color: #ECECEC;
}

.common-heading__ja {
  color: #AB6E09;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.access .common-heading__ja {
  color: #000;
}

.btn {
  display: block;
  background: linear-gradient(90deg, #FE2858 0%, #D60030 100%);
  width: fit-content;
  padding-block: 1rem;
  padding-inline: 4rem;
  border-radius: 100vmax;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
}
.btn.--small {
  padding-block: 0.75rem;
  padding-left: 2.1875rem;
  padding-right: 2.5rem;
}
.btn.--cyan {
  background: #69C9D0;
}
.btn::before {
  content: "";
  width: calc(100% - 0.5rem);
  height: calc(100% - 0.5rem);
  border-color: #fff;
  border-width: 0.0625rem;
  border-style: solid;
  border-radius: 100vmax;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.btn.--small {
  overflow: visible;
}
.btn.--small::before {
  display: none;
}
.btn.--small::after {
  display: none;
}

.btn__txt {
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", sans-serif;
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  position: relative;
}
.--small .btn__txt {
  font-size: 0.9375rem;
  letter-spacing: 0.19em;
}

.btn__arrow {
  background: #fff;
  height: 0.0625rem;
  position: absolute;
  top: 50%;
  left: calc(100% + 0.6875rem);
  translate: 0 -50%;
}
.--small .btn__arrow {
  left: calc(100% + 0.4375rem);
}
.btn__arrow::before {
  content: "";
  background: #fff;
  width: 0.25rem;
  height: 0.0625rem;
  position: absolute;
  top: calc(50% - 0.0625rem);
  right: 0;
  translate: 0 -50%;
  rotate: 37deg;
}

.btn .btn__arrow {
  width: 1.25rem;
  transition: width 0.3s ease;
}
@media (any-hover: hover) {
  .btn:hover {
    opacity: 1;
  }
  .btn:hover .btn__arrow {
    width: 1.875rem;
  }
  .btn:hover .btn__arrow.--short {
    width: 1.5625rem;
  }
}

.btn::after {
  content: "";
  background: #fff;
  width: 1.875rem;
  height: 100%;
  rotate: 45deg;
  position: absolute;
  top: -11.25rem;
  left: 0;
  animation: 3s ease-in-out infinite forwards flash;
}
@keyframes flash {
  0% {
    opacity: 0;
    scale: 0;
  }
  80% {
    opacity: 0.5;
    scale: 0;
  }
  81% {
    opacity: 1;
    scale: 4;
  }
  100% {
    opacity: 0;
    scale: 50;
  }
}

.cta {
  background: url("../img/bg_cta.webp") no-repeat center center/cover;
  padding-top: 2.9375rem;
  padding-bottom: 2.0625rem;
}

.cta__title {
  color: #FE2C55;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.cta__desc {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.2;
  margin-top: 1.0625rem;
  text-align: center;
}

.cta__desc-lower {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-top: -0.125rem;
}
.--type2 .cta__desc-lower {
  font-size: 1.25rem;
  margin-top: -0.5625rem;
}
.cta__desc-lower .--small {
  font-size: 1.25rem;
}
.cta__desc-lower .--accent {
  color: #FE2C55;
}
.--type2 .cta__desc-lower .--accent {
  font-size: 1.5rem;
}
.--type3 .cta__desc-lower .--accent {
  font-size: 1.75rem;
}
.cta__desc-lower .--num {
  font-family: "Montserrat", sans-serif;
  font-size: 1.875rem;
}

.cta__desc-lower .--dot-upper span {
  position: relative;
}
.cta__desc-lower .--dot-upper span::before {
  content: "";
  background: #FE2C55;
  width: 0.125rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100vmax;
  position: absolute;
  bottom: 100%;
  left: 50%;
  translate: -50%;
}

.--type2 .cta__desc-lower .--dot-upper span:first-of-type {
  font-size: 2rem;
}

.cta__btn {
  margin-top: 1.75rem;
}

.cta-bottom {
  background: #000;
  width: 23.4375rem;
  padding-top: 0.75rem;
  padding-bottom: 1rem;
  border-top: 0.125rem solid #FE2C55;
  position: fixed;
  left: 50%;
  translate: -50%;
  bottom: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cta-bottom.is-active {
  opacity: 1;
  visibility: visible;
}

.heading {
  padding-bottom: 0.4375rem;
  position: relative;
}

.heading.--type1::before {
  content: "";
  background: #FE2C55;
  width: 6.25rem;
  height: 0.125rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
}

.heading.--type2 {
  width: fit-content;
  padding-block: 0.75rem;
  padding-inline: 4.5rem;
  margin-inline: auto;
}
.qa .heading.--type2 {
  padding-inline: 3.4375rem;
}
.heading.--type2::before, .heading.--type2::after {
  content: "";
  width: 4.9375rem;
  height: 2.3125rem;
  position: absolute;
}
.heading.--type2::before {
  border-top: 0.125rem solid #FE2C55;
  border-left: 0.125rem solid #FE2C55;
  top: 0;
  left: 0;
}
.heading.--type2::after {
  border-bottom: 0.125rem solid #FE2C55;
  border-right: 0.125rem solid #FE2C55;
  bottom: 0;
  right: 0;
}

.heading__ja {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  position: relative;
  z-index: 1;
}
.--type2 .heading__ja {
  letter-spacing: 0;
}
.qa .heading__ja {
  white-space: nowrap;
}
.heading__ja .--lower {
  font-size: 2.5rem;
}
.heading__ja .--middle {
  font-size: 2rem;
}

.heading__en {
  opacity: 0.12;
  color: #fff;
  font-size: 4.375rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  position: absolute;
  left: -0.4375rem;
  top: 50%;
  translate: 0 -50%;
  z-index: 0;
}
.price .heading__en {
  font-size: 4.5625rem;
  top: 0.1875rem;
  left: -2.125rem;
  translate: unset;
}

.heading2 {
  padding-inline: 0.5rem;
}

.heading2__ja {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5;
}
.heading2__ja .--accent {
  color: #FE2C55;
  font-size: 2.0625rem;
}
.heading2__ja .--large {
  font-size: 2rem;
}
.heading2__ja .--question {
  font-size: 2rem;
  rotate: 16deg;
  margin-top: 0.1875rem;
  margin-left: 0.25rem;
}

.heading2__ja-upper {
  letter-spacing: 0.04em;
}

.heading2__ja-middle {
  font-size: 1.875rem;
  letter-spacing: 0.03em;
  margin-top: 0.375rem;
}
.heading2__ja-middle .--large {
  font-size: 2.5rem;
  margin-right: 0.9375rem;
}
.heading2__ja-middle .--strong {
  color: #FE2C55;
}

.heading2__ja-lower {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.heading2__ja-lower .--large {
  font-size: 2.5rem;
}

.heading2__en {
  color: #FE2C55;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  margin-top: 0.625rem;
  margin-left: 0.3125rem;
}

.header {
  width: 6.5rem;
  height: auto;
  position: absolute;
  top: 1.25rem;
  left: calc(50% - 10.9375rem);
  z-index: 10;
}

.header__logo-link {
  display: block;
}

.fv {
  position: relative;
}

.fv__container {
  width: 100%;
  height: 100%;
  padding-top: 12.9375rem;
  padding-bottom: 1.6875rem;
  position: absolute;
  top: 0;
  left: 0;
}

.fv__title {
  width: 17rem;
}

.fv__lead {
  letter-spacing: 0.12em;
  line-height: 1;
  margin-top: 0.4375rem;
}

.fv__lead-lower {
  margin-top: 0.4375rem;
  display: flex;
}
.fv__lead-lower .--strong {
  display: inline;
  color: #FE2C55;
  font-size: 2rem;
  flex-shrink: 0;
}
.fv__lead-lower .--middle {
  font-size: 1.5rem;
}
.fv__lead-lower .--first {
  display: inline;
  margin-top: 0.5rem;
  align-self: start;
  flex-shrink: 0;
}
.fv__lead-lower .--third {
  display: inline;
  margin-bottom: 0.125rem;
  align-self: end;
  flex-shrink: 0;
}

.fv__desc {
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-shadow: 0 0 0.26875rem #E942C0;
  width: fit-content;
  margin-top: 2.375rem;
  margin-left: 3.3125rem;
  margin-right: auto;
  text-align: center;
}
.fv__desc .--accent {
  color: #FFDD00;
  letter-spacing: 0.12em;
}

.fv__hold {
  color: #999;
  font-size: 0.6875rem;
  line-height: 1.6;
  margin-top: 0.1875rem;
  text-align: center;
}

.fv__btn {
  margin-top: 1.3125rem;
}

.fv__scroll {
  margin-top: 1.25rem;
  text-align: center;
}

.fv__scroll-txt {
  font-size: 0.6875rem;
  margin-bottom: 0.125rem;
}

.fv__scroll-arrow {
  width: 1.5rem;
  height: 1.5rem;
  margin-inline: auto;
  position: relative;
}
.fv__scroll-arrow img {
  width: 100%;
  position: absolute;
  left: 50%;
  translate: -50%;
}
.fv__scroll-arrow img:nth-child(1) {
  animation: scrollArrow 2s infinite;
}
.fv__scroll-arrow img:nth-child(2) {
  animation: scrollArrow 2s infinite 1s;
}
@keyframes scrollArrow {
  0% {
    translate: -50%;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    translate: -50% 0.75rem;
    opacity: 0;
  }
}

.recommend {
  padding-top: 2.1875rem;
  padding-bottom: 4.5rem;
  overflow-x: clip;
  position: relative;
}

.recommend__inner {
  padding-inline: 0.4375rem;
}

.recommend__cards {
  margin-top: 2.1875rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.4375rem;
}

.recommend__card {
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  box-shadow: 0rem 0rem 1.66875rem 0rem rgba(255, 169, 114, 0.26);
  padding-block: 0.84375rem;
  display: flex;
  align-items: center;
}
.recommend__card.--card1 {
  padding-left: 1.875rem;
  padding-right: 1rem;
  column-gap: 0.625rem;
}
.recommend__card.--card2 {
  padding-left: 1.5rem;
  padding-right: 1rem;
  column-gap: 0.625rem;
}
.recommend__card.--card3 {
  padding-left: 2.0625rem;
  padding-right: 1rem;
  column-gap: 1.0625rem;
}
.recommend__card.--card4 {
  padding-left: 1.875rem;
  padding-right: 1rem;
  column-gap: 0.4375rem;
}
.recommend__card.--card5 {
  padding-left: 1.5625rem;
  padding-right: 1rem;
  column-gap: 0.3125rem;
}

.recommend__card-left {
  flex-shrink: 0;
}
.--card1 .recommend__card-left {
  width: 2.75rem;
}
.--card2 .recommend__card-left {
  width: 3.1875rem;
}
.--card3 .recommend__card-left {
  width: 2.125rem;
}
.--card4 .recommend__card-left {
  width: 2.9375rem;
}
.--card5 .recommend__card-left {
  width: 3.125rem;
}

.recommend__card-txt .--strong {
  display: inline;
  color: #FFDD00;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
}
.recommend__card-txt .--large {
  display: inline;
  font-size: 1.0625rem;
}
.recommend__card-txt .--small {
  display: inline;
  font-size: 0.875rem;
}

.recommend__deco {
  width: 24.375rem;
  height: auto;
  position: absolute;
  bottom: -2.1875rem;
  left: -0.625rem;
}

.what {
  color: #000;
  background: #fff;
  padding-top: 2.8125rem;
  padding-bottom: 1.75rem;
}

.what__inner {
  overflow-x: clip;
  padding-inline: 0.625rem;
}

.what__desc {
  margin-top: 1.125rem;
  margin-left: 0.5rem;
}

.what__desc-upper {
  font-size: 1.0625rem;
  letter-spacing: 0.125em;
  line-height: 2.1;
}

.what__desc-lower {
  color: #FE2C55;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
.what__desc-lower .--small {
  font-size: 1.375rem;
}

.what__img {
  width: 13.375rem;
  margin-top: -7.5rem;
  margin-left: auto;
  margin-right: -0.8125rem;
}

.what__container {
  background: #397684;
  padding-top: 1.125rem;
  padding-bottom: 1.5rem;
  border-radius: 1.125rem;
  margin-top: 0.3125rem;
}

.what__container-txt {
  color: #fff;
  letter-spacing: 0.2em;
  text-align: center;
}
.what__container-txt .--strong {
  display: inline;
  background: linear-gradient(to bottom, transparent 0%, #FE2C55 0%, #FE2C55 100%, transparent 100%);
  font-size: 1.25rem;
  padding-inline: 0.1875rem;
}
.what__container-txt .--small {
  font-size: 0.875rem;
}

.flow {
  color: #000;
  background: #fff;
  padding-top: 1.8125rem;
  padding-bottom: 4rem;
  margin-top: -0.0625rem;
}

.flow__container {
  color: #fff;
  background: rgba(0, 0, 0, 0.74);
  padding-top: 1.75rem;
  padding-bottom: 2rem;
  padding-inline: 1.125rem;
  border-radius: 1.5625rem;
  margin-top: 1.125rem;
}

.flow__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.375rem;
}

.flow__item {
  display: flex;
  column-gap: 0.875rem;
}

.flow__left {
  flex-shrink: 0;
}

.flow__num {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5625rem;
  width: 3.4375rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
}
.--item1 .flow__num {
  background: #FF2D4E;
}
.--item2 .flow__num {
  background: #69C9D0;
}
.--item3 .flow__num {
  background: #FE2C55;
}

.flow__bar {
  width: 0.125rem;
  height: calc(100% - 3.4375rem - 1.375rem);
  min-height: 23.625rem;
  margin-inline: auto;
}
.--item1 .flow__bar {
  background: #FF2D4E;
}
.--item2 .flow__bar {
  background: #69C9D0;
}
.--item3 .flow__bar {
  background: #FE2C55;
}

.flow__arrow {
  width: 0.4375rem;
  height: auto;
  aspect-ratio: 0.3181818182;
  margin-left: 1.625rem;
  margin-right: auto;
}

.flow__right {
  padding-bottom: 0.9375rem;
}
.flow__item:last-of-type .flow__right {
  padding-bottom: 0;
}

.flow__title {
  width: fit-content;
  margin-left: 1.875rem;
  margin-right: auto;
  position: relative;
}
.--item2 .flow__title {
  margin-left: 2.75rem;
}

.flow__title-ja {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  line-height: 1.4;
  margin-top: 0.375rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.flow__title-en {
  color: rgba(255, 255, 255, 0.07);
  font-size: 3.375rem;
  letter-spacing: 0.08em;
  position: absolute;
  top: -1.375rem;
  left: 50%;
  translate: -50%;
  z-index: 0;
}

.flow__img {
  width: 12.5rem;
  margin-top: 1rem;
  position: relative;
}

.flow__img-deco {
  width: 3.75rem;
  height: auto;
  position: absolute;
  bottom: 0.9375rem;
  right: -0.5rem;
}

.flow__desc {
  font-size: 1rem;
  letter-spacing: 0.2em;
  line-height: 1.7;
  margin-top: 0.875rem;
}

.micro {
  overflow-x: clip;
  padding-top: 4.4375rem;
  padding-bottom: 4.125rem;
  position: relative;
}

.micro__deco {
  width: 24.375rem;
  height: auto;
  position: absolute;
  top: -2.125rem;
  left: -0.3125rem;
}

.micro__heading {
  padding-left: 0;
}

.micro__desc {
  margin-top: 1.125rem;
}

.micro__desc-txt {
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-top: 1.3125rem;
}
.micro__desc-txt.--lower {
  letter-spacing: 0.25em;
  margin-top: 1.5rem;
}
.micro__desc-txt .--large {
  font-size: 1.25rem;
}
.micro__desc-txt .--accent {
  color: #FE2C55;
  letter-spacing: 0.25em;
}

.micro__cards {
  margin-top: 2.5625rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.25rem;
}

.micro__card {
  padding-top: 0.8125rem;
  padding-bottom: 1.625rem;
  padding-left: 1.5rem;
  padding-right: 0.625rem;
  border-width: 0.0625rem;
  border-style: solid;
  border-radius: 1.5625rem;
  box-shadow: 0 0 0.3125rem 0 rgba(255, 229, 198, 0.99);
}
.micro__card.--red {
  border-color: #FE2C55;
}
.micro__card.--cyan {
  border-color: #69C9D0;
}

.micro__card-title {
  position: relative;
}

.micro__card-title-upper {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-left: 0.6875rem;
}
.--red .micro__card-title-upper {
  color: #FF738E;
}
.--cyan .micro__card-title-upper {
  color: #69C9D0;
}
.micro__card-title-upper .--small {
  font-size: 0.875rem;
}

.micro__card-title-lower {
  font-family: "Hiragino Kaku Gothic Std", sans-serif;
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: -0.3125rem;
  margin-left: 0.125rem;
  position: relative;
}
.--red .micro__card-title-lower {
  color: #FE2C55;
}
.--cyan .micro__card-title-lower {
  color: #69C9D0;
}
.--card2 .micro__card-title-lower {
  display: flex;
  align-items: center;
}
.--card3 .micro__card-title-lower {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8125rem;
  letter-spacing: 0;
  margin-left: 0.3125rem;
}
.micro__card-title-lower .--num {
  font-family: "Montserrat", sans-serif;
  font-size: 6.25rem;
}
.micro__card-title-lower .--middle {
  font-size: 3.5625rem;
}
.micro__card-title-lower .--large {
  font-size: 4.4375rem;
}

.micro__card-title-lower-left {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.125rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.micro__card-title-lower-left .--wave {
  letter-spacing: -0.03em;
}

.micro__card-title-lower-right {
  display: block;
  font-size: 1.4375rem;
  letter-spacing: 0.14em;
  text-align: center;
}
.micro__card-title-lower-right .--upper {
  font-size: 2.9375rem;
}

.micro__card-img {
  width: 15.3125rem;
  margin-top: 0.375rem;
  margin-left: 1.375rem;
  margin-right: auto;
}
.--card1 .micro__card-img {
  position: relative;
}
.--card2 .micro__card-img {
  width: 15.5rem;
  margin-top: -0.75rem;
  margin-left: 0.625rem;
}
.--card3 .micro__card-img {
  width: 16.4375rem;
  margin-top: -1.8125rem;
  margin-left: -0.625rem;
}

.micro__card-img-arrow {
  width: 3.3125rem;
  height: 7.75rem;
  border-left: 0.125rem solid #FF2D4E;
  border-bottom: 0.125rem solid #FF2D4E;
  position: absolute;
  top: -0.625rem;
  left: -0.8125rem;
}

.micro__card-desc {
  margin-top: -3.0625rem;
  position: relative;
}
.--card2 .micro__card-desc {
  margin-top: -2.0625rem;
}
.--card3 .micro__card-desc {
  margin-top: -2.8125rem;
}

.micro__card-desc1 {
  letter-spacing: 0.27em;
}
.--card2 .micro__card-desc1 {
  font-size: 1rem;
}
.--card3 .micro__card-desc1 {
  font-size: 0.9375rem;
}
.micro__card-desc1 .--large {
  font-size: 1.25rem;
}
.--card3 .micro__card-desc1 .--large {
  font-size: 1.1875rem;
}
.micro__card-desc1 .--num {
  font-size: 1.5rem;
}
.micro__card-desc1 .--accent {
  color: #FE2C55;
}
.--cyan .micro__card-desc1 .--accent {
  color: #69C9D0;
}

.micro__card-desc2 {
  letter-spacing: 0.2em;
}
.--card3 .micro__card-desc2 {
  margin-top: 1.5rem;
}

.feature {
  color: #000;
  background: #fff;
  padding-top: 2.75rem;
  padding-bottom: 2rem;
  overflow-x: clip;
  position: relative;
}

.feature__deco {
  width: 24.375rem;
  height: auto;
  position: absolute;
  top: -0.875rem;
  left: -0.625rem;
}

.feature__inner {
  padding-inline: 0.75rem;
}

.feature__heading {
  font-size: 1.5rem;
  padding-bottom: 0.3125rem;
  text-align: center;
}

.feature__heading-upper {
  letter-spacing: 0.06em;
}

.feature__heading-lower {
  color: #69C9D0;
  letter-spacing: 0.08em;
  line-height: 1.25;
}
.feature__heading-lower .--num {
  font-size: 2.5rem;
  font-family: "Montserrat", sans-serif;
}
.feature__heading-lower .--middle {
  font-size: 2rem;
}
.feature__heading-lower .--large {
  font-size: 2.5rem;
}

.feature__desc {
  padding-top: 0.5625rem;
  padding-bottom: 0.375rem;
  border: 0.0625rem solid #69C9D0;
  border-radius: 0.4375rem;
  margin-top: 1.3125rem;
  text-align: center;
}

.feature__desc-txt {
  font-size: 1rem;
}
.feature__desc-txt .--accent {
  color: #69C9D0;
}
.feature__desc-txt .--large {
  font-size: 1.25rem;
}

.feature__cards {
  margin-top: 1.6875rem;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.feature__card {
  color: #fff;
  background: #000;
  min-height: 13rem;
  padding-top: 0.9375rem;
  padding-bottom: 1.25rem;
  padding-left: 0.6875rem;
  padding-right: 0.3125rem;
  border-radius: 1.5625rem;
  box-shadow: 0 0 1.66875rem 0 rgba(255, 169, 114, 0.26);
  display: flex;
  column-gap: 1rem;
}

.feature__card-left {
  flex-shrink: 0;
}

.feature__card-num {
  color: #FE2C55;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  position: relative;
}
.--card2 .feature__card-num {
  color: #69C9D0;
}
.feature__card-num::before {
  content: "";
  background: #fff;
  width: 2.25rem;
  height: 0.0625rem;
  position: absolute;
  bottom: -0.1875rem;
  left: 50%;
  translate: -50%;
}

.feature__card-title {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 0.1875rem;
}
.--card1 .feature__card-title {
  line-height: 1;
  margin-top: 0.625rem;
}
.feature__card-title .--num {
  font-family: "Montserrat", sans-serif;
}

.feature__card-subtitle {
  color: #666;
  font-size: 0.8125rem;
}

.feature__card-desc {
  font-size: 0.8125rem;
  margin-top: 0.625rem;
}
.--card1 .feature__card-desc {
  margin-top: 0.375rem;
}

.bonus {
  padding-top: 1.875rem;
  padding-bottom: 2.3125rem;
}

.bonus__heading-ja {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.bonus__heading-ja .--small {
  font-size: 1.5rem;
}
.bonus__heading-ja .--num {
  font-family: "Montserrat", sans-serif;
}

.bonus__heading-en {
  color: #FE2C55;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.bonus__desc {
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-top: 0.75rem;
}

.bonus__cards {
  margin-top: 2.6875rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.3125rem;
}

.bonus__card-num {
  color: #FE2C55;
  font-family: "Montserrat", sans-serif;
  font-size: 5.5625rem;
  line-height: 1;
}
.--card2 .bonus__card-num, .--card4 .bonus__card-num {
  display: block;
  color: #69C9D0;
  text-align: right;
}

.bonus__card-container {
  backdrop-filter: blur(0.3125rem);
  -webkit-backdrop-filter: blur(0.3125rem);
  padding-top: 0.625rem;
  padding-bottom: 0.3125rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5625rem;
  box-shadow: 0 0 1.66875rem 0 rgba(255, 169, 114, 0.26);
  margin-top: -3.625rem;
}

.bonus__card-title {
  line-height: 1;
  text-align: center;
}

.bonus__card-title-en {
  color: #7B7B7B;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
}

.bonus__card-title-ja {
  font-size: 1.5rem;
  padding-bottom: 0.625rem;
  margin-top: 0.25rem;
  position: relative;
}
.--card3 .bonus__card-title-ja, .--card4 .bonus__card-title-ja {
  font-size: 1.25rem;
}
.bonus__card-title-ja::before {
  content: "";
  background: #00E5FF;
  width: 5.5rem;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
}

.bonus__card-img {
  width: 11.25rem;
  height: 8.4375rem;
  border-radius: 0.625rem;
  margin-top: 0.625rem;
  margin-inline: auto;
  overflow: hidden;
}

.bonus__card-desc {
  font-size: 0.8125rem;
  margin-top: 0.125rem;
  text-align: center;
}

.hold {
  padding-top: 2.375rem;
  padding-bottom: 2.5rem;
}

.hold__inner {
  padding-inline: 1.4375rem;
}

.hold__heading {
  text-align: center;
  position: relative;
}

.hold__heading-ja {
  font-size: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.hold__heading-en {
  color: rgba(255, 255, 255, 0.12);
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  top: 1.25rem;
  left: 50%;
  translate: -50%;
  z-index: 0;
}

.hold__container {
  padding-top: 2.6875rem;
  padding-bottom: 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5625rem;
  box-shadow: 0 0 1.66875rem 0 rgba(255, 169, 114, 0.26);
  margin-top: 2rem;
}

.hold__container-inner {
  padding-inline: 1.8125rem;
  padding-bottom: 0.875rem;
  position: relative;
}
.hold__container-inner::before {
  content: "";
  background: #444459;
  width: 16.875rem;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
}

.hold__date {
  padding-top: 1.125rem;
  padding-bottom: 0.4375rem;
  border: 0.03125rem solid #00E5FF;
  text-align: center;
  position: relative;
}

.hold__date-tag {
  color: #040009;
  background: #69C9D0;
  letter-spacing: 0.08em;
  padding-block: 0.25rem;
  padding-inline: 1.5rem;
  border-radius: 0.25rem;
  box-shadow: 0 0 0.425rem 0 rgb(245, 255, 186);
  position: absolute;
  top: -1.3125rem;
  left: -0.625rem;
}

.hold__date-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.hold__date-title-upper {
  display: block;
}

.hold__date-title-lower {
  display: block;
  font-size: 2rem;
  margin-top: 0.25rem;
}
.hold__date-title-lower .--small {
  font-size: 1.5rem;
  margin-inline: 0.5rem;
}

.hold__date-txt {
  font-size: 0.75rem;
  margin-top: 0.4375rem;
}
.hold__date-txt span {
  letter-spacing: 0.05em;
  margin-top: -0.3125rem;
}

.hold__venue {
  padding-left: 0.625rem;
  margin-top: 0.375rem;
  display: flex;
  column-gap: 0.875rem;
}

.hold__venue-left {
  flex-shrink: 0;
}

.hold__venue-icon {
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0.625rem;
  overflow: hidden;
  margin-top: 0.6875rem;
}

.hold__venue-title {
  color: #69C9D0;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
}

.hold__venue-pr {
  margin-top: -0.0625rem;
}

.hold__venue-pr-ja {
  font-size: 0.8125rem;
  line-height: 1.4;
}

.hold__venue-pr-en {
  display: block;
  color: #888;
  font-size: 0.5625rem;
  letter-spacing: 0.06em;
  margin-top: -0.0625rem;
}

.hold__venue-logo {
  width: 9.1875rem;
  margin-top: 0.625rem;
}

.hold__attention {
  color: #ddd;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 0.5625rem;
  text-align: center;
}

.result {
  color: #1A1A2E;
  background: #fff;
  padding-top: 3.125rem;
  padding-bottom: 4.0625rem;
  overflow-x: clip;
  position: relative;
}

.result__bg {
  width: 14.8125rem;
  height: auto;
  position: absolute;
  top: 7.5rem;
  right: -0.6875rem;
}

.result__deco {
  width: 28.5625rem;
  height: auto;
  rotate: -5.31deg;
  position: absolute;
  bottom: 1.375rem;
  left: -2.3125rem;
}

.result__inner {
  padding-inline: 0.3125rem;
  position: relative;
}

.result__heading {
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
}

.result__heading-upper {
  font-size: 1.5rem;
}

.result__heading-lower {
  color: #FE2C55;
  font-size: 2.5625rem;
  margin-top: 0.9375rem;
}

.result__heading-lower.--dot-upper span {
  position: relative;
}
.result__heading-lower.--dot-upper span::before {
  content: "";
  background: #FE2C55;
  width: 0.3125rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100vmax;
  position: absolute;
  bottom: calc(100% - 0.0625rem);
  left: 50%;
  translate: -50%;
}

.result__line {
  background: #FE2C55;
  width: 8.5625rem;
  height: 0.125rem;
  margin-top: 0.75rem;
  margin-inline: auto;
}

.result__example {
  margin-top: 2.5rem;
}

.result__maker {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
}

.result__hero {
  text-align: center;
  position: relative;
}

.result__hero-label {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.result__hero-num {
  line-height: 1;
  margin-top: 0.625rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  column-gap: 0.1875rem;
}
.result__hero-num .--num {
  color: #FE2C55;
  font-family: "Montserrat", sans-serif;
  font-size: 6.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.85;
}
.result__hero-num .--unit {
  color: #1A1A2E;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.result__hero-desc {
  color: #6B7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  width: fit-content;
  padding-block: 0.3125rem;
  padding-inline: 2.3125rem;
  border: 0.09375rem solid #D1D5DB;
  border-radius: 100vmax;
  margin-top: 1.25rem;
  margin-inline: auto;
}

.result__cards {
  margin-top: 2.3125rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.result__row {
  display: flex;
  column-gap: 0.3125rem;
  list-style: none;
}

.result__card {
  background: linear-gradient(180deg, #fff 0%, #FDF4FF 100%);
  width: 11.25rem;
  min-height: 9.375rem;
  padding-top: 0.8125rem;
  padding-bottom: 0.3125rem;
  padding-inline: 0.9375rem;
  border: 0.125rem solid #FE2C55;
  border-radius: 1.125rem;
  position: relative;
}

.result__card-num {
  color: #FFD5D6;
  font-family: "Inter", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
}

.result__card-icon {
  width: 2.3125rem;
  height: auto;
  position: absolute;
  top: 0.625rem;
  right: 1rem;
}
.--card2 .result__card-icon {
  width: 3.3125rem;
  top: 0.875rem;
  right: 0.5625rem;
}
.--card3 .result__card-icon {
  width: 3.125rem;
  top: 0.6875rem;
  right: 0.6875rem;
}
.--card4 .result__card-icon {
  width: 2.1875rem;
  top: 0.6875rem;
  right: 1.125rem;
}
.--card5 .result__card-icon {
  width: 2.4375rem;
  top: 0.5625rem;
  right: 1.0625rem;
}
.--card6 .result__card-icon {
  width: 2.125rem;
  top: 0.6875rem;
  right: 0.9375rem;
}

.result__card-label {
  color: #9CA3AF;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.--card4 .result__card-label {
  font-size: 0.75rem;
}

.result__card-value {
  line-height: 1;
  margin-top: 0.3125rem;
  display: flex;
  align-items: flex-end;
  column-gap: 0.125rem;
}
.result__card-value .--num {
  color: #FE2C55;
  font-family: "Montserrat", sans-serif;
  font-size: 2.625rem;
  font-weight: 800;
  line-height: 1;
}
.--card3 .result__card-value .--num {
  font-size: 2.3125rem;
}
.result__card-value .--unit {
  color: #1A1A2E;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  margin-left: 0.25rem;
  margin-bottom: 0.25rem;
}
.--card3 .result__card-value .--unit {
  font-size: 1.5rem;
  margin-left: -0.125rem;
}

.result__card-desc {
  color: #9CA3AF;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  width: fit-content;
  min-width: 9.375rem;
  padding-block: 0.125rem;
  padding-inline: 0.25rem;
  border: 0.0625rem solid #E5E7EB;
  border-radius: 100vmax;
  margin-top: 0.625rem;
  margin-inline: auto;
  text-align: center;
}

.result__footer {
  margin-top: 1.8125rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.result__footer-lead {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.result__footer-title {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-top: 0.4375rem;
}
.result__footer-title .--small {
  font-size: 1.5rem;
}
.result__footer-title .--accent {
  color: #FE2C55;
}

.price {
  padding-top: 5.4375rem;
  padding-bottom: 2.9375rem;
  overflow-x: clip;
  position: relative;
}

.price__deco {
  width: 26.875rem;
  height: auto;
  position: absolute;
  top: -1.25rem;
  left: -0.625rem;
}

.price__inner {
  padding-left: 1.4375rem;
  margin-top: 4.3125rem;
}

.price__slide {
  background: rgba(255, 255, 255, 0.08);
  width: fit-content;
  min-width: 18.75rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  padding-top: 0.875rem;
  padding-bottom: 1.25rem;
  padding-left: 0.875rem;
  padding-right: 1.5625rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 1.66875rem 0 rgba(255, 169, 114, 0.26);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.price__slide-head {
  padding-bottom: 1.25rem;
  margin-left: 0.9375rem;
  position: relative;
}
.price__slide-head::before {
  content: "";
  background: #fff;
  width: 14.75rem;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
}

.price__slide-title {
  color: #FE2C55;
  font-size: 2.0625rem;
  letter-spacing: 0.08em;
}
.price__slide-title.--cyan {
  color: #69C9D0;
}

.price__slide-price {
  line-height: 1.2;
  margin-top: 0.4375rem;
}
.price__slide-price .--num {
  font-family: "Montserrat", sans-serif;
  font-size: 2.9375rem;
}
.price__slide-price .--unit {
  font-size: 1rem;
}

.price__slide-desc {
  color: #666;
  font-size: 0.6875rem;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.price__slide-body {
  min-height: 15.6875rem;
  padding-top: 1.25rem;
}

.price__slide-list {
  margin-left: 0.5625rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.4375rem;
}

.price__slide-item {
  min-height: 1.6875rem;
  display: flex;
}

.price__slide-item-icon {
  width: 1.5rem;
  flex-shrink: 0;
  position: relative;
}
.price__slide-item-icon svg {
  width: 1.25rem;
}
.price__slide-item-icon span {
  background: #bbb;
  width: 0.5625rem;
  height: 0.0625rem;
  position: absolute;
  top: 0.5625rem;
  left: 0.375rem;
}

.price__slide-item-txt {
  font-size: 0.8125rem;
}
.--gray .price__slide-item-txt {
  font-size: 0.75rem;
}
.price__slide-item-txt.--red {
  color: #FE2C55;
}

.price__slide-btn {
  margin-top: 0.625rem;
}

.price__swiper-container,
.price__swiper,
.price__swiper-wrapper,
.price__swiper-slide {
  position: relative;
}

.price__swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.price__swiper-pagination > .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  margin-left: 8.9375rem;
  margin-right: auto;
  display: flex;
  align-items: center;
  bottom: -1.6875rem;
  z-index: 0;
}

.price__swiper-pagination > .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 1;
  background: #BC9EA3;
  width: 0.4375rem;
  height: auto;
  aspect-ratio: 1;
  margin: 0 0.3125rem;
}

.price__swiper-pagination > .swiper-pagination-bullet-active {
  background: #FE2C55 !important;
  width: 0.625rem !important;
}

.qa {
  padding-top: 3.25rem;
  padding-bottom: 1.5rem;
}

.qa__boxes {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qa__box {
  background: rgba(255, 255, 255, 0.08);
  border: 0.0625rem solid rgba(255, 255, 255, 0.08);
  border-radius: 0.625rem;
  box-shadow: 0 0 1.66875rem 0 rgba(255, 169, 114, 0.26);
  overflow: hidden;
}

.qa__box-head {
  cursor: pointer;
  width: 100%;
  min-height: 5rem;
  padding-block: 0.9375rem;
  padding-left: 1.1875rem;
  padding-right: 1.8125rem;
  position: relative;
}

.qa__box-head-container {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
}

.qa__box-head-icon,
.qa__box-body-icon {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 1rem;
}

.qa__box-head-icon {
  color: #FE2C55;
}

.qa__box-body-icon {
  color: #00E5FF;
}

.qa__box-head-txt {
  font-weight: 700;
  text-align: left;
}
.--box2 .qa__box-head-txt, .--box4 .qa__box-head-txt {
  font-size: 0.8125rem;
}
.--box3 .qa__box-head-txt {
  font-size: 0.75rem;
}

.qa__box-head-btn {
  display: block;
  background: #FE2C55;
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100vmax;
  position: absolute;
  right: 0.4375rem;
  top: 50%;
  translate: 0 -50%;
}

.qa__box-head-btn-bar {
  content: "";
  background: #fff;
  width: 0.5rem;
  height: 0.0625rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  transition: width 0.3s ease;
}
.qa__box.is-open .qa__box-head-btn-bar {
  width: 0.625rem;
}

.qa__box-head-btn-bar.--bar1 {
  rotate: 45deg;
  right: 43%;
  translate: 0;
  transition: right 0.3s ease, translate 0.3s ease;
}
.qa__box.is-open .qa__box-head-btn-bar.--bar1 {
  right: 50%;
  translate: 50%;
}

.qa__box-head-btn-bar.--bar2 {
  rotate: -45deg;
  left: 43%;
  translate: 0;
  transition: left 0.3s ease, translate 0.3s ease;
}
.qa__box.is-open .qa__box-head-btn-bar.--bar2 {
  left: 50%;
  translate: -50%;
}

.qa__box-body {
  display: none;
  padding-bottom: 1.5rem;
  padding-inline: 1.1875rem;
  position: relative;
}
.qa__box-body::before {
  content: "";
  background: #eee;
  width: 19.375rem;
  height: 0.0625rem;
  position: absolute;
  left: 1.25rem;
  top: -0.625rem;
}

.qa__box-body-container {
  display: flex;
  column-gap: 0.6875rem;
}

.qa__box-body-txt {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2;
}

.provider {
  padding-top: 2.5rem;
  padding-bottom: 3.0625rem;
}

.provider__inner {
  padding-inline: 1.4375rem;
}

.provider__heading {
  text-align: center;
  position: relative;
}

.provider__heading-ja {
  font-size: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.provider__heading-en {
  color: rgba(255, 255, 255, 0.1);
  font-size: 2.25rem;
  letter-spacing: 0.08em;
  position: absolute;
  top: -1rem;
  left: 50%;
  translate: -50%;
}

.provider__container {
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  padding-top: 1.4375rem;
  padding-bottom: 2.5rem;
  padding-inline: 1.8125rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 1.66875rem 0 rgba(255, 169, 114, 0.26);
  margin-top: 1.5rem;
}

.provider__title {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  padding-bottom: 0.4375rem;
}

.provider__list {
  padding-top: 1.125rem;
  padding-bottom: 0.5625rem;
  border-top: 0.0625rem solid #444459;
  border-bottom: 0.0625rem solid #444459;
  display: flex;
  flex-direction: column;
  row-gap: 1.0625rem;
}

.provider__row {
  display: flex;
  align-items: center;
}

.provider__row-title {
  color: #69C9D0;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  width: 5.6875rem;
  margin-top: 0.10625rem;
  flex-shrink: 0;
  align-self: flex-start;
}

.provider__row--data {
  font-size: 0.75rem;
  line-height: 1.7;
}

.pp-sc {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", sans-serif;
  padding-top: 6.625rem;
  padding-bottom: 2.125rem;
}

.pp-sc__heading {
  font-size: 1.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-bottom: 0.0625rem solid #FE2C55;
  margin-bottom: 1.1875rem;
}

.pp-sc__desc {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 3.375rem;
}

.pp-sc__container:nth-of-type(n + 2) {
  margin-top: 2.375rem;
}
.pp-sc__contact .pp-sc__container:nth-of-type(n + 2) {
  margin-top: 1rem;
}

.pp-sc__head {
  background: #484648;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  padding-block: 0.1875rem;
  padding-inline: 0.0625rem;
}
.--sc .pp-sc__head {
  font-size: 1rem;
  padding-block: 0.3125rem;
  padding-inline: 0.5rem;
}
.pp-sc__head span {
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
}

.pp-sc__body {
  line-height: 1.5;
  margin-top: 0.5625rem;
}
.--sc .pp-sc__body {
  line-height: 1.7;
  padding-inline: 0.5rem;
  margin-top: 0.4375rem;
}
.--container-sc1 .pp-sc__body {
  line-height: 1.5;
}
.pp-sc__body h3, .pp-sc__body p, .pp-sc__body a, .pp-sc__body li {
  font-size: 0.75rem;
  font-weight: 400;
}
.--container-pp7 .pp-sc__body ul {
  margin-top: 1.25rem;
}
.--container-sc1 .pp-sc__body ul {
  display: flex;
  flex-direction: column;
  row-gap: 1.125rem;
}
.pp-sc__body li::before {
  content: "・";
}
.--container-pp7 .pp-sc__body li::before, .--container-sc1 .pp-sc__body li::before, .--container-sc2 .pp-sc__body li::before {
  display: none;
}
.--container-sc2 .pp-sc__body h3 {
  margin-bottom: 1.125rem;
}

.pp-sc__contact {
  margin-top: 2.75rem;
}

.pp-sc__contact-heading {
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding-bottom: 0.3125rem;
  border-bottom: 0.03125rem solid #484648;
  margin-bottom: 0.625rem;
}

.footer {
  padding-top: 2.875rem;
  padding-bottom: 6.9375rem;
}
.footer.--pp-sc {
  padding-bottom: 1.25rem;
}

.footer__inner {
  padding-inline: 1.25rem;
}

.footer__logo {
  width: 6.5rem;
}

.footer__logo-link {
  display: block;
}

.footer__list {
  border-top: 0.0625rem solid #222;
  border-bottom: 0.0625rem solid #222;
  padding-block: 0.5625rem;
  margin-top: 1.0625rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.4375rem;
}
.--pp-sc .footer__list {
  margin-top: 1.4375rem;
}

.footer__link {
  color: #999;
  font-size: 0.6875rem;
}

.footer__copyright {
  color: #555;
  font-size: 0.625rem;
  margin-top: 0.875rem;
}/*# sourceMappingURL=style.css.map */