/* variables */
/* base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: #ffffff;
  color: #323544;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:focus {
  outline: none;
}
a:hover {
  opacity: 0.8;
}

summary:marker {
  display: none;
}
summary::-webkit-details-marker {
  display: none;
}

/* contents */
.body__inner {
  position: relative;
}

.wrapper {
  overflow: hidden;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #ffffff;
}
@media (min-width: 768px) {
  .site-nav {
    padding: 24px 60px;
  }
}
.site-nav__logo {
  width: 126px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .site-nav__logo {
    width: 151px;
  }
}
.site-nav__btn {
  background: #011a4a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-flex;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.site-nav__btn-icon {
  width: 12px;
  height: 12px;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
}
.fadein.is-animated {
  animation: fadein 0.5s ease forwards;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* hero */
.hero {
  background: url(../images/hero_bg_sm.png) no-repeat center center/cover;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .hero {
    background: url(../images/hero_bg_lg.png) no-repeat center center/cover;
    padding: 80px 60px;
  }
}
.hero__inner {
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero__inner {
    display: grid;
    max-width: 1080px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "catch img" "text img";
    grid-template-rows: auto 1fr;
    gap: 80px 20px;
    align-items: start;
  }
}
@media (min-width: 768px) {
  .hero__img {
    grid-area: img;
    margin-block: -14px;
  }
}
.hero__catch {
  max-width: 314px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .hero__catch {
    grid-area: catch;
    max-width: 471px;
    margin-right: auto;
    margin-left: 0;
  }
}
.hero__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #011a4a;
}
@media (min-width: 768px) {
  .hero__text {
    grid-area: text;
    font-size: 24px;
  }
}
.hero__text-strong {
  background: linear-gradient(86.04deg, #1d4df1 0%, #64d5bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* sticky */
.sticky-area {
  width: 100%;
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-area.is-sticky {
  transform: translateY(0);
}
.sticky-area__btn {
  max-width: 358px;
  margin: 0 auto;
  display: block;
}

/* section */
.section--challenges {
  background-color: #eff4fd;
  padding-bottom: 80px;
  margin-bottom: -40px;
}
@media (min-width: 768px) {
  .section--challenges {
    margin-bottom: -250px;
    padding-bottom: 300px;
  }
}
.section--about {
  position: relative;
}
.section--about:before, .section--about:after {
  content: "";
  width: 120%;
  height: 140px;
  aspect-ratio: 1/1;
  display: block;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50%;
}
@media (min-width: 768px) {
  .section--about:before, .section--about:after {
    height: 500px;
  }
}
.section--about:after {
  top: auto;
  bottom: -40px;
  z-index: 2;
}
@media (min-width: 768px) {
  .section--about:after {
    bottom: -110px;
  }
}
.section--company {
  padding-top: 60px;
  background: url(../images/about_bg.png) no-repeat center center/cover;
  margin-bottom: -72px;
  padding-bottom: 112px;
  position: relative;
}
@media (min-width: 768px) {
  .section--company {
    padding-top: 120px;
    padding-bottom: 350px;
    margin-bottom: -350px;
  }
  .section--company:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/about_bg.png) no-repeat center 45%/cover;
    scale: 1 -1;
  }
}
.section--company:after {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  display: block;
  content: "";
  height: 80px;
}
@media (min-width: 768px) {
  .section--company:after {
    height: 120px;
  }
}
.section--cost {
  background: url(../images/cost.png) no-repeat center center/cover;
  color: #ffffff;
}
@media (min-width: 768px) {
  .section--cost {
    background: url(../images/cost_lg.png) no-repeat center center/cover;
  }
}
@media (min-width: 768px) {
  .section--comparison {
    background: url(../images/about_bg.png) no-repeat center center/cover;
  }
}
.section--features, .section--plan, .section--flow {
  background: url(../images/about_bg.png) no-repeat center bottom 16%/cover;
}
.section__inner {
  padding: 40px 16px;
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section__inner {
    padding: 80px 50px;
  }
  .section--company .section__inner {
    padding-bottom: 0;
  }
}
.section__header {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .section__header {
    margin-bottom: 40px;
  }
  .section:has(.section__lead) .section__header {
    margin-bottom: 16px;
  }
}
.section__header-label {
  background: linear-gradient(90deg, #8982ea 0%, #4576f2 50%, #2fcad3 100%);
  color: #ffffff;
  margin-bottom: 8px;
  width: fit-content;
  margin: 0 auto 8px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
}
.section__header-title {
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
}
.section__lead {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .section__lead {
    text-align: center;
    margin-bottom: 60px;
  }
}

/* challenges */
.challenges__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .challenges__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}
.challenges__item {
  background-color: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0px 2px 4px 0px rgba(1, 26, 74, 0.1019607843);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .challenges__item {
    padding: 16px 12px;
    width: 350px;
  }
}
.challenges__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
}
.challenges__title-strong {
  background: linear-gradient(88.69deg, #011a4a 0%, #1958c5 50%, #7bd5eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.challenges__text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 12px;
}
.challenges__pr {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  line-height: 1.6;
  margin-top: 40px;
  padding-bottom: 4px;
}
@media (min-width: 768px) {
  .challenges__pr {
    margin-top: 60px;
    font-size: 24px;
  }
}
.challenges__pr strong {
  background: linear-gradient(86.04deg, #1d4df1 0%, #64d5bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.challenges__pr-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
}

/* about */
.about__arrows {
  width: 24px;
  margin: 0px auto 20px;
}
.about__list {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media (min-width: 900px) {
  .about__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}

.about-item {
  background: url(../images/about_bg.png) no-repeat left top -180px/100% auto;
  padding: 20px 16px;
  box-shadow: 0px 2px 4px 0px rgba(1, 26, 74, 0.1019607843);
  border-radius: 12px;
  position: relative;
}
@media (min-width: 900px) {
  .about-item {
    background-size: 120% auto;
    background-position: left top -180px;
  }
}
.about-item {
  --about-gradient: linear-gradient(90deg, #8982ea 0%, #4576f2 100%);
}
.about-item:nth-child(2) {
  --about-gradient: linear-gradient(90deg, #4576f2 0%, #48d1ff 100%);
}
.about-item:nth-child(3) {
  --about-gradient: linear-gradient(90deg, #5bf1ce 0%, #2fcad3 100%);
}
.about-item:not(:last-child)::after {
  content: "";
  width: 24px;
  height: 10px;
  display: block;
  background: url(../images/arrow.png) no-repeat center center/contain;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 900px) {
  .about-item:not(:last-child)::after {
    rotate: -90deg;
    top: 50%;
    right: -48px;
    left: auto;
    transform: translateY(-50%);
  }
}
.about-item__header {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-areas: "num label" "num title";
  gap: 0 8px;
  align-items: center;
}
.about-item__num {
  font-family: "M PLUS 1", sans-serif;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-weight: 700;
  background: var(--about-gradient);
  justify-content: center;
  grid-area: num;
}
.about-item__label {
  background: var(--about-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 10px;
  grid-area: label;
}
.about-item__title {
  color: #011a4a;
  font-size: 20px;
  grid-area: title;
}
.about-item__text {
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #e5f0ff;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.about-item__thumb {
  margin-bottom: 16px;
}
.about-item__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-item__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.about-item__list li:before {
  content: "";
  display: block;
  width: 16px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 2px;
  background: url(../images/check.png) no-repeat center center/contain;
}

/* company */
.company__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .company__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 732px;
    margin: 0 auto;
  }
}
.company__item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px 16px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0px 2px 4px 0px rgba(1, 26, 74, 0.1019607843);
}
.company__icon {
  width: 70px;
  height: 70px;
  background: url(../images/company_icon_bg.png) no-repeat center center/contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company__icon img {
  width: 36px;
}
.company__details {
  border-left: 1px solid #93d5f8;
  position: relative;
  padding-block: 4x;
  padding-left: 16px;
}
.company__details:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #93d5f8;
  position: absolute;
  left: -2.5px;
  top: 50%;
  transform: translateY(-50%);
}
.company__label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.company__value {
  color: #467bff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  font-family: "M PLUS 1", sans-serif;
}
.company__unit {
  font-size: 17px;
  font-family: "Noto Sans JP", sans-serif;
  margin-left: 4px;
  display: inline-block;
  vertical-align: baseline;
}

/* partner */
.partner__wrap {
  background-color: #ffffff;
  padding: 0 16px 24px;
  box-shadow: 0px 2px 4px 0px rgba(1, 26, 74, 0.1019607843);
  border-radius: 12px;
}
.partner__wrap .section__header {
  translate: 0 -12px;
}
@media (min-width: 768px) {
  .partner__wrap .section__header-title {
    margin-top: 24px;
  }
}
.partner__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .partner__grid {
    grid-template-columns: repeat(9, 1fr);
  }
}
.partner__note {
  font-size: 12px;
  color: #95a1b0;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: right;
  margin-top: 8px;
}

/* features */
.features__main {
  margin-right: -16px;
  margin-left: -16px;
}
@media (min-width: 768px) {
  .features__main {
    margin-right: 0;
    margin-left: 0;
  }
}

.features-splide {
  visibility: visible;
}
.features-splide .splide__pagination {
  position: static;
  margin-top: 24px;
}
.features-splide .splide__pagination__page {
  background: #95a1b0;
  margin: 0 5px;
}
.features-splide .splide__pagination__page.is-active {
  background: #011a4a;
  transform: scale(1);
}
@media (min-width: 768px) {
  .features-splide .splide__list {
    display: flex !important;
    flex-direction: column;
    gap: 40px;
  }
}

.features-card {
  background-color: #ffffff;
  border-radius: 12px;
}
.features-card__inner {
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .features-card__inner {
    padding: 40px 60px;
    display: grid;
    gap: 24px 60px;
    align-items: start;
    grid-template-columns: 1fr 300px;
    grid-template-rows: auto 1fr;
    grid-template-areas: "header img" "text img";
  }
}
.features-card__header {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .features-card__header {
    grid-template-columns: 100px 1fr;
    margin-bottom: 0;
    gap: 24px;
    grid-area: header;
  }
}
.features-card__badge {
  font-size: 10px;
  font-weight: 500;
  color: #011a4a;
  line-height: 1;
  border-bottom: 2px solid #011a4a;
  text-align: center;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .features-card__badge {
    font-size: 14px;
  }
}
.features-card__badge-number {
  font-size: 32px;
  font-family: "M PLUS 1", sans-serif;
}
@media (min-width: 768px) {
  .features-card__badge-number {
    font-size: 80px;
  }
}
.features-card__title {
  color: #ffffff;
  font-size: 18px;
}
@media (min-width: 768px) {
  .features-card__title {
    font-size: 32px;
  }
}
.features-card__title span {
  line-height: 1.7;
  display: inline;
  padding-inline: 2px;
  background: linear-gradient(transparent 1%, #011a4a 0%);
}
.features-card__text {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .features-card__text {
    font-size: 16px;
    align-self: start;
    margin-bottom: 0;
    grid-area: text;
  }
}
@media (min-width: 768px) {
  .features-card__img {
    grid-area: img;
  }
}

/* solutions */
.solutions__list {
  margin-left: -16px;
  margin-right: -16px;
}
@media (min-width: 768px) {
  .solutions__list {
    margin-left: 0;
    margin-right: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.solution-item {
  position: relative;
}
.solution-item__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-item__inner {
  position: relative;
  color: #ffffff;
  padding-block: 40px;
}
.solution-item__thumb {
  width: calc(100% - 20px);
  margin-right: auto;
  margin-bottom: 16px;
}
.solution-item__body {
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .solution-item__body {
    padding-inline: 40px;
  }
}
.solution-item__title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .solution-item__title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.solution-item__lead {
  background: linear-gradient(transparent 1%, #fff 0%);
  color: #011a4a;
  display: inline;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .solution-item__lead {
    font-size: 20px;
  }
}
.solution-item__text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .solution-item__text {
    font-size: 16px;
  }
}

/* comparison */
.comparison__table {
  overflow: auto;
}
@media (min-width: 768px) {
  .comparison__table {
    background: #ffffff;
    box-shadow: 0px 2px 4px 0px rgba(1, 26, 74, 0.1019607843);
    padding: 40px;
  }
}
.comparison__table-img {
  max-width: 628px;
  width: 628px;
}
@media (min-width: 768px) {
  .comparison__table-img {
    margin: 0 auto;
  }
}

/* cost */
.cost__notes {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.6;
}

.cost-splide {
  margin-left: -16px;
  margin-right: -16px;
}
@media (min-width: 768px) {
  .cost-splide {
    margin-top: 40px;
  }
}
.cost-splide .splide__pagination {
  position: static;
  margin-top: 24px;
}
@media (min-width: 1080px) {
  .cost-splide .splide__pagination {
    display: none;
  }
}
.cost-splide .splide__pagination__page {
  margin: 0 5px;
}
.cost-splide .splide__pagination__page.is-active {
  transform: scale(1);
  opacity: 1;
  background-color: #ffffff;
}

.cost-card {
  background-color: #ffffff;
  border-radius: 12px;
  color: #323544;
  overflow: hidden;
  position: relative;
  --cost-gradient: linear-gradient(90deg, #5bf1ce 0%, #2fcad3 100%);
}
.cost-card:nth-child(2) {
  --cost-gradient: linear-gradient(90deg, #4576f2 0%, #48d1ff 100%);
}
.cost-card:nth-child(3) {
  --cost-gradient: linear-gradient(90deg, #4576f2 0%, #8982ea 100%);
}
.cost-card__inner {
  padding: 70px 20px 18px;
}
.cost-card__label {
  padding: 16px 20px;
  border-radius: 0 0 12px 0;
  background: var(--cost-gradient);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  font-family: "M PLUS 1", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  min-width: 154px;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
}
.cost-card__catch {
  display: flex;
  font-weight: 500;
  align-items: center;
  font-size: 14px;
  margin-bottom: 12px;
}
.cost-card__name {
  background: var(--cost-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 16px;
}
.cost-card__price {
  font-size: 16px;
  font-weight: 500;
}
.cost-card__price-value {
  font-family: "M PLUS 1", sans-serif;
  margin-left: 8px;
}
.cost-card__list {
  padding: 16px 8px;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
  font-weight: 500;
  margin-block: 16px;
}
.cost-card__list li {
  list-style: disc;
  font-size: 16px;
  margin-left: 0.7em;
}
.cost-card__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
}

/* plan */
.plan__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 1080px) {
  .plan__list {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
  }
}
.plan__banner-wrap {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .plan__banner-wrap {
    margin: 80px auto 0;
    max-width: 716px;
  }
}
.plan__note {
  font-size: 8px;
  text-align: right;
  margin-top: 4px;
}

.plan-card {
  box-shadow: 0px 2px 4px 0px rgba(1, 26, 74, 0.1019607843);
  border-radius: 12px;
  background-color: #ffffff;
  overflow: hidden;
  --plan-gradient: linear-gradient(90deg, #5bf1ce 0%, #2fcad3 100%);
}
.plan-card:nth-child(2) {
  --plan-gradient: linear-gradient(90deg, #4576f2 0%, #48d1ff 100%);
}
.plan-card:nth-child(3) {
  --plan-gradient: linear-gradient(90deg, #4576f2 0%, #8982ea 100%);
}
.plan-card__label {
  background: var(--plan-gradient);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  padding: 8px;
}
.plan-card__inner {
  padding: 16px;
}
.plan-card__name {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 500;
  padding-bottom: 16px;
}
.plan-card__name-num {
  position: relative;
  font-size: 20px;
  padding-left: 24px;
}
.plan-card__name-num:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  background: var(--plan-gradient);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.plan-card__name-num:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  border: 3px solid #ffffff;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.plan-card__name-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.plan-card__name-price-yen {
  font-size: 12px;
}
.plan-card__name-price-value {
  font-size: 20px;
  font-family: "M PLUS 1", sans-serif;
}
.plan-card:nth-child(3) .plan-card__name-price-value {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
.plan-card__name-price-unit {
  color: #95a1b0;
  font-size: 12px;
}
.plan-card__credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 34px;
}
.plan-card__credits-label {
  font-size: 16px;
  font-weight: 500;
}
.plan-card__credits-value {
  font-size: 20px;
  font-weight: 500;
  font-family: "M PLUS 1", sans-serif;
}
.plan-card:nth-child(3) .plan-card__credits-value {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
.plan-card__credits-unit {
  color: #95a1b0;
  font-size: 12px;
}
.plan-card__supports-label {
  font-size: 12px;
  border: 1px solid #95a1b0;
  border-radius: 20px;
  width: fit-content;
  color: #95a1b0;
  padding: 2px 8px;
  margin-bottom: 8px;
}
.plan-card__supports-list {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan-card__supports-list li {
  margin-left: 16px;
  list-style: disc;
}
.plan-card__supports-list li::marker {
  font-size: 12px;
}

/* credit */
@media (min-width: 768px) {
  .credit__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.credit__text {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 24px;
  font-weight: 500;
}

/* flow */
.flow__selections {
  background-color: #011a4a;
  border-radius: 50px;
  padding: 2px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 358px;
  margin-bottom: 26px;
  margin-inline: auto;
}
.flow__selection-btn {
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  padding: 8px;
  font-weight: 500;
  font-size: 16px;
}
.flow__selection-btn.is-active {
  background-color: #ffffff;
  color: #011a4a;
}
.flow__body {
  display: none;
}
.flow__body.is-active {
  display: block;
}
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .flow__list {
    gap: 16px;
  }
}
.flow__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 2px 4px 0px rgba(1, 26, 74, 0.1019607843);
  padding: 12px;
}
@media (min-width: 768px) {
  .flow__card {
    padding: 16px;
  }
}
.flow__head {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 8px;
  align-items: end;
  margin-bottom: 8px;
}
.flow__badge {
  font-size: 10px;
  line-height: 1;
  text-align: center;
}
.flow__badge span {
  display: block;
  font-family: "M PLUS 1", sans-serif;
  font-size: 32px;
  font-weight: 500;
}
.flow__text {
  font-size: 14px;
  font-weight: 500;
}

/* faq */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 16px;
  border-radius: 8px;
  background: #f9fbff;
  color: #011a4a;
  box-shadow: 0px 2px 4px 0px rgba(1, 26, 74, 0.1019607843);
  overflow: hidden;
}
.faq-item__summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.faq-item__q {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
}
.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 20px;
  background: #011a4a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.faq-item__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-item__toggle {
  --plus-v: transparent;
}
.faq-item__answer-wrap {
  height: 0;
  overflow: hidden;
}
.faq-item__answer {
  margin: 0;
  padding-top: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(1, 26, 74, 0.86);
}

/* request form */
.request-form {
  max-width: 680px;
  margin: 0 auto;
}
.request-form__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.request-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.request-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #323544;
}
.request-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;
  border-radius: 2px;
  background: #ff4444;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.request-form__input {
  width: 100%;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #323544;
  appearance: none;
}
.request-form__input:focus {
  outline: 2px solid rgba(70, 123, 255, 0.35);
  outline-offset: 1px;
}
.request-form__input--textarea {
  min-height: 144px;
  resize: vertical;
}
.request-form__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.request-form__agree {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.request-form__checkbox {
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid #323544;
  border-radius: 2px;
  accent-color: #467bff;
  flex-shrink: 0;
  cursor: pointer;
}
.request-form__agree-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #333333;
}
.request-form__privacy-link {
  color: #47adfa;
  text-decoration: underline;
  font-weight: 500;
}
.request-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 342px;
  padding: 16px;
  border: none;
  border-radius: 4px;
  background: #011a4a;
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.request-form__submit:hover {
  opacity: 0.8;
}
.request-form__submit:focus {
  outline: 2px solid rgba(70, 123, 255, 0.35);
  outline-offset: 2px;
}
.request-form__submit-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* info */
.info__inner {
  padding: 24px 20px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0px 2px 4px 0px rgba(1, 26, 74, 0.1019607843);
}
.info__inner:before {
  z-index: -1;
  background: url(../images/about_bg.png) no-repeat center center/cover;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
}
.info__title {
  position: relative;
  padding-bottom: 8px;
}
.info__title:before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  border-bottom: 2px solid #011a4a;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.info__list {
  max-width: 680px;
  margin: 0 auto;
}
.info__list dt {
  border-bottom: 1px solid #e5f0ff;
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: bold;
}
.info__list dd {
  padding-top: 8px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 12px;
}
.info__list a {
  text-decoration: underline;
}

/* footer */
.footer {
  background-color: #011a4a;
  color: #ffffff;
}
.footer__inner {
  padding: 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (min-width: 768px) {
  .footer__inner {
    gap: 30px;
    justify-content: center;
  }
}
.footer__links {
  font-size: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__links a {
  text-decoration: underline;
}
.footer__copy {
  font-weight: 500;
  font-size: 10px;
}

/* utility */
@media (min-width: 768px) {
  .u-only-sp {
    display: none;
  }
}

.u-only-px {
  display: none;
}
@media (min-width: 768px) {
  .u-only-px {
    display: block;
  }
}
