@charset "UTF-8";
/* ===================================================================
   Biiino LP styles  (mobile-first / breakpoint: 768px)
   セクション順: reset → tokens → base → utility → header → fv → trust
   → problems → solution → cta → before-after → comparison → randc
   → uservoice → faq → footer
   =================================================================== */
/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 10px;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

/* ---- Design tokens（参考画像の切り出しヒストグラムから採取） ---- */
:root {
  --color-green: #00847c;
  /* ブランド緑（CTA・見出し帯） */
  --color-green-dark: #006d66;
  /* 濃緑カード */
  --color-teal-mid: #75aba8;
  /* 比較表・Before/After の1列目 */
  --color-yellow: #ffe959;
  /* 黄色背景 */
  --color-cream: #fffbeb;
  /* セクション淡背景 */
  --color-gray-bg: #f4f4ef;
  /* 比較表コンテナ背景（PCのみ） */
  --color-text: #383431;
  --color-text-light: #ffffff;
  --color-text-note: #575757;
  --color-muted: #8a8780;
  --color-border: #E5E7EB;
  --color-laurel: #c0a544;
  --color-laurel-text: #CB9323;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Roboto", sans-serif;
  --container: 1200px;
}

/* ---- Base ---- */
body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.5;
  background-color: var(--color-yellow);
  background-image: url("../images/fv-cta_bg_texture.png");
  background-size: 240px auto;
  background-repeat: repeat;
  background-position: top left;
}

strong {
  font-weight: 700;
}

em {
  font-style: normal;
}

.f-color-green-dark {
  color: var(--color-green-dark);
}

/* ---- Layout utility ---- */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 0;
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container);
    padding-inline: 24px;
  }
}

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

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

/* ---- Section common ---- */
.section__label {
  color: var(--color-green);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.2rem;
  line-height: 1.5;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.section__label--no-spacing {
  letter-spacing: normal;
}
.section__heading {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .section__heading {
    font-size: 3.6rem;
  }
}
.section__lead {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  text-align: center;
  font-size: 1.6rem;
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .section__lead {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

/* ===================================================================
   CTA button (shared)
   =================================================================== */
.btn-cta {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-green);
  color: var(--color-text-light);
  font-weight: 700;
  border-radius: 4px;
  padding: 12px 28px;
  box-shadow: 0 3px 0 rgba(0, 132, 124, 0.25);
  text-align: center;
}
.btn-cta:hover {
  opacity: 0.88;
}
.btn-cta__note {
  font-size: 1.1rem;
  font-weight: 700;
}
.btn-cta__note::before {
  content: "\\ﾠ";
}
.btn-cta__note::after {
  content: "ﾠ/";
}
.btn-cta__label {
  font-size: 1.5rem;
}
.btn-cta--block {
  display: flex;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-cta--block {
    max-width: 480px;
  }
}
.btn-cta--lg {
  padding: 16px 56px 16px 44px;
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(0, 132, 124, 0.25);
}
.btn-cta--lg .btn-cta__label {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .btn-cta--lg .btn-cta__label {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .btn-cta--lg {
    /* 大ボタン右端の「>」シェブロン */
  }
  .btn-cta--lg::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
  }
}

/* ===================================================================
   Header
   =================================================================== */
/* SP: ヘッダー非表示（サンプル準拠、FVバッジから開始）。
   PC: FVの黄色地に一体・非固定。 */
.header {
  display: none;
}
@media (min-width: 768px) {
  .header {
    display: block;
    background: transparent;
  }
}
@media (min-width: 768px) {
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 80px;
  }
}
@media (min-width: 768px) {
  .header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
@media (min-width: 768px) {
  .header__logo img {
    width: 80px;
    height: auto;
  }
}
@media (min-width: 768px) {
  .header__tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text);
  }
}
.header .flex-container {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 48px;
}
@media (min-width: 768px) {
  .header__nav ul {
    display: flex;
    gap: 24px;
    font-weight: 500;
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .header__nav a:hover {
    color: var(--color-green);
  }
}
@media (min-width: 768px) {
  .header__cta {
    padding: 11px 22px;
  }
}
@media (min-width: 768px) {
  .header__cta.btn-cta {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .header__cta .btn-cta__label {
    font-size: 1.4rem;
  }
}

/* ===================================================================
   FV（ファーストビュー）
   =================================================================== */
.fv {
  background-image: url("../images/problems_bg_wave_top.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom -1px center;
  /* SP: ヘッダー非表示分の上余白 */
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .fv {
    /* PC: ヘッダーが上余白を担う */
    padding-top: 0;
    padding-bottom: 120px;
  }
}
.fv__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .fv__inner {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding-bottom: 24px;
  }
}
.fv__badge {
  display: inline-block;
  align-self: flex-start;
  background: #fff;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 8px 16px;
  border-left: 2px solid var(--color-green);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.fv__badge em {
  color: var(--color-green-dark);
}
@media (min-width: 768px) {
  .fv__badge {
    font-size: 1.6rem;
  }
}
.fv__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .fv__body {
    flex: 1 1 46%;
    max-width: 480px;
  }
}
.fv__heading {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .fv__heading {
    font-size: 2rem;
  }
}
.fv__price {
  display: flex;
  flex-direction: column;
  align-self: center;
}
@media (min-width: 768px) {
  .fv__price {
    align-self: start;
  }
}
.fv__price-lead {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .fv__price-lead {
    font-size: 2.4rem;
    line-height: 1;
  }
}
.fv__price-lead-brand {
  font-size: 2.6rem;
  line-height: 4rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .fv__price-lead-brand {
    font-size: 4.8rem;
    line-height: 1;
  }
}
.fv__price-main {
  color: var(--color-green-dark);
  font-weight: 700;
  font-size: 4.54rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .fv__price-main {
    font-size: 6.4rem;
  }
}
.fv__price-main-num {
  font-family: var(--font-en);
  font-size: 7.1rem;
  line-height: 1;
}
.fv__price-main-num .semicolon {
  font-size: 3.4rem;
}
@media (min-width: 768px) {
  .fv__price-main-num .semicolon {
    font-size: 4.8rem;
  }
}
@media (min-width: 768px) {
  .fv__price-main-num {
    font-size: 10rem;
  }
}
.fv__lead {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  font-size: 1.2rem;
  color: var(--color-text-note);
}
.fv__cta {
  align-self: stretch;
}
@media (min-width: 768px) {
  .fv__cta {
    align-self: flex-start;
  }
}
.fv__image {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .fv__image {
    flex: 1 1 54%;
    margin-top: 0;
  }
}

/* ---- 信頼バー①（月桂冠つき実績） ---- */
/* FV(黄)→cream のトランジション。波SVG(クリーム塗り)を上端に敷く */
.fv-trust {
  background-color: var(--color-cream);
  background-image: url("../images/problems_bg_wave_top.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  display: flex;
  justify-content: center;
}
.fv-trust__inner {
  padding: 24px 24px 60px;
  justify-self: stretch;
}
@media (min-width: 768px) {
  .fv-trust__inner {
    padding: 24px 0 96px;
    width: auto;
  }
}

.trust {
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .trust {
    box-shadow: 0 4px 16px rgba(255, 233, 89, 0.3019607843);
    gap: 24px;
  }
}
.trust__title {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  width: 100%;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .trust__title {
    font-size: 1.8rem;
  }
}
.trust__title-green {
  color: var(--color-green-dark);
}
.trust__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .trust__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}
.trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.trust__laurel {
  width: 26.67px;
  flex: none;
}
@media (min-width: 768px) {
  .trust__laurel {
    width: 30px;
  }
}
.trust__value {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trust__num {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: 0.1rem;
}
@media (min-width: 768px) {
  .trust__num {
    letter-spacing: 0;
  }
}
.trust__num--score {
  align-items: baseline;
}
.trust__num--continue {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .trust__num--continue {
    font-size: 1.8rem;
  }
}
.trust__num .star {
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .trust__num .star {
    font-size: 1.8rem;
  }
}
.trust__num .score {
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .trust__num .score {
    font-size: 3rem;
  }
}
.trust__num strong {
  font-family: var(--font-en);
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .trust__num strong {
    font-size: 3rem;
  }
}
.trust__num strong .semicolon {
  font-size: 1.8rem;
  line-height: 1.2;
}
.trust__label {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-top: 2px;
}
.trust__note {
  color: var(--color-muted);
  font-size: 1.2rem;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .trust__note {
    align-self: flex-end;
    margin-top: 0;
  }
}

/* ===================================================================
   Problems（課題提起）
   =================================================================== */
.problems {
  background: var(--color-cream);
  padding: 0;
  position: relative;
}
@media (min-width: 768px) {
  .problems {
    padding: 0 0 64px;
  }
}
.problems__inner {
  padding: 0 24px;
}
.problems .section__label {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .problems .section__label {
    font-size: 1.4rem;
  }
}
.problems .section__lead {
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 0 auto 48px;
}
@media (min-width: 768px) {
  .problems .section__lead {
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 0 auto 40px;
  }
}
.problems__list {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .problems__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.problems__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px 24px 28px;
  position: relative;
}
.problems__card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.problems__no {
  align-self: flex-start;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--color-border);
  position: absolute;
}
.problems__img {
  margin-top: 8px;
  width: auto;
  height: 120px;
}
@media (min-width: 768px) {
  .problems__img {
    width: 200px;
    height: 150px;
  }
}
.problems__title {
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .problems__title {
    font-size: 2.4rem;
  }
}
.problems__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--color-text-note);
}

/* ===================================================================
   Solution（機能紹介・12種）
   =================================================================== */
/* problems(cream)→solution(white) のトランジション。波SVG(クリーム塗り)を上端に敷く */
.solution {
  background-color: #fff;
  background-image: url("../images/problems_bg_wave_under.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  padding: 108px 0 72px;
}
@media (min-width: 768px) {
  .solution {
    padding: 184px 0 72px;
  }
}
.solution__inner {
  padding: 0 24px;
}
.solution .section__label {
  font-size: 1.2rem;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .solution .section__label {
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
  }
}
.solution .section_heading {
  font-size: 2.6rem;
}
@media (min-width: 768px) {
  .solution .section_heading {
    font-size: 2.4rem;
  }
}
.solution__section-lead {
  max-width: 860px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .solution__section-lead {
    line-height: 1.5;
  }
}
.solution__head {
  margin-bottom: 36px;
}
.solution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .solution__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.solution__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 24px 20px 34px;
}
.solution__icon {
  width: 48px;
  margin-bottom: 18px;
}
.solution__title {
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.7rem;
  padding-bottom: 14px;
  margin-bottom: 14px;
  position: relative;
}
.solution__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 32px;
  height: 1px;
  background: var(--color-green);
}
.solution__text {
  font-size: 1.4rem;
  color: var(--color-text-note);
  line-height: 1.8;
}

/* ===================================================================
   CTA（乗換CTA・再利用）
   =================================================================== */
.cta {
  padding: 36px 0;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .cta {
    padding: 72px 0 64px;
    background-image: url("../images/cta_bg_masarusan.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 480px auto;
  }
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .cta__inner {
    padding: 0 24px;
  }
}
.cta__badge-container {
  display: flex;
  justify-content: center;
  position: relative;
}
.cta__badge-container:after {
  content: url("../images/cta_speech-bubble.svg");
  position: absolute;
  left: 50%;
  bottom: 1px;
  transform: translateX(-50%);
}
.cta__badge {
  display: inline-block;
  background: #fff;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.6rem;
  padding: 8px 22px;
  border-radius: 100px;
  position: relative;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .cta__badge {
    font-size: 1.8rem;
  }
}
.cta__catch {
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .cta__catch {
    font-size: 2.6rem;
  }
}
.cta__catch::before {
  content: "\\ﾠ";
}
.cta__catch::after {
  content: "ﾠ/";
}
.cta__heading {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .cta__heading {
    font-size: 3.2rem;
    margin-bottom: 14px;
  }
}
.cta__lead {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .cta__lead {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}
.cta__btn-container {
  align-self: stretch;
  margin: 0 36px;
}
@media (min-width: 768px) {
  .cta__btn-container {
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
  }
}
.cta__notes {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 14px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0 36px;
  align-self: stretch;
}
@media (min-width: 768px) {
  .cta__notes {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 1.8rem;
    padding: 0;
  }
}
.cta__notes li {
  position: relative;
  padding-left: 26px;
  text-align: left;
}
.cta__notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../images/cta_check.svg") center/contain no-repeat;
}
@media (min-width: 768px) {
  .cta__notes li::before {
    width: 18px;
    height: 18px;
    top: 0.5rem;
    transform: none;
  }
}

/* ===================================================================
   Before / After
   =================================================================== */
.before-after {
  background: var(--color-cream);
  padding: 72px 0 72px;
}
@media (min-width: 768px) {
  .before-after {
    padding: 84px 0 96px;
  }
}
.before-after__head {
  margin-bottom: 60px;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .before-after__head {
    padding: 0;
  }
}
.before-after .section__label {
  font-size: 1.2rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .before-after .section__label {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.before-after .section__heading {
  font-size: 2.6rem;
}
@media (min-width: 768px) {
  .before-after .section__heading {
    font-size: 2.4rem;
  }
}
.before-after__spacer {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .before-after__spacer {
    padding: 0 40px;
  }
}
@media (min-width: 768px) {
  .before-after {
    /* PC: 比較表と同様、表をグレーコンテナ(#F4F4EF)に内包 */
  }
  .before-after__inner {
    background: var(--color-gray-bg);
    border-radius: 16px;
    padding: 40px;
  }
}
.before-after {
  /* 角丸クリップはラッパー(div)に付与（table直掛けはSafari等で角丸が効かない） */
}
.before-after__table-wrap {
  overflow-x: auto;
  border-radius: 8px;
}
.before-after__container-note {
  margin-top: 16px;
  line-height: 1.5;
  color: #4B5563;
  font-size: 1.4rem;
}

/* ===================================================================
   データ表 共通（Before/After 表・比較表で同一の枠組み）
   - 罫線は横罫線主体（th のみ縦区切りを持ち、PCで消す）
   - 緑ヘッダー / ティール最左列 / 最終列クリーム
   - 最左列 sticky（2列目以降が横スクロール。影は SP のみ）
   =================================================================== */
.ba-table,
.comp-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  font-size: 1.4rem;
}
.ba-table th,
.ba-table td,
.comp-table th,
.comp-table td {
  height: 53px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  text-align: left;
}
.ba-table th,
.comp-table th {
  border-right: 1px solid var(--color-border);
}
@media (min-width: 768px) {
  .ba-table tbody tr th,
  .comp-table tbody tr th {
    border-right: none;
  }
}
.ba-table tbody tr:last-child th,
.ba-table tbody tr:last-child td,
.comp-table tbody tr:last-child th,
.comp-table tbody tr:last-child td {
  border-bottom: 0;
}
.ba-table tbody tr:last-child th,
.comp-table tbody tr:last-child th {
  border-right: 0;
}
.ba-table thead th,
.comp-table thead th {
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  border-bottom: 0;
}
.ba-table tbody th,
.comp-table tbody th {
  /* 最左列 */
  background: var(--color-teal-mid);
  color: #fff;
  font-weight: 700;
}
.ba-table,
.comp-table {
  /* 最左列固定。2列目以降が横スクロール（SP）。影は SP のみ（PCは表が収まる） */
}
.ba-table th:first-child,
.comp-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  box-shadow: 6px 0 8px -5px rgba(0, 0, 0, 0.18);
}
@media (min-width: 768px) {
  .ba-table th:first-child,
  .comp-table th:first-child {
    box-shadow: none;
  }
}
.ba-table,
.comp-table {
  /* 最終列（Biiino列）に淡クリーム地 */
}
.ba-table td:last-child,
.comp-table td:last-child {
  background: var(--color-cream);
}

.ba-table {
  min-width: 600px;
}
.ba-table tbody th {
  /* 1列目（作業）。短いラベルは折り返さない */
  white-space: nowrap;
}
.ba-table td img {
  display: inline-block;
  width: 18px;
  vertical-align: -3px;
  margin-right: 8px;
}
.ba-table__after em {
  color: var(--color-green);
}
.ba-table .cell {
  display: flex;
  align-items: center;
}
.ba-table .cell--column {
  flex-direction: column;
  align-items: flex-start;
}
.ba-table__note {
  display: block;
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-top: 4px;
}

/* ===================================================================
   Comparison（機能比較表 / SP横スクロール・最左列固定）
   =================================================================== */
.comparison {
  background: #fff;
  padding: 60px 0 96px;
}
.comparison__head {
  margin-bottom: 32px;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .comparison__head {
    padding: 0;
  }
}
.comparison .section__label {
  font-size: 1.2rem;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .comparison .section__label {
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
  }
}
.comparison .section__heading {
  font-size: 2.6rem;
}
@media (min-width: 768px) {
  .comparison .section__heading {
    font-size: 2.4rem;
  }
}
.comparison .section__lead {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  font-size: 1.4rem;
  line-height: 2.52rem;
}
@media (min-width: 768px) {
  .comparison .section__lead {
    max-width: 860px;
    margin-bottom: 48px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.comparison {
  /* SP: コンテナ背景なし（要件）。border-collapse:separate で sticky を安定させる。
     角丸はラッパー(div)の border-radius でクリップ（table直掛けはSafari等で不可） */
}
.comparison__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
}
.comparison__spacer {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .comparison__spacer {
    padding: 0 40px;
  }
}
.comparison {
  /* PC: コンテナ背景 #F4F4EF（要件） */
}
@media (min-width: 768px) {
  .comparison__inner {
    background: var(--color-gray-bg);
    border-radius: 16px;
    padding: 40px;
  }
}
.comparison__footnote {
  font-size: 1.4rem;
  color: #4B5563;
  margin-top: 20px;
}

/* SCROLLヒント（SPのみ。PCは表が収まるため非表示）。比較表・Before/After共通 */
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--color-text);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .scroll-hint {
    display: none;
  }
}
.scroll-hint img {
  width: 23px;
}

.comp-table {
  min-width: 680px;
}
@media (min-width: 768px) {
  .comp-table {
    min-width: 0;
  }
}
.comp-table th {
  /* 最左列（機能領域）は複数行ラベル。CJKで自然に折り返す */
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}
.comp-table {
  /* 最左列幅を確保（ba は nowrap だが comp は折返しのため明示） */
}
.comp-table th:first-child {
  min-width: 170px;
}
.comp-table td strong {
  color: var(--color-green);
}

/* ===================================================================
   R&C（実績・認定 / 月桂冠つき実績）
   =================================================================== */
.randc {
  background-color: var(--color-cream);
  padding: 60px 0 0;
}
.randc__inner {
  padding: 0 24px;
}
@media (min-width: 768px) {
  .randc__inner {
    padding: 0;
  }
}
.randc .section__label {
  font-size: 1.2rem;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .randc .section__label {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
  }
}
.randc .section__heading {
  font-size: 2.6rem;
}
@media (min-width: 768px) {
  .randc .section__heading {
    font-size: 2.4rem;
  }
}
.randc .section__lead {
  width: 100%;
  max-width: 860px;
  line-height: 1.8;
  font-size: 1.5rem;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .randc .section__lead {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 72px;
  }
}
.randc__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 8px 0 18px;
}
@media (min-width: 768px) {
  .randc__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.randc__stats-note {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #6B7280;
  text-align: right;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .randc__stats-note {
    margin: 0 48px 42px;
  }
}
.randc__stat {
  text-align: center;
}
.randc__stat-head {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
}
.randc__laurel {
  width: 29px;
  flex: none;
}
@media (min-width: 768px) {
  .randc__laurel {
    width: 41px;
  }
}
.randc__stat-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.randc__stat-label {
  font-size: 1.8rem;
  color: var(--color-laurel-text);
}
@media (min-width: 768px) {
  .randc__stat-label {
    font-size: 2.4rem;
  }
}
.randc__stat-num {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
}
.randc__stat-num--rating {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.randc__stat-num--users {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) {
  .randc__stat-num--users {
    font-size: 2.587rem;
  }
}
.randc__stat-num--continue {
  font-size: 2.4rem;
  font-family: var(--font-en);
  display: flex;
  align-items: baseline;
  color: var(--color-green-dark);
}
@media (min-width: 768px) {
  .randc__stat-num--continue {
    font-size: 3.52rem;
  }
}
.randc__stat-num-rating-star {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--color-green);
}
.randc__stat-num-rating-percent {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--color-green);
}
@media (min-width: 768px) {
  .randc__stat-num-rating-percent {
    font-size: 4.93rem;
  }
}
.randc__stat-num-rating-slash {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 2.662rem;
}
@media (min-width: 768px) {
  .randc__stat-num-rating-slash {
    font-size: 3.7rem;
  }
}
.randc__stat-num-rating-max {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .randc__stat-num-rating-max {
    font-size: 3.7rem;
  }
}
.randc__stat-num-users {
  font-family: var(--font-en);
  color: var(--color-green-dark);
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .randc__stat-num-users {
    font-size: 4.6rem;
  }
}
.randc__stat-num-users .semicolon {
  font-size: 1.8rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .randc__stat-num-users .semicolon {
    font-size: 2.587rem;
    line-height: 1;
  }
}
.randc__stat-num-continue {
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .randc__stat-num-continue {
    font-size: 4.7rem;
  }
}
.randc__stat-desc {
  display: block;
  font-size: 1.4rem;
  margin-top: 12px;
}
.randc__cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
@media (min-width: 768px) {
  .randc__cards {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
}
.randc__card {
  background: var(--color-green) url("../images/randc_bg.svg") center bottom repeat-x;
  border-radius: 8px;
  padding: 24px 24px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 768px) {
  .randc__card {
    max-width: 364px;
  }
}
.randc__card-img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 16px;
}
.randc__card-tag {
  font-size: 1.4rem;
  margin-bottom: 4px;
  line-height: 1.5;
}
.randc__card-title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  margin: 4px 0 16px;
}
.randc__card-text {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* ===================================================================
   User Voice（利用者の声）
   =================================================================== */
.uservoice {
  background: var(--color-cream);
  padding: 60px 0 72px;
}
@media (min-width: 768px) {
  .uservoice {
    padding: 72px 0 96px;
  }
}
.uservoice__inner {
  padding: 0 24px;
}
@media (min-width: 768px) {
  .uservoice__inner {
    padding: 0;
  }
}
.uservoice .section__heading {
  font-size: 2.6rem;
  line-height: 4.55rem;
}
.uservoice .section__lead {
  font-size: 1.4rem;
  line-height: 2.6rem;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .uservoice .section__lead {
    margin-bottom: 60px;
  }
}
.uservoice__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .uservoice__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.uservoice__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 36px;
}
.uservoice__head {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--color-border);
}
.uservoice__icon {
  width: 56px;
  flex: none;
}
.uservoice__meta {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-around;
}
.uservoice__title {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .uservoice__title {
    font-size: 1.8rem;
  }
}
.uservoice__who {
  font-size: 1.2rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-top: 4px;
}
.uservoice__who-category {
  color: var(--color-green);
}
.uservoice__text {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .uservoice__text {
    font-size: 1.6rem;
  }
}
.uservoice__text mark {
  background: #fff3a8;
  color: inherit;
  font-weight: 700;
  padding: 0 2px;
}

/* ===================================================================
   FAQ（アコーディオン / CSSのみ）
   =================================================================== */
.faq {
  background: #fff;
  padding: 60px 0 72px;
}
@media (min-width: 768px) {
  .faq {
    padding: 84px 0 96px;
  }
}
.faq__inner {
  padding: 0 24px;
}
@media (min-width: 768px) {
  .faq__inner {
    padding: 0;
  }
}
.faq .section__label {
  font-size: 1.2rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .faq .section__label {
    font-size: 1.4rem;
  }
}
.faq .section__heading {
  font-size: 2.6rem;
  line-height: 1.5;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .faq .section__heading {
    font-size: 3.6rem;
    margin-bottom: 60px;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 8px auto 0;
}
.faq__item {
  max-width: 1138px;
  background: var(--color-gray-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}
.faq__item[open] .faq__q::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__q {
  display: flex;
  align-items: center;
  padding: 18px 52px 18px 70px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  cursor: pointer;
  position: relative;
  list-style: none;
}
@media (min-width: 768px) {
  .faq__q {
    font-size: 1.8rem;
  }
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q:before {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
}
.faq__q:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: linear-gradient(var(--color-green), var(--color-green)) center/14px 2px no-repeat, linear-gradient(var(--color-green), var(--color-green)) center/2px 14px no-repeat;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
.faq__a {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  padding: 12px 24px 24px 70px;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .faq__a {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

/* ===================================================================
   Footer
   =================================================================== */
.footer {
  background: #fff;
  padding: 48px 0 28px;
  text-align: center;
}
.footer__inner {
  padding: 0 24px;
}
@media (min-width: 768px) {
  .footer__inner {
    padding: 0;
  }
}
.footer__logo-link {
  display: inline-block;
  margin: 0 auto 24px;
}
.footer__logo {
  display: inline-block;
  height: auto;
}
@media (min-width: 768px) {
  .footer__logo {
    width: 120px;
  }
}
.footer__tagline {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer__tagline {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 48px;
  }
}
.footer__nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  font-size: 1.2rem;
  margin-bottom: 48px;
  text-align: left;
}
@media (min-width: 768px) {
  .footer__nav ul {
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}
.footer__nav a:hover {
  color: var(--color-green);
}
.footer__notes {
  font-size: 1rem;
  color: #999;
  line-height: 1.9;
  max-width: 1200px;
  margin: 0 auto 48px;
  text-align: left;
}
@media (min-width: 768px) {
  .footer__notes {
    font-size: 1.2rem;
    color: var(--color-muted);
    text-align: center;
  }
}
.footer__company {
  padding: 60px 0 48px;
  border-top: 1px solid var(--color-border);
  font-style: normal; /* `<address>` のブラウザデフォルト italic を打ち消す（将来テキスト追加時の事故防止） */
}
@media (min-width: 768px) {
  .footer__company {
    padding: 32px 0 18px;
  }
}
.footer__company img {
  width: 128px;
  height: auto;
  margin: 0 auto 10px;
}
@media (min-width: 768px) {
  .footer__company img {
    width: auto;
    height: 19px;
  }
}
.footer__copy {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6B7280;
}

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

/*# sourceMappingURL=style.css.map */
