@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    font-size: calc(100vw / 40.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  color: #19374c;
  background: #fff;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
}

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

a {
  color: #ff8e0d;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 108rem;
  margin-inline: auto;
  padding-inline: 2.4rem;
}

.site-main {
  padding-block: 2rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  height: 10rem;
  max-width: 128rem;
  margin-inline: auto;
  padding-inline: 4.9rem;
}
@media (max-width: 768px) {
  .site-header__inner {
    height: 6rem;
    padding-inline: 1.2rem;
  }
}
.site-header__logo {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.11rem;
  font-feature-settings: "palt" 1;
}
@media (max-width: 768px) {
  .site-header__logo {
    font-size: 1.122rem;
    letter-spacing: 0.0561rem;
  }
}
.site-header__logo a {
  color: #19374c;
}
.site-header__logo a:hover {
  text-decoration: none;
}
.site-header__actions {
  position: fixed;
  top: 3rem;
  right: max(4.9rem, 50% - 59.1rem);
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 768px) {
  .site-header__actions {
    top: 1rem;
    right: 1.2rem;
    gap: 1.5rem;
  }
}

.campaign-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 3.3rem;
  border-radius: 4rem;
  background: #ff3300;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .campaign-pill {
    gap: 0;
    width: 4rem;
    height: 4rem;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
}
.campaign-pill:hover {
  text-decoration: none;
  opacity: 0.92;
}
.campaign-pill__icon {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
}
@media (max-width: 768px) {
  .campaign-pill__icon {
    width: 3rem;
    height: 3rem;
  }
}
.campaign-pill__text {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .campaign-pill__text {
    display: none;
  }
}
.campaign-pill__lg {
  font-size: 1.7rem;
  font-weight: 700;
}

.menu-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  line-height: 0;
}
.menu-toggle img {
  width: 4rem;
  height: 4rem;
}
@media (max-width: 768px) {
  .menu-toggle img {
    width: 4rem;
    height: 4rem;
  }
}

.gnav {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  width: min(44rem, 100%);
  height: 100dvh;
  padding: 12rem 4.8rem 4.8rem;
  overflow-y: auto;
  background: #000;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s ease, opacity 0.45s ease, visibility 0s linear 0.45s;
}
@media (max-width: 768px) {
  .gnav {
    width: 100%;
    padding: 9.6rem 2.8rem 4rem;
  }
}
.gnav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.gnav__list li {
  opacity: 0;
  transform: translateX(2.4rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gnav__list a {
  display: block;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.gnav__list a:hover {
  text-decoration: none;
  color: #ff8e0d;
}
.gnav__close {
  position: absolute;
  top: 3rem;
  right: 2.8rem;
  width: 4rem;
  height: 4rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.gnav__close::before, .gnav__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.8rem;
  height: 0.2rem;
  background: #fff;
}
.gnav__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.gnav__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-open {
  overflow: hidden;
}
.nav-open .gnav {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.nav-open .gnav__list li {
  opacity: 1;
  transform: none;
}
.nav-open .gnav__list li:nth-child(1) {
  transition-delay: 0.18s;
}
.nav-open .gnav__list li:nth-child(2) {
  transition-delay: 0.24s;
}
.nav-open .gnav__list li:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-open .gnav__list li:nth-child(4) {
  transition-delay: 0.36s;
}
.nav-open .gnav__list li:nth-child(5) {
  transition-delay: 0.42s;
}
.nav-open .gnav__list li:nth-child(6) {
  transition-delay: 0.48s;
}

.site-footer__top {
  padding: 13rem 0 4rem;
  background: rgba(255, 136, 0, 0.95);
}
@media (max-width: 768px) {
  .site-footer__top {
    padding: 4.8rem 0 4rem;
  }
}
.site-footer__trademark {
  max-width: 116rem;
  margin: 0 auto 2rem;
  padding-inline: 3rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: right;
}
.site-footer__nav {
  max-width: 116rem;
  margin-inline: auto;
  padding-inline: 3rem;
}
.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .site-footer__nav ul {
    flex-direction: column;
    align-items: stretch;
  }
}
.site-footer__nav li {
  padding: 0.2rem 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
.site-footer__nav li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .site-footer__nav li {
    padding: 1.3rem 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
  }
  .site-footer__nav li:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  }
}
.site-footer__nav a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.site-footer__nav a:hover {
  text-decoration: underline;
}
.site-footer__bottom {
  padding: 1rem 0;
  background: #fff;
}
.site-footer__copy {
  max-width: 116rem;
  margin: 0 auto;
  padding-inline: 3rem;
  color: #000;
  font-size: 1.2rem;
  text-align: right;
}
@media (max-width: 768px) {
  .site-footer__copy {
    text-align: center;
  }
}

.legal-page {
  padding-block: 15rem 9.6rem;
  background: linear-gradient(180deg, rgba(255, 250, 235, 0.92) 0, rgba(255, 250, 235, 0.5) 22rem, #fff 42rem);
}
@media (max-width: 768px) {
  .legal-page {
    padding-block: 9.2rem 6.4rem;
  }
}
.legal-page__container {
  max-width: 98rem;
}

.legal-document {
  position: relative;
  padding: 5.4rem 6.4rem 6.2rem;
  overflow-wrap: anywhere;
  border: 2px solid rgba(255, 142, 13, 0.18);
  border-top: 0.8rem solid #ff8e0d;
  border-radius: 0.8rem;
  background: #fff;
  box-shadow: 0 1.8rem 4.5rem rgba(25, 55, 76, 0.08);
}
@media (max-width: 768px) {
  .legal-document {
    padding: 3.2rem 2.2rem 3.8rem;
    border-width: 1px;
    border-top-width: 0.6rem;
    box-shadow: 0 1.2rem 2.8rem rgba(25, 55, 76, 0.07);
  }
}

.markdown-body {
  color: #19374c;
  font-feature-settings: "palt" 1;
}
.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body p,
.markdown-body ul {
  margin: 0;
}
.markdown-body h1 {
  color: #19374c;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .markdown-body h1 {
    font-size: 2.6rem;
  }
}
.markdown-body h1::after {
  content: "";
  display: block;
  width: 7.2rem;
  height: 0.5rem;
  margin-top: 1.6rem;
  border-radius: 99.9rem;
  background: #50e2ff;
}
.markdown-body h1 + p {
  margin-top: 2.8rem;
}
@media (max-width: 768px) {
  .markdown-body h1 + p {
    margin-top: 2.2rem;
  }
}
.markdown-body h2 {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 4.4rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(25, 55, 76, 0.14);
  color: #19374c;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .markdown-body h2 {
    gap: 0.9rem;
    margin-top: 3.6rem;
    font-size: 2rem;
  }
}
.markdown-body h2::before {
  content: "";
  flex: 0 0 auto;
  width: 0.8rem;
  height: 2.2rem;
  border-radius: 99.9rem;
  background: #ff8e0d;
}
@media (max-width: 768px) {
  .markdown-body h2::before {
    width: 0.6rem;
    height: 2rem;
  }
}
.markdown-body p {
  color: #19374c;
  font-size: 1.6rem;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .markdown-body p {
    font-size: 1.5rem;
    line-height: 1.85;
  }
}
.markdown-body p + p {
  margin-top: 2.2rem;
}
.markdown-body ul {
  padding-left: 1.4em;
  color: #19374c;
  font-size: 1.6rem;
  line-height: 1.9;
  list-style: disc;
}
.markdown-body li + li {
  margin-top: 0.4rem;
}
.markdown-body li::marker {
  color: #ff8e0d;
}
@media (max-width: 768px) {
  .markdown-body ul {
    font-size: 1.5rem;
    line-height: 1.85;
  }
}
.markdown-body p strong:first-child {
  display: block;
  margin-bottom: 0.4rem;
  color: #0d2f4f;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.55;
}
.markdown-body p strong:first-child + br {
  display: none;
}
.markdown-body a {
  color: #0b6f9f;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}
.markdown-body a:hover {
  color: #ff8e0d;
}

.site-main.front-page {
  padding-block: 0;
}

.hero {
  position: relative;
  min-height: 89.6rem;
  background: url("../img/hero-bg.webp") center/cover no-repeat;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    background-image: url("../img/hero-bg-sp.webp");
    background-position: center top;
  }
}
.hero__inner {
  position: relative;
  max-width: 128rem;
  min-height: inherit;
  margin-inline: auto;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 15.9rem;
  padding-left: 9rem;
}
@media (max-width: 768px) {
  .hero__content {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: 10.5rem 1.2rem 3.6rem;
  }
}
.hero__dots {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 23.8rem;
  height: auto;
}
@media (max-width: 768px) {
  .hero__dots {
    display: none;
  }
}

.hero__heading {
  margin: 0;
  font-size: 7.2rem;
  font-weight: 700;
  letter-spacing: 1.14rem;
  color: #19374c;
  font-feature-settings: "palt" 1;
}
@media (max-width: 768px) {
  .hero__heading {
    font-size: 4.8rem;
    letter-spacing: 0.78rem;
  }
}
.hero__heading-line {
  display: table;
  padding: 0.6rem 1.2rem;
  line-height: 1.18;
  white-space: nowrap;
  background: #fff;
}
.hero__heading-line:first-child {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .hero__heading-line {
    padding: 0.5rem 0.9rem;
  }
  .hero__heading-line:first-child {
    margin-bottom: 0.7rem;
  }
}

.hero__sub {
  margin: 1rem 0 0;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  color: #19374c;
  font-feature-settings: "palt" 1;
  -webkit-text-stroke: 0.6rem #fff;
  paint-order: stroke fill;
}
@media (max-width: 768px) {
  .hero__sub {
    font-size: 2.1rem;
    letter-spacing: 0.105rem;
    -webkit-text-stroke-width: 0.4rem;
  }
}
.hero__sub-accent {
  color: #ff8e0d;
}

.hero__badges {
  display: flex;
  gap: 2.4rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .hero__badges {
    gap: 1.7rem;
    margin-top: auto;
    justify-content: center;
  }
}
.hero__badges img {
  display: block;
  width: 14.2rem;
  height: auto;
}
@media (max-width: 768px) {
  .hero__badges img {
    width: 10rem;
  }
}

.hero__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 54.5rem;
  margin-top: 2.5rem;
  padding: 2rem 2.4rem;
  border-radius: 99rem;
  background: linear-gradient(to right, #ff8e0d, #ff3300);
  box-shadow: 0.6rem 1.1rem 0.8rem rgba(69, 0, 0, 0.2);
  color: #fff;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  transition: filter 0.2s ease;
}
.hero__cta::before {
  content: "";
  position: absolute;
  inset: -0.6rem;
  border-radius: 99rem;
  padding: 0.2rem;
  background: linear-gradient(to right, #ff8e0d, #ff3300);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero__cta:hover {
  text-decoration: none;
  filter: brightness(1.08);
}
.hero__cta:hover .hero__cta-arrow {
  transform: scaleX(-1) translateX(-0.4rem);
}
@media (max-width: 768px) {
  .hero__cta {
    margin-top: 2rem;
    padding: 1.4rem 2rem;
    font-size: 1.7rem;
  }
}
.hero__cta-arrow {
  flex: 0 0 auto;
  width: 1.8rem;
  height: auto;
  transform: scaleX(-1);
  transition: transform 0.2s ease;
}

@keyframes odk-fade-up {
  from {
    opacity: 0;
    transform: translateY(2.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__heading-line,
.hero__sub,
.hero__badges li,
.hero__cta {
  animation: odk-fade-up 0.7s ease both;
}

.hero__heading-line:nth-child(1) {
  animation-delay: 0.15s;
}

.hero__heading-line:nth-child(2) {
  animation-delay: 0.3s;
}

.hero__sub {
  animation-delay: 0.5s;
}

.hero__badges li:nth-child(1) {
  animation-delay: 0.7s;
}

.hero__badges li:nth-child(2) {
  animation-delay: 0.82s;
}

.hero__badges li:nth-child(3) {
  animation-delay: 0.94s;
}

.hero__cta {
  animation-delay: 1.1s;
}

@media (prefers-reduced-motion: reduce) {
  .hero__heading-line,
  .hero__sub,
  .hero__badges li,
  .hero__cta {
    animation: none;
  }
}
.worries {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: -9.6rem;
  padding: 12rem 0 20rem;
  border-radius: 8rem 8rem 0 0;
  background: #fff;
}
@media (max-width: 768px) {
  .worries {
    margin-top: 0;
    padding: 5.6rem 0 9rem;
    border-radius: 3.2rem 3.2rem 0 0;
  }
}
.worries__inner {
  position: relative;
  z-index: 1;
  max-width: 116rem;
  margin-inline: auto;
  padding-inline: 3rem;
}
.worries__head {
  text-align: center;
}
.worries__heading {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #19374c;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.25rem;
  font-feature-settings: "palt" 1;
}
@media (max-width: 768px) {
  .worries__heading {
    letter-spacing: 0.1rem;
  }
}
.worries__heading-l1, .worries__heading-l2 {
  display: block;
  font-size: clamp(26px, 4.5454545455vw, 50px);
}
.worries__heading-num {
  display: inline;
  font-size: clamp(36px, 6.3636363636vw, 70px);
}
.worries__underline {
  position: relative;
  z-index: 0;
  display: block;
  width: 62rem;
  max-width: 90%;
  height: auto;
  margin: -2.4rem auto 0;
}
@media (max-width: 768px) {
  .worries__underline {
    width: 34rem;
    max-width: 100%;
    margin-top: -0.8rem;
  }
}
.worries__list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin: 9rem 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .worries__list {
    gap: 4.8rem;
    margin-top: 4.8rem;
  }
}
.worries__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2.4rem, 5vw, 6rem);
}
.worries__item:nth-child(even) {
  justify-content: flex-end;
}
.worries__item:nth-child(even) .worries__img {
  order: 1;
}
@media (max-width: 768px) {
  .worries__item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.6rem;
    text-align: left;
  }
  .worries__item:nth-child(even) {
    justify-content: flex-start;
  }
  .worries__item:nth-child(even) .worries__img {
    order: 0;
  }
}
.worries__img {
  flex: 0 0 clamp(24rem, 36%, 40rem);
}
@media (max-width: 768px) {
  .worries__img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 40rem;
  }
}
.worries__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
.worries__text {
  flex: 0 1 auto;
}
.worries__label {
  margin: 0 0 1.4rem;
  color: #ff8e0d;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.45;
}
@media (max-width: 768px) {
  .worries__label {
    font-size: 2.1rem;
  }
}
.worries__desc {
  margin: 0;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 768px) {
  .worries__desc {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}

.recommend {
  position: relative;
  z-index: 4;
  overflow: hidden;
  margin-top: -8rem;
  padding: 15rem 0 20rem;
  border-radius: 8rem 8rem 0 0;
  background: #fffaeb;
}
@media (max-width: 768px) {
  .recommend {
    margin-top: -4rem;
    padding: 7.2rem 0 8rem;
    border-radius: 3.2rem 3.2rem 0 0;
  }
}
.recommend__inner {
  position: relative;
  z-index: 1;
  max-width: 116rem;
  margin-inline: auto;
  padding-inline: 3rem;
}
.recommend__head {
  text-align: center;
}
.recommend__heading {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #19374c;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.25rem;
  font-feature-settings: "palt" 1;
}
@media (max-width: 768px) {
  .recommend__heading {
    letter-spacing: 0.1rem;
  }
}
.recommend__heading-l1, .recommend__heading-l2 {
  display: block;
  font-size: clamp(26px, 4.5454545455vw, 50px);
}
.recommend__heading-num {
  font-size: clamp(36px, 6.3636363636vw, 70px);
}
.recommend__underline {
  position: relative;
  z-index: 0;
  display: block;
  width: 64rem;
  max-width: 90%;
  height: auto;
  margin: -2.4rem auto 0;
}
@media (max-width: 768px) {
  .recommend__underline {
    width: 33rem;
    max-width: 100%;
    margin-top: -0.8rem;
  }
}
.recommend__lead {
  margin: 2.8rem 0 0;
  color: rgba(0, 0, 0, 0.95);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.82;
  text-align: center;
}
@media (max-width: 768px) {
  .recommend__lead {
    font-size: 1.6rem;
    text-align: left;
  }
}
.recommend__cards {
  display: flex;
  gap: 6rem;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .recommend__cards {
    flex-direction: column;
    gap: 3.6rem;
    margin-top: 3.6rem;
  }
}

.pc-card {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 768px) {
  .pc-card {
    flex: none;
  }
}
.pc-card__visual {
  position: relative;
}
.pc-card__banner {
  display: table;
  max-width: 100%;
  margin: 0 auto 1.8rem;
  padding: 0.5rem 2rem;
  background: #ff8e0d;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  font-feature-settings: "palt" 1;
}
@media (max-width: 768px) {
  .pc-card__banner {
    font-size: 1.3rem;
  }
}
.pc-card__imgwrap {
  position: relative;
}
.pc-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 520/293;
  object-fit: cover;
  border-radius: 2rem;
}
.pc-card__cat {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  padding: 0.3rem 1.4rem;
  border-radius: 1rem;
  background: #f9cd10;
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.pc-card__cat small {
  font-size: 1.4rem;
}
.pc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}
.pc-card__tags li {
  padding: 0.1rem 1rem;
  border: 1px solid #f59e0b;
  border-radius: 2rem;
  color: #f59e0b;
  font-size: 1.2rem;
  line-height: 1.6;
}
.pc-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.pc-card__name {
  margin: 0;
  color: #000;
  font-size: 2.6rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .pc-card__name {
    font-size: 2rem;
  }
}
.pc-card__price {
  margin: 0;
  color: #000;
  text-align: right;
  line-height: 1.1;
  white-space: nowrap;
}
.pc-card__price b {
  font-size: 4rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .pc-card__price b {
    font-size: 3.2rem;
  }
}
.pc-card__price small {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.br-sp {
  display: none;
}
@media (max-width: 768px) {
  .br-sp {
    display: inline;
  }
}

.models {
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin-top: -8rem;
  padding: 15rem 0 20rem;
  border-radius: 8rem 8rem 0 0;
  background: #fff url("../img/dot-bg.webp") repeat;
}
@media (max-width: 768px) {
  .models {
    margin-top: -4rem;
    padding: 7.2rem 0 7.2rem;
    border-radius: 3.2rem 3.2rem 0 0;
  }
}
.models__inner {
  position: relative;
  z-index: 1;
  max-width: 116rem;
  margin-inline: auto;
  padding-inline: 3rem;
}
.models__head {
  text-align: center;
}
.models__heading {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #19374c;
  font-size: clamp(24px, 4.5454545455vw, 50px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.25rem;
}
@media (max-width: 768px) {
  .models__heading {
    letter-spacing: 0.1rem;
  }
}
.models__heading-line {
  display: block;
}
.models__heading-num {
  font-size: clamp(34px, 6.3636363636vw, 70px);
}
.models__underline {
  position: relative;
  z-index: 0;
  display: block;
  width: 50rem;
  max-width: 90%;
  height: auto;
  margin: -2.2rem auto 0;
}
@media (max-width: 768px) {
  .models__underline {
    width: 30rem;
    max-width: 100%;
    margin-top: -0.8rem;
  }
}
.models__lead {
  margin: 2.8rem 0 0;
  color: rgba(0, 0, 0, 0.95);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.82;
  text-align: center;
}
@media (max-width: 768px) {
  .models__lead {
    font-size: 1.6rem;
    text-align: left;
  }
}
.models__list {
  margin: 6.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media (max-width: 768px) {
  .models__list {
    gap: 5.6rem;
    margin-top: 4rem;
  }
}

.model {
  position: relative;
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
.model--alt {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .model {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .model--alt {
    flex-direction: column-reverse;
  }
}
.model__visual {
  flex: 1 1 52rem;
  min-width: 0;
}
@media (max-width: 768px) {
  .model__visual {
    flex: none;
    width: 100%;
  }
}
.model__img {
  display: block;
  width: 100%;
  aspect-ratio: 520/293;
  object-fit: cover;
  border: 1px solid #efefef;
  border-radius: 2rem;
}
.model__body {
  flex: 1 1 52rem;
  min-width: 0;
}
@media (max-width: 768px) {
  .model__body {
    flex: none;
    width: 100%;
  }
}
.model__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.model__badge {
  padding: 0.5rem 1.4rem;
  background: #f9cd10;
  color: rgba(0, 0, 0, 0.95);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .model__badge {
    font-size: 1.6rem;
  }
}
.model__name {
  color: rgba(0, 0, 0, 0.95);
  font-size: 2.2rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .model__name {
    font-size: 1.9rem;
  }
}
.model__reason {
  display: inline-block;
  margin: 1.4rem 0 0;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #f9cd10;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .model__reason {
    font-size: 1.5rem;
  }
}
.model__price {
  margin: 1.2rem 0 0;
  color: rgba(0, 0, 0, 0.95);
  font-weight: 700;
  line-height: 1.1;
}
.model__price b {
  font-size: 3rem;
  font-weight: 900;
}
.model__price small {
  font-size: 1.4rem;
}
.model__features {
  margin: 2.4rem 0 0;
  padding: 3rem 0;
  border-top: 1px dashed #d3d3d3;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  list-style: none;
}
.model__feat {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  column-gap: 1rem;
  row-gap: 0.6rem;
}
.model__feat-icon {
  grid-row: 1;
  grid-column: 1;
  width: 2.4rem;
  height: 2.4rem;
  background: #ff8e0d;
  -webkit-mask: center/contain no-repeat;
  mask: center/contain no-repeat;
}
.model__feat-icon--monitor {
  -webkit-mask-image: url("../img/icons/mdi-monitor.svg");
  mask-image: url("../img/icons/mdi-monitor.svg");
}
.model__feat-icon--chip {
  -webkit-mask-image: url("../img/icons/mingcute-chip-line.svg");
  mask-image: url("../img/icons/mingcute-chip-line.svg");
}
.model__feat-icon--battery {
  -webkit-mask-image: url("../img/icons/gg-battery.svg");
  mask-image: url("../img/icons/gg-battery.svg");
}
.model__feat-icon--university {
  -webkit-mask-image: url("../img/icons/mdi-university.svg");
  mask-image: url("../img/icons/mdi-university.svg");
}
.model__feat-icon--camera {
  -webkit-mask-image: url("../img/icons/bxs-camera-movie.svg");
  mask-image: url("../img/icons/bxs-camera-movie.svg");
}
.model__feat-icon--pc {
  -webkit-mask-image: url("../img/icons/bi-pc-horizontal.svg");
  mask-image: url("../img/icons/bi-pc-horizontal.svg");
}
.model__feat-title {
  grid-row: 1;
  grid-column: 2;
  margin: 0;
  align-self: center;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.model__feat-desc {
  grid-row: 2;
  grid-column: 1/-1;
  margin: 0;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.85;
}
.model__toggle {
  margin-top: 2.4rem;
  border-top: 1px dashed #d3d3d3;
  border-bottom: 1px dashed #d3d3d3;
}
.model__toggle summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 0;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.model__toggle summary::-webkit-details-marker {
  display: none;
}
.model__toggle summary::after {
  content: "＋";
  font-weight: 400;
}
.model__toggle[open] summary::after {
  content: "－";
}
.model__spec-wrap {
  margin: 0 0 2rem;
}
.model__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 2.4rem;
}
@media (max-width: 768px) {
  .model__cta {
    gap: 1.2rem;
  }
}
.model__btn {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 32rem;
  max-width: 100%;
  padding: 1.3rem 2.4rem;
  border-radius: 99rem;
  background: linear-gradient(to right, #ff8e0d, #ff3300);
  box-shadow: 0.4rem 0.7rem 0.5rem rgba(69, 0, 0, 0.2);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  white-space: nowrap;
  transition: filter 0.2s ease;
}
.model__btn::before {
  content: "";
  position: absolute;
  inset: -0.5rem;
  border-radius: 99rem;
  padding: 0.2rem;
  background: linear-gradient(to right, #ff8e0d, #ff3300);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.model__btn:hover {
  text-decoration: none;
  filter: brightness(1.08);
}
.model__btn:hover img {
  transform: scaleX(-1) translateX(-0.4rem);
}
.model__btn img {
  width: 1.2rem;
  height: auto;
  transform: scaleX(-1);
  transition: transform 0.2s ease;
}
.model__cta-note {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.2rem;
  line-height: 1.7;
  white-space: nowrap;
}

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.2rem;
  line-height: 1.5;
}
.spec-table th,
.spec-table td {
  padding: 0.8rem 1.2rem;
  border-right: 1px solid #fabe00;
  border-bottom: 1px solid #fabe00;
  text-align: left;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.95);
  font-weight: 400;
}
.spec-table th {
  width: 10rem;
  white-space: nowrap;
  border-left: 1px solid #fabe00;
}
.spec-table tr:first-child th,
.spec-table tr:first-child td {
  border-top: 1px solid #fabe00;
}
.spec-table tr:first-child th {
  border-top-left-radius: 1rem;
}
.spec-table tr:first-child td {
  border-top-right-radius: 1rem;
}
.spec-table tr:last-child th {
  border-bottom-left-radius: 1rem;
}
.spec-table tr:last-child td {
  border-bottom-right-radius: 1rem;
}
.spec-table tr:nth-child(odd) th,
.spec-table tr:nth-child(odd) td {
  background: #fff;
}
.spec-table tr:nth-child(even) th,
.spec-table tr:nth-child(even) td {
  background: #fffaeb;
}
@media (max-width: 768px) {
  .spec-table th {
    width: 8rem;
  }
}

.flow {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .flow {
    margin-top: 5.6rem;
  }
}
.flow__head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2.8rem 4rem;
  border-radius: 2rem;
  background: #ffc700;
  cursor: pointer;
  list-style: none;
}
.flow__head::-webkit-details-marker {
  display: none;
}
@media (max-width: 768px) {
  .flow__head {
    padding: 1.8rem 2rem;
    gap: 1rem;
  }
}
.flow[open] .flow__head {
  border-radius: 2rem 2rem 0 0;
}
.flow__head-icon {
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  background: #19374c;
  -webkit-mask: url("../img/icons/prime-book.svg") center/contain no-repeat;
  mask: url("../img/icons/prime-book.svg") center/contain no-repeat;
}
@media (max-width: 768px) {
  .flow__head-icon {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.flow__head-title {
  color: rgba(0, 0, 0, 0.95);
  font-size: 3.4rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .flow__head-title {
    font-size: 2.2rem;
  }
}
.flow__head-hint {
  margin-left: auto;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .flow__head-hint {
    display: none;
  }
}
.flow__head-mark {
  flex: 0 0 auto;
  color: rgba(13, 47, 79, 0.95);
  font-size: 2.8rem;
  line-height: 1;
}
.flow__head-mark::after {
  content: "＋";
}
@media (max-width: 768px) {
  .flow__head-mark {
    margin-left: auto;
  }
}
.flow[open] .flow__head-mark::after {
  content: "－";
}
.flow__body {
  padding: 4rem 4rem 5rem;
  border: 2px solid #ffc700;
  border-top: 0;
  border-radius: 0 0 2rem 2rem;
  background: #fff;
}
@media (max-width: 768px) {
  .flow__body {
    padding: 2.4rem 2rem 3.2rem;
  }
}
.flow__sec + .flow__sec {
  margin-top: 4.8rem;
}
.flow__sec-title {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0 0 2rem;
  color: rgba(0, 0, 0, 0.95);
  font-size: 2.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .flow__sec-title {
    font-size: 1.8rem;
  }
}
.flow__sec-icon {
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  background: #ff8e0d;
  -webkit-mask: url("../img/icons/ic-round-fact-check.svg") center/contain no-repeat;
  mask: url("../img/icons/ic-round-fact-check.svg") center/contain no-repeat;
}
@media (max-width: 768px) {
  .flow__sec-icon {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.flow__prep {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.9;
}
.flow__prep li::before {
  content: "・";
}
@media (max-width: 768px) {
  .flow__prep {
    font-size: 1.5rem;
  }
}
.flow__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.flow__step-row {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .flow__step-row {
    gap: 1.4rem;
  }
}
.flow__step-num {
  flex: 0 0 auto;
  width: 6.4rem;
  color: #f9cd10;
  font-size: 6rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}
@media (max-width: 768px) {
  .flow__step-num {
    width: 4.4rem;
    font-size: 4rem;
  }
}
.flow__step-content {
  flex: 1 1 auto;
  min-width: 0;
  padding: 1rem 6rem 1rem 3rem;
  border-left: 1px solid #000;
}
@media (max-width: 768px) {
  .flow__step-content {
    padding-right: 0;
    padding-left: 1.4rem;
  }
}
.flow__step-title {
  margin: 0;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .flow__step-title {
    font-size: 1.6rem;
  }
}
.flow__step-desc {
  margin: 0.8rem 0 0;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.85;
}
.flow__step-img {
  position: relative;
  margin: 2rem 0 0;
}
.flow__step-img img {
  display: block;
  width: 100%;
  border: 1px solid #d2d6db;
}
.flow__step-highlight {
  position: absolute;
  left: 57%;
  top: 1%;
  width: 41%;
  height: 84%;
  border: 3px solid #ff3300;
  pointer-events: none;
}
.flow__notes {
  margin: 4rem 0 0;
  padding-top: 4rem;
  border-top: 1px dashed #c9c9c9;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.4rem;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .flow__notes {
    font-size: 1.2rem;
  }
}

.about {
  position: relative;
  z-index: 6;
  margin-top: -8rem;
  padding: 14rem 0 20rem;
  border-radius: 8rem 8rem 0 0;
  background: #ffc700;
}
@media (max-width: 768px) {
  .about {
    margin-top: -4rem;
    padding: 7.2rem 0 7.2rem;
    border-radius: 3.2rem 3.2rem 0 0;
  }
}
.about__inner {
  max-width: 116rem;
  margin-inline: auto;
  padding-inline: 3rem;
}
.about__head {
  margin-bottom: 7rem;
  text-align: center;
}
.about__heading {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #000;
  font-weight: 900;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .about__heading {
    white-space: normal;
  }
}
.about__heading-lg {
  font-size: clamp(22px, 6.3636363636vw, 70px);
}
.about__heading-sm {
  font-size: clamp(18px, 4.5454545455vw, 50px);
}
.about__underline {
  position: relative;
  z-index: 0;
  display: block;
  width: 90rem;
  max-width: 92%;
  height: auto;
  margin: -3.2rem auto 0;
}
@media (max-width: 768px) {
  .about__underline {
    width: 32rem;
    max-width: 100%;
    margin-top: -1rem;
  }
}
.about__lead {
  margin: 0 0 8rem;
  color: #000;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.82;
  text-align: center;
}
@media (max-width: 768px) {
  .about__lead {
    font-size: 1.6rem;
    text-align: left;
  }
}
.about__cards {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .about__cards {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.about-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid #dfdfdf;
  border-radius: 2rem;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 768px) {
  .about-card {
    flex: none;
  }
}
.about-card__img img {
  display: block;
  width: 100%;
  aspect-ratio: 340/191;
  object-fit: cover;
}
.about-card__body {
  padding: 2.8rem 4rem 3.4rem;
}
.about-card__title {
  margin: 0;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #dfdfdf;
  color: #000;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.about-card__desc {
  margin: 1.6rem 0 0;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

.campaign {
  position: relative;
  z-index: 7;
  margin-top: -8rem;
  padding: 12rem 0 20rem;
  border-radius: 8rem 8rem 0 0;
  background: #fff;
}
@media (max-width: 768px) {
  .campaign {
    margin-top: -4rem;
    padding: 7.2rem 0 7.2rem;
    border-radius: 3.2rem 3.2rem 0 0;
  }
}
.campaign__inner {
  max-width: 116rem;
  margin-inline: auto;
  padding-inline: 3rem;
}
.campaign__head {
  margin-bottom: 6rem;
  text-align: center;
}
.campaign__heading {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ff8800;
  font-size: clamp(24px, 5.4545454545vw, 60px);
  font-weight: 700;
  line-height: 1.4;
}
.campaign__heading span {
  display: block;
}
.campaign__underline {
  position: relative;
  z-index: 0;
  display: block;
  width: 86rem;
  max-width: 94%;
  height: auto;
  margin: -2.6rem auto 0;
}
@media (max-width: 768px) {
  .campaign__underline {
    width: 32rem;
    max-width: 100%;
    margin-top: -0.8rem;
  }
}
.campaign__body {
  display: flex;
  align-items: flex-start;
  gap: 8rem;
}
@media (max-width: 768px) {
  .campaign__body {
    flex-direction: column;
    gap: 4.8rem;
  }
}
.campaign__visual {
  flex: 1 1 52rem;
  min-width: 0;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .campaign__visual {
    flex: none;
    width: 100%;
    max-width: 44rem;
  }
}
.campaign__giftcard {
  display: block;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 2rem 2rem 0 #ff8800;
}
@media (max-width: 768px) {
  .campaign__giftcard {
    box-shadow: 1rem 1rem 0 #ff8800;
  }
}
.campaign__detail {
  flex: 1 1 52rem;
  min-width: 0;
}
.campaign__win {
  margin: 0;
  color: rgba(0, 0, 0, 0.95);
  font-weight: 700;
  line-height: 1.3;
  font-size: clamp(18px, 2.7272727273vw, 30px);
}
.campaign__win-num {
  font-size: clamp(30px, 4.5454545455vw, 50px);
}
.campaign__amount {
  display: inline-block;
  margin: 0.8rem 0 0;
  padding-bottom: 0.4rem;
  border-bottom: 1rem solid #f9cd10;
  color: rgba(0, 0, 0, 0.95);
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(18px, 2.7272727273vw, 30px);
}
.campaign__amount-num {
  color: #e60d0d;
  font-weight: 900;
  font-size: clamp(44px, 7.2727272727vw, 80px);
}
.campaign__desc {
  margin: 2.8rem 0 0;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1;
}
.campaign__info {
  margin: 2.8rem 0 0;
  padding: 2rem 2.8rem;
  border: 1px solid #bbb;
  border-radius: 1rem;
}
.campaign__info-row {
  display: flex;
  gap: 0.4rem;
  font-size: 1.4rem;
  line-height: 1.9;
}
.campaign__info-row + .campaign__info-row {
  margin-top: 0.2rem;
}
.campaign__info dt {
  flex: 0 0 5em;
  text-align-last: justify;
}
.campaign__info dd {
  flex: 1 1 auto;
  margin: 0;
  padding-left: 1.1em;
  text-indent: -1.1em;
}
.campaign__info dd::before {
  content: "：";
}
.campaign__note {
  margin: 1.2rem 0 0;
  color: #000;
  font-size: 1.2rem;
  line-height: 1.0;
}

.faq {
  position: relative;
  z-index: 8;
  overflow: hidden;
  margin-top: -8rem;
  padding: 12rem 0 12rem;
  border-radius: 8rem 8rem 0 0;
  background: #fffaeb;
}
@media (max-width: 768px) {
  .faq {
    margin-top: -4rem;
    padding: 7.2rem 0 7.2rem;
    border-radius: 3.2rem 3.2rem 0 0;
  }
}
.faq__inner {
  position: relative;
  z-index: 1;
  max-width: 116rem;
  margin-inline: auto;
  padding-inline: 3rem;
}
.faq__head {
  margin-bottom: 9rem;
  text-align: center;
}
.faq__heading {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #19374c;
  font-size: clamp(28px, 4.5454545455vw, 50px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.faq__underline {
  position: relative;
  z-index: 0;
  display: block;
  width: 32rem;
  max-width: 80%;
  height: auto;
  margin: -2.2rem auto 0;
}
.faq__list {
  max-width: 80rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faq__note {
  margin: 4.8rem 0 0;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .faq__note {
    font-size: 1.2rem;
  }
}
.faq__note a {
  color: inherit;
  text-decoration: underline;
}

.faq__q {
  display: flex;
  align-items: stretch;
  min-height: 6rem;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q-icon {
  flex: 0 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffc700;
}
.faq__q-icon::before {
  content: "";
  width: 3rem;
  height: 3rem;
  background: #19374c;
  -webkit-mask: url("../img/icons/comment.svg") center/contain no-repeat;
  mask: url("../img/icons/comment.svg") center/contain no-repeat;
}
.faq__q-text {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  color: rgba(0, 0, 0, 0.95);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .faq__q-text {
    font-size: 1.7rem;
  }
}
.faq__q-mark {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-right: 2.4rem;
  color: rgba(13, 47, 79, 0.95);
  font-size: 2.2rem;
  line-height: 1;
}
.faq__q-mark::after {
  content: "＋";
}

.faq__item[open] .faq__q-mark::after {
  content: "－";
}

.faq__a {
  margin-top: 0.2rem;
  padding: 2rem 3rem;
  border-radius: 1rem;
  background: #fff;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}

.choose {
  position: relative;
  z-index: 9;
  padding: 9rem 0 8rem;
  background: #ffc700;
}
@media (max-width: 768px) {
  .choose {
    padding: 5.6rem 0 6.4rem;
  }
}
.choose__inner {
  max-width: 116rem;
  margin-inline: auto;
  padding-inline: 3rem;
}
.choose__head {
  position: relative;
  margin-bottom: 4rem;
  text-align: center;
}
.choose__heading {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #000;
  font-size: clamp(24px, 4.5454545455vw, 50px);
  font-weight: 700;
  line-height: 1.4;
}
.choose__heading-line {
  display: block;
}
.choose__heading-num {
  font-size: clamp(34px, 6.3636363636vw, 70px);
}
.choose__underline {
  position: absolute;
  left: 50%;
  top: 7.4rem;
  transform: translateX(-50%);
  z-index: 0;
  width: 60rem;
  max-width: 92%;
  height: auto;
}
@media (max-width: 768px) {
  .choose__underline {
    top: 3.5rem;
    width: 32rem;
    max-width: 100%;
  }
}
.choose__lead {
  margin: 0 0 5.6rem;
  color: #000;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.82;
  text-align: center;
}
@media (max-width: 768px) {
  .choose__lead {
    font-size: 1.5rem;
    text-align: left;
  }
}
.choose__btns {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .choose__btns {
    flex-direction: column;
    gap: 4rem;
  }
}

.choose-btn {
  position: relative;
  flex: 1 1 50rem;
  max-width: 50rem;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 5rem;
  border-radius: 4rem;
  background: linear-gradient(to right, #ff8e0d, #ff3300);
  box-shadow: 0.4rem 0.7rem 0.5rem rgba(69, 0, 0, 0.2);
  color: #fff;
  text-align: center;
  transition: filter 0.2s ease;
}
@media (max-width: 768px) {
  .choose-btn {
    flex: none;
    max-width: none;
  }
}
.choose-btn::before {
  content: "";
  position: absolute;
  inset: -0.5rem;
  border: 0.2rem solid #ff8e0d;
  border-radius: 4rem;
  pointer-events: none;
}
.choose-btn:hover {
  text-decoration: none;
  filter: brightness(1.08);
}
.choose-btn:hover .choose-btn__arrow {
  transform: translateY(-50%) translateX(0.4rem);
}
.choose-btn__tag {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 0.4rem 2rem;
  border-radius: 4rem;
  background: #fff;
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
.choose-btn__text {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .choose-btn__text {
    font-size: 1.5rem;
  }
}
.choose-btn__arrow {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  width: 2.4rem;
  height: 2.4rem;
  background: #fff;
  -webkit-mask: url("../img/icons/arrow-right-line.svg") center/contain no-repeat;
  mask: url("../img/icons/arrow-right-line.svg") center/contain no-repeat;
}

.deco-illust {
  position: absolute;
  z-index: 0;
  width: clamp(13rem, 18vw, 24rem);
  height: auto;
  pointer-events: none;
  user-select: none;
}
.deco-illust--right {
  right: -4rem;
}
.deco-illust--left {
  left: -4rem;
}
@media (max-width: 1024px) {
  .deco-illust {
    display: none;
  }
}
@media (max-width: 768px) {
  .deco-illust {
    width: 7.8rem;
  }
}

.deco-worries {
  top: -2rem;
}
@media (max-width: 768px) {
  .deco-worries {
    top: -4.4rem;
    right: -1rem;
  }
}

.deco-recommend {
  top: 5rem;
}
@media (max-width: 768px) {
  .deco-recommend {
    top: -1.6rem;
    left: -1rem;
  }
}

.deco-models-a {
  top: 6rem;
}
@media (max-width: 768px) {
  .deco-models-a {
    top: -4.6rem;
    right: -0.8rem;
  }
}

.deco-models-b {
  bottom: 0;
}
@media (max-width: 768px) {
  .deco-models-b {
    display: none;
  }
}

.deco-faq {
  width: clamp(18rem, 30vw, 30.2rem);
  top: -4rem;
}
@media (max-width: 768px) {
  .deco-faq {
    width: 10rem;
    top: -6.4rem;
    right: -1.2rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js [data-anim] {
    opacity: 0;
    transform: translateY(3rem);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
  }
  .js [data-anim].is-visible {
    opacity: 1;
    transform: none;
  }
}
