@charset "UTF-8";
/* ============================================================
   業務用自動血圧計「健太郎」LP 専用スタイル
============================================================ */
.main {
  overflow: hidden;
}

/* ----- 共通：セクション見出し ----- */
.section-head {
  text-align: center;
  margin-bottom: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .section-head {
    margin-bottom: 2.8571428571rem;
  }
}
@media screen and (min-width: 1200px), print {
  .section-head {
    margin-bottom: 3.75rem;
  }
}

.section-eyebrow {
  display: block;
  color: #005eb8;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Figtree", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .section-eyebrow {
    font-size: 1.5714285714rem;
  }
}
@media screen and (min-width: 1200px), print {
  .section-eyebrow {
    font-size: 1.375rem;
  }
}

.section-title {
  font-weight: 700;
  font-size: 1.4285714286rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 350px) {
  .section-title {
    font-size: 1.7142857143rem;
  }
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 2.1428571429rem;
  }
}
@media screen and (min-width: 1200px), print {
  .section-title {
    font-size: 2.375rem;
  }
}

.section-title__accent {
  color: #005eb8;
}

.section-lead {
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.1428571429rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1200px), print {
  .section-lead {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }
}

.bg-round-up::before,
.bg-round-down::after {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 101%;
  aspect-ratio: 10/1;
  content: "";
}

.bg-round-up::before {
  background-image: url(./../images/top/bg-circle-up.svg);
}

.bg-round-down::after {
  background-image: url(./../images/top/bg-circle-down.svg);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list__item {
  position: relative;
  padding-left: 1.3571428571rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .check-list__item {
    padding-left: 1.5714285714rem;
    font-size: 1.1428571429rem;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 992px) {
  .check-list__item {
    padding-left: 1.5625rem;
    font-size: 1rem;
  }
}

.check-list__item + .check-list__item {
  margin-top: 0.2857142857rem;
}
@media screen and (min-width: 768px) {
  .check-list__item + .check-list__item {
    margin-top: 0.5rem;
  }
}

.check-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 1rem;
  height: 1rem;
  background: url(./../images/common/check-circle-blue.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .check-list__item::before {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.1428571429rem;
  width: 100%;
  max-width: 20rem;
  min-height: 3.4285714286rem;
  padding: 0.75rem 1.5rem;
  background: #005eb8;
  color: #fff;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  border-radius: 100vh;
  transition: opacity 0.3s, background-color 0.3s;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn-cta {
    min-height: 3.5625rem;
  }
}
@media screen and (min-width: 992px) {
  .btn-cta {
    font-size: 1.125rem;
  }
}

.btn-cta--white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #005eb8;
  transition: background-color ease 0.3s, color ease 0.3s;
}

.btn-cta--white:hover {
  background-color: #005eb8;
  color: #fff;
  opacity: 1;
}

.btn-arrow {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  color: #005eb8;
  font-weight: 700;
  font-size: 0.875rem;
}

.btn-arrow__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #005eb8;
  border-radius: 1.25rem;
  transition: background-color ease 0.3s;
}

.btn-arrow__icon::after {
  display: block;
  width: 0.375rem;
  height: 0.625rem;
  background: url(./../images/common/arrow-right-white.svg) no-repeat center/contain;
  content: "";
}

.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #005eb8;
  font-weight: 700;
  font-size: 0.8125rem;
  text-decoration: underline;
}

.btn-pdf::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(./../images/common/icon-pdf-navy.svg) no-repeat center/contain;
  flex: 0 0 auto;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1428571429rem 0.7142857143rem;
  background: #FF7474;
  color: #fff;
  font-size: 0.8571428571rem;
  font-weight: 700;
  border-radius: 0.3125rem;
  vertical-align: middle;
  color: #003153;
}
@media screen and (min-width: 768px) {
  .badge-new {
    font-size: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .badge-new {
    padding: 0.125rem 0.625rem;
  }
}

.badge-new--circle {
  position: absolute;
  z-index: 2;
  top: 1.125rem;
  left: 0.8571428571rem;
  left: 4.0677%;
  left: min(0.8571428571rem, 4.0677%);
  width: min(4rem, 15.2vw);
  height: min(4rem, 15.2vw);
  padding: 0;
  border-radius: 50%;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .badge-new--circle {
    left: 1.625rem;
    width: 4.125rem;
    height: 4.125rem;
  }
}

.cta-banner {
  display: grid;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 55rem;
  margin-inline: auto;
  background-image: url(./../images/top/bg-blue-grad02.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 0.5714285714rem;
  padding: 2rem min(1.2857142857rem, 4.8vw);
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .cta-banner {
    padding: 2rem 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .cta-banner {
    grid-template-rows: 5rem auto;
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
    row-gap: 0.9375rem;
    flex-direction: row;
    justify-content: flex-end;
    text-align: left;
    padding: 2rem 4rem 2rem;
    border-radius: 0.75rem;
  }
}
@media screen and (min-width: 1200px), print {
  .cta-banner {
    -moz-column-gap: 2.8125rem;
         column-gap: 2.8125rem;
    padding: 2rem 5.1875rem 2.625rem;
  }
}

.cta-banner__figure {
  grid-column: 1/2;
  grid-row: 2/3;
  position: relative;
  width: min(100%, 220px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cta-banner__figure {
    grid-row: 1/3;
    width: min(100%, 233px);
  }
}

.cta-banner__figure::after {
  display: block;
  position: absolute;
  bottom: -11%;
  left: -5%;
  aspect-ratio: 265/58;
  width: 110%;
  mix-blend-mode: multiply;
  background-image: url(./../images/top/cta-product-shadow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  content: "";
}
@media screen and (min-width: 768px) {
  .cta-banner__figure::after {
    bottom: -12%;
    left: -11%;
  }
}

.cta-banner__image {
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 1200px), print {
  .cta-banner__image {
    top: 0.375rem;
    left: -1rem;
  }
}

.cta-banner__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-column: 1/2;
  grid-row: 3/4;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 768px) {
  .cta-banner__body {
    align-items: flex-start;
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.cta-banner__title {
  grid-column: 1/2;
  grid-row: 1/2;
  margin-bottom: 1.2857142857rem;
  font-size: min(1.2142857143rem, 4.5333vw);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 576px) {
  .cta-banner__title {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .cta-banner__title {
    grid-column: 2/3;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .cta-banner__title {
    font-size: 1.5rem;
  }
}

.cta-banner__box {
  display: flex;
  flex-direction: column;
  width: min(100%, 20rem);
}

.cta-banner__label {
  font-size: 1rem;
  margin-bottom: 0.5714285714rem;
  margin-inline: auto;
  position: relative;
  padding-right: 0.875rem;
  padding-left: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .cta-banner__label {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
}

.cta-banner__label::before,
.cta-banner__label::after {
  content: "";
  position: absolute;
  top: 25%;
  width: 2px;
  height: 1rem;
  background-color: #fff;
}

.cta-banner__label::before {
  left: 0;
  transform: rotate(-20deg);
}

.cta-banner__label::after {
  right: 0;
  transform: rotate(20deg);
}

.cta-banner__btn {
  color: #005eb8;
  background-color: #fff;
  border: 1px solid #fff;
  transition: background-color ease 0.3s, color ease 0.3s;
}

.cta-banner__btn:hover {
  background-color: #005eb8;
  color: #fff;
  opacity: 1;
}

.cta-banner__note {
  font-size: 0.75rem;
  margin-top: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .cta-banner__note {
    font-size: 0.875rem;
  }
}

.benefit,
.lineup,
.contact {
  background: #f1f6fc;
}

.container--narrow {
  max-width: 67.125rem;
}

/* ============================================================
   ヘッダー（LP用上書き）後で戻す
   ============================================================ */
/* ヘッダー */
.is-noscroll {
  overflow-y: hidden;
}
@media screen and (min-width: 1200px), print {
  .is-noscroll {
    overflow-y: auto;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  margin: auto;
  background: #fff;
  width: 100%;
  z-index: 500;
}

.header.is-header-scrolled {
  background-color: rgba(255, 255, 255, 0.7);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.2857142857rem;
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .header__inner {
    height: 5.625rem;
  }
}
@media screen and (min-width: 1200px), print {
  .header__inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .header__inner {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.header__logo {
  position: relative;
  z-index: 500;
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 1200px), print {
  .header__logo {
    padding: 0.5rem 1.25rem;
  }
}

@media screen and (min-width: 1200px), print {
  .header__nav {
    display: flex;
    align-items: center;
  }
}

.header__inner--scrolled {
  display: none;
}

.header__menu-wrapper {
  width: 100%;
  min-width: 280px;
  max-width: 600px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  padding: 4.2857142857rem 1.1428571429rem 1.4285714286rem 1.1428571429rem;
  pointer-events: none;
}
@media screen and (min-width: 1200px), print {
  .header__menu-wrapper {
    display: flex;
    align-items: baseline;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    width: auto;
    height: auto;
    max-width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    padding: 0 1.625rem 0 0;
    background-color: transparent;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1400px) {
  .header__menu-wrapper {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
}

.is-nav-open .header__menu-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow-y: auto;
}

.header__logo--usually {
  width: 7.8571428571rem;
}
@media screen and (min-width: 992px) {
  .header__logo--usually {
    width: 10rem;
    transition: width ease 0.3s;
  }
}

.header__btn {
  width: 34px;
  height: 34px;
  position: fixed;
  top: 11px;
  right: 20px;
  z-index: 999;
}
@media screen and (min-width: 992px) {
  .header__btn {
    top: 22px;
  }
}
@media screen and (min-width: 1200px), print {
  .header__btn {
    display: none;
  }
}

.header__btn:hover {
  cursor: pointer;
}

.header__bar {
  width: 34px;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #005eb8;
  transition: 0.2s;
  visibility: visible;
}

.header__bar-top {
  top: 5px;
}

.header__bar-mid {
  top: 50%;
  margin-top: -1px;
}

.header__bar-bottom {
  bottom: 5px;
}

.is-nav-open .header__bar-top {
  top: 9px;
  transform: translate(-50%, 8px) rotate(30deg);
}

.is-nav-open .header__bar-mid {
  opacity: 0;
  transition: opacity 0.3s;
}

.is-nav-open .header__bar-bottom {
  bottom: 1px;
  transform: translate(-50%, -14px) rotate(-30deg);
}

.header__check {
  display: none;
}

.header__black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  border: none;
}
@media screen and (min-width: 1200px), print {
  .header__black-bg {
    display: none;
  }
}

.is-nav-open .header__black-bg {
  opacity: 0.25;
  visibility: visible;
}

.header__menu-item {
  position: relative;
}

.header__menu-item:not(:first-of-type) {
  border-top: 1px solid #E0E0E0;
}
@media screen and (min-width: 992px) {
  .header__menu-item:not(:first-of-type) {
    border-top: 0;
  }
}

.header__menu-item:last-child {
  border-bottom: 1px solid #E0E0E0;
}
@media screen and (min-width: 992px) {
  .header__menu-item:last-child {
    border-bottom: none;
  }
}

@media screen and (min-width: 1200px), print {
  .header__menu-item:last-child .header__menu-link {
    border-bottom: none;
  }
}

.header__menu-link {
  border-color: #dadada;
  color: #333;
  font-size: 1.1428571429rem;
  font-weight: 700;
  position: relative;
  padding: 21px 8px;
  display: block;
  margin: 0;
  line-height: 1.1875;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 992px) {
  .header__menu-link {
    font-size: 1rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px), print {
  .header__menu-link {
    border-top: none;
    padding: 0;
    height: auto;
  }
}

@media screen and (min-width: 1200px), print {
  .header__menu-link:hover {
    color: #005eb8;
    opacity: 1;
  }
}

.header__menu-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.7142857143rem;
  transform: translateY(-50%);
  width: 1.5714285714rem;
  height: 1.5714285714rem;
  background: url(./../images/common/arrow-circle-blue.svg) no-repeat center/contain;
}
@media screen and (min-width: 1200px), print {
  .header__menu-link::after {
    display: none;
  }
}

.header__menu-list {
  margin-top: 1.5714285714rem;
}
@media screen and (min-width: 1200px), print {
  .header__menu-list {
    margin-top: 0;
    display: flex;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .header__menu-list {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
}

.header__cta-area {
  text-align: center;
  padding: 1.7142857143rem 0.5714285714rem;
}
@media screen and (min-width: 1200px), print {
  .header__cta-area {
    padding: 0;
  }
}

.header__cta-btn {
  color: #fff;
  background-color: #005eb8;
  border-radius: 100vh;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.625rem 1.375rem;
  letter-spacing: 0.05em;
  width: auto;
  font-size: 1.1428571429rem;
  font-weight: 700;
}
@media screen and (min-width: 1200px), print {
  .header__cta-btn {
    font-size: 1rem;
    height: 3rem;
    width: auto;
  }
}

.header__cta-btn:hover {
  background: #003153;
  opacity: 1;
  color: #fff;
}

.header__inner--usually .header__cta-btn {
  width: 240px;
  height: 51px;
}
@media screen and (min-width: 992px) {
  .header__inner--usually .header__cta-btn {
    width: 232px;
    height: 43px;
  }
}

@media screen and (min-width: 1200px), print {
  .is-header-scrolled .header__logo--usually,
.header__logo--scrolled {
    width: 150px;
  }
}

@media screen and (min-width: 1200px), print {
  .is-header-scrolled .header__inner--usually .header__cta-btn {
    height: 40px;
  }
}

/* ============================================================
   FV
   ============================================================ */
.fv {
  position: relative;
  overflow: hidden;
  padding-right: 1.4285714286rem;
  padding-left: 1.4285714286rem;
  padding-top: 2px;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.fv__bg {
  text-align: center;
  max-height: 37.3571428571rem;
  max-width: 90rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .fv__bg {
    max-height: auto;
  }
}

.fv__image {
  border-radius: 20px;
  width: 100%;
  height: 35rem;
  max-height: 37.2857142857rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 330px) {
  .fv__image {
    height: 36rem;
  }
}
@media screen and (min-width: 350px) {
  .fv__image {
    height: 37.2857142857rem;
  }
}
@media screen and (min-width: 400px) {
  .fv__image {
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .fv__image {
    border-radius: 36px;
    max-width: auto;
    min-height: 34.2857142857rem;
  }
}
@media screen and (min-width: 992px) {
  .fv__image {
    border-radius: 48px;
    min-height: 36.5rem;
  }
}

.fv__inner {
  position: absolute;
  top: 1.4285714286rem;
  right: 0;
  left: 0;
  z-index: 20;
  margin-inline: auto;
  display: grid;
  padding-right: min(2.5714285714rem, 9.6vw);
  padding-left: min(2.5714285714rem, 9.6vw);
}
@media screen and (min-width: 576px) {
  .fv__inner {
    max-width: 81.25rem;
  }
}
@media screen and (min-width: 768px) {
  .fv__inner {
    top: 4.125rem;
    gap: 0.5rem;
    align-items: center;
    padding-left: 4.2857142857rem;
    padding-right: 4.2857142857rem;
  }
}
@media screen and (min-width: 992px) {
  .fv__inner {
    top: 3.875rem;
    align-items: center;
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
}

.fv__body {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (min-width: 992px) {
  .fv__body {
    width: auto;
    flex: 0 0 auto;
    order: 1;
  }
}

.fv__lead {
  margin-bottom: 0.6428571429rem;
}
@media screen and (min-width: 768px) {
  .fv__lead {
    margin-bottom: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .fv__lead {
    margin-bottom: 1.4375rem;
  }
}

.fv__text {
  font-size: min(0.8571428571rem, 3.75vw);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 350px) {
  .fv__text {
    font-size: min(1.1428571429rem, 4.26666667vw);
  }
}
@media screen and (min-width: 768px) {
  .fv__text {
    font-size: 1.4285714286rem;
  }
}
@media screen and (min-width: 992px) {
  .fv__text {
    font-size: 1.5rem;
  }
}

.fv__tag {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: min(1rem, 3.73333334vw);
  border-radius: 0.2857142857rem;
  padding: min(0.1428571429rem, 0.5333333vw) min(0.5714285714rem, 2.1333333vw);
  margin: 0 0.2857142857rem;
}
@media screen and (min-width: 768px) {
  .fv__tag {
    margin: 0 0.375rem;
    padding: 0.3125rem 0.9375rem;
    font-size: 1.25rem;
    border-radius: 0.3125rem;
  }
}

.fv__title {
  letter-spacing: 0.04em;
  margin-bottom: -0.3571428571rem;
}
@media screen and (min-width: 768px) {
  .fv__title {
    margin-bottom: 2.125rem;
  }
}
@media screen and (min-width: 992px) {
  .fv__title {
    margin-bottom: 1.8125rem;
  }
}

.fv__title-sub {
  display: block;
  margin-bottom: min(0.8571428571rem, 3.2vw);
  font-size: min(2rem, 7.466666667vw);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .fv__title-sub {
    font-size: 2.2857142857rem;
  }
}
@media screen and (min-width: 992px) {
  .fv__title-sub {
    margin-bottom: 1.375rem;
    font-size: 3.25rem;
  }
}

.fv__title-main {
  display: flex;
  font-size: 2.8571428571rem;
  font-size: min(2.8571428571rem, 10.66666667vw);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.15em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .fv__title-main {
    font-size: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .fv__title-main {
    font-size: 4.3125rem;
  }
}

.fv__title-main__dot {
  display: block;
  position: relative;
}

.fv__title-main__dot::before {
  display: block;
  position: absolute;
  top: -0.4375rem;
  left: 45%;
  transform: translateX(-50%);
  width: 0.3571428571rem;
  height: 0.3571428571rem;
  border-radius: 0.5rem;
  background-color: #005eb8;
  content: "";
}
@media screen and (min-width: 768px) {
  .fv__title-main__dot::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.fv__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 26.25rem);
  margin-top: -0.2857142857rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 768px) {
  .fv__cta {
    margin-top: 0;
    width: min(100%, 24.1428571429rem);
  }
}
@media screen and (min-width: 992px) {
  .fv__cta {
    width: min(100%, 26.25rem);
    align-items: flex-start;
  }
}

.fv__cta-label {
  margin-bottom: 0.5rem;
  margin-inline: auto;
  padding: 0 0.9375rem;
  font-size: 0.8571428571rem;
  font-weight: 700;
  position: relative;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 400px) {
  .fv__cta-label {
    margin-bottom: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .fv__cta-label {
    font-size: 1.125rem;
  }
}

.fv__cta-label::before,
.fv__cta-label::after {
  content: "";
  position: absolute;
  top: 8%;
  width: 2px;
  height: 1rem;
  background: #333;
}
@media screen and (min-width: 768px) {
  .fv__cta-label::before,
.fv__cta-label::after {
    top: 16%;
    height: 1.375rem;
  }
}

.fv__cta-label::before {
  left: 0;
  transform: rotate(-20deg);
}

.fv__cta-label::after {
  right: 0;
  transform: rotate(20deg);
}

.btn-cta.fv__cta-btn {
  position: relative;
  max-width: min(100%, 20.7142857143rem);
  font-size: 1.1428571429rem;
  font-size: min(1.1428571429rem, 4.26666vw);
  z-index: 0;
}
@media screen and (min-width: 350px) {
  .btn-cta.fv__cta-btn {
    height: 3.8571428571rem;
  }
}
@media screen and (min-width: 768px) {
  .btn-cta.fv__cta-btn {
    max-width: min(100%, 26.25rem);
    height: 5.3125rem;
    font-size: 1.25rem;
  }
}

.btn-cta.fv__cta-btn::before,
.btn-cta.fv__cta-btn::after {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 100vh;
  content: "";
}

.btn-cta.fv__cta-btn::before {
  z-index: -1;
  transition: opacity ease 0.3s;
  background: linear-gradient(90deg, rgb(35, 146, 225) 0%, rgb(10, 106, 196) 100%);
}

.btn-cta.fv__cta-btn::after {
  z-index: -2;
  left: 0;
  background: linear-gradient(90deg, rgb(0, 49, 83) 100%, rgb(0, 49, 83) 100%);
}

.btn-cta.fv__cta-btn:hover {
  opacity: 1;
  color: #fff;
}

.btn-cta.fv__cta-btn:hover::before {
  opacity: 0;
}

.fv__cta-btn::after {
  content: none;
}

.fv__cta-note {
  font-size: 0.8571428571rem;
  margin-top: 0.625rem;
  margin-inline: auto;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .fv__cta-note {
    text-align: start;
    font-size: 1rem;
  }
}

.fv__device {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (min-width: 768px) {
  .fv__device {
    grid-row: 1/3;
    position: absolute;
    top: 40px;
    right: -12px;
    width: 58%;
    order: 2;
  }
}
@media screen and (min-width: 992px) {
  .fv__device {
    top: 56px;
    width: 51%;
    right: -23px;
  }
}

.fv__device::after {
  display: inline-block;
  position: absolute;
  top: 48%;
  left: 14%;
  aspect-ratio: 259/147;
  width: min(18.2857142857rem, 68.2666667vw);
  background-image: url(./../images/top/fv-product-shadow-sp.svg);
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  content: "";
}
@media screen and (min-width: 576px) {
  .fv__device::after {
    left: 12%;
  }
}
@media screen and (min-width: 768px) {
  .fv__device::after {
    top: 41%;
    right: 9%;
    left: auto;
    aspect-ratio: 500/277;
    width: 83%;
    background-image: url(./../images/top/fv-product-shadow-pc.svg);
  }
}
@media screen and (min-width: 992px) {
  .fv__device::after {
    right: 12%;
  }
}

.fv__product {
  position: relative;
  top: 1px;
  left: 13px;
  z-index: 1;
  display: block;
  width: 84%;
  width: min(84%, 17.2142857143rem);
  max-width: 32.5rem;
  margin-inline: 6%;
  filter: drop-shadow(0 0.75rem 1.5rem rgba(0, 0, 0, 0.15));
}
@media screen and (min-width: 768px) {
  .fv__product {
    width: 75%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .fv__product {
    width: 80%;
  }
}

/* ============================================================
   Challenge
   ============================================================ */
.challenge {
  position: relative;
  padding-top: 2.7142857143rem;
  padding-right: 1.4285714286rem;
  padding-left: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .challenge {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 1200px), print {
  .challenge {
    padding-top: 5rem;
  }
}

.challenge.bg-round-down::after {
  bottom: -5.7857142857rem;
}
@media screen and (min-width: 576px) {
  .challenge.bg-round-down::after {
    bottom: -5.7142857143rem;
  }
}
@media screen and (min-width: 768px) {
  .challenge.bg-round-down::after {
    bottom: -8.75rem;
  }
}

.challenge .container {
  position: relative;
  z-index: 20;
}

.challenge__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  row-gap: 1.2857142857rem;
}
@media screen and (min-width: 768px) {
  .challenge__list {
    row-gap: 1.25rem;
    -moz-column-gap: 1.75rem;
         column-gap: 1.75rem;
  }
}
@media screen and (min-width: 992px) {
  .challenge__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .challenge__list {
    row-gap: 1.5rem;
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
}

.challenge__item {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border-radius: 1.1428571429rem;
  padding: 1.6428571429rem 1.1428571429rem 1.5714285714rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .challenge__item {
    padding: 1.4285714286rem;
  }
}
@media screen and (min-width: 992px) {
  .challenge__item {
    padding: 1.5rem 1.25rem;
    border-radius: 1.25rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
}

.challenge__head {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.challenge__head:not(.challenge__head--line2) {
  margin-bottom: 1.0714285714rem;
}
@media screen and (min-width: 992px) {
  .challenge__head:not(.challenge__head--line2) {
    margin-bottom: 2rem;
  }
}

.challenge__head--line2 {
  margin-top: -0.7142857143rem;
  margin-bottom: 1.0714285714rem;
}
@media screen and (min-width: 576px) {
  .challenge__head--line2 {
    margin-top: 0;
    margin-bottom: 1.6875rem;
  }
}
@media screen and (min-width: 1400px) {
  .challenge__head--line2 {
    margin-bottom: 1.25rem;
  }
}

.challenge__icon {
  position: absolute;
  top: 1.0714285714rem;
  left: 1.0714285714rem;
}
@media screen and (min-width: 768px) {
  .challenge__icon {
    top: 1.125rem;
    left: 1.25rem;
  }
}

.challenge__icon-image {
  width: 3.1428571429rem;
  height: 3.1428571429rem;
}
@media screen and (min-width: 350px) {
  .challenge__icon-image {
    width: 3.5714285714rem;
    height: 3.5714285714rem;
  }
}
@media screen and (min-width: 768px) {
  .challenge__icon-image {
    width: 3.375rem;
    height: 3.375rem;
  }
}
@media screen and (min-width: 1400px) {
  .challenge__icon-image {
    width: 4.3125rem;
    height: 4.3125rem;
  }
}

.challenge__type {
  color: #005eb8;
  font-weight: 700;
  font-size: 1.4285714286rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .challenge__type {
    font-size: 1.5714285714rem;
  }
}
@media screen and (min-width: 992px) {
  .challenge__type {
    min-height: 2.375rem;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1400px) {
  .challenge__type {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 992px) {
  .challenge__type:not(.challenge__type--small) {
    margin-top: 0.875rem;
  }
}

.challenge__type--small {
  margin-top: 0.125rem;
  font-size: 1.2857142857rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .challenge__type--small {
    font-size: 1.4285714286rem;
  }
}
@media screen and (min-width: 992px) {
  .challenge__type--small {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1400px) {
  .challenge__type--small {
    font-size: 1.375rem;
  }
}

.challenge__target {
  margin-top: 0.3125rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .challenge__target {
    font-size: 1.1428571429rem;
  }
}
@media screen and (min-width: 992px) {
  .challenge__target {
    font-size: 1rem;
    min-height: 3.2142857143rem;
  }
}
@media screen and (min-width: 1200px), print {
  .challenge__target {
    min-height: auto;
  }
}

.challenge__picture {
  margin-bottom: 0.8571428571rem;
  border-radius: 0.25rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .challenge__picture {
    border-radius: 0.5rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .challenge__picture {
    margin-bottom: 1.125rem;
  }
}

.challenge__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 368/242;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.4285714286rem;
}
@media screen and (min-width: 992px) {
  .challenge__image {
    border-radius: 0.5rem;
  }
}

/* ============================================================
   Benefit
   ============================================================ */
.benefit {
  position: relative;
  z-index: 20;
  margin-top: 5.7142857143rem;
  padding-top: 4.2857142857rem;
  padding-right: 1.4285714286rem;
  padding-left: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .benefit {
    margin-top: 8.75rem;
    padding-top: 6.25rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.benefit__card {
  background: #fff;
  border-radius: 1.1428571429rem;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .benefit__card {
    border-radius: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .benefit__card {
    padding: 3.75rem 6.875rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
}

.benefit__card-title {
  margin-bottom: 1.5rem;
  padding-bottom: 1.375rem;
  border-bottom: 2px solid #D2D4D5;
  font-weight: 700;
  font-size: 1.4285714286rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .benefit__card-title {
    font-size: 1.7142857143rem;
  }
}
@media screen and (min-width: 1200px), print {
  .benefit__card-title {
    font-size: 1.75rem;
  }
}

.benefit__card-body {
  display: flex;
  flex-direction: column;
  gap: 3.4285714286rem;
}
@media screen and (min-width: 768px) {
  .benefit__card-body {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem 4rem;
  }
}

@media screen and (min-width: 992px) {
  .benefit__sentence {
    flex: 1;
  }
}

.benefit__lead {
  margin-bottom: 0.7142857143rem;
  color: #005eb8;
  font-weight: 700;
  font-size: 1.4285714286rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1200px), print {
  .benefit__lead {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
  }
}

.benefit__text {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .benefit__text {
    font-size: 1rem;
  }
}

.benefit__note {
  font-size: 0.8571428571rem;
  margin-top: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .benefit__note {
    font-size: 0.875rem;
  }
}

.benefit__illust {
  margin: 0;
  flex: 0 0 auto;
}
@media screen and (min-width: 768px) {
  .benefit__illust {
    width: min(100%, 273px);
  }
}

.benefit__illust-image {
  width: 100%;
}

.benefit__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.4285714286rem;
  margin-bottom: 2.1428571429rem;
}
@media screen and (min-width: 992px) {
  .benefit__arrow {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
}

.benefit__banner {
  color: #fff;
  border-radius: 0.75rem;
  text-align: center;
  padding: 1.9375rem 1.25rem;
  background-image: url(./../images/top/bg-blue-grad01.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.benefit__banner-title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 992px) {
  .benefit__banner-title {
    font-size: 1.75rem;
  }
}

.benefit__banner-main {
  display: inline-flex;
  font-weight: 900;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.benefit__banner-dot {
  display: block;
  position: relative;
}

.benefit__banner-dot::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.2142857143rem;
  height: 0.2142857143rem;
  border-radius: 0.3125rem;
  background-color: #FFF;
  content: "";
}
@media screen and (min-width: 576px) {
  .benefit__banner-dot::before {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.benefit__banner-text {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 1200px), print {
  .benefit__banner-text {
    font-size: 1.125rem;
  }
}

/* ============================================================
   Case（スライダー）
   ============================================================ */
.case {
  padding-top: 2.8571428571rem;
  padding-right: 1.4285714286rem;
  padding-left: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .case {
    padding-top: 6.25rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.case__inner {
  padding-right: 1.1428571429rem;
  padding-left: 1.1428571429rem;
}
@media screen and (min-width: 350px) {
  .case__inner {
    padding-right: 1.4285714286rem;
    padding-left: 1.4285714286rem;
  }
}
@media screen and (min-width: 768px) {
  .case__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.case__slider {
  position: relative;
  max-width: 81rem;
  margin-inline: auto;
  padding-top: 1px;
}

.splide__track.case__slider-track {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .splide__track.case__slider-track {
    overflow: hidden;
  }
}

@media (hover: hover) {
  .case__link:hover {
    opacity: 1;
  }
  .case__link:hover .case__image {
    transform: scale(1.1);
  }
  .case__link:hover .btn-arrow__icon {
    background-color: #003153;
  }
}
.case__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  border-radius: 0.4285714286rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  height: auto;
  margin-bottom: 2.1428571429rem;
}
@media screen and (min-width: 768px) {
  .case__item {
    border-radius: 0.5rem;
    margin-bottom: 2.625rem;
  }
}
@media screen and (min-width: 992px) {
  .case__item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
}

.case__figure {
  overflow: hidden;
}

.case__image {
  aspect-ratio: 408/230;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 0.375rem;
  border-top-left-radius: 0.375rem;
  transition: transform ease 0.3s;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .case__image {
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
  }
}

.case__tag-text {
  display: inline-block;
  background: #005eb8;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 992px) {
  .case__tag-text {
    font-size: 0.875rem;
  }
}

.case__body {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  height: 14.375rem;
}

.case__company {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.case__desc {
  color: #333;
  margin-bottom: 0.8125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 992px) {
  .case__desc {
    font-size: 1.125rem;
  }
}

.case__btn {
  margin-top: auto;
  margin-left: auto;
}

.case__btn-link {
  color: #333;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.case .splide__arrows {
  position: absolute;
  top: 41%;
  transform: translateY(-50%);
  z-index: 20;
  width: 100%;
}

.case .splide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: #E5E5E5;
  box-shadow: 0 0 24px rgba(51, 51, 51, 0.12);
  width: 2.8571428571rem;
  height: 2.8571428571rem;
  opacity: 1;
  border-radius: 3.75rem;
  transition: opacity ease 0.3s;
}
@media screen and (min-width: 400px) {
  .case .splide__arrow {
    width: 3.4285714286rem;
    height: 3.4285714286rem;
  }
}
@media screen and (min-width: 992px) {
  .case .splide__arrow {
    width: 3.75rem;
    height: 3.75rem;
    box-shadow: 0 0 30px rgba(51, 51, 51, 0.12);
  }
}

.case .splide__arrow:hover {
  opacity: 0.8;
}

.case .splide__arrow--prev {
  left: -1.875rem;
}

.case .splide__arrow--next {
  right: -1.875rem;
}

.splide__arrow-image {
  width: 0.6428571429rem;
}
@media screen and (min-width: 400px) {
  .splide__arrow-image {
    width: auto;
  }
}

.case .splide__arrow-image--next {
  transform: rotate(180deg);
}

.case .splide__pagination__page.is-active {
  background: #005eb8;
}

.case__progress {
  max-width: 81rem;
  height: 0.375rem;
  background: #E5E5E5;
  overflow: hidden;
}

.case__progress-bar {
  width: 0;
  height: 100%;
  background: #005eb8;
  transition: width 0.3s ease;
}

/* ============================================================
   Partners
   ============================================================ */
.partners {
  padding-top: 2.8571428571rem;
  padding-bottom: 2.8571428571rem;
  padding-right: 1.4285714286rem;
  padding-left: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .partners {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.partners__head {
  margin-bottom: 2.625rem;
}

.partners__container {
  padding: 2rem 1.4285714286rem;
  border-radius: 1.1428571429rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .partners__container {
    padding: 3.75rem;
  }
}
@media screen and (min-width: 992px) {
  .partners__container {
    border-radius: 1.25rem;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  }
}

.partners__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
@media screen and (min-width: 992px) {
  .partners__list {
    row-gap: 1.25rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 400px) {
  .partners__item {
    width: 48%;
  }
}
@media screen and (min-width: 992px) {
  .partners__item {
    width: auto;
  }
}

.partners__note {
  text-align: right;
  font-size: 0.75rem;
  margin-top: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 992px) {
  .partners__note {
    font-size: 0.875rem;
  }
}

/* ============================================================
   Line-Up
   ============================================================ */
.lineup {
  padding-top: 2.8571428571rem;
  padding-bottom: 2.8571428571rem;
  padding-right: 1.4285714286rem;
  padding-left: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .lineup {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.lineup__list {
  list-style: none;
  margin-bottom: 2.5714285714rem;
  padding: 0;
  display: grid;
  gap: 2.25rem;
}
@media screen and (min-width: 992px) {
  .lineup__list {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 3.4285714286rem;
  }
}
@media screen and (min-width: 992px) {
  .lineup__list {
    margin-bottom: 3.75rem;
  }
}

.lineup__item {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.4285714286rem;
  border-radius: 2rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 400px) {
  .lineup__item {
    padding: 1.7142857143rem;
  }
}
@media screen and (min-width: 768px) {
  .lineup__item {
    border-radius: 2.25rem;
  }
}
@media screen and (min-width: 992px) {
  .lineup__item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 1400px) {
  .lineup__item {
    padding: 2.5rem;
  }
}

.lineup__photo {
  position: relative;
  text-align: center;
  margin-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .lineup__photo {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .lineup__photo {
    margin-bottom: 1.125rem;
  }
}

.lineup__image {
  width: min(16.0714285714rem, 64.2857vw);
}
@media screen and (min-width: 350px) {
  .lineup__image {
    width: min(100%, 16.0714285714rem);
  }
}
@media screen and (min-width: 992px) {
  .lineup__image {
    width: auto;
  }
}

.lineup__name {
  font-weight: 700;
  font-size: 1.4285714286rem;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 992px) {
  .lineup__name {
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
  }
}

.lineup__model {
  display: inline-block;
}

.lineup__points {
  margin-bottom: 1.125rem;
  flex: 1;
}

.lineup__points-item {
  position: relative;
  padding-left: 1rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .lineup__points-item {
    font-size: 1.1428571429rem;
  }
}
@media screen and (min-width: 992px) {
  .lineup__points-item {
    font-size: 1rem;
  }
}

.lineup__points-item::before {
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  background-color: #005eb8;
  content: "";
}

.lineup__points-item:not(:last-of-type) {
  margin-bottom: 0.75rem;
}

.lineup__btns {
  display: flex;
  row-gap: 0.4285714286rem;
  -moz-column-gap: 1.1428571429rem;
       column-gap: 1.1428571429rem;
  flex-direction: column;
}
@media screen and (min-width: 350px) {
  .lineup__btns {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
@media screen and (min-width: 1400px) {
  .lineup__btns {
    align-items: center;
    justify-content: center;
    row-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
}

.lineup__btn {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #005eb8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (min-width: 768px) {
  .lineup__btn {
    font-size: 1.1428571429rem;
  }
}
@media screen and (min-width: 992px) {
  .lineup__btn {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .lineup__btn {
    justify-content: center;
  }
}

.lineup__btn:hover {
  text-decoration: underline;
}

.spec {
  margin-bottom: 3.4285714286rem;
}
@media screen and (min-width: 768px) {
  .spec {
    margin-bottom: 5rem;
  }
}

.spec__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.2857142857rem;
  margin-bottom: 1.1428571429rem;
}
@media screen and (min-width: 768px) {
  .spec__head {
    font-size: 1.4285714286rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .spec__head {
    font-size: 1.5rem;
  }
}

.spec__dot {
  width: 0.8571428571rem;
  height: 0.8571428571rem;
  border-radius: 50%;
  background: #005eb8;
}
@media screen and (min-width: 768px) {
  .spec__dot {
    width: 1.0714285714rem;
    height: 1.0714285714rem;
  }
}
@media screen and (min-width: 992px) {
  .spec__dot {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.spec__badge {
  margin-top: -0.3571428571rem;
  margin-left: 0.4285714286rem;
  padding: 0.1428571429rem 0.7142857143rem;
}
@media screen and (min-width: 992px) {
  .spec__badge {
    margin-left: 0.5rem;
    padding: 0.125rem 0.625rem;
  }
}

.spec__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.spec__table {
  width: 100%;
  min-width: 58.5rem;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.875rem;
  overflow: hidden;
}

.spec__thead-th {
  padding: 0.5rem 1.25rem;
  background: #003153;
  border: 1px solid #D2D4D5;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  font-size: 1.0714285714rem;
}
@media screen and (min-width: 992px) {
  .spec__thead-th {
    font-size: 1.125rem;
  }
}

.col-first {
  width: 10.7142857143rem;
  padding: 1.25rem;
  border-top: 1px solid #D2D4D5;
  border-bottom: 1px solid #D2D4D5;
  vertical-align: middle;
  font-weight: 700;
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 992px) {
  .col-first {
    width: 13.875rem;
    font-size: 1rem;
  }
}

.col-second,
.col-third,
.col-fourth {
  width: 22.375rem;
}

.spec__row-image {
  width: 11.125rem;
  height: 9.375rem;
}
@media screen and (min-width: 992px) {
  .spec__row-image {
    width: 11.125rem;
    height: 9.375rem;
    margin-left: 0.4375rem;
  }
}

.spec__row-item .col-second,
.spec__row-item .col-third,
.spec__row-item .col-fourth {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .spec__row-item .col-second,
.spec__row-item .col-third,
.spec__row-item .col-fourth {
    text-align: start;
  }
}

.spec__row .col-second,
.spec__row .col-third,
.spec__row .col-fourth {
  padding: 1.25rem;
  border: 1px solid #D2D4D5;
  vertical-align: middle;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 992px) {
  .spec__row .col-second,
.spec__row .col-third,
.spec__row .col-fourth {
    font-size: 1rem;
  }
}

.spec__row .col-fourth {
  border-right: 0;
}

/* ============================================================
   Feature（Solution）
   ============================================================ */
.feature {
  background: #fff;
  padding-top: 2.8571428571rem;
  padding-bottom: 2.8571428571rem;
  padding-right: 1.4285714286rem;
  padding-left: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .feature {
    padding-top: 6.25rem;
    padding-bottom: 6.75rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.feature__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0.375rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  margin-bottom: 1.5714285714rem;
  padding-top: 1.1428571429rem;
  padding-right: 2.2857142857rem;
  padding-bottom: 1.1428571429rem;
  padding-left: 2.2857142857rem;
  border-left: 0.5rem solid #005eb8;
  border-radius: 0.25rem;
  background-color: #F5F5F5;
}
@media screen and (min-width: 992px) {
  .feature__head {
    margin-bottom: 1.75rem;
    padding-top: 1.375rem;
    padding-right: 2.5rem;
    padding-bottom: 1.375rem;
    padding-left: 2.5rem;
    border-radius: 0.5rem;
  }
}

.feature__group-title {
  color: #005eb8;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .feature__group-title {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .feature__group-title {
    font-size: 1.5rem;
  }
}

.feature__group-lead {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 992px) {
  .feature__group-lead {
    font-size: 1rem;
  }
}

.feature__group--1 .feature-card {
  min-height: 25.625rem;
}

.feature__group--1 .feature-card__btn {
  margin-top: 2.5714285714rem;
}
@media screen and (min-width: 992px) {
  .feature__group--1 .feature-card__btn {
    margin-top: 3.625rem;
  }
}

.feature__group--2 {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .feature__group--2 {
    margin-top: 5.7142857143rem;
  }
}
@media screen and (min-width: 992px) {
  .feature__group--2 {
    margin-top: 5rem;
  }
}

.feature__group--2 .feature__content {
  display: flex;
  flex-direction: column;
  min-height: 23.125rem;
}

.feature__group--2 .feature-card__btn {
  margin-top: 2.5714285714rem;
}
@media screen and (min-width: 992px) {
  .feature__group--2 .feature-card__btn {
    margin-top: 3.625rem;
  }
}

.feature__group--3 {
  margin-top: 5.1428571429rem;
}
@media screen and (min-width: 768px) {
  .feature__group--3 {
    margin-top: 6.1428571429rem;
  }
}
@media screen and (min-width: 992px) {
  .feature__group--3 {
    margin-top: 4.75rem;
  }
}

.feature__group--3 .feature-card {
  min-height: 29.375rem;
}

.feature__group--3 .feature-card__btn {
  margin-top: 2.5714285714rem;
}
@media screen and (min-width: 992px) {
  .feature__group--3 .feature-card__btn {
    margin-top: 4.375rem;
  }
}

.feature__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  row-gap: 3.4285714286rem;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .feature__cards {
    row-gap: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .feature__cards {
    gap: 2.25rem;
  }
}

@media screen and (min-width: 992px) {
  .feature__cards--2 {
    grid-template-columns: 42.901234% 54.320987%;
  }
}
.feature__cards--2 .feature-card {
  padding: 1.5rem;
}

@media screen and (min-width: 992px) {
  .feature__cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature__cards--3 .feature-card {
  padding: 1.75rem 2rem;
}

.feature__unit {
  display: grid;
  row-gap: 4.5714285714rem;
}
@media screen and (min-width: 992px) {
  .feature__unit {
    gap: 2.25rem;
  }
}

.feature-card {
  position: relative;
  background: #fff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
@media screen and (min-width: 992px) {
  .feature-card {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
}

.feature-cards--wide {
  position: relative;
  height: 100%;
}

.feature-card__double {
  display: flex;
  -moz-column-gap: 4%;
       column-gap: 4%;
}
@media screen and (min-width: 400px) {
  .feature-card__double {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
  }
}

.feature-card__title {
  color: #005eb8;
  font-weight: 700;
  font-size: 1.2857142857rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 1.125rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .feature-card__title {
    font-size: 1.4285714286rem;
  }
}
@media screen and (min-width: 992px) {
  .feature-card__title {
    font-size: 1.5rem;
  }
}

.feature-card__figure {
  margin-bottom: 1.125rem;
  background: #f5f5f5;
  border-radius: 0.5rem;
  overflow: hidden;
  width: min(100%, 30rem);
  margin-inline: auto;
}
@media screen and (min-width: 992px) {
  .feature-card__figure {
    width: auto;
    margin-inline: 0;
  }
}

.feature-card__figure--wide {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .feature-card__figure--wide {
    width: auto;
  }
}

.feature-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.feature-card__image--print {
  width: auto;
  max-height: 15rem;
  margin-inline: auto;
}

.feature-card__text {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 992px) {
  .feature-card__text {
    font-size: 1rem;
  }
}

.feature-card__sub {
  font-size: 0.875rem;
  line-height: 1.2;
  margin-top: 0.625rem;
}

.feature-card__btn {
  align-self: flex-start;
  margin-inline: auto;
}

.feature-card__wide-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (min-width: 576px) {
  .feature-card__wide-body {
    align-items: center;
  }
}

.feature-card__box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7%;
  width: 100%;
  height: 22%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 43%, rgb(255, 255, 255) 100%);
  text-align: center;
}
@media screen and (min-width: 992px) {
  .feature-card__box {
    bottom: -5%;
    height: 20%;
  }
}
@media screen and (min-width: 992px) {
  .feature-card__box {
    bottom: -11%;
    height: 33%;
  }
}

/* カードが開いた時にボックスシャドウを外す（ガウスを取る） */
[data-feature-card].is-open {
  height: 100%;
}

[data-feature-card].is-open .feature-card__box {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  width: 100%;
  height: auto;
  background-image: none;
  margin-top: auto;
}

[data-feature-card].is-open .feature-card__detail {
  margin-top: 1.5rem;
}

.feature__group--1 [data-feature-card].is-open .feature-card__btn {
  margin-top: 1.5rem;
}

.feature__group--2 [data-feature-card].is-open .feature-card__btn {
  margin-top: 1.5rem;
}

.feature__group--2 [data-feature-card].is-open .feature-card {
  height: 100%;
}

.feature__group--3 [data-feature-card].is-open .feature-card__btn {
  margin-top: 1.5rem;
}

/* 開閉するディテール部分 */
.feature-card__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.feature-card.is-open .feature-card__detail {
  margin-top: 1.25rem;
}

.feature-card__detail-inner {
  border-top: 1px solid #D2D4D5;
  padding-top: 0.875rem;
}

.feature-card__models-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* 対応機種バッジ */
.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
}

.model-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  background: #003153;
  border-radius: 0.375rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .model-tag {
    border-radius: 0.5rem;
  }
}

.model-tag--disabled {
  background: #B7B7B7;
  color: rgba(255, 255, 255, 0.5);
}

/* 機種ごとの補足テキスト（既存の feature-card__sub と同じトーン） */
.feature-card__note {
  margin-top: 0.375rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2;
}

.feature-card__note + .feature-card__note {
  margin-top: 0.75rem;
}

/* ボタン内のアイコンとラベル */
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 8.125rem;
  min-height: 2.5rem;
  padding: 0.375rem 1.25rem;
  background: #005eb8;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: background-color ease 0.3s;
}

.btn-more[aria-expanded=true] .btn-more__icon::after {
  opacity: 0;
}

.btn-more:hover {
  opacity: 1;
  background-color: #003153;
}

.btn-more__icon {
  position: relative;
  width: 1.2857142857rem;
  height: 1.2857142857rem;
}
@media screen and (min-width: 768px) {
  .btn-more__icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.btn-more__icon::before,
.btn-more__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background: #FFF;
}

.btn-more__icon::before {
  width: 0.9285714286rem;
  height: 2px;
}
@media screen and (min-width: 768px) {
  .btn-more__icon::before {
    width: 0.9375rem;
  }
}

.btn-more__icon::after {
  width: 2px;
  height: 0.9285714286rem;
  transition: opacity ease 0.3s;
}
@media screen and (min-width: 768px) {
  .btn-more__icon::after {
    height: 0.9375rem;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: #f5f5f5;
  padding-top: 2.8571428571rem;
  padding-bottom: 2.8571428571rem;
  padding-right: 1.4285714286rem;
  padding-left: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq__item {
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .faq__item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.1428571429rem 2.5714285714rem 1.1428571429rem 1.1428571429rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 0.9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq__q {
    padding: 1.25rem 3.5rem 1.25rem 1.75rem;
  }
}

.faq__q-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.faq__mark {
  flex: 0 0 auto;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1428571429rem;
}
@media screen and (min-width: 768px) {
  .faq__mark {
    font-size: 1.25rem;
  }
}

.faq__mark--q {
  font-family: "Figtree", sans-serif;
  background: #005eb8;
  color: #fff;
}

.faq__mark--a {
  font-family: "Figtree", sans-serif;
  color: #005eb8;
  border: solid 1px #005eb8;
}

.faq__toggle {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .faq__toggle {
    right: 2rem;
  }
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #005eb8;
}

.faq__toggle::before {
  width: 1.125rem;
  height: 2px;
}

.faq__toggle::after {
  width: 2px;
  height: 1.125rem;
  transition: opacity 0.3s;
}

.is-accordion-head--opened .faq__toggle::after {
  opacity: 0;
}

.faq__a {
  display: none;
  align-items: flex-start;
  margin-top: -0.5rem;
  padding: 0 2.5714285714rem 1.1428571429rem 1.1428571429rem;
}
@media screen and (min-width: 768px) {
  .faq__a {
    padding: 0 3.5rem 1.25rem 1.75rem;
  }
}

.faq__inner {
  display: flex;
  gap: 0.875rem;
}

.faq__a-text {
  font-size: 1rem;
  line-height: 1.5;
  padding-top: 0.125rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   Flow
   ============================================================ */
.flow {
  padding-top: 2.8571428571rem;
  padding-bottom: 2.8571428571rem;
  padding-right: 1.4285714286rem;
  padding-left: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .flow {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.flow__head {
  margin-bottom: 2.5rem;
}

.flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2.25rem;
  counter-reset: none;
}
@media screen and (min-width: 768px) {
  .flow__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.375rem;
  }
}

.flow__item {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border-radius: 0.625rem;
  padding: 1.5rem 1rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .flow__item {
    padding: 1.25rem 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .flow__item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
}

.flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -1.7142857143rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.125rem;
  height: 1.125rem;
  background-image: url(./../images/top/arrow-double-line-orange-down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .flow__item:not(:last-child)::after {
    top: 50%;
    right: -2.75rem;
    left: auto;
    transform: translateY(-50%) rotate(-90deg);
  }
}

.flow__step {
  display: block;
  color: #005eb8;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 992px) {
  .flow__step {
    font-size: 1rem;
  }
}

.flow__icon {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.flow__image {
  width: min(100%, 12rem);
}

.flow__text {
  padding-bottom: 0.75rem;
  font-weight: 700;
  font-size: 1.1428571429rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .flow__text {
    font-size: 1.25rem;
  }
}

/* ============================================================
   Contact
   ============================================================ */
.contact {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-right: 1.4285714286rem;
  padding-left: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 0;
    padding-bottom: 6.25rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.contact.bg-round-down::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 130px;
  top: -3px;
  left: 0;
  background-color: #fff;
  content: "";
}
@media screen and (min-width: 768px) {
  .contact.bg-round-down::before {
    content: none;
  }
}

.contact.bg-round-down::after {
  top: 126px;
}
@media screen and (min-width: 768px) {
  .contact.bg-round-down::after {
    top: -1px;
  }
}

.contact .container {
  position: relative;
  z-index: 20;
}

.contact__box {
  position: relative;
  display: grid;
  background-image: url(./../images/top/bg-blue-grad02.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 0.5714285714rem;
  color: #fff;
  padding: 2rem min(1.2857142857rem, 4.8vw);
  margin-inline: auto;
}
@media screen and (min-width: 576px) {
  .contact__box {
    padding: 2rem 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .contact__box {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    row-gap: 0.8571428571rem;
    padding: 2.5rem 3.75rem;
    border-radius: 0.75rem;
  }
}
@media screen and (min-width: 992px) {
  .contact__box {
    flex-direction: row;
    justify-content: space-between;
    row-gap: 0;
    padding: 3.75rem 5rem 3rem;
  }
}

.contact__body {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__body {
    grid-column: 1/2;
    grid-row: 1/2;
    text-align: start;
  }
}
@media screen and (min-width: 992px) {
  .contact__body {
    align-items: flex-start;
  }
}

.contact__section-eyebrow {
  color: #fff;
  margin-bottom: 0;
}

.contact__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 1200px), print {
  .contact__title {
    margin-bottom: 1.75rem;
    font-size: 2.375rem;
  }
}

.contact__lead {
  margin-bottom: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: min(1.2142857143rem, 4.5333vw);
}
@media screen and (min-width: 576px) {
  .contact__lead {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .contact__lead {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .contact__lead {
    font-size: 1.5rem;
  }
}

.contact__btn {
  width: min(100%, 24.875rem);
  margin-inline: auto;
  margin-top: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .contact__btn {
    margin-inline: 0;
  }
}

.contact__link {
  max-width: 24.875rem;
  font-size: min(1.2142857143rem, 4.5333vw);
  padding-top: 1.2857142857rem;
  padding-bottom: 1.2857142857rem;
  padding-right: min(1.4285714286rem, 5.33334vw);
  padding-left: min(1.4285714286rem, 5.33334vw);
}
@media screen and (min-width: 576px) {
  .contact__link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.25rem;
  }
}

.contact__note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__note {
    text-align: start;
  }
}
@media screen and (min-width: 992px) {
  .contact__note {
    font-size: 1rem;
  }
}

.contact__figure {
  flex: 0 0 auto;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__figure {
    text-align: start;
    grid-column: 2/3;
    grid-row: 1/3;
  }
}

.contact__figure::after {
  display: block;
  position: absolute;
  bottom: -11%;
  left: 50%;
  transform: translateX(-50%);
  width: 22.1428571429rem;
  aspect-ratio: 213/122;
  mix-blend-mode: multiply;
  background-image: url(./../images/top/contact-product-shadow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  content: "";
}
@media screen and (min-width: 768px) {
  .contact__figure::after {
    left: -7%;
    transform: none;
    width: 27.5rem;
  }
}

.contact__image {
  position: relative;
  z-index: 20;
  width: 19.2857142857rem;
}
@media screen and (min-width: 768px) {
  .contact__image {
    width: 25rem;
  }
}

.contact__tel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.5rem auto 0;
  background: #fff;
  border-radius: 0.4285714286rem;
  padding: 1.4285714286rem 1.1428571429rem;
}
@media screen and (min-width: 350px) {
  .contact__tel {
    padding: 1.25rem 1.5rem;
  }
}
@media screen and (min-width: 576px) {
  .contact__tel {
    align-items: center;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    padding: 1.5rem 3.5rem;
  }
}
@media screen and (min-width: 768px) {
  .contact__tel {
    justify-content: flex-start;
    border-radius: 0.625rem;
  }
}
@media screen and (min-width: 992px) {
  .contact__tel {
    padding: 1.5rem 4.375rem;
  }
}

.contact__tel-label {
  font-weight: 700;
  font-size: 1.1428571429rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 576px) {
  .contact__tel-label {
    font-size: 1.2857142857rem;
  }
}
@media screen and (min-width: 768px) {
  .contact__tel-label {
    margin-bottom: 0;
    font-size: 1.4285714286rem;
  }
}
@media screen and (min-width: 1200px), print {
  .contact__tel-label {
    font-size: 1.5rem;
  }
}

.contact__tel-label::before {
  display: inline-block;
  width: 0.8571428571rem;
  height: 0.8571428571rem;
  border-radius: 1.125rem;
  margin-right: 0.75rem;
  background-color: #005eb8;
  content: "";
}
@media screen and (min-width: 576px) {
  .contact__tel-label::before {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.contact__tel-main {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__tel-main {
    text-align: start;
  }
}

.contact__tel-name {
  font-size: 1rem;
  color: #005eb8;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1200px), print {
  .contact__tel-name {
    font-size: 1.125rem;
  }
}

.contact__tel-box {
  display: flex;
  flex-direction: column;
  margin-top: 0.4285714286rem;
}
@media screen and (min-width: 992px) {
  .contact__tel-box {
    flex-direction: row;
    margin-top: 0;
  }
}

.contact__tel-number {
  font-size: 1.7142857143rem;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 0.4285714286rem;
}
@media screen and (min-width: 576px) {
  .contact__tel-number {
    font-size: 1.75rem;
    gap: 0.625rem;
    flex-wrap: nowrap;
  }
}

.contact__tel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #333;
  font-family: "Figtree", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .contact__tel-link {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px), print {
  .contact__tel-link {
    font-size: 1.9375rem;
  }
}

.contact__tel-link:hover {
  color: #333;
}

.contact__tel-icon {
  flex: 0 0 auto;
}

.contact__tel-free {
  font-size: 0.875rem;
  font-weight: 700;
  background: #005eb8;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.contact__tel-time {
  margin-top: 0.5714285714rem;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 576px) {
  .contact__tel-time {
    margin-top: 0.25rem;
    margin-left: 0.75rem;
  }
}

/* ============================================================
   フッター（LP用上書き）
   ============================================================ */
.footer {
  background: #003153;
  padding: 3.125rem 1.25rem 7.5rem;
}
@media screen and (min-width: 1200px), print {
  .footer {
    padding: 3.125rem 1.25rem;
  }
}

.footer__inner {
  text-align: center;
}

.footer__logo {
  margin-bottom: 1.875rem;
}
.footer__logo img {
  width: 11.5625rem;
  height: auto;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

/* ============================================================
   CTAバナー用セクション（Benefit〜Case間）
   ============================================================ */
.cta-section {
  padding-top: 2.5rem;
  padding-inline: 1.25rem;
  background-color: #f1f6fc;
}
@media screen and (min-width: 992px) {
  .cta-section {
    padding-top: 5rem;
  }
}

.cta-section.bg-round-up {
  position: relative;
}

.cta-section.bg-round-up::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3.5625rem;
  background-color: #fff;
  width: 100%;
  content: "";
}

.cta-section.bg-round-up::before {
  bottom: 3.5rem;
}

.bg-round-up .container {
  position: relative;
  z-index: 20;
}

/* ============================================================
   追従CTA（SP：下部固定バー / PC：右側固定）
   ============================================================ */
.floating-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 400;
  background: #fff;
  padding: 0.625rem 1.25rem calc(0.625rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  box-shadow: 0 -8px 20px -8px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1200px), print {
  .floating-cta {
    gap: 0.5rem;
    flex-direction: column;
    pointer-events: none;
    right: 1.25rem;
    bottom: 3.5%;
    left: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    width: 20.75rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
  }
}

@media screen and (min-width: 1200px), print {
  .floating-cta.is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.floating-cta__label {
  position: relative;
  font-size: 0.8571428571rem;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  padding: 0 0.6875rem;
}
@media screen and (min-width: 992px) {
  .floating-cta__label {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

.floating-cta__label::before,
.floating-cta__label::after {
  content: "";
  position: absolute;
  top: 9%;
  width: 2px;
  height: 0.8571428571rem;
  background: #005eb8;
}
@media screen and (min-width: 992px) {
  .floating-cta__label::before,
.floating-cta__label::after {
    height: 1.125rem;
  }
}

.floating-cta__label::before {
  left: 0.125rem;
  transform: rotate(-20deg);
}

.floating-cta__label::after {
  right: 0.125rem;
  transform: rotate(20deg);
}

.floating-cta__text {
  display: none;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (min-width: 1200px), print {
  .floating-cta__text {
    display: block;
  }
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 16.5714285714rem;
  min-height: 2.5rem;
  padding: 0.5rem 1.5rem;
  background: #005eb8;
  color: #fff;
  font-weight: 700;
  font-size: 1.1428571429rem;
  line-height: 1.2;
  border-radius: 100vh;
  transition: background-color ease 0.3s;
}
@media screen and (min-width: 1200px), print {
  .floating-cta__btn {
    max-width: 16.375rem;
    white-space: nowrap;
    min-height: 3.5625rem;
    padding: 0.625rem 1.5rem;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

@media (hover: hover) {
  .floating-cta__btn:hover {
    opacity: 1;
    background-color: #003153;
    color: #fff;
  }
}
/* ============================================================
   ページトップボタン（LP用上書き：青丸・追従バー回避）
   ============================================================ */
.page-top {
  position: fixed;
  right: 10px;
  bottom: calc(85px + env(safe-area-inset-bottom));
  height: 45px;
  width: 45px;
  z-index: 300;
  opacity: 1;
  transition: ease 0.3s;
}
@media screen and (min-width: 1200px), print {
  .page-top {
    opacity: 0;
    visibility: hidden;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: 3.125rem;
    height: 3.125rem;
  }
}

.page-top.is-fadein {
  opacity: 1;
  visibility: visible;
}

.page-top__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  color: #fff;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 3.125rem;
  transition: 0.3s;
}

.page-top__inner:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  background-color: #005eb8;
}

.page-top__inner::before {
  width: 0.8125rem;
  height: 1.0625rem;
  background-color: #005eb8;
  -webkit-mask-image: url(../images/common/icon-arrow-navy-up.svg);
          mask-image: url(../images/common/icon-arrow-navy-up.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: 0.3s;
  content: "";
}

.page-top__inner:hover::before {
  background-color: #FFF;
}
/*# sourceMappingURL=index.css.map */