@charset "UTF-8";
:root {
  --text-color: #10192D;
  --text-orange: #FF7A18;
  --text-green: #078b3c;
  --text-gray: #9AABC5;
  --line-color: #06C755;
  --blue-color: #0865FF;
  --gray-color: #6D7C98;
  --white-color: #ffffff;
  --circle-white: #F5F9FF;
  --accent-blue: #266CF1;
  --accent-white: #F6F8FC;
  --border-blue: #A9CBFF;
  --border-line: #DDE7F6;
  --bg-white: #F5F9FF;
  --bg-green: #E3FAEC;
  --shadow-color: rgba(56, 104, 184, 0.1);
  --font-jp: "Noto Sans JP", sans-serif;
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  color: var(--text-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  padding-top: 80px;
}
@media (max-width: 1120px) {
  body {
    padding-top: 66px;
  }
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--text-color);
}

.wrapper {
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: 3%;
}

@media (max-width: 1120px) {
  .pc-br {
    display: none;
  }
}

.section-title {
  display: grid;
  justify-items: center;
  line-height: 1;
}
.section-title-en {
  color: var(--accent-blue);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.section-title-jp {
  margin-top: 0.875rem;
  color: var(--text-color);
  font-size: 3.375rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .section-title-jp {
    font-size: 2.75rem;
  }
}
@media (max-width: 767px) {
  .section-title-jp {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .section-title-jp {
    font-size: 1.75rem;
  }
}
.section-title-num {
  color: var(--accent-blue);
  font-size: 5rem;
}
@media (max-width: 900px) {
  .section-title-num {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .section-title-num {
    font-size: 3.25rem;
  }
}
@media (max-width: 480px) {
  .section-title-num {
    font-size: 2.5rem;
  }
}
.section-title-blue {
  color: var(--accent-blue);
}
.section-subtitle {
  margin-top: 0.75rem;
  color: #7c8ca1;
  font-size: 1rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--white-color);
}
@media (max-width: 1120px) {
  .header {
    height: 66px;
  }
}
.header .header-inner {
  display: flex;
  width: min(1300px, 100% - 48px);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1120px) {
  .header .header-inner {
    width: calc(100% - 32px);
  }
}
.header .header-logo {
  display: block;
  width: 250px;
  height: 65px;
  flex-shrink: 0;
}
@media (max-width: 1120px) {
  .header .header-logo {
    width: 175px;
    height: auto;
  }
}
.header .header-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .header-burger {
  display: none;
}
@media (max-width: 1120px) {
  .header .header-burger {
    --opacity: 1;
    --rotate: 0;
    --translate: .35rem;
    display: grid;
    place-items: center;
    width: 35px;
    aspect-ratio: 1;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1000;
  }
  .header .header-burger:hover {
    opacity: 0.7;
  }
  .header .header-burger.is-active {
    --opacity: 0;
    --rotate: 135deg;
    --translate: 0;
  }
  .header .header-burger span {
    display: block;
    width: 75%;
    height: 2px;
    background-color: var(--blue-color);
    grid-area: 1/1/-1/-1;
    transition: opacity 0.4s ease, rotate 0.4s ease, translate 0.4s ease;
  }
  .header .header-burger span:nth-child(1) {
    opacity: var(--opacity);
  }
  .header .header-burger span:nth-child(2) {
    translate: 0 calc(var(--translate) * -1);
    rotate: var(--rotate);
  }
  .header .header-burger span:nth-child(3) {
    translate: 0 var(--translate);
    rotate: calc(var(--rotate) * -1);
  }
}
.header .header-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 40px;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 1120px) {
  .header .header-nav {
    position: absolute;
    z-index: 900;
    top: 66px;
    right: 0;
    left: 0;
    display: grid;
    padding: 32px 24px;
    gap: 24px;
    background-color: var(--white-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
}
@media (max-width: 1120px) {
  .header .header-nav.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.header .header-nav > a:not(.header-line-button) {
  position: relative;
}
.header .header-nav > a:not(.header-line-button)::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: 2px;
  background-color: #a9cbff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.header .header-nav > a:not(.header-line-button):hover, .header .header-nav > a:not(.header-line-button):focus-visible {
  color: #315f9f;
}
.header .header-nav > a:not(.header-line-button):hover::after, .header .header-nav > a:not(.header-line-button):focus-visible::after {
  transform: scaleX(1);
}
.header .header-line-button {
  display: inline-flex;
  width: 190px;
  height: 52px;
  border-radius: 33px;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background-color: var(--line-color);
  font-size: 18px;
  transition: 0.5s ease;
}
.header .header-line-button:hover, .header .header-line-button:focus-visible {
  color: var(--white-color);
  opacity: 0.8;
}

.footer-main {
  padding-block: 5.625rem;
  background-color: var(--white-color);
}
@media (max-width: 900px) {
  .footer-main {
    padding-block: 4.5rem;
  }
}
@media (max-width: 767px) {
  .footer-main {
    padding-block: 3.5rem;
  }
}
@media (max-width: 480px) {
  .footer-main {
    padding-block: 3rem;
  }
}
.footer-main-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .footer-main-inner {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .footer-main-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.footer-logo {
  display: block;
  width: 14rem;
}
.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-description {
  margin-top: 2rem;
  color: var(--gray-color);
  font-size: 0.875rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .footer-description {
    margin-top: 1.5rem;
  }
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(9rem, 1fr));
  justify-self: start;
  gap: 5rem;
}
@media (max-width: 900px) {
  .footer-nav {
    gap: 3rem;
    transform: translateX(-1.5rem);
  }
}
@media (max-width: 767px) {
  .footer-nav {
    width: 100%;
    justify-self: stretch;
    gap: 2rem;
    transform: none;
  }
}
.footer-nav-title {
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
.footer-nav-list {
  display: grid;
  margin-top: 1.5rem;
  gap: 1rem;
}
.footer-nav-list a {
  position: relative;
  color: var(--gray-color);
  font-size: 0.8125rem;
  line-height: 1.5;
  transition: color 0.3s;
}
.footer-nav-list a::after {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: -0.375rem;
  width: calc(100% + 0.75rem);
  height: 0.125rem;
  background-color: var(--border-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.footer-nav-list a:hover, .footer-nav-list a:focus-visible {
  color: #315f9f;
}
.footer-nav-list a:hover::after, .footer-nav-list a:focus-visible::after {
  transform: scaleX(1);
}
.footer-company {
  padding: 3.5rem 1.5rem 2rem;
  background-color: #0d1215;
  color: var(--white-color);
  text-align: center;
}
@media (max-width: 767px) {
  .footer-company {
    padding-block: 3rem;
  }
}
.footer-company-name {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .footer-company-name {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .footer-company-name {
    font-size: 1.25rem;
  }
}
.footer-company-jp {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
.footer-address {
  display: grid;
  margin-top: 1.25rem;
  justify-items: center;
  gap: 0.375rem;
  color: var(--white-color);
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.7;
}
.footer-address span {
  color: var(--accent-blue);
  font-weight: 700;
}
@media (max-width: 480px) {
  .footer-address {
    font-size: 0.6875rem;
  }
}
.footer-recaptcha {
  margin-top: 3rem;
  color: var(--gray-color);
  font-size: 0.675rem;
  line-height: 1.7;
  text-align: right;
}
.footer-recaptcha a {
  color: inherit;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.footer-recaptcha a:hover, .footer-recaptcha a:focus-visible {
  opacity: 0.7;
}

.fv-main {
  position: relative;
  width: 100%;
  max-width: 1440px;
  aspect-ratio: 1440/804;
  margin-inline: auto;
}
@media (max-width: 480px) {
  .fv-main {
    aspect-ratio: 390/560;
  }
}
.fv-pc, .fv-sp {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv-pc {
  display: block;
}
@media (max-width: 480px) {
  .fv-pc {
    display: none;
  }
}
.fv-sp {
  display: none;
}
@media (max-width: 480px) {
  .fv-sp {
    display: block;
  }
}
.fv-inner {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: min(1268px, 100% - 48px);
  height: 100%;
  margin-inline: auto;
}
@media (max-width: 1120px) {
  .fv-inner {
    width: 100%;
  }
}
.fv-copy {
  position: absolute;
  top: 14%;
  left: 0;
}
@media (max-width: 1120px) {
  .fv-copy {
    top: 13.8%;
    left: 6.25%;
  }
}
@media (max-width: 480px) {
  .fv-copy {
    top: 8%;
    left: 8%;
  }
}
.fv-lead {
  color: var(--text-color);
  font-size: clamp(18px, 2.08vw, 30px);
  line-height: 1.18;
}
@media (max-width: 1120px) {
  .fv-lead {
    font-size: 2.083vw;
  }
}
@media (max-width: 480px) {
  .fv-lead {
    font-size: clamp(14px, 3.6vw, 18px);
  }
}
.fv-lead span {
  color: var(--text-orange);
}
.fv-title {
  margin-top: 12px;
  color: var(--blue-color);
  font-size: clamp(44px, 5.7vw, 82px);
  font-weight: 700;
  line-height: 1.18;
}
@media (max-width: 1120px) {
  .fv-title {
    margin-top: 0.833vw;
    font-size: 5.694vw;
  }
}
@media (max-width: 480px) {
  .fv-title {
    margin-top: 4px;
    font-size: clamp(36px, 9.2vw, 48px);
    line-height: 1.12;
  }
}
.fv-price {
  display: flex;
  width: 450px;
  height: 103px;
  margin-top: 18px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white-color);
  background-color: var(--blue-color);
}
@media (max-width: 1120px) {
  .fv-price {
    width: 31.25vw;
    height: 7.153vw;
    margin-top: 1.25vw;
    gap: 0.833vw;
  }
}
@media (max-width: 480px) {
  .fv-price {
    width: clamp(225px, 54vw, 270px);
    height: clamp(50px, 12vw, 58px);
    margin-top: 10px;
    gap: 5px;
  }
}
.fv-price-label {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 1120px) {
  .fv-price-label {
    font-size: 2.222vw;
  }
}
@media (max-width: 480px) {
  .fv-price-label {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1;
  }
}
.fv-price strong {
  font-size: 64px;
  line-height: 1;
}
@media (max-width: 1120px) {
  .fv-price strong {
    font-size: 4.444vw;
  }
}
@media (max-width: 480px) {
  .fv-price strong {
    font-size: clamp(32px, 8vw, 38px);
    line-height: 1;
  }
}
.fv-price-unit {
  padding-top: 27px;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 1120px) {
  .fv-price-unit {
    padding-top: 1.875vw;
    font-size: 1.389vw;
  }
}
@media (max-width: 480px) {
  .fv-price-unit {
    padding-top: 9px;
    font-size: clamp(9px, 2.4vw, 11px);
    line-height: 1;
  }
}
.fv-note {
  margin-top: 25px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 1120px) {
  .fv-note {
    margin-top: 1.736vw;
    font-size: 1.667vw;
  }
}
@media (max-width: 480px) {
  .fv-note {
    margin-top: 12px;
    padding-left: clamp(12px, 4vw, 18px);
    text-align: left;
    font-size: clamp(14px, 3.6vw, 16px);
  }
}
.fv-callout {
  position: absolute;
  display: flex;
  border: 1.4px solid var(--border-blue);
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blue-color);
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.fv-callout-insert {
  top: 54.3%;
  left: 41%;
  width: 154px;
  height: 154px;
}
@media (max-width: 1120px) {
  .fv-callout-insert {
    top: 51.5%;
    left: 43%;
    width: clamp(112px, 10.694vw, 154px);
    height: clamp(112px, 10.694vw, 154px);
    font-size: clamp(14px, 1.25vw, 18px);
  }
}
@media (max-width: 900px) {
  .fv-callout-insert {
    width: 12vw;
    height: 12vw;
  }
}
@media (max-width: 480px) {
  .fv-callout-insert {
    width: clamp(86px, 22vw, 125px);
    height: clamp(86px, 22vw, 125px);
    top: 56%;
    left: 20%;
    padding: 8px;
  }
}
.fv-callout-insert strong {
  font-size: 25px;
}
@media (max-width: 1120px) {
  .fv-callout-insert strong {
    font-size: clamp(18px, 1.736vw, 25px);
  }
}
@media (max-width: 900px) {
  .fv-callout-insert strong {
    font-size: 2vw;
  }
}
@media (max-width: 480px) {
  .fv-callout-insert strong {
    font-size: clamp(14px, 3.6vw, 19px);
    line-height: 1.1;
  }
}
.fv-callout-insert span {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.2;
}
@media (max-width: 1120px) {
  .fv-callout-insert span {
    margin-top: 3px;
    font-size: clamp(13px, 1.25vw, 18px);
  }
}
@media (max-width: 900px) {
  .fv-callout-insert span {
    font-size: 1.5vw;
  }
}
@media (max-width: 480px) {
  .fv-callout-insert span {
    margin-top: 5px;
    font-size: clamp(10px, 2.6vw, 14px);
    line-height: 1.2;
  }
}
.fv-callout-weight {
  top: 20.8%;
  right: 4.5%;
  width: 226px;
  height: 226px;
  font-weight: 700;
}
@media (max-width: 1120px) {
  .fv-callout-weight {
    top: 30.6%;
    right: auto;
    left: 74.3%;
    width: clamp(160px, 15.694vw, 226px);
    height: clamp(160px, 15.694vw, 226px);
  }
}
@media (max-width: 900px) {
  .fv-callout-weight {
    width: 18vw;
    height: 18vw;
  }
}
@media (max-width: 480px) {
  .fv-callout-weight {
    top: 42%;
    right: 2%;
    left: auto;
    width: clamp(104px, 27vw, 160px);
    height: clamp(104px, 27vw, 160px);
    padding: 8px;
  }
}
.fv-callout-weight > span {
  font-size: 20px;
}
@media (max-width: 1120px) {
  .fv-callout-weight > span {
    font-size: clamp(15px, 1.389vw, 20px);
  }
}
@media (max-width: 900px) {
  .fv-callout-weight > span {
    font-size: 1.8vw;
  }
}
@media (max-width: 480px) {
  .fv-callout-weight > span {
    font-size: clamp(11px, 2.8vw, 16px);
    line-height: 1;
  }
}
.fv-callout-weight > strong {
  font-size: 64px;
  line-height: 1;
}
@media (max-width: 1120px) {
  .fv-callout-weight > strong {
    font-size: clamp(48px, 4.444vw, 64px);
  }
}
@media (max-width: 900px) {
  .fv-callout-weight > strong {
    font-size: 5vw;
  }
}
@media (max-width: 480px) {
  .fv-callout-weight > strong {
    margin-top: 2px;
    font-size: clamp(36px, 9.2vw, 54px);
    line-height: 0.95;
  }
}
.fv-callout-weight > strong small {
  font-size: 26px;
}
@media (max-width: 1120px) {
  .fv-callout-weight > strong small {
    font-size: clamp(19px, 1.806vw, 26px);
  }
}
@media (max-width: 900px) {
  .fv-callout-weight > strong small {
    font-size: 2vw;
  }
}
@media (max-width: 480px) {
  .fv-callout-weight > strong small {
    font-size: clamp(14px, 3.6vw, 21px);
  }
}
.fv-callout-weight p {
  margin-top: 8px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width: 1120px) {
  .fv-callout-weight p {
    margin-top: 5px;
    font-size: clamp(12px, 1.111vw, 16px);
  }
}
@media (max-width: 900px) {
  .fv-callout-weight p {
    margin-top: 4px;
    font-size: 1.4vw;
  }
}
@media (max-width: 480px) {
  .fv-callout-weight p {
    margin-top: 5px;
    font-size: clamp(8px, 2.05vw, 12px);
    line-height: 1.15;
  }
}
.fv-weight-note {
  position: absolute;
  top: 63.35%;
  right: 0;
  width: 250px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1120px) {
  .fv-weight-note {
    top: 63.35%;
    right: auto;
    left: 76.45%;
    width: clamp(180px, 17.361vw, 250px);
    font-size: clamp(12px, 0.972vw, 14px);
    line-height: 1.3;
  }
}
@media (max-width: 900px) {
  .fv-weight-note {
    width: 20vw;
    font-size: 1.3vw;
  }
}
@media (max-width: 480px) {
  .fv-weight-note {
    top: 62%;
    right: 3%;
    left: auto;
    width: 36%;
    font-size: clamp(8px, 2.2vw, 12px);
    line-height: 1.3;
  }
}
.fv-spec {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1268px, 100% - 48px);
  min-height: 300px;
  margin: 0 auto;
  margin-top: -1px;
  border: 1.5px solid var(--border-blue);
  border-radius: 22px;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--white-color);
}
.fv h3 {
  font-size: 22px;
  font-weight: 700;
}
.fv-spec-price, .fv-spec-capacity, .fv-spec-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fv-spec-price strong, .fv-spec-capacity strong, .fv-spec-count strong {
  color: var(--blue-color);
  font-size: 64px;
  line-height: 1;
}
.fv-spec-price span {
  display: flex;
  align-items: flex-end;
  font-size: 28px;
}
.fv-spec-price span small {
  margin-bottom: 3px;
  font-size: 12px;
}
.fv-spec-capacity span {
  color: var(--blue-color);
  font-size: 28px;
  font-weight: 700;
}
.fv-spec-count {
  gap: 25px;
}
.fv-spec-count span {
  font-size: 22px;
}
.fv-spec-description {
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}
.fv-spec-description span {
  color: var(--accent-blue);
  font-size: 24px;
}
.fv-spec-attention {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}
.fv-spec-wifi {
  width: 116px;
  height: 105px;
  -o-object-fit: contain;
     object-fit: contain;
}
.fv-spec-range {
  margin-top: 42px;
  font-size: 34px;
  font-weight: 700;
}
.fv-spec-area {
  width: 206px;
  height: 110px;
  -o-object-fit: contain;
     object-fit: contain;
}
.fv-use-list {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1100px, 100% - 48px);
  margin: -112px auto 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
@media (max-width: 1120px) {
  .fv-use-list {
    width: calc(100% - 32px);
    margin-top: -96px;
  }
}
@media (max-width: 900px) {
  .fv-use-list {
    margin-top: -72px;
  }
}
@media (max-width: 767px) {
  .fv-use-list {
    width: 100%;
    margin-top: -56px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background-color: rgba(255, 255, 255, 0.92);
  }
}
@media (max-width: 480px) {
  .fv-use-list {
    padding-inline: 16px;
    margin-top: -78px;
  }
}
.fv-use-item {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 7rem;
  padding: 0.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  color: var(--text-color);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.fv-use-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5px;
  height: 100%;
  background-color: var(--border-blue);
  transform: translateY(-50%);
}
@media (max-width: 1120px) {
  .fv-use-item {
    min-height: 6.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .fv-use-item {
    min-height: 6rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .fv-use-item {
    min-height: 6.5rem;
    padding: 0.75rem 0.25rem;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    white-space: normal;
  }
  .fv-use-item:nth-child(-n+3) {
    border-bottom: 1px solid var(--border-blue);
  }
  .fv-use-item:nth-child(3n)::after {
    display: none;
  }
  .fv-use-item:not(:nth-child(3n))::after {
    display: block;
    height: 72%;
  }
}
@media (max-width: 480px) {
  .fv-use-item {
    min-height: 6rem;
    padding: 0.625rem 0.25rem;
    font-size: 0.8125rem;
  }
}
.fv-use-item img {
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1120px) {
  .fv-use-item img {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 900px) {
  .fv-use-item img {
    width: 2.75rem;
    height: 2.75rem;
  }
}
@media (max-width: 480px) {
  .fv-use-item img {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.fv-use-item img span {
  display: block;
}
.fv-spec-panel {
  width: min(1268px, 100% - 32px);
  margin: 32px auto 0;
  overflow: hidden;
  border: 1.5px solid var(--border-blue);
  border-radius: 22px;
  background-color: var(--white-color);
}
@media (max-width: 1120px) {
  .fv-spec-panel {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .fv-spec-panel {
    max-width: 680px;
  }
}
@media (max-width: 480px) {
  .fv-spec-panel {
    width: calc(100% - 24px);
    margin-top: 16px;
    border-radius: 16px;
  }
}
.fv-spec-list {
  display: grid;
  width: 100%;
  min-height: clamp(220px, 23.66vw, 300px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .fv-spec-list {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.fv-spec-item {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 1.5rem 1rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fv-spec-item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background-color: var(--border-blue);
  opacity: 0.8;
}
@media (max-width: 1120px) {
  .fv-spec-item {
    padding: 1.25rem 0.625rem;
  }
}
@media (max-width: 900px) {
  .fv-spec-item {
    padding: 1.125rem 0.5rem;
  }
}
@media (max-width: 767px) {
  .fv-spec-item {
    min-height: 190px;
    padding: 1.125rem 0.75rem;
  }
  .fv-spec-item:not(:first-child)::before {
    display: none;
  }
  .fv-spec-item:nth-child(even)::before {
    display: block;
    top: 20px;
    bottom: 20px;
  }
  .fv-spec-item:nth-child(n+3)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    left: 20px;
    height: 1px;
    background-color: rgba(169, 203, 255, 0.8);
  }
}
@media (max-width: 480px) {
  .fv-spec-item {
    min-height: 185px;
    padding: 1rem 0.5rem;
  }
}
.fv-spec-title {
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.18;
}
@media (max-width: 1120px) {
  .fv-spec-title {
    font-size: 1.125rem;
  }
}
@media (max-width: 900px) {
  .fv-spec-title {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .fv-spec-title {
    font-size: 0.875rem;
  }
}
.fv-spec-value {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  white-space: nowrap;
  margin-top: 0.875rem;
}
@media (max-width: 900px) {
  .fv-spec-value {
    gap: 0.125rem;
  }
}
.fv-spec-value strong {
  color: var(--blue-color);
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 900px) {
  .fv-spec-value strong {
    font-size: 2.75rem;
  }
}
.fv-spec-unit {
  font-size: 1.125rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .fv-spec-unit {
    font-size: 0.75rem;
  }
}
.fv-spec-unit small {
  font-size: 0.5rem;
}
.fv-spec-unit-blue {
  color: var(--blue-color);
  font-size: 1.5rem;
}
@media (max-width: 1120px) {
  .fv-spec-unit-blue {
    font-size: 1.25rem;
  }
}
@media (max-width: 900px) {
  .fv-spec-unit-blue {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .fv-spec-unit-blue {
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .fv-spec-unit-blue {
    font-size: 0.875rem;
  }
}
.fv-spec-detail {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .fv-spec-detail {
    margin-top: 1rem;
    font-size: 0.6875rem;
  }
}
@media (max-width: 767px) {
  .fv-spec-detail {
    margin-top: 0.75rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .fv-spec-detail {
    margin-top: 0.5rem;
    font-size: 0.6875rem;
  }
}
.fv-spec-caption {
  margin-top: 0.875rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .fv-spec-caption {
    margin-top: 0.625rem;
    font-size: 0.6875rem;
  }
}
@media (max-width: 480px) {
  .fv-spec-caption {
    font-size: 0.625rem;
  }
}
.fv-spec-capacity {
  margin-top: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.35;
}
.fv-spec-capacity span {
  color: var(--blue-color);
  font-size: 0.875rem;
}
@media (max-width: 1120px) {
  .fv-spec-capacity {
    font-size: 0.875rem;
  }
  .fv-spec-capacity span {
    font-size: 1.125rem;
  }
}
@media (max-width: 900px) {
  .fv-spec-capacity {
    font-size: 0.75rem;
  }
  .fv-spec-capacity span {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .fv-spec-capacity {
    font-size: 0.875rem;
  }
  .fv-spec-capacity span {
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .fv-spec-capacity {
    font-size: 0.75rem;
  }
  .fv-spec-capacity span {
    font-size: 0.9375rem;
  }
}
.fv-spec-small {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  line-height: 1.5;
}
@media (max-width: 1120px) {
  .fv-spec-small {
    font-size: 0.625rem;
  }
}
@media (max-width: 900px) {
  .fv-spec-small {
    font-size: 0.5rem;
  }
}
@media (max-width: 767px) {
  .fv-spec-small {
    font-size: 0.625rem;
  }
}
@media (max-width: 480px) {
  .fv-spec-small {
    margin-top: 0.375rem;
    font-size: 0.5rem;
  }
}
.fv-spec-connect {
  display: flex;
  margin-top: 1.25rem;
  align-items: baseline;
  justify-content: center;
  gap: 0.875rem;
}
.fv-spec-connect span {
  font-size: 1rem;
}
.fv-spec-connect strong {
  color: var(--blue-color);
  font-size: 4rem;
  line-height: 1;
}
@media (max-width: 1120px) {
  .fv-spec-connect {
    margin-top: 1rem;
    gap: 0.625rem;
  }
  .fv-spec-connect span {
    font-size: 0.875rem;
  }
  .fv-spec-connect strong {
    font-size: 3rem;
  }
}
@media (max-width: 900px) {
  .fv-spec-connect {
    gap: 0.5rem;
  }
  .fv-spec-connect span {
    font-size: 0.75rem;
  }
  .fv-spec-connect strong {
    font-size: 2.75rem;
  }
}
@media (max-width: 767px) {
  .fv-spec-connect span {
    font-size: 0.875rem;
  }
  .fv-spec-connect strong {
    font-size: 2.75rem;
  }
}
@media (max-width: 480px) {
  .fv-spec-connect {
    margin-top: 0.75rem;
    gap: 0.375rem;
  }
  .fv-spec-connect span {
    font-size: 0.6875rem;
  }
  .fv-spec-connect strong {
    font-size: 2.25rem;
  }
}
.fv-spec-range {
  margin-top: 1.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 1120px) {
  .fv-spec-range {
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 900px) {
  .fv-spec-range {
    margin-top: 1.25rem;
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  .fv-spec-range {
    font-size: 1.375rem;
  }
}
@media (max-width: 480px) {
  .fv-spec-range {
    margin-top: 1.125rem;
    font-size: 1rem;
  }
}
.fv-spec-wifi {
  display: block;
  width: 6.25rem;
  height: auto;
  margin: 1.25rem auto 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1120px) {
  .fv-spec-wifi {
    width: 5.625rem;
    margin-top: 1rem;
  }
}
@media (max-width: 900px) {
  .fv-spec-wifi {
    width: 4.5rem;
  }
}
@media (max-width: 767px) {
  .fv-spec-wifi {
    width: 5rem;
  }
}
@media (max-width: 480px) {
  .fv-spec-wifi {
    width: 4rem;
    margin-top: 0.75rem;
  }
}
.fv-spec-area {
  display: block;
  width: 9rem;
  height: auto;
  margin: 1.5rem auto 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1120px) {
  .fv-spec-area {
    width: 8rem;
    margin-top: 1.25rem;
  }
}
@media (max-width: 900px) {
  .fv-spec-area {
    width: 6.5rem;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .fv-spec-area {
    width: 7rem;
  }
}
@media (max-width: 480px) {
  .fv-spec-area {
    width: 5.5rem;
    margin-top: 0.875rem;
  }
}

.trouble {
  padding-block: 5rem;
  background-color: var(--accent-white);
  text-align: center;
}
@media (max-width: 900px) {
  .trouble {
    padding-block: 4rem;
  }
}
@media (max-width: 767px) {
  .trouble {
    padding-block: 3.5rem;
  }
}
@media (max-width: 480px) {
  .trouble {
    padding-block: 3rem;
  }
}
.trouble-title {
  font-size: clamp(2rem, 2.78vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .trouble-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .trouble-title {
    font-size: 1.5rem;
  }
}
.trouble-title span {
  color: var(--accent-blue);
}
.trouble-list {
  display: grid;
  width: min(72rem, 90%);
  margin: 3.125rem auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.25rem;
}
@media (max-width: 1120px) {
  .trouble-list {
    width: min(64rem, 100% - 3rem);
    gap: 1.5rem;
  }
}
@media (max-width: 900px) {
  .trouble-list {
    width: calc(100% - 2rem);
    margin-top: 2.5rem;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .trouble-list {
    width: min(28rem, 100% - 2rem);
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
@media (max-width: 480px) {
  .trouble-list {
    margin-top: 2rem;
  }
}
.trouble-item {
  display: flex;
  min-width: 0;
  min-height: 15.5rem;
  padding: 2rem 1.25rem 1.75rem;
  border-radius: 1.375rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background-color: var(--white-color);
  box-shadow: 0 1rem 2.5rem var(--shadow-color);
}
@media (max-width: 1120px) {
  .trouble-item {
    min-height: 14.5rem;
    padding: 1.75rem 1rem 1.5rem;
  }
}
@media (max-width: 900px) {
  .trouble-item {
    min-height: 13.5rem;
    padding: 1.5rem 0.75rem;
    border-radius: 1.125rem;
  }
}
@media (max-width: 767px) {
  .trouble-item {
    min-height: auto;
    padding: 1.75rem 1.25rem;
  }
}
.trouble-item-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .trouble-item-title {
    font-size: 1.5rem;
  }
}
.trouble-item-lead {
  color: var(--text-light-color);
  font-size: 0.875rem;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .trouble-item-lead {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .trouble-item-lead {
    font-size: 0.875rem;
  }
}
.trouble-icon {
  display: block;
  width: 6rem;
  height: 6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1120px) {
  .trouble-icon {
    width: 5.5rem;
    height: 5.5rem;
  }
}
@media (max-width: 900px) {
  .trouble-icon {
    width: 4.75rem;
    height: 4.75rem;
  }
}
@media (max-width: 767px) {
  .trouble-icon {
    width: 5.25rem;
    height: 5.25rem;
  }
}
.trouble-lead {
  margin-top: 3rem;
  color: var(--text-color);
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .trouble-lead {
    margin-top: 2.5rem;
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .trouble-lead {
    width: calc(100% - 2rem);
    margin: 2.25rem auto 0;
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .trouble-lead {
    font-size: 1rem;
  }
}
.trouble-lead span {
  color: var(--accent-blue);
  font-weight: 700;
}

.reasons {
  position: relative;
  overflow: hidden;
  padding-block: 5rem;
  text-align: center;
}
@media (max-width: 900px) {
  .reasons {
    padding-block: 4rem;
  }
}
@media (max-width: 767px) {
  .reasons {
    padding-block: 3.5rem;
  }
}
@media (max-width: 480px) {
  .reasons {
    padding-block: 3rem;
  }
}
.reasons-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.reasons .wrapper {
  position: relative;
  z-index: 1;
}
.reasons-layout {
  position: relative;
  width: min(78.75rem, 100% - 3rem);
  margin: 3.5rem auto 0;
}
@media (max-width: 900px) {
  .reasons-layout {
    width: min(62rem, 100% - 2rem);
  }
}
@media (max-width: 767px) {
  .reasons-layout {
    width: min(40rem, 100% - 2rem);
    margin-top: 2.5rem;
  }
}
@media (max-width: 480px) {
  .reasons-layout {
    width: calc(100% - 1.5rem);
  }
}
.reasons-product {
  position: absolute;
  z-index: 1;
  top: 2%;
  left: 50%;
  width: min(35vw, 25.25rem);
  height: auto;
  transform: translateX(-50%);
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
@media (max-width: 1120px) {
  .reasons-product {
    top: 10%;
    width: min(30vw, 21rem);
  }
}
@media (max-width: 900px) {
  .reasons-product {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: min(55%, 20rem);
    margin: 0 auto 2rem;
    transform: none;
  }
}
@media (max-width: 767px) {
  .reasons-product {
    width: min(65%, 18rem);
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 480px) {
  .reasons-product {
    width: min(75%, 16rem);
  }
}
.reasons-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 10rem;
  gap: 4.5rem 3rem;
  align-items: stretch;
}
@media (max-width: 1120px) {
  .reasons-list {
    grid-template-columns: repeat(2, minmax(0, clamp(18rem, 32vw, 22.5rem)));
    grid-auto-rows: auto;
    justify-content: space-between;
    gap: 3.5rem 2rem;
  }
}
@media (max-width: 900px) {
  .reasons-list {
    gap: 1.5rem;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .reasons-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .reasons-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.reasons-item {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 9.5rem;
  padding: 1.5rem;
  align-items: center;
  background-color: var(--white-color);
  gap: 1rem;
}
@media (max-width: 900px) {
  .reasons-item {
    min-height: 9rem;
    padding: 1.25rem;
  }
}
@media (max-width: 767px) {
  .reasons-item {
    min-height: 11rem;
    padding: 1.5rem 1rem 1rem;
  }
}
@media (max-width: 480px) {
  .reasons-item {
    min-height: 9.5rem;
    padding: 1.25rem 1rem;
  }
}
.reasons-item-01 {
  grid-column: 1/span 4;
  grid-row: 1;
}
.reasons-item-02 {
  grid-column: 9/span 4;
  grid-row: 1;
}
.reasons-item-03 {
  grid-column: 1/span 4;
  grid-row: 2;
}
.reasons-item-04 {
  grid-column: 9/span 4;
  grid-row: 2;
}
.reasons-item-05 {
  grid-column: 5/span 4;
  grid-row: 3;
}
@media (max-width: 1120px) {
  .reasons-item-01, .reasons-item-02, .reasons-item-03, .reasons-item-04 {
    grid-column: auto;
    grid-row: auto;
  }
  .reasons-item-05 {
    grid-column: 1/-1;
    grid-row: auto;
    width: clamp(18rem, 32vw, 22.5rem);
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .reasons-item-05 {
    width: calc((100% - 1.5rem) / 2);
  }
}
@media (max-width: 480px) {
  .reasons-item-05 {
    grid-column: auto;
    width: 100%;
  }
}
.reasons-number {
  position: absolute;
  z-index: 1;
  top: 0.5rem;
  left: 0.5rem;
  color: var(--accent-blue);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .reasons-number {
    top: 0.375rem;
    left: 0.5rem;
    font-size: 0.875rem;
  }
}
.reasons-icon {
  display: grid;
  flex: 0 0 auto;
  width: 4.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  place-items: center;
  color: var(--accent-blue);
  background-color: var(--bg-white);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .reasons-icon {
    width: 3.75rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 767px) {
  .reasons-icon {
    width: 4rem;
  }
}
@media (max-width: 480px) {
  .reasons-icon {
    width: 4.25rem;
  }
}
.reasons-content {
  flex: 1;
  min-width: 0;
}
.reasons-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 1120px) {
  .reasons-item-title {
    font-size: 1rem;
    white-space: normal;
  }
}
@media (max-width: 767px) {
  .reasons-item-title {
    font-size: 0.9375rem;
  }
}
@media (max-width: 480px) {
  .reasons-item-title {
    font-size: 1rem;
  }
}
.reasons-text {
  margin-top: 0.5rem;
  color: var(--gray-color);
  font-size: 0.75rem;
  line-height: 1.65;
  text-align: left;
}
@media (max-width: 900px) {
  .reasons-text {
    font-size: 0.6875rem;
  }
}
@media (max-width: 480px) {
  .reasons-text {
    font-size: 0.75rem;
  }
}

.compare {
  padding-block: 5rem;
  text-align: center;
  background-color: var(--bg-white);
}
@media (max-width: 900px) {
  .compare {
    padding-block: 4rem;
  }
}
@media (max-width: 767px) {
  .compare {
    padding-block: 3.5rem;
  }
}
@media (max-width: 480px) {
  .compare {
    padding-block: 3rem;
  }
}
.compare-layout {
  display: grid;
  grid-template-columns: 24.375rem minmax(0, 1fr);
  width: min(78.75rem, 100% - 3rem);
  margin: 3.125rem auto 0;
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 1120px) {
  .compare-layout {
    grid-template-columns: minmax(18rem, 19.5rem) minmax(0, 1fr);
  }
}
@media (max-width: 900px) {
  .compare-layout {
    grid-template-columns: 1fr;
    width: min(45rem, 100% - 2rem);
  }
}
@media (max-width: 480px) {
  .compare-layout {
    width: calc(100% - 1.5rem);
    margin-top: 2rem;
  }
}
.compare-primary {
  padding: 1.5625rem;
  border: 0.1875rem solid var(--accent-blue);
  border-radius: 1.875rem;
  background-color: #e1eeff;
  box-shadow: 0 1rem 2.5rem rgba(56, 104, 184, 0.1);
}
@media (max-width: 900px) {
  .compare-primary {
    padding: 1.25rem;
    border-radius: 1.5rem;
  }
}
@media (max-width: 480px) {
  .compare-primary {
    padding: 1rem;
    border-width: 0.125rem;
    border-radius: 1.25rem;
  }
}
.compare-primary-title {
  display: grid;
  width: min(17.5rem, 100%);
  min-height: 3.375rem;
  margin-inline: auto;
  border-radius: 9999px;
  place-items: center;
  color: var(--white-color);
  background-color: var(--accent-blue);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .compare-primary-title {
    min-height: 3rem;
    font-size: 1rem;
  }
}
.compare-primary-list {
  margin-top: 1rem;
}
.compare-primary-row {
  display: grid;
  grid-template-columns: 6.75rem minmax(0, 1fr);
  min-height: 4.5rem;
  border-bottom: 0.0625rem solid #dde7f6;
  align-items: center;
  text-align: left;
}
.compare-primary-row:last-child {
  border-bottom: 0;
}
.compare-primary-row dt {
  color: var(--gray-color);
  font-size: 0.8125rem;
  line-height: 1.5;
}
.compare-primary-row dd {
  margin: 0;
  color: var(--accent-blue);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .compare-primary-row {
    grid-template-columns: 8rem minmax(0, 1fr);
  }
}
@media (max-width: 480px) {
  .compare-primary-row {
    grid-template-columns: 6.5rem minmax(0, 1fr);
  }
  .compare-primary-row dd {
    font-size: 1.25rem;
  }
}
.compare-companies {
  min-width: 0;
  padding: 1.75rem;
  border-radius: 1.875rem;
  background-color: var(--white-color);
  box-shadow: 0 1rem 2.5rem rgba(56, 104, 184, 0.1);
}
@media (max-width: 900px) {
  .compare-companies {
    border-radius: 1.5rem;
  }
}
@media (max-width: 767px) {
  .compare-companies {
    padding: 1.25rem;
  }
}
@media (max-width: 480px) {
  .compare-companies {
    padding: 1rem;
    border-radius: 1.25rem;
  }
}
.compare-table-scroll {
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}
.compare-table {
  width: 100%;
  min-width: 37.5rem;
  border-collapse: collapse;
  table-layout: fixed;
}
.compare-table th {
  height: 3.375rem;
  padding: 0 1.71875rem 0.375rem;
  font-size: 1rem;
  font-weight: 700;
}
.compare-table th span {
  display: grid;
  width: 100%;
  min-height: 3rem;
  border-radius: 9999px;
  place-items: center;
  background-color: #f6f8fc;
}
.compare-table td {
  height: 4.5rem;
  border-bottom: 0.0625rem solid #dde7f6;
  padding-inline: 1rem;
  color: #10192d;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
}
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}
@media (max-width: 480px) {
  .compare-table {
    min-width: 34rem;
  }
  .compare-table th {
    padding-inline: 0.75rem;
  }
  .compare-table td {
    padding-inline: 0.5rem;
    font-size: 0.875rem;
  }
}
.compare-message {
  margin-top: 3.125rem;
  color: var(--accent-blue);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .compare-message {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .compare-message {
    font-size: 1rem;
  }
}

.product {
  padding-block: 5rem;
  background-color: var(--white-color);
  text-align: center;
}
@media (max-width: 900px) {
  .product {
    padding-block: 4rem;
  }
}
@media (max-width: 767px) {
  .product {
    padding-block: 3.5rem;
  }
}
@media (max-width: 480px) {
  .product {
    padding-block: 3rem;
  }
}
.product-weight {
  margin-top: 0.9375rem;
  color: var(--accent-blue);
  line-height: 1;
}
.product-weight strong {
  display: inline-flex;
  align-items: flex-end;
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 1;
}
.product-weight small {
  margin: 0 0 0.75rem 0.5rem;
  font-size: 3.4375rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .product-weight {
    margin-top: 1.5rem;
  }
  .product-weight strong {
    font-size: 6rem;
  }
  .product-weight small {
    margin-bottom: 0.625rem;
    font-size: 2.75rem;
  }
}
@media (max-width: 480px) {
  .product-weight strong {
    font-size: 5rem;
  }
  .product-weight small {
    font-size: 2.25rem;
  }
}
.product-copy {
  margin-top: 1rem;
  color: #10192d;
  font-size: 1.875rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .product-copy {
    padding-inline: 1rem;
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .product-copy {
    font-size: 1rem;
  }
}
.product-lead {
  margin-top: 0.25rem;
  color: var(--gray-color);
  font-size: 1.875rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .product-lead {
    padding-inline: 1rem;
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .product-lead {
    font-size: 0.9375rem;
  }
}
.product-table {
  width: min(62.5rem, 100% - 3rem);
  margin: 3.125rem auto 0;
  border-collapse: collapse;
  table-layout: fixed;
}
@media (max-width: 767px) {
  .product-table {
    width: min(31.25rem, 100% - 2rem);
    margin-top: 2.5rem;
  }
}
@media (max-width: 480px) {
  .product-table {
    width: calc(100% - 1.5rem);
  }
}
.product-table tr {
  height: 4.125rem;
  border-bottom: 0.0625rem solid var(--border-line);
}
@media (max-width: 767px) {
  .product-table tr {
    display: grid;
    height: auto;
    grid-template-columns: 1fr;
    padding-block: 0.75rem;
  }
}
.product-table th,
.product-table td {
  padding: 1rem 1.625rem;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .product-table th,
.product-table td {
    width: 100%;
    padding: 0;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .product-table th,
.product-table td {
    font-size: 0.875rem;
  }
}
.product-table th {
  width: 34.2%;
  color: var(--gray-color);
  font-weight: 700;
}
@media (max-width: 767px) {
  .product-table th {
    width: 100%;
  }
}
.product-table td {
  width: 65.8%;
  color: var(--text-color);
  font-weight: 400;
}
@media (max-width: 767px) {
  .product-table td {
    width: 100%;
    margin-top: 0.375rem;
  }
}
.product-guide {
  display: grid;
  width: min(62.5rem, 100% - 3rem);
  min-height: 19.5rem;
  margin: 3rem auto 0;
  padding: 1.25rem 1.5625rem;
  grid-template-columns: 18.75rem minmax(0, 1fr);
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
  border-radius: 1.25rem;
  background-color: var(--bg-white);
  text-align: left;
}
@media (max-width: 900px) {
  .product-guide {
    grid-template-columns: 16rem minmax(0, 1fr);
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media (max-width: 767px) {
  .product-guide {
    display: block;
    width: min(31.25rem, 100% - 2rem);
    min-height: auto;
    padding: 1.75rem 1.25rem;
  }
}
@media (max-width: 480px) {
  .product-guide {
    width: 100%;
    padding: 1.5rem 1rem;
  }
}
.product-guide-heading {
  padding-top: 0.125rem;
}
.product-guide-label {
  color: var(--accent-blue);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.product-guide-title {
  margin-top: 1rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .product-guide-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .product-guide-title {
    margin-top: 0.75rem;
    white-space: normal;
  }
}
.product-guide-subtitle {
  margin-top: 0.75rem;
  color: var(--gray-color);
  font-size: 0.875rem;
  line-height: 1.5;
}
.product-guide-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1.5rem 0;
}
@media (max-width: 767px) {
  .product-guide-list {
    margin-top: 2rem;
    gap: 1rem 1.5rem;
  }
}
.product-guide-item {
  grid-column: span 2;
  text-align: center;
}
@media (max-width: 767px) {
  .product-guide-item {
    flex-basis: calc(50% - 0.5rem);
  }
}
.product-guide-item:nth-child(5) {
  grid-column: 2/span 2;
}
.product-guide-item:nth-child(6) {
  grid-column: 4/span 2;
}
.product-guide-item:nth-child(7) {
  grid-column: 6/span 2;
}
.product-guide-icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-guide-name {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
.product-guide-data {
  margin-top: 0.375rem;
  color: var(--accent-blue);
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.45;
  white-space: nowrap;
}
.product-guide-data strong {
  font-weight: 700;
}
.product-guide-note {
  color: var(--gray-color);
  font-size: 0.625rem;
  line-height: 1.5;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .product-guide-note {
    position: static;
    margin-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .product-guide-list {
    margin-top: 2rem;
    gap: 1rem 1.5rem;
  }
  .product-guide-item {
    flex-basis: calc(50% - 0.5rem);
  }
}

.plan {
  padding-block: 5.625rem;
  background-color: var(--bg-white);
  text-align: center;
}
@media (max-width: 900px) {
  .plan {
    padding-block: 4.5rem;
  }
}
@media (max-width: 767px) {
  .plan {
    padding-block: 3.5rem;
  }
}
@media (max-width: 480px) {
  .plan {
    padding-block: 3rem;
  }
}
.plan .section-subtitle {
  text-align: center;
}
.plan-summary {
  display: grid;
  width: min(62.5rem, 100%);
  margin: 3.125rem auto 0;
  padding: 2.75rem 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 6.25rem;
  background-color: var(--white-color);
  box-shadow: 0 1rem 2.5rem rgba(56, 104, 184, 0.1);
}
@media (max-width: 767px) {
  .plan-summary {
    padding: 2rem 1.5rem;
    grid-template-columns: 1fr;
    border-radius: 2rem;
  }
}
@media (max-width: 480px) {
  .plan-summary {
    padding: 1.75rem 1rem;
  }
}
.plan-summary-item {
  display: grid;
  justify-items: center;
  align-content: center;
}
.plan-summary-item:nth-child(2) {
  border-left: 0.0625rem solid var(--border-line);
}
@media (max-width: 767px) {
  .plan-summary-item:nth-child(2) {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 0.0625rem solid var(--border-line);
    border-left: 0;
  }
}
.plan-summary-label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.plan-summary-price, .plan-summary-capacity {
  display: flex;
  margin-top: 1rem;
  align-items: flex-end;
  justify-content: center;
  color: var(--accent-blue);
  line-height: 1;
}
.plan-summary-price strong, .plan-summary-capacity strong {
  font-size: 4.5rem;
  font-weight: 700;
}
.plan-summary-price span, .plan-summary-capacity span {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.plan-summary-price small, .plan-summary-capacity small {
  margin-left: 0.25rem;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .plan-summary-price strong, .plan-summary-capacity strong {
    font-size: 3.75rem;
  }
  .plan-summary-price span, .plan-summary-capacity span {
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .plan-summary-price strong, .plan-summary-capacity strong {
    font-size: 3.25rem;
  }
}
.plan-summary-tax, .plan-summary-limit {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}
.plan-points {
  display: grid;
  width: min(65rem, 100%);
  margin: 3rem auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 767px) {
  .plan-points {
    width: min(31.25rem, 100%);
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.plan-point {
  display: flex;
  min-height: 6.75rem;
  padding: 1.25rem 1.5rem;
  align-items: center;
  gap: 1.25rem;
  border-radius: 1rem;
  background-color: var(--white-color);
  text-align: left;
}
@media (max-width: 900px) {
  .plan-point {
    padding: 1rem;
    gap: 0.875rem;
  }
}
@media (max-width: 767px) {
  .plan-point {
    min-height: 5.5rem;
    padding: 1rem 1.25rem;
  }
}
.plan-point-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background-color: var(--circle-white);
  color: var(--accent-blue);
  font-size: 1.25rem;
  font-weight: 700;
}
.plan-point-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.plan-point-text {
  margin-top: 0.375rem;
  color: var(--gray-color);
  font-size: 0.75rem;
  line-height: 1.5;
}
.plan-notes {
  width: min(65rem, 100%);
  margin: 2.75rem auto 0;
  color: var(--text-color);
  font-size: 0.6875rem;
  line-height: 1.7;
  text-align: left;
}
.plan-notes li {
  padding-left: 1em;
  text-indent: -1em;
}
.plan-notes li::before {
  content: "・";
}
@media (max-width: 767px) {
  .plan-notes {
    margin-top: 2rem;
    font-size: 0.625rem;
  }
}

.campaign {
  padding-top: 5.625rem;
  background-color: var(--white-color);
}
@media (max-width: 900px) {
  .campaign {
    padding-top: 4.5rem;
  }
}
@media (max-width: 767px) {
  .campaign {
    padding-top: 3.5rem;
  }
}
@media (max-width: 480px) {
  .campaign {
    padding-top: 3rem;
  }
}
.campaign-card {
  width: 100%;
  padding: 3.75rem 2rem;
  border: 0.125rem solid var(--accent-blue);
  border-radius: 1.5rem;
  background-color: var(--bg-white);
  text-align: center;
}
@media (max-width: 767px) {
  .campaign-card {
    padding: 3rem 1.25rem;
  }
}
@media (max-width: 480px) {
  .campaign-card {
    padding: 2.5rem 1rem;
    border-radius: 1.25rem;
  }
}
.campaign-label {
  color: var(--accent-blue);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.campaign-title {
  margin-top: 1.5rem;
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .campaign-title {
    margin-top: 1rem;
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .campaign-title {
    font-size: 1.625rem;
  }
}
.campaign-lead {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .campaign-lead {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}
.campaign-cashback {
  display: grid;
  margin-top: 2rem;
  justify-items: center;
  color: var(--accent-blue);
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .campaign-cashback {
    margin-top: 1.5rem;
  }
}
.campaign-cashback-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.campaign-cashback-price strong {
  font-size: 5.5rem;
  font-weight: 700;
}
.campaign-cashback-price small {
  margin: 0 0 0.625rem 0.375rem;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .campaign-cashback-price strong {
    font-size: 4.5rem;
  }
  .campaign-cashback-price small {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .campaign-cashback-price strong {
    font-size: 3.75rem;
  }
}
.campaign-cashback-text {
  margin-top: 1rem;
  font-size: 3.5rem;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .campaign-cashback-text {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .campaign-cashback-text {
    font-size: 2rem;
  }
}
.campaign-button {
  min-width: 19.5rem;
  margin-top: 2.25rem;
  padding: 1.125rem 2rem;
  border-radius: 3rem;
  background-color: var(--line-color);
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: opacity 0.3s;
}
.campaign-button:hover {
  opacity: 0.75;
}
@media (max-width: 480px) {
  .campaign-button {
    width: min(17.5rem, 100%);
    min-width: 0;
    padding: 1rem 1.5rem;
  }
}

.works {
  padding-block: 3.125rem 5.625rem;
  background-color: var(--white-color);
}
@media (max-width: 900px) {
  .works {
    padding-block: 3rem 4.5rem;
  }
}
@media (max-width: 767px) {
  .works {
    padding-block: 3rem 3.5rem;
  }
}
.works-card {
  width: 100%;
  margin-inline: auto;
  padding: 4rem 2rem;
  border: 0.125rem solid var(--accent-blue);
  border-radius: 2rem;
  background-color: var(--bg-green);
  text-align: center;
}
@media (max-width: 767px) {
  .works-card {
    padding: 3rem 1.25rem;
    border-radius: 1.5rem;
  }
}
.works-label {
  color: var(--accent-blue);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.works-title {
  margin-top: 1rem;
  color: var(--text-color);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
}
.works-description {
  margin-top: 1.5rem;
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.8;
}
.works #sb_instagram {
  width: 100%;
  margin-top: 2rem;
  text-align: left;
}
.works .sbi_header_text,
.works .sbi_follow_btn {
  text-align: center;
}
.works .sbi_follow_btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .works-description {
    font-size: 0.875rem;
  }
  .works #sb_instagram {
    margin-top: 1.5rem;
  }
}

.howto {
  padding-block: 5.625rem;
  background-color: var(--white-color);
  text-align: center;
}
@media (max-width: 900px) {
  .howto {
    padding-block: 4.5rem;
  }
}
@media (max-width: 767px) {
  .howto {
    padding-block: 3.5rem;
  }
}
@media (max-width: 480px) {
  .howto {
    padding-block: 3rem;
  }
}
.howto .section-subtitle {
  text-align: center;
}
.howto-list {
  display: grid;
  width: min(77.5rem, 100%);
  margin: 3.125rem auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}
@media (max-width: 900px) {
  .howto-list {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .howto-list {
    width: min(31.25rem, 100%);
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 3rem auto 0;
  }
}
.howto-card {
  display: grid;
  overflow: hidden;
  aspect-ratio: 600/337;
  border-radius: 1.5rem;
  color: var(--white-color);
}
@media (max-width: 480px) {
  .howto-card {
    border-radius: 1rem;
  }
}
.howto-card-image, .howto-card-body {
  width: 100%;
  height: 100%;
  grid-area: 1/1;
}
.howto-card-image {
  -o-object-fit: cover;
     object-fit: cover;
}
.howto-card-body {
  display: grid;
  padding: 2rem;
  align-content: center;
  justify-items: center;
  background: linear-gradient(rgba(16, 25, 45, 0.08), rgba(16, 25, 45, 0.48));
}
@media (max-width: 480px) {
  .howto-card-body {
    padding: 1.25rem;
  }
}
.howto-card-number {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}
.howto-card-title {
  margin-top: 1.25rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 900px) {
  .howto-card-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .howto-card-title {
    margin-top: 0.75rem;
    font-size: 1.625rem;
  }
}
.howto-card-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .howto-card-text {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .howto-card-text {
    margin-top: 0.5rem;
    font-size: 0.6875rem;
  }
}

.company {
  padding-block: 5.625rem;
  background-color: var(--white-color);
}
@media (max-width: 900px) {
  .company {
    padding-block: 4.5rem;
  }
}
@media (max-width: 767px) {
  .company {
    padding-block: 3.5rem;
  }
}
@media (max-width: 480px) {
  .company {
    padding-block: 3rem;
  }
}
.company-info {
  width: min(62.5rem, 100%);
  margin: 3.5rem auto 0;
}
@media (max-width: 767px) {
  .company-info {
    margin-top: 2.5rem;
  }
}
.company-info-row {
  display: grid;
  min-height: 5.375rem;
  padding: 1.5rem 2.5rem;
  grid-template-columns: 14rem minmax(0, 1fr);
  align-items: center;
  border-bottom: 0.0625rem solid var(--border-line);
  text-align: left;
}
@media (max-width: 900px) {
  .company-info-row {
    grid-template-columns: 11rem minmax(0, 1fr);
  }
}
@media (max-width: 767px) {
  .company-info-row {
    min-height: auto;
    padding: 1.25rem 1rem;
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}
@media (max-width: 480px) {
  .company-info-row {
    padding: 1rem 0.5rem;
  }
}
.company-info-row dt {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .company-info-row dt {
    font-size: 0.875rem;
  }
}
.company-info-row dd {
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .company-info-row dd {
    font-size: 0.8125rem;
  }
}
.company-map {
  overflow: hidden;
  width: 100%;
  height: 25rem;
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .company-map {
    margin-top: 2.5rem;
  }
}
@media (max-width: 480px) {
  .company-map {
    border-radius: 1rem;
  }
}
.company-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact {
  padding-block: 5.625rem;
  background-color: var(--bg-white);
}
@media (max-width: 900px) {
  .contact {
    padding-block: 4.5rem;
  }
}
@media (max-width: 767px) {
  .contact {
    padding-block: 3.5rem;
  }
}
@media (max-width: 480px) {
  .contact {
    padding-block: 3rem;
  }
}
.contact-form,
.contact > .wrapper > .wpcf7 {
  width: min(45rem, 100%);
  margin: 4rem auto 0;
  padding: 3rem;
  border-radius: 1.75rem;
  background-color: var(--white-color);
}
@media (max-width: 767px) {
  .contact-form,
.contact > .wrapper > .wpcf7 {
    width: 100%;
    margin-top: 3rem;
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .contact-form,
.contact > .wrapper > .wpcf7 {
    margin-top: 2.5rem;
    padding: 1.5rem 1rem;
    border-radius: 1.25rem;
  }
}
.contact-fields {
  display: grid;
  gap: 1.75rem;
}
.contact-field {
  text-align: left;
}
.contact-label {
  display: flex;
  margin-bottom: 0.75rem;
  align-items: flex-end;
  gap: 0.375rem;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
.contact-label span {
  font-size: 0.75rem;
}
.contact-input, .contact-textarea {
  display: block;
  width: 100%;
  border: 0.0625rem solid var(--border-line);
  border-radius: 0.875rem;
  background-color: var(--white-color);
  color: var(--text-color);
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-input::-moz-placeholder, .contact-textarea::-moz-placeholder {
  color: var(--text-gray);
}
.contact-input::placeholder, .contact-textarea::placeholder {
  color: var(--text-gray);
}
.contact-input:focus, .contact-textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 0.1875rem var(--shadow-color);
}
.contact-input {
  height: 4.5rem;
  padding-inline: 1.25rem;
}
@media (max-width: 480px) {
  .contact-input {
    height: 3.75rem;
    padding-inline: 1rem;
    font-size: 0.875rem;
  }
}
.contact-textarea {
  min-height: 10rem;
  padding: 1.25rem;
  line-height: 1.7;
  resize: vertical;
}
@media (max-width: 480px) {
  .contact-textarea {
    min-height: 8rem;
    padding: 1rem;
    font-size: 0.875rem;
  }
}
.contact-submit {
  display: block;
  width: min(23.5rem, 100%);
  margin: 2.5rem auto 0;
  padding: 1.25rem 2rem;
  border: 0;
  border-radius: 3rem;
  background-color: var(--accent-blue);
  color: var(--white-color);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s;
}
.contact-submit:hover {
  opacity: 0.75;
}
@media (max-width: 480px) {
  .contact-submit {
    padding: 1.125rem 1.5rem;
    font-size: 0.875rem;
  }
}
.contact-line {
  display: flex;
  margin-top: 1.5rem;
  padding: 0.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  background-color: var(--bg-green);
}
@media (max-width: 767px) {
  .contact-line {
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }
}
.contact-line p {
  margin: 0;
  padding-left: 0.5rem;
  color: var(--text-green);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .contact-line p {
    padding-left: 0;
  }
}
.contact-line p .contact-line-button {
  align-self: center;
}
.contact-line-button {
  display: inline-flex;
  width: 9.5rem;
  min-height: 3.25rem;
  padding-inline: 1rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  background-color: var(--line-color);
  color: var(--white-color);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  transition: opacity 0.3s;
}
.contact-line-button:hover, .contact-line-button:focus-visible {
  color: var(--white-color);
  opacity: 0.75;
}
@media (max-width: 767px) {
  .contact-line-button {
    width: 15rem;
    align-self: center;
  }
}
.contact .wpcf7-form-control-wrap {
  display: block;
}
.contact .wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  color: #dc3232;
  font-size: 0.75rem;
  line-height: 1.5;
}
.contact .wpcf7-response-output {
  margin: 1.5rem 0 0 !important;
  padding: 0.75rem 1rem !important;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}
.contact .wpcf7-spinner {
  display: block;
  margin: 1rem auto 0;
}
.wpcf7-form.submitting .contact-submit {
  opacity: 0.6;
  pointer-events: none;
}
.contact .wpcf7-form-control[aria-invalid=true] {
  border-color: #dc3232;
}

.service-links {
  padding-block: 6.875rem 5.625rem;
  background-color: var(--white-color);
}
@media (max-width: 900px) {
  .service-links {
    padding-block: 4.5rem;
  }
}
@media (max-width: 767px) {
  .service-links {
    padding-block: 3.5rem;
  }
}
@media (max-width: 480px) {
  .service-links {
    padding-block: 3rem;
  }
}
.service-links-list {
  display: grid;
  width: min(77.5rem, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}
@media (max-width: 900px) {
  .service-links-list {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .service-links-list {
    width: min(31.25rem, 100%);
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.service-card {
  border: 0.125rem solid;
  border-radius: 1.5rem;
  background-color: var(--white-color);
  box-shadow: 0 0.75rem 2rem var(--shadow-color);
}
@media (max-width: 480px) {
  .service-card {
    border-radius: 1.25rem;
  }
}
.service-card-rental {
  border-color: var(--accent-blue);
  background-color: var(--bg-white);
}
.service-card-rental .service-card-badge {
  border-color: var(--border-blue);
  color: var(--accent-blue);
}
.service-card-rental .service-card-label {
  color: var(--accent-blue);
}
.service-card-business {
  border-color: var(--text-orange);
  background-color: var(--white-color);
}
.service-card-business .service-card-badge {
  border-color: #ffd2b2;
  color: var(--text-orange);
}
.service-card-business .service-card-label {
  color: var(--text-orange);
}
.service-card-badge {
  width: min(23.5rem, 100% - 3rem);
  margin: -2rem auto 0;
  padding: 1rem 1.5rem;
  border: 0.125rem solid;
  border-radius: 3rem;
  background-color: var(--white-color);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (max-width: 900px) {
  .service-card-badge {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .service-card-badge {
    width: calc(100% - 2rem);
    margin-top: -1.75rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
}
.service-card-body {
  padding: 1.25rem 1.25rem 1rem;
  text-align: left;
}
@media (max-width: 900px) {
  .service-card-body {
    padding-inline: 1.5rem;
  }
}
@media (max-width: 480px) {
  .service-card-body {
    padding: 1rem;
  }
}
.service-card-label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
.service-card-title {
  margin-top: 1rem;
  color: var(--text-color);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 1120px) {
  .service-card-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .service-card-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .service-card-title {
    margin-top: 0.75rem;
    font-size: 1.125rem;
  }
}
.service-card-text {
  margin-top: 0.75rem;
  color: var(--gray-color);
  font-size: 0.75rem;
  line-height: 1.6;
}
.service-card-button {
  display: block;
  width: min(20rem, 100%);
  margin-top: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: 3rem;
  background-color: var(--line-color);
  color: var(--white-color);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: opacity 0.3s;
}
.service-card-button:hover {
  opacity: 0.75;
}
@media (max-width: 767px) {
  .service-card-button {
    width: 100%;
  }
}

.privacy {
  padding-block: 6rem;
  background-color: var(--bg-white);
}
@media (max-width: 900px) {
  .privacy {
    padding-block: 5rem;
  }
}
@media (max-width: 767px) {
  .privacy {
    padding-block: 4rem;
  }
}
@media (max-width: 480px) {
  .privacy {
    padding-block: 3rem;
  }
}
.privacy-header {
  text-align: center;
}
.privacy-header-en {
  color: var(--accent-blue);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.privacy-header-title {
  margin-top: 0.875rem;
  color: var(--text-color);
  font-size: 3rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .privacy-header-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 480px) {
  .privacy-header-title {
    font-size: 1.75rem;
  }
}
.privacy-content {
  width: min(56rem, 100%);
  margin: 4rem auto 0;
  padding: 4rem;
  border-radius: 1.5rem;
  background-color: var(--white-color);
}
@media (max-width: 767px) {
  .privacy-content {
    margin-top: 3rem;
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .privacy-content {
    margin-top: 2.5rem;
    padding: 2rem 1rem;
    border-radius: 1rem;
  }
}
.privacy-content p,
.privacy-content li,
.privacy-content dt,
.privacy-content dd {
  font-size: 1rem;
  line-height: 2;
}
@media (max-width: 480px) {
  .privacy-content p,
.privacy-content li,
.privacy-content dt,
.privacy-content dd {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.privacy-content ul {
  display: grid;
  margin-top: 1rem;
  padding-left: 1.5rem;
  gap: 0.375rem;
}
.privacy-content li {
  list-style: disc;
}
.privacy-introduction {
  padding-bottom: 2.5rem;
  border-bottom: 0.0625rem solid var(--border-line);
}
.privacy-section {
  margin-top: 2.5rem;
}
.privacy-section h2 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid var(--border-line);
  color: var(--text-color);
  font-size: 1.375rem;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .privacy-section h2 {
    font-size: 1.125rem;
  }
}
.privacy-section p + p {
  margin-top: 1rem;
}
.privacy-note {
  margin-top: 1.25rem;
  color: var(--gray-color);
  font-size: 0.875rem !important;
}
.privacy-contact {
  margin-top: 1.5rem;
}
.privacy-contact div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  padding-block: 1rem;
  border-bottom: 0.0625rem solid var(--border-line);
}
@media (max-width: 767px) {
  .privacy-contact div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
.privacy-contact dt {
  font-weight: 700;
}
.privacy-contact a {
  color: var(--accent-blue);
}
.privacy-sp-br {
  display: none;
}
@media (max-width: 767px) {
  .privacy-sp-br {
    display: block;
  }
}
/*# sourceMappingURL=main.css.map */