:root {
  --c-main: #1d3557;
  --c-accent: #b3001b;
  --c-text: #151515;
  --c-content: #f4f5f7;
  --container: 1200px;
  /* spacing tokens（4pxグリッド換算） */
  --space-1: 0.25rem; /* 4px  */
  --space-2: 0.5rem; /* 8px  */
  --space-3: 0.75rem; /* 12px */
  --space-4: 1rem; /* 16px */
  --space-5: 1.5rem; /* 24px */
  --space-6: 2rem; /* 32px */
  --edge: clamp(1rem, 4vw, 3rem);
  --hero-h-desktop: 86vh; /* PC初期の見え方。後で自由に調整可 */
  --hero-h-mobile: 88svh; /* SPはアドレスバー対策に svh を採用 */
  --hero-panel-w: clamp(420px, 34vw, 640px);
  --hero-content-maxw: 48ch; /* テキスト行長の上限 */
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  color: var(--c-text);
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  line-height: 1.7;
  font-size: 1rem;
  background: var(--c-content);
}
.container {
  max-width: var(--container);
  padding-inline: clamp(1rem, 3vw, 1.5rem);
  margin-inline: auto;
}
.section {
  padding-block: 7.5rem;
} /* 120px */
@media (max-width: 40.0625em) {
  .section {
    padding-block: 5rem;
  } /* 80px */
}

/* ========= Hero ========= */
.hero {
  position: relative;
  color: #fff;
  z-index: 0;
}
.hero__bg {
  position: relative;
  z-index: 0;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.hero__bg img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.8;
  z-index: 0;
}
.hero__bg--sp {
  display: none;
}
.hero__slide {
  display: block;
}
.hero__text {
  margin-left: auto;
  width: min(var(--hero-panel-w), 100%);
  display: grid;
  justify-items: end;
  row-gap: clamp(0.5rem, 1.2vw, 1rem);
  text-align: right;
}
.hero__content {
  position: absolute;
  inset: 0;
  right: 0;
  left: auto;
  display: grid;
  place-content: center end;
  padding-inline: clamp(3rem, 4vw, 6rem);
  padding-block: clamp(1rem, 6vh, 4rem);
  z-index: 2;
}
.hero__title {
  font-weight: 500;
  line-height: 1.15;
  font-size: clamp(2rem, 3.2vw, 4rem);
  letter-spacing: 0.02em;
  margin: 0;
  max-width: none;
  margin-left: auto;
  text-wrap: balance;
}
.hero__subtitle {
  font-size: clamp(0.875rem, 1.1vw, 1.25rem);
  opacity: 0.96;
  max-width: var(--hero-content-maxw);
  justify-self: end;
}
.hero-cta-row {
  --overlap: clamp(1rem, 6vw, 3rem);
  margin-top: calc(var(--overlap) * -1);
  position: relative;
  z-index: 3;
  padding-block-end: 1.25rem;
  background: transparent;
}
.hero-cta-row .container {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  max-width: 800px;
  padding-inline: 1rem;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: var(--c-accent);
  background-image: linear-gradient(90deg, #f7965d, #b3001b);
  color: var(--c-content);
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  border-radius: 99rem;
  padding: 1.125rem 1.5rem;
  min-width: 15rem;
  box-shadow: 0 0.375rem 1.125rem rgba(0, 0, 0, 0.18);
  transition: transform 0.06s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  will-change: transform;
  /* margin-top: clamp(0.5rem, 1.2vw, 1rem); */
  font-size: clamp(1rem, 1.1vw, 1.125rem);
}
.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  outline: none;
}
.hero-cta__card {
  background: #eeefee;
  width: 100%;
  border: 1px solid color-mix(in srgb, #000 8%, #fff);
  border-radius: 0.875rem;
  box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.06);
  padding: clamp(1rem, 3vw, 1.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(0.75rem, 2.5vw, 1.25rem);
}
.hero-cta__copy {
  text-align: center;
}
.hero-cta__eyebrow {
  display: inline-block;
  position: relative;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  font-weight: 700;
  text-align: center;
  color: color-mix(in srgb, var(--c-main, #1d3557) 60%, #000);
  margin: 0;
  padding: 0 1rem;
  padding-inline: 0.5rem;
}
.hero-cta__eyebrow::before {
  position: absolute;
  left: -0.6em;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--c-text);
  border-radius: 0.1875rem;
  transform: rotate(-25deg);
}
.hero-cta__eyebrow::after {
  position: absolute;
  right: -0.6em;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--c-text);
  border-radius: 0.1875rem;
  transform: rotate(25deg);
}
.hero-cta__title {
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  line-height: 1.25;
  text-align: center;
  color: var(--c-main);
  margin: 0 0 0.25rem;
}

@media (max-width: 40.0625em) {
  .hero-cta-row .container {
    justify-content: center;
    --overlap: 0;
    margin-top: 2rem;
    background: transparent;
    padding-block: 1rem;
    padding-inline: 16px;
  }
  .hero-cta {
    order: 1;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
    padding: 1.125rem 1.375rem;
    font-size: clamp(0.9375rem, 4vw, 1.0625rem);
  }
  .hero-cta__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    width: 100%;
  }
  .hero-cta__copy {
    order: 0;
    text-align: center;
    margin: 0 0 0.375rem;
  }
  .hero__content {
    padding-inline: var(--edge, 1.5rem);
    padding-block: clamp(1rem, 8vh, 4rem);
  }
  .hero__bg--pc {
    display: none;
  }
  .hero__bg--sp {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }
  .hero__bg--sp .hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
  .hero__bg--sp .hero__slide:nth-child(1) {
    animation-name: hero-sp-fade-1;
  }
  .hero__bg--sp .hero__slide:nth-child(2) {
    animation-name: hero-sp-fade-2;
  }
  .hero__bg--sp .hero__slide:nth-child(3) {
    animation-name: hero-sp-fade-3;
  }
}
@keyframes hero-sp-fade-1 {
  0% {
    opacity: 0;
  }
  6% {
    opacity: 0.8;
  }
  30% {
    opacity: 0.8;
  }
  36% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hero-sp-fade-2 {
  0%,
  33% {
    opacity: 0;
  }
  39% {
    opacity: 0.8;
  }
  63% {
    opacity: 0.8;
  }
  69% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hero-sp-fade-3 {
  0%,
  66% {
    opacity: 0;
  }
  72% {
    opacity: 0.8;
  }
  96% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}
@media (min-width: 64em) and (max-width: 89.9375em) {
  .br-md {
    display: inline;
    white-space: nowrap;
  }
}

@media (min-width: 75em) {
  .hero__title {
    white-space: nowrap;
  }
  .hero__subtitle {
    white-space: nowrap;
    max-width: none;
    font-size: clamp(0.875rem, 1.3vw, 1.25rem);
  }
}

@media (max-width: 79.99875em) {
  .hero__title {
    white-space: normal;
  }
  .hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    white-space: normal;
    opacity: 0.96;
    max-width: 36ch;
    justify-self: end;
  }
}
@media (max-width: 40em) {
  .hero__content {
    width: 100%;
    padding-inline: var(--edge);
    place-content: end end;
    padding-block: clamp(3.5rem, 18vh, 7.5rem)
      clamp(1.5rem, 10vh + env(safe-area-inset-bottom), 5rem);
  }
  .hero__title {
    font-size: clamp(1.375rem, 7vw, 1.75rem);
    line-height: 1.18;
  }
  .hero__lead {
    display: inline-block;
    transform: translateX(clamp(-06em, -3vw, -3em));
    white-space: nowrap;
    line-height: 1;
  }
  .hero__subtitle {
    white-space: nowrap;
    max-width: none;
    font-size: clamp(0.75rem, 3.5vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.01em;
  }
}
@media (min-width: 64em) {
  .hero {
    --hero-media-w: min(1800px, 80vw, 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-inline: clamp(1.5rem, 4vw, 4rem);
    padding-block: 0;
    box-sizing: border-box;
  }
  .hero__bg {
    flex: 0 1 auto;
    width: 100%;
    max-width: var(--hero-media-w);
    position: relative;
    overflow: hidden;
  }
  .hero__bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(260px, 32vh, 420px);
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
    z-index: 2;
  }
  .hero__bg::before {
    z-index: 1;
  }
  .hero__bg picture,
  .hero__bg img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 1;
  }
  .hero__content {
    top: 0;
    bottom: 0;
    width: var(--hero-media-w);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    display: grid;
    place-content: end end;
    padding-inline: clamp(1.25rem, 3vw, 2rem);
    padding-top: clamp(1.25rem, 3vw, 2rem);
    padding-bottom: 5rem;
    position: absolute;
    z-index: 3;
    inset: auto;
  }
  .hero__content::before {
    content: none;
  }
  .hero__text {
    position: relative;
    z-index: 1;
    text-align: right;
    max-width: min(42rem, 52vw);
  }
  .hero__bg--pc {
    display: block;
  }
  .hero__bg--sp {
    display: none;
  }
}
/*---- About section ----*/
.about__belt {
  background: var(--c-main);
  border-radius: 0.4rem;
  color: #fff;
  margin-top: 2rem;
  padding: 1rem 0;
  font-size: 1.2rem;
  display: block;
  justify-content: center;
}
.about__belt .container {
  display: flex;
  justify-content: center;
  padding-inline: var(--edge);
}
.about__belt-copy {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  max-width: 30ch;
  margin: 0 auto;
  text-wrap: balance;
  white-space: normal;
}
@media (min-width: 64em) {
  .about__belt {
    padding: 1.25rem 0;
    margin-bottom: 2rem;
  }
  .about__belt-copy {
    max-width: 34ch;
    white-space: nowrap;
  }
}
.br-sp {
  display: none;
}
@media (max-width: 40.0625em) {
  .br-sp {
    display: inline;
  }
}
.about__grids {
  background: linear-gradient(
    180deg,
    #f4f5f7 0%,
    #f4f5f7 5%,
    #eeefee 5%,
    #eeefee 85%,
    #f4f5f7 85%,
    #f4f5f7 100%
  );
  width: 100%;
  margin-bottom: 7.5rem;
  box-sizing: border-box;
}
.about__headline {
  margin-bottom: 3.125rem;
}
.about__headline h2 {
  font-size: 3.75rem;
  text-align: start;
  letter-spacing: 0.4em;
  margin-bottom: 0.3125rem;
  color: var(--c-main);
  line-height: 1em;
  font-family: "Montserrat", sans-serif;
}
.about__headline p {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 1.5625rem;
}
.about__inner {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  max-width: 75em;
}
.about__inner h3 {
  font-size: 1.625rem;
  letter-spacing: 0.6em;
  margin-bottom: 0.9375rem;
  font-weight: bold;
  color: var(--c-main);
}
.about__inner p {
  font-size: 1rem;
  margin-bottom: 1.5625rem;
}
.about ul {
  text-align: center;
  font-size: 0;
}
.about__img {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about li {
  list-style: none;
  display: inline-block;
  width: 28%;
  margin: 0 2.5%;
}
.about img {
  width: 100%;
  height: 100%;
}
/* === ABOUT：下からふわっと用のアニメーション === */
@keyframes about-fade-up {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about__headline,
.about__inner,
.about__belt,
.about__img li {
  opacity: 0;
}
.about__headline.is-show,
.about__inner.is-show,
.about__belt.is-show,
.about__img li.is-show {
  animation: about-fade-up 1.5s ease-out forwards;
}
.about__headline.is-show {
  animation-delay: 0s;
}
.about__inner.is-show {
  animation-delay: 0.12s;
}
.about__belt.is-show {
  animation-delay: 0.24s;
}
.about__img li:nth-child(1).is-show {
  animation-delay: 0.36s;
}
.about__img li:nth-child(2).is-show {
  animation-delay: 0.54s;
}
.about__img li:nth-child(3).is-show {
  animation-delay: 0.72s;
}
/* === STYLES：下からふわっと用 === */
.styles__headline,
.styles__header,
.styles__tagsRow,
.styleSlider {
  opacity: 0;
}
.styles__headline.is-show,
.styles__header.is-show,
.styles__tagsRow.is-show,
.styleSlider.is-show {
  animation: about-fade-up 1.2s ease-out forwards;
}
.styles__headline.is-show {
  animation-delay: 0s;
}
.styles__header.is-show {
  animation-delay: 0.12s;
}
.styles__tagsRow.is-show {
  animation-delay: 0.24s;
}
.styleSlider.is-show {
  animation-delay: 0.36s;
}

@media screen and (max-width: 46.875em) {
  .about__grids {
    margin-bottom: 5rem;
  }
  .about__headline {
    text-align: center;
    width: 100%;
    margin: 0 auto 10%;
  }
  .about__headline h2 {
    font-size: 2.5rem;
    letter-spacing: 0.4em;
    margin-bottom: 5px;
    color: var(--c-main);
    line-height: 1em;
    font-family: "Montserrat", sans-serif;
  }
  .about__headline p {
    font-size: 1.3rem;
    margin-bottom: 5%;
  }
  .about__inner {
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
  .about__inner h3 {
    font-size: 3.9vw;
    letter-spacing: 0.2em;
    margin-bottom: 5%;
    font-weight: 800;
    color: #0f2540;
  }
  .about__inner p {
    font-size: 0.875rem;
    margin-bottom: 5%;
  }
  .about__img {
    margin-top: 1.5rem;
  }
  .about__img li {
    list-style: none;
    display: block;
    width: 100%;
    max-width: 22rem;
    margin: 0 auto 1.5rem;
  }
  .about__img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .about__belt {
    padding: 0.5rem;
    margin-bottom: 1.2rem;
  }
  .about__belt p {
    font-size: 1rem;
  }
}

/* ===== STYLE section ===== */
.styles__inner {
  max-width: var(--container, 1200px);
  margin-inline: auto;
  padding-inline: var(--edge, 1.5rem);
  width: 100%;
  margin-bottom: 7.5rem;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    #f4f5f7 0%,
    #f4f5f7 5%,
    #eeefee 5%,
    #eeefee 85%,
    #f4f5f7 85%,
    #f4f5f7 100%
  );
}
.styles__header {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.styles__headline {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
}
.styles__headline h2 {
  font-size: 3.75rem;
  text-align: start;
  letter-spacing: 0.4em;
  margin-bottom: 0.3125rem;
  color: var(--c-main);
  font-family: Montserrat, sans-serif;
  margin-top: -0.05em;
}
.styles__headline p {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
/* --- Tabs --- */
.styles__tabs {
  display: flex;
  justify-content: center;
  gap: 4.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.875rem;
}
.styles__tab {
  position: relative;
  border: none;
  background: none;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border-radius: 999px 999px 0 0;
}
.styles__tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  bottom: -1rem;
  background: transparent;
  transition: background-color 0.2s ease;
}
.styles__tab:is(:hover, :focus-visible) {
  color: var(--c-main, #1d3557);
}
.styles__tab.is-active {
  color: var(--c-main, #1d3557);
  font-weight: 600;
}
.styles__tab.is-active::after {
  background: var(--c-main, #1d3557);
}
/* ===== STYLE tags ===== */

.styles__tagsRow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 2.5rem;
}
.styles__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.5rem 0.3125rem;
  border: 1px solid #dcdbda;
  border-radius: 1px;
  font-size: 1rem;
  color: #4b5563;
  white-space: nowrap;
}

/* --- Panels --- */
.styles__panels {
  margin-top: 0.75rem;
}
.styles__panel[hidden] {
  display: none;
}
/* ===== Slider ===== */
.styleSlider {
  position: relative;
}
.styleSlider__viewport {
  overflow: hidden;
}
.styleSlider__track {
  display: flex;
  gap: 1.25rem;
  transform: translateX(0);
}
.styleCard {
  flex: 0 0 calc((100% - 1.25rem * 2) / 3); /* gapが2つぶん */
  /* border-radius: 0.75rem; */
  overflow: hidden;
  background: #f3f4f6;
}
.styleCard img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 48em) {
  .styles__header {
    max-width: 100%;
    margin-bottom: 1.25rem;
  }
  .styles__headline {
    margin: 2rem 0 0.75rem;
  }
  .styles__headline h2 {
    font-size: 2.5rem;
    margin-top: -1em;
  }
  .styles__header p {
    font-size: 1rem;
  }
  .styles__headline p {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-top: -0.5rem;
    margin-bottom: 1.25rem;
  }
  .styles__tabs {
    gap: 0.5rem;
  }
  .styles__tab {
    font-size: 1.2rem;
    padding: 0.5rem 0.75rem;
  }
  .styles__tagsRow {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.375rem 0.5rem;
    margin-bottom: 1.75rem;
    padding-bottom: 0.25rem;
  }
  .styles__tag {
    font-size: 0.875rem;
    padding: 0.35rem 0.5rem 0.25rem;
    flex: 0 0 auto;
  }
  .styleSlider__track {
    gap: 0.75rem;
  }
  /* .styleCard {
    flex: 0 0 calc((100% - 0.75rem * 0) / 1); 1枚分表示
  } */
  .styleCard {
    flex: 0 0 calc((100% - 0.75rem * 1) / 2);
  }
}
/* ===== Dots ===== */

.styleSlider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.styleSlider__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background-color: #d1d5db;
  cursor: pointer;
}
.styleSlider__dot.is-active {
  background-color: #111827;
}
.sp-only {
  display: none;
}
@media (max-width: 48em) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/* === Plans：見出し & 比較カード === */
.plans__inner {
  max-width: var(--container, 1200px);
  margin-inline: auto;
  padding-inline: var(--edge, 1.5rem);
  width: 100%;
  margin-bottom: 7.5rem;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    #f4f5f7 0%,
    #f4f5f7 5%,
    #eeefee 5%,
    #eeefee 85%,
    #f4f5f7 85%,
    #f4f5f7 100%
  );
  padding-block: 4.5rem;
}
.plans__headline {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
}
.plans__headline h2 {
  font-size: 3.75rem;
  text-align: start;
  letter-spacing: 0.4em;
  margin-bottom: 0.3125rem;
  color: var(--c-main);
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  margin-top: -0.8em;
}
.plans__headline p {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.plansTableWrap {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}
.plansTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  overflow: hidden;
}
.plansTable__corner {
  width: 8rem;
  background: rgba(238, 239, 238);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.plansTable__head {
  background: #ffffff;
  padding: 1rem 1.25rem 0.9rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.plansTable__headTarget {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: #e5edf7;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-main);
  margin-bottom: 0.5rem;
}
.plansTable__headName {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-main);
}
.plansTable__price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--c-main);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.plansTable__cell[data-plan] + .plansTable__cell .plansTable__time,
.plansTable__time {
  font-size: 0.95rem;
  color: #4b5563;
}
.plansTable__rowLabel {
  background: #f5f6f8;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  padding: 1rem 1.25rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.plansTable tbody tr:first-child .plansTable__cell {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--c-main);
  letter-spacing: 0.04em;
}
.plansTable tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.plansTable th,
.plansTable td {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.plansTable tr:last-child th,
.plansTable tr:last-child td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.plansTable tbody tr .plansTable__rowLabel,
.plansTable tbody tr .plansTable__cell {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.plansTable tbody tr:last-child .plansTable__rowLabel,
.plansTable tbody tr:last-child .plansTable__cell {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.plansTable__cell {
  padding: 1rem 1.25rem;
  text-align: center;
  vertical-align: top;
  font-size: 0.95rem;
}
.plansTable__features {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0;
  text-align: left;
  display: inline-block;
}
.plansTable__features li {
  position: relative;
  padding-left: 1.6rem;
}
.plansTable__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.1rem;
  height: 1.1rem;
  background: url("/wp-content/themes/tokyo-profile/assets/img/common/icon-check.png")
    no-repeat center / contain;
  margin-right: 0.2em;
}
.plansCtaRow {
  display: grid;
  grid-template-columns: minmax(8rem, auto) repeat(3, minmax(0, 1fr));
  max-width: 1200px;
  margin: 1rem auto 3.5rem;
  border-radius: 0 0 16px 16px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border: none;
}
.plansCtaRow__cell {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.plansCtaRow__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  background-image: linear-gradient(90deg, #f7965d, #b3001b);
  box-shadow: 0 0.375rem 1.125rem rgba(0, 0, 0, 0.18);
  transition: background-image 0.18s ease, transform 0.06s ease,
    box-shadow 0.2s ease;
}
.plansCtaRow__btn:hover,
.plansCtaRow__btn:focus-visible {
  background-image: linear-gradient(90deg, #b3001b, #f7965d);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  outline: none;
}
.plansTable [data-plan].is-hover {
  background: #eef3fb;
}
.plansCtaRow__cell.is-hover {
  opacity: 1;
  pointer-events: auto;
}
.plansSpCards {
  display: none;
}
/* ------------------
   plan下からふわっと
   -----------------*/
.plans__headline,
.plansTableWrap,
.plansSpCards,
.planOptions__title,
.planOptions__list {
  opacity: 0;
}
.plans__headline.is-show,
.plansTableWrap.is-show,
.plansSpCards.is-show,
.planOptions__title.is-show,
.planOptions__list.is-show {
  animation: about-fade-up 1.2s ease-out forwards;
}
.plans__headline.is-show {
  animation-delay: 0s;
}
.plansTableWrap.is-show {
  animation-delay: 0.12s;
}
.plansSpCards.is-show {
  animation-delay: 0.24s;
}
.planOptions__title.is-show {
  animation-delay: 0.36s;
}
.planOptions__list.is-show {
  animation-delay: 0.48s;
}
@media (max-width: 48em) {
  .plans__inner {
    padding-block: 3.5rem;
    margin-bottom: 5rem;
  }
  .plans__headline {
    margin: 2rem 0 0.75rem;
  }
  .plans__headline h2 {
    font-size: 2.5rem;
  }
  .plans__headline p {
    font-size: 1.25rem;
  }
  .plansTableWrap {
    margin-bottom: 2.5rem;
  }
  .plansTable,
  .plansCtaRow {
    background: transparent;
    border: none;
    margin-bottom: 2.5rem;
  }
  .plansTable th,
  .plansTable td {
    border-right: none;
  }
  .plansTable__corner {
    display: none;
  }
  .plansTable thead {
    display: none;
  }
  .plansTable tbody,
  .plansTable tr {
    display: block;
  }
  .plansTable__rowLabel {
    border-bottom: none;
    padding-top: 1.25rem;
  }
  .plansTable__cell {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .plansCtaRow {
    grid-template-columns: 1fr;
    display: none;
  }
  .plansCtaRow__spacer {
    display: none;
  }
  .plansCtaRow__cell {
    opacity: 1;
    pointer-events: auto;
  }
  .plansTable {
    display: none;
  }
  .plansSpCards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .plansSpCard {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem 1.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
  }
  .plansSpCard__head {
    margin-bottom: 0.9rem;
  }
  .plansSpCard__target {
    display: inline-block;
    padding: 0.2rem 0.9rem;
    border-radius: 999px;
    background: #e5edf7;
    color: var(--c-main);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0.45rem;
  }
  .plansSpCard__name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-main);
    margin: 0;
  }
  .plansSpCard__meta {
    margin: 0 0 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
  }
  .plansSpCard__head,
  .plansSpCard__meta {
    text-align: center;
  }
  .plansSpCard__row {
    display: block;
    padding: 0.75rem 0.75rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  .plansSpCard__row dt {
    display: none;
  }
  .plansSpCard__row dd {
    margin: 0;
  }
  .plansSpCard__row:first-child {
    border-top: none;
  }
  .plansSpCard__row:first-child dd {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--c-main);
    letter-spacing: 0.04em;
  }
  .plansSpCard__row:last-child dd {
    font-size: 0.95rem;
    color: #4b5563;
  }
  .plansSpCard__features {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: inline-block;
    text-align: left;
  }

  .plansSpCard__features li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.1rem;
  }
  .plansSpCard__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 1.1rem;
    height: 1.1rem;
    background: url("/wp-content/themes/tokyo-profile/assets/img/common/icon-check.png")
      no-repeat center / contain;
  }
  .plansSpCard__ctaArea {
    margin-top: 1.1rem;
    text-align: center;
  }
  .plansSpCard__ctaArea .plansCtaRow__btn {
    width: auto;
    min-width: 11rem;
    padding: 0.7rem 2.2rem;
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
  }
}
.planOptions__title {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.333;
  color: #fff;
  text-align: center;
  background: var(--c-main);
  margin: 16px 0 0;
  padding: 10px 0 6px;
}
.planOptions__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
  margin-top: 16px;
}
.planOptions__item {
  display: flex;
  align-items: baseline;
  width: 48.5%;
  padding: 12px 0 8px;
  border-bottom: 1px solid #ddd;
  margin: 0;
}

@media (max-width: 48em) {
  .planOptions__item {
    width: 100%;
  }
}
.planOptions__label {
  flex: 1 1 auto;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.planOptions__price {
  flex: 0 0 auto;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  /* font-size: 1.2rem; */
  font-weight: 700;
  line-height: 1.333;
  text-align: right;
  margin: 0;
}
.planOptions__tax {
  font-size: 0.85em;
  margin-left: 0.25em;
  opacity: 0.85;
}

/* ---- Voice Section ---- */
.section.voice .voice__headline,
.section.voice .voiceBlock {
  opacity: 0;
}
.section.voice .voice__headline.is-show {
  animation: about-fade-up 1s ease-out forwards;
  animation-delay: 0s;
}
.section.voice .voiceBlocks.is-show .voiceBlock {
  animation: about-fade-up 0.9s ease-out forwards;
}
.section.voice .voiceBlocks.is-show .voiceBlock:nth-child(1) {
  animation-delay: 0.05s;
}
.section.voice .voiceBlocks.is-show .voiceBlock:nth-child(2) {
  animation-delay: 0.2s;
}
.section.voice .voiceBlocks.is-show .voiceBlock:nth-child(3) {
  animation-delay: 0.35s;
}
.section.voice .container {
  padding-inline: var(--edge, 1.5rem);
}
.voice__inner {
  max-width: var(--container, 1200px);
  margin-inline: auto;
  padding-inline: var(--edge, 1.5rem);
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    #f4f5f7 0%,
    #f4f5f7 5%,
    #eeefee 5%,
    #eeefee 85%,
    #f4f5f7 85%,
    #f4f5f7 100%
  );
  padding-block: 4rem;
}
.voice__headline {
  margin-bottom: 2.5rem;
}
.voice__headline h2 {
  font-size: 3.75rem;
  letter-spacing: 0.4em;
  margin-bottom: 0.3125rem;
  color: var(--c-main);
  font-family: "Montserrat", sans-serif;
  margin-top: -0.05em;
  text-align: start;
}
.voice__headline p {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.voiceBlocks {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vh, 4rem);
  margin-top: 2.5rem;
}
.section.voice .voiceBlock {
  display: flex !important;
  flex-direction: column;
  gap: 1.5rem;
}
.voiceBlock__body,
.voiceBlock__photo {
  flex: 1 1 0;
}
.voiceBlock__photo img {
  display: block;
  max-width: 90%;
  width: 90%;
  height: auto;
  object-fit: cover;
}
.voiceBlock__use {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-main);
  letter-spacing: 0.12em;
  margin-bottom: 5rem;
}
.voiceBlock__text {
  font-size: 1rem;
  line-height: 2.5;
  margin-bottom: 5rem;
}
.voiceBlock__person {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-main);
}
.voiceBlock__job {
  margin-left: 0.3em;
  font-weight: 400;
  color: #555;
}
.voiceBlock__photoPlaceholder {
  width: 100%;
  padding-top: 66.66%;
  border-radius: 1.5rem;
  background: #f3f4f6;
}
@media (min-width: 48em) {
  .section.voice .voiceBlocks {
    gap: clamp(3rem, 6vh, 4.5rem);
  }
  .section.voice .voiceBlock__body {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    column-gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
  }
  .section.voice .voiceBlock__use,
  .section.voice .voiceBlock__text,
  .section.voice .voiceBlock__person {
    grid-column: 1;
  }
  .section.voice .voiceBlock__photo {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: stretch;
    justify-self: end;
  }
  .section.voice .voiceBlock--reverse .voiceBlock__body {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  }
  .section.voice .voiceBlock--reverse .voiceBlock__use,
  .section.voice .voiceBlock--reverse .voiceBlock__text,
  .section.voice .voiceBlock--reverse .voiceBlock__person {
    grid-column: 2;
  }
  .section.voice .voiceBlock--reverse .voiceBlock__photo {
    grid-column: 1;
  }
  .section.voice .voiceBlock__photo img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    object-fit: cover;
  }
}
/* =========================
   Voice: SP 
   ========================= */
@media (max-width: 48em) {
  .section.voice .voice__title {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
  }
  .section.voice .voice__inner {
    padding-inline: var(--edge, 1.5rem);
    padding-block: 6rem 3rem;
  }
  .section.voice .voice__headline {
    margin-bottom: 2rem;
  }
  .section.voice .voice__headline h2 {
    font-size: 2.3rem;
    letter-spacing: 0.3em;
  }
  .section.voice .voice__headline p {
    font-size: 1.25rem;
  }
  .section.voice .voiceBlocks {
    gap: 2.5rem;
  }
  .section.voice .voiceBlock {
    gap: 1.5rem;
  }
  .section.voice .voiceBlock__use {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  .section.voice .voiceBlock__text {
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
  }
  .section.voice .voiceBlock__person {
    font-size: 1.1rem;
  }
  .section.voice .voiceBlock__photo img {
    max-width: 100%;
    width: 100%;
    margin-inline: auto;
  }
}

/* ---- flowセクション（予約の流れ：カード＋写真） ---- */
.section.flow {
  --flow-max: min(1040px, 92vw);
  --flow-gap: clamp(2rem, 4vh, 3rem);
}
.flow__title {
  font-size: clamp(1.375rem, 2.2vw, 2rem);
  font-weight: 800;
  color: var(--c-main, #1d3557);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: var(--flow-max);
  margin-inline: auto;
}
.flow__title::before,
.flow__title::after {
  content: "";
  height: 0;
  flex: 0 0 140px;
  border-top: 2px solid
    color-mix(in oklab, var(--c-main, #1d3557) 25%, transparent);
}
.flow__list {
  max-width: var(--flow-max);
  margin: clamp(2rem, 4vh, 3rem) auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--flow-gap);
}
.flow__item {
  --flow-item-bg: rgba(238, 239, 238);
  --flow-media-grad: linear-gradient(135deg, #f9dde7, #fbe6ec);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2.25rem, 5vw, 2.75rem);
  margin: 2rem;
  background: var(--flow-item-bg);
}
.flow__item--01,
.flow__item--02,
.flow__item--03,
.flow__item--04,
.flow__item--05 {
  --flow-item-bg: #ffffff;
  --flow-media-grad: linear-gradient(
    135deg,
    #3f74be 0%,
    #88a9d7 50%,
    #d2def0 100%
  );
}
.flow__body {
  position: relative;
  z-index: 1;
  align-self: start;
}
.flow__stepLabel {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 1.3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent, #b3001b);
  position: absolute;
  top: -5rem;
  left: -6rem;
}
.flow__stepLabel::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-left: 0.75rem;
  width: 120px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}
.flow__stepTitle {
  margin: 2rem 0 3rem;
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--c-main, #1d3557);
  text-align: center;
}
.flow__stepDesc {
  margin: 0;
  color: var(--c-text, #151515);
  line-height: 1.9;
  font-size: clamp(0.95rem, 1.05vw, 1rem);
}
.flow__media {
  position: relative;
  z-index: 0;
}
.flow__media::before {
  content: "";
  position: absolute;
  inset: 0%;
  background: var(--flow-media-grad);
  transform: translate(15%, 15%);
  z-index: 0;
}
.flow__media img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  z-index: 1;
}
@media (max-width: 768px) {
  .flow__stepLabel {
    font-size: clamp(1.25rem, 4vw, 1.6rem);
    padding-right: 1.25rem;
  }
  .flow__stepLabel::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-left: 0.5rem;
    width: 72px;
    height: 1.5px;
    background: currentColor;
    transform: translateY(-50%);
  }
  .section.flow {
    padding-block: clamp(3rem, 7vh, 4rem);
  }
  .flow__list {
    max-width: min(92vw, 640px);
    margin: 2.5rem auto 0;
    gap: clamp(2rem, 5vw, 2.75rem);
  }
  .flow__item {
    grid-template-columns: minmax(0, 1fr);
    padding: clamp(1.75rem, 5vw, 2.25rem);
    margin-inline: clamp(1rem, 4vw, 1.5rem);
  }
  .flow__body {
    padding-top: 0;
    align-self: start;
  }
  .flow__stepLabel {
    position: relative;
    top: -55px;
    left: 0;
    margin: 0 0 0.5rem;
    font-size: clamp(2rem, 3.8vw, 2.5rem);
    padding-right: 1.25rem;
  }
  .flow__stepLabel::after {
    content: "";
    position: absolute;
    top: 60%;
    left: 50%;
    margin-left: 0.5rem;
    width: 6.25rem;
    height: 2px;
    background: currentColor;
    transform: translateY(-50%);
  }
  .flow__stepTitle {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin: 0 0 2rem;
  }
  .flow__stepDesc {
    font-size: clamp(0.9rem, 3.4vw, 1rem);
  }
  .flow__media::before {
    inset: 0%;
    transform: translate(15%, 10%);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .flow__item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .flow__item.is-show {
    opacity: 1;
    transform: none;
  }
  .flow__item:nth-child(2) {
    transition-delay: 0.1s;
  }
  .flow__item:nth-child(3) {
    transition-delay: 0.2s;
  }
  .flow__item:nth-child(4) {
    transition-delay: 0.3s;
  }
  .flow__item:nth-child(5) {
    transition-delay: 0.4s;
  }
  .flow__stepLabel,
  .flow__media {
    transition: transform 0.6s ease-out;
  }
  .flow__stepLabel {
    transform: translateX(-12px);
  }
  .flow__media {
    transform: translateY(12px);
  }
  .flow__item.is-show .flow__stepLabel,
  .flow__item.is-show .flow__media {
    transform: none;
  }
}

/* ---- faqセクション（remベース版） ---- */
.section.faq {
  padding-block: 7.5rem;
}
@media (max-width: 40.0625em) {
  .section.faq {
    padding-block: 5rem;
  }
}

.faq__title {
  font-weight: 700;
  text-align: center;
  margin: 0 0 1.25rem;
}
.faq__title-en {
  display: block;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: 3.75rem;
  color: var(--c-main);
}
.faq__title-ja {
  display: block;
  margin-top: 1.25rem;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: #8a8a8a;
}

.faq__list {
  border-top: 0;
  display: grid;
  row-gap: 0.5rem;
}
.faq__item {
  border-bottom: 1px solid var(--line, #e9e9e9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background: #fff;
}
.faq__item:hover,
.faq__item:focus-within {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.faq__q {
  margin: 0;
}

.faq__toggle {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.125rem 3rem 1.125rem 4rem;
  font: inherit;
  color: var(--c-text);
  cursor: pointer;
  line-height: 1.7;
}
.faq__toggle:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

.faq__badge {
  position: absolute;
  inset-inline-start: 1.375rem;
  display: grid;
  place-items: center;
  inline-size: 1.375rem;
  block-size: 1.375rem;
  border-radius: 50%;
  color: var(--c-main);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}
.faq__badge--q {
  inset-block-start: 50%;
  transform: translateY(-50%);
}
.faq__badge--a {
  inset-block-start: 0.5rem;
}

.faq__label {
  display: block;
  margin-inline-end: 1.5rem;
}

.faq__icon {
  position: absolute;
  inset-inline-end: 1rem;
  inset-block-start: 50%;
  transform: translateY(-50%);
  inline-size: 1.125rem;
  block-size: 1.125rem;
}
.faq__icon > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.faq__icon > span:nth-of-type(2) {
  transform: translateY(-50%) rotate(90deg);
}
.faq__toggle[aria-expanded="true"] .faq__icon > span:nth-of-type(2) {
  transform: translateY(-50%) rotate(0deg) scaleX(0);
  opacity: 0;
}
.faq__a {
  position: relative;
  padding: 0 1rem 0 4rem;
  color: var(--c-text);
  line-height: 1.9;
  height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: height 0.26s ease, opacity 0.26s ease, padding-top 0.26s ease,
    padding-bottom 0.26s ease, margin-top 0.26s ease;
}
.faq__a.is-open {
  padding-bottom: 1.25rem;
}
.faq__aBody > *:first-child {
  margin-top: 0;
}
.faq__aBody p {
  margin: 0.4em 0;
}
.faq__aBody ul,
.faq__aBody ol {
  margin: 0.6em 0 0.8em 1.2em;
}
@media (max-width: 40.0625em) {
  .faq__toggle {
    padding: 0.875rem 2.25rem 0.875rem 3.25rem;
  }

  .faq__label {
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.6;
    margin-inline-end: 1.75rem;
    text-wrap: balance;
  }
  .faq__title-en {
    font-size: 2.3rem;
  }
  .faq__badge {
    inset-inline-start: 1rem;
    inline-size: 1.25rem;
    block-size: 1.25rem;
    font-size: 1.125rem;
  }
  .faq__badge--q {
    transform: translateY(-50%);
  }
  .faq__badge--a {
    inset-block-start: 0.875rem;
  }

  .faq__icon {
    inset-inline-end: 0.75rem;
    inline-size: 1rem;
    block-size: 1rem;
  }
  .faq__a {
    padding-left: 3.25rem;
  }
}
@media (min-width: 48em) {
  .faq__list {
    row-gap: 0.625rem;
  }
}
