/* =====================================================
   SJ Life Brand Tokens（ブランド・クリエイティブ指針 準拠）
   ===================================================== */
:root {
  --sj-orange: #ae4600; /* SJ Warm Orange */
  --sj-navy: #1e3248; /* SJ Deep Navy */
  --sj-pink: #ffe0d1; /* SJ Light Pink */
  --sj-blue: #d6e9ff; /* SJ Light Blue */
  --sj-ivory: #fef9f4; /* SJ Base (Ivory) */
  --sj-gray: #333333; /* SJ Gray */
  /* App Sub Colors（試験適用） */
  --sj-green: #639a67; /* SJ Nature Green : 成功・完了・進行中 */
  --sj-cblue: #5380a6; /* SJ Clear Blue   : 情報・リンク */
  --sj-purple: #a36b8d; /* SJ Berry Purple : 特別感・バナー */
  --sj-gold: #dca335; /* SJ Honey Gold   : 強調・ハイライト */
  --sj-coral: #c85a48; /* SJ Coral Red    : 警告・注意 */
  --line: #ead9cc;
  --line-blue: #c5dcf5;
  --line-green: #41c55a;
  --radius: 14px;
  --shadow: 0 6px 22px rgba(30, 50, 72, 0.1);
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Zen Old Mincho", serif;
  /* --font-serif: "Noto Serif JP", serif; */
  --font-en: "Inter", sans-serif;
  interpolate-size: allow-keywords;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--sj-gray);
  background: var(--sj-ivory);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* スマホLP型：中央1カラム（max-width 1200pxの台紙の中に520pxの誌面） */
.stage {
  max-width: 1200px;
  margin: 0 auto;
}
.lp {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 40px rgba(30, 50, 72, 0.08);
  overflow: hidden;
}
.sec-pad {
  padding: 56px 22px;
}

/* ---------- 見出し ---------- */
.eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--sj-orange);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}
.sec-title,.sec-title_kaso {
  font-family: var(--font-serif);
  font-size: min(7.3vw, 32px);
  font-weight: 800;
  color: var(--sj-navy);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 20px;
}
.sec-title-sm {
  font-size: 28px;
}
.sec-lead {
  text-align: center;
  color: #5a5a5a;
  font-size: 14.5px;
  margin-bottom: 32px;
}

/* ---------- ロゴ（画像版） ---------- */
.logo {
  display: inline-flex;
  align-items: center;
}
.logo-img-header {
  height: 34px;
  width: auto;
  display: block;
} /* 120%版の90% */
.logo-img-footer {
  height: 34px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* ---------- ボタン ---------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: 0.04em;
  padding: 16px 20px;
  border-radius: 999px;
  width: 100%;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}
.btn-line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.3);
  position: relative;
}
.btn-navy {
  background: var(--sj-navy);
  color: #fff;
}
.btn-orange {
  background: var(--sj-orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(174, 70, 0, 0.28);
}
.btn .fa-chevron-right {
  font-size: 13px;
}
.btn-line .line-ico {
  font-size: 40px;
}

/* ---------- CTAユニット（LINE＋ログイン） ---------- */
.cta-unit {
  padding: 30px 26px;
  background: var(--sj-ivory);
}
.cta-callout {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--sj-navy);
  margin-bottom: 14px;
  position: relative;
  white-space: nowrap;
}
.cta-callout .sp_show {
  display: inline;
}
.cta-callout em {
  color: var(--sj-green);
  border-bottom: 2px dotted var(--sj-green);
}
.cta-callout::before,
.cta-callout::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 25px;
  background: var(--sj-navy);
  margin: 0 20px;
  vertical-align: -5px;
}
.cta-callout::before {
  transform: rotate(-28deg);
}
.cta-callout::after {
  transform: rotate(28deg);
}
.cta-unit .btn + .btn {
  margin-top: 12px;
}
.cta-fine {
  font-size: 11px;
  color: #9a9a9a;
  margin-top: 14px;
  line-height: 1.7;
}

/* =====================================================
   FV（ファーストビュー）
   ===================================================== */
.fv {
  position: relative;
  /* background: linear-gradient(180deg, #c97a45 0%, var(--sj-orange) 100%); */
  background: var(--sj-orange);
  padding-top: 50px;
}
.fv-photo {
  height: 330px;
  background-size: cover;
  background-position: 72% center;
  position: relative;
}
.fv-photo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(174, 70, 0, 0) 68%,
    rgba(174, 70, 0, 0.55) 88%,
    rgba(174, 70, 0, 1) 100%
  );
}
.fv-brand {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #fff;
}
.fv-brand .clinic-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--sj-navy);
  letter-spacing: 0.1em;
}
.fv-copy {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding: 0 22px 26px;
  color: #fff;
}
.fv-catch {
  font-family: var(--font-serif);
  font-size: 27.5px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(120, 48, 0, 0.45);
  margin-top: 10px;
  margin-bottom: 14px;
}
.fv-catch .accent {
  color: var(--sj-pink);
}
.br-pc {
  display: none;
}
.fv-ribbon {
  display: inline-block;
  background: #fff;
  color: var(--sj-orange);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 16px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.fv-sub {
  font-size: 14.5px;
  line-height: 1.9;
  color: #ffefe3;
}

/* =====================================================
   メリット帯
   ===================================================== */
.merit-band {
  background: #fff;
  padding: 44px 22px 50px;
}
.merit-band-title {
  text-align: center;
  margin-bottom: 26px;
}
.merit-band-title .balloon {
  display: inline-block;
  background: var(--sj-purple);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 8px 24px;
  position: relative;
  margin-bottom: 12px;
}
.merit-band-title .balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--sj-purple);
  border-bottom: none;
}
.merit-band-title h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--sj-navy);
  font-weight: 600;
  line-height: 1.4;
  margin-top: 10px;
}
.merit-band .chushaku{
  font-size: 90%;
  text-align:center;
  margin-top: 10px;
}
.merit-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.merit-cell {
  background: var(--sj-ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 10px;
  text-align: center;
}
.merit-cell i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 10px;
}
.merit-cell:nth-child(1) i {
  background: #f2e4ec;
  color: var(--sj-purple);
}
.merit-cell:nth-child(2) i {
  background: #e2ecf4;
  color: var(--sj-cblue);
}
.merit-cell:nth-child(3) i {
  background: #e4efe5;
  color: var(--sj-green);
}
.merit-cell h3 {
  font-size: 12.5px;
  color: var(--sj-navy);
  font-weight: 700;
  line-height: 1.55;
}
.merit-cell small {
  display: block;
  font-size: 11.5px;
  color: #555;
  margin-top: 4px;
  line-height: 1.5;
}
.merit-foot {
  font-size: 11px;
  color: #9a9a9a;
  margin-top: 16px;
  line-height: 1.7;
}

/* =====================================================
   BMIチェック
   ===================================================== */
.bmi {
  background: var(--sj-pink);
  padding: 48px 22px;
}
.bmi-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
}
.bmi-card h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--sj-navy);
  text-align: center;
  line-height: 1.2;
}
.bmi-en {
  font-family: var(--font-en);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--sj-orange);
  font-weight: 600;
  margin: 4px 0 24px;
}
.bmi-field {
  margin-bottom: 16px;
}
.bmi-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--sj-navy);
  margin-bottom: 6px;
}
.bmi-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sj-ivory);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
}
.bmi-input input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-en);
  font-size: 18.5px;
  min-width: 0;
}
.bmi-input span {
  font-size: 13px;
  color: #9a9a9a;
  font-weight: 600;
  font-family: var(--font-en);
}
.bmi-input:focus-within {
  border-color: var(--sj-orange);
}
.bmi-card .btn {
  margin-top: 6px;
}
.bmi button:disabled {
  background-color: #777;
}
.bmi-note {
  font-size: 11px;
  color: #9a9a9a;
  text-align: center;
  margin-top: 12px;
  line-height: 1.7;
}

.bmi-card #bmi-result {
  margin-top: 50px;
  width: 100%;
  border: var(--sj-coral) solid 2px;
  grid-column: 1 / -1;
  padding-top: 30px;
  padding-bottom: 30px;
}
.bmi-card #bmi-result h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  text-align: center;
  color: #000;
}

.bmi-result_data {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.bmi-result_data p {
  color: var(--sj-orange);
  font-size: 20px;
  font-weight: 600;
}
.bmi-result_show {
  text-align: center;
  color: var(--sj-orange);
  border: 0;
  background: #efefef;
  border-radius: 10px;
  font-weight: 600;
  font-size: 24px;
  padding: 7px 0;
  max-width: 400px;
  width: calc(100% - 10px);
  margin-top: 8px;
}
#bmi-comment {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
#bmi-comment span {
  font-size: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  font-weight: 500;
  background: linear-gradient(transparent 70%, var(--sj-pink) 70%);
}
#bmi-alert,
#bmi-alert::before {
  background-color: var(--sj-coral);
}
#bmi-alert {
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 10px;
  margin-top: 10px;
  position: relative;
  line-height: 1.5;
}
#bmi-alert::before {
  content: "";
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  width: 14px;
  height: 15px;
  left: calc(50% - 7px);
  top: -14px;
}
#bmi-alert,
#bmi-comment strong,
#bmi-data-text span,
#bmi-line-btn {
  display: none;
}
#bmi-comment strong {
  font-size: 130%;
  font-weight: 800;
  font-size: 150%;
  line-height: 1.5;
  background: linear-gradient(transparent 70%, var(--sj-pink) 70%);
}

#bmi-alert.active,
#bmi-comment strong.active,
#bmi-data-text span.active,
#bmi-line-btn.active {
  display: block;
}

/* =====================================================
   選ばれる理由
   ===================================================== */
.reasons {
  background: #fff;
}
.reason-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.reason-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--sj-navy);
  color: #fff;
  padding: 15px 18px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.reason-item summary::-webkit-details-marker {
  display: none;
}
.reason-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  background: var(--sj-orange);
  color: #fff;
  border-radius: 5px;
  padding: 2px 9px;
  flex: 0 0 auto;
}
.reason-item summary .chev {
  margin-left: auto;
  transition: transform 0.25s;
  font-size: 13px;
}
.reason-item[open] summary .chev {
  transform: rotate(180deg);
}
.reason-body {
  padding: 22px 20px;
  background: var(--sj-ivory);
  font-size: 14.5px;
}
.reason-body h4 {
  color: var(--sj-orange);
  font-size: 16px;
  margin: 18px 0 6px;
  font-weight: 700;
  text-decoration: underline;
}
.reason-body h4:first-child {
  margin-top: 0;
}
.reason-body .ev-box,
#bmi-result {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 16px;
  font-size: 13px;
  color: #5a5a5a;
}
.reason-body .ev-box strong {
  color: var(--sj-navy);
  display: block;
  margin-bottom: 6px;
  font-size: 125%;
  text-align: center;
}
.reason-body ul {
  padding-left: 0;
  margin-top: 8px;
}
.reason-body ul li {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 3px 0;
}
.reason-body ul li::before {
  content: "・";
  color: var(--sj-orange);
  font-weight: 700;
}

/* =====================================================
   ご利用の流れ
   ===================================================== */
.flow {
  background: var(--sj-ivory);
}
.flow-card {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 14px;
  margin-bottom: 26px;
  overflow: hidden;
}
.flow-card .visual {
  position: relative;
}
.flow-card .visual .ph {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.flow-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sj-orange);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  border-radius: 6px;
  padding: 4px 12px;
}
.flow-chip.sub {
  background: var(--sj-cblue);
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
}
.flow-card .text {
  padding: 25px;
}
.flow-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--sj-navy);
  margin-bottom: 15px;
}
.flow-card p {
  font-size: 14.5px;
  color: #5a5a5a;
}
.flow-point {
  margin-top: 20px;
  background: var(--sj-pink);
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 13px;
  color: var(--sj-navy);
}
.flow-point strong {
  color: #000;
  font-weight: bold;
}
.deliver-badge {
  position: absolute;
  right: 12px;
  bottom: -16px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--sj-gold);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 4px 12px rgba(220, 163, 53, 0.45);
}
.deliver-badge b {
  font-size: 16.5px;
}
/* CSSビジュアル（写真の代替） */
.cssvis {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.cssvis.v-line {
  background: linear-gradient(135deg, var(--sj-pink), #fff3ea);
}
.cssvis.v-video {
  background: linear-gradient(135deg, var(--sj-navy), #2c4a6b);
}
.cssvis.v-meds {
  background: linear-gradient(135deg, var(--sj-pink), var(--sj-ivory));
}
.cssvis.v-scale {
  background: linear-gradient(135deg, #eaf3fd, var(--sj-ivory));
}
.cssvis.v-follow {
  background: linear-gradient(135deg, var(--sj-pink), #fff1e8);
}
.cssvis .big-ico {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #fff;
  color: var(--sj-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 33px;
  box-shadow: var(--shadow);
}
.cssvis .vis-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--sj-navy);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 6px 16px;
}

/* =====================================================
   治療スケジュール
   ===================================================== */
.schedule {
  background: #fff;
}
.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--sj-orange), var(--sj-green));
}
.tl-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  position: relative;
}
.tl-item:last-child {
  margin-bottom: 0;
}
.tl-item:last-child .tl-badge {
  background: var(--sj-green);
}
.tl-item:last-child .tl-body-ico {
  background: #e4efe5;
  color: var(--sj-green);
}
.tl-badge {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sj-orange);
  color: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 0.8;
  box-shadow: 0 0 0 4px #fff;
}
.tl-badge small {
  font-size: 11px !important;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.tl-content {
  flex: 1;
  background: var(--sj-ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 18px;
}
.tl-content .tl-period {
  font-size: 11.5px;
  color: var(--sj-orange);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.tl-content h4 {
  color: var(--sj-navy);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.tl-content p {
  font-size: 14px;
  color: #5a5a5a;
}
.tl-body-ico {
  float: right;
  margin-left: 10px;
  color: var(--sj-orange);
  background: var(--sj-pink);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17.5px;
}
.caution {
  margin-top: 34px;
  background: #fff;
  border: 1.5px solid #ccc;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 14px;
  color: #5a5a5a;
}
.caution strong {
  display: block;
  color: var(--sj-coral);
  margin-bottom: 10px;
  font-size: 20px;
  text-align: center;
}

/* =====================================================
   料金プラン
   ===================================================== */
.pricing {
  background: var(--sj-ivory);
}
.price-block {
  margin-bottom: 30px;
}
.price-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--sj-navy);
  margin-bottom: 12px;
}
.price-block-title i {
  color: var(--sj-orange);
}
.price-table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 14.5px;
}
.price-table th {
  background: var(--sj-navy);
  color: #fff;
  font-weight: 700;
  padding: 11px 10px;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.price-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table .dose {
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--sj-navy);
}
.price-table .price {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--sj-orange);
}
.price-table .med-name {
  background: var(--sj-pink);
  color: var(--sj-navy);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 6px;
  border-bottom: none;
  line-height: 1.5;
}
.price-fine {
  font-size: 11px;
  color: #9a9a9a;
  margin-top: 10px;
  line-height: 1.7;
}

/* =====================================================
   お支払い方法
   ===================================================== */
.payment {
  background: #fff;
  padding: 48px 22px;
}
.pay-row {
  /*display: grid;*/
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.pay-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--sj-ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sj-navy);
  text-align: center;
}
.pay-chip i {
  color: var(--sj-orange);
  font-size: 26.5px;
}
.pay-note {
  text-align: center;
  font-size: 12px;
  color: #9a9a9a;
  margin-top: 14px;
  line-height: 1.7;
}

/* =====================================================
   知って納得！肥満症のこと
   ===================================================== */
.knowledge {
  background: var(--sj-pink);
}
.kn-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px 22px;
}
.kn-step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sj-orange);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14.5px;
  margin-right: 8px;
  flex: 0 0 26px;
}
.kn-box {
  background: var(--sj-ivory);
  border: 1.5px solid var(--sj-orange);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
  margin-bottom: 14px;
}
.kn-box .kn-head {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--sj-navy);
  margin-bottom: 10px;
}
.kn-value {
  font-family: var(--font-en);
  font-size: 26.5px;
  font-weight: 700;
  color: var(--sj-navy);
  line-height: 1;
}
.kn-value small {
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.kn-plus {
  text-align: center;
  font-size: 24px;
  color: var(--sj-orange);
  font-weight: 700;
  margin: 6px 0 14px;
}
.kn-or {
  text-align: center;
  margin: 14px 0;
}
.kn-or span {
  display: inline-block;
  background: var(--sj-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 22px;
}
.kn-list {
  font-size: 13px;
  color: #5a5a5a;
  background: var(--sj-ivory);
  border-radius: 10px;
  padding: 16px 18px;
  columns: 1;
}
.kn-list li {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 3px 0;
  break-inside: avoid;
}
.kn-list li i {
  color: var(--sj-orange);
  font-size: 10px;
  margin-top: 7px;
}
.kn-list-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--sj-navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.kn-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}
.kn-list-box {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.kn-list-box small {
  font-size: 12px;
  font-weight: 700;
  color: var(--sj-orange);
}
.kn-list-box .kn-value {
  font-size: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 1px;
}
.kn-foot {
  font-size: 11px;
  color: #9a9a9a;
  margin-top: 14px;
  line-height: 1.7;
}

/* =====================================================
   代用すべきでない理由
   ===================================================== */
.why-not {
  background: #fff;
}
.wn-item {
  border-left: 4px solid var(--sj-cblue);
  background: #f6f9fb;
  border-radius: 0 12px 12px 0;
  padding: 24px 20px;
  margin-bottom: 20px;
}
.wn-item h3 {
  font-size: 20px;
  color: var(--sj-navy);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.wn-item h3 i {
  color: var(--sj-cblue);
  margin-top: 18px;
  font-size: 30px;
}
.wn-item p {
  font-size: 14px;
  color: #5a5a5a;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  background: var(--sj-ivory);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px;
  font-weight: 700;
  font-size: 15px;
  color: var(--sj-navy);
  line-height: 1.6;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-q {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sj-orange);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14.5px;
  margin-top: 1px;
}
.faq-item summary .chev {
  margin-left: auto;
  color: var(--sj-orange);
  transition: transform 0.25s;
  margin-top: 4px;
  font-size: 13px;
}
.faq-item[open] summary .chev {
  transform: rotate(180deg);
}
.faq-a {
  display: flex;
  gap: 12px;
  padding: 0 16px 18px;
}
.faq-a .a-mark {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e4efe5;
  color: var(--sj-green);
  font-family: var(--font-en);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14.5px;
}
.faq-a p {
  font-size: 14px;
  color: #5a5a5a;
}

/* =====================================================
   運営会社 / フッター
   ===================================================== */
.company {
  background: #fff;
}
.company-lead {
  font-size: 14px;
  color: #5a5a5a;
  text-align: center;
  margin-bottom: 24px;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 26px;
}
.partner-chip {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  color: var(--sj-navy);
  background: var(--sj-ivory);
}
.partner-chip i {
  color: var(--sj-orange);
}
.company-table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.company-table dl {
  display: grid;
  grid-template-columns: 108px 1fr;
}
.company-table dt {
  background: var(--sj-pink);
  color: var(--sj-navy);
  font-weight: 700;
  font-size: 12.5px;
  padding: 13px 14px;
  border-bottom: 1px solid #fff;
}
.company-table dd {
  padding: 13px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.company-table dl:last-of-type dt,
.company-table dl:last-of-type dd {
  border-bottom: none;
}

footer {
  background: var(--sj-orange);
  color: #fff;
  padding: 38px 22px 22px;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  font-size: 11.5px;
  margin: 20px 0 0;
}
.footer-links a {
  opacity: 0.92;
}
.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.copyright {
  font-size: 11px;
  margin-top: 26px;
  opacity: 0.85;
  font-family: var(--font-en);
}

::selection {
  background: var(--sj-pink);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- 保険診療との比較図 ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.cmp-col {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.cmp-col.sj {
  border: 2px solid var(--sj-orange);
}
.cmp-head {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 6px;
  background: #8a8f98;
  color: #fff;
}
.cmp-col.sj .cmp-head {
  background: var(--sj-orange);
}
.cmp-body {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.cmp-step {
  width: 100%;
  background: var(--sj-ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sj-navy);
  line-height: 1.5;
}
.cmp-step small {
  display: block;
  font-weight: 500;
  font-size: 10px;
  color: #9a9a9a;
}
.cmp-step.start {
  background: #fbf0da;
  border-color: var(--sj-gold);
  color: #9c7110;
}
.cmp-arrow {
  color: #b8bec7;
  font-size: 13px;
  line-height: 1;
}
.cmp-col.sj .cmp-arrow {
  color: var(--sj-orange);
}
.cmp-total {
  margin-top: auto;
  padding: 10px 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--sj-navy);
  background: #f1f3f6;
  width: 100%;
}
.cmp-col.sj .cmp-total {
  background: var(--sj-pink);
  color: var(--sj-orange);
}
.cmp-note {
  font-size: 11px;
  color: #9a9a9a;
  margin-top: 10px;
  line-height: 1.7;
}
.step01-img {
  background-image: url("../images/image_01.jpg");
  background-size: cover;
  background-position: center;
}
.step03-img {
  background-image: url("../images/image_02.jpg");
  background-size: cover;
  background-position: center 45%;
}
.step04-img {
  background-image: url("../images/image_03.jpg");
  background-size: cover;
  background-position: center 60%;
}
.step05-img {
  background-image: url("../images/image_04.jpg");
  background-size: cover;
  background-position: center 25%;
}
/* ---------- 共有写真（データURIは1箇所のみ定義） ---------- */
.photo-online {
  background-image: url("../images/image_05.jpg");
  background-size: cover;
  background-position: center;
}

/* =====================================================
   PC レイアウト（min-width:1024px / フルレスポンシブ対応）
   ※ 520px以下のスマホ表示には一切影響しません
   ===================================================== */
@media (min-width: 1024px) {
  .lp {
    max-width: 1024px;
  }
  .sec-pad {
    padding: 88px 64px;
  }
  .eyebrow {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .sec-title,.sec-title_kaso {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: bold;
  }
  .sec-title br {
    display: none;
  }
  .sec-lead {
    font-size: 16px;
    margin-bottom: 46px;
  }

  /* ---------- FV：左コピー／右写真の2カラムヒーロー ---------- */
  .fv {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    min-height: 600px;
  }
  .fv.kaso{
    min-height: auto;
  }
  .fv-brand {
    padding: 16px 32px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(30, 50, 72, 0.08);
  }
  .logo-img-header {
    height: 45px;
  }
  .fv-brand .clinic-tag {
    font-size: 14px;
  }
  .fv-photo {
    order: 2;
    height: auto;
    background-position: center;
  }
  .fv-photo::after {
    background: linear-gradient(
      90deg,
      rgba(174, 70, 0, 0.6) 0%,
      rgba(174, 70, 0, 0) 42%
    );
    bottom: -1px;
  }

  .fv-copy {
    order: 1;
    margin-top: 0;
    align-self: center;
    padding: 112px 8px 72px 64px;
  }
  .fv-ribbon {
    font-size: 15.5px;
    padding: 8px 20px;
    margin-bottom: 16px;
  }
  .fv-catch {
    font-size: 38px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .fv-catch br {
    display: inline;
  }
  .br-pc {
    display: inline;
  }
  .fv-sub {
    font-size: 16.5px;
    max-width: 22.5em;
  }
  .fv-sub span {
    display: inline-block;
  }

  /* ---------- CTAユニット ---------- */
  .cta-unit {
    padding: 46px 64px;
    text-align: center;
  }
  .cta-callout {
    font-size: 20px;
  }
  .cta-unit .btn {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-fine {
    max-width: 660px;
    margin: 16px auto 0;
  }

  /* ---------- メリット帯 ---------- */
  .merit-band {
    padding: 76px 64px;
  }
  .merit-band-title {
    margin-bottom: 34px;
  }
  .merit-band-title .balloon {
    font-size: 14px;
    padding: 7px 24px;
  }
  .merit-band-title h2 {
    font-size: 32px;
  }
  .merit-trio {
    max-width: 920px;
    margin: 0 auto;
    gap: 20px;
  }
  .merit-cell {
    padding: 32px 30px;
  }
  .merit-cell i {
    width: 62px;
    height: 62px;
    font-size: 28px;
    margin-bottom: 14px;
  }
  .merit-cell h3 {
    font-size: 22px;
    line-height: 1.4;
  }
  .merit-cell h3 br {
    /* display: none; */
  }
  .merit-cell small {
    font-size: 16px;
    margin-top: 10px;
  }
  .merit-foot {
    text-align: center;
    margin-top: 24px;
  }

  /* ---------- BMIチェック：入力欄を横並びに ---------- */
  .bmi {
    padding: 84px 64px;
  }
  .bmi-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 46px 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 22px;
  }
  .bmi-card h2,
  .bmi-card .bmi-en,
  .bmi-card .btn,
  .bmi-card .bmi-note {
    grid-column: 1/-1;
  }
  .bmi-card h2 {
    font-size: 36px;
    line-height: 1.2;
  }
  .bmi-en {
    margin-bottom: 28px;
  }
  .bmi-card .btn {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }

  /* ---------- 選ばれる理由 ---------- */
  .reason-item {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }
  .reason-item summary {
    font-size: 20px;
    padding: 19px 26px;
  }
  .reason-body {
    padding: 40px 45px;
    font-size: 15.5px;
  }
  .reason-body h4 {
    font-size: 22px;
  }
  .compare {
    margin-left: auto;
    margin-right: auto;
    gap: 14px;
  }
  .cmp-note {
    text-align: center;
  }

  /* ---------- ご利用の流れ：写真＋テキストの横組みカード（交互配置） ---------- */
  .flow .sec-lead {
    margin-bottom: 40px;
  }
  .flow-card {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    margin-bottom: 30px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
  .flow-card .visual {
    min-height: 264px;
  }
  .flow-card .visual .ph {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
  }
  .flow-card .text {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .flow-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .flow-card p {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 1px;
  }
  .flow-point {
    font-size: 13.5px;
    line-height: 1.4;
    font-weight: bold;
  }
  .deliver-badge {
    right: 14px;
    bottom: 14px;
    width: 86px;
    height: 86px;
    font-size: 12px;
  }
  .deliver-badge b {
    font-size: 19px;
  }

  /* ---------- 治療スケジュール：横型タイムライン（5カラム） ---------- */
  .schedule .sec-lead {
    margin-bottom: 52px;
  }
  .timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .timeline::before {
    left: 10%;
    right: 10%;
    top: 26px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--sj-orange), var(--sj-green));
  }
  .tl-item {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
  }
  .tl-badge {
    margin: 0 auto;
    width: 52px;
    height: 52px;
    font-size: 18px;
    flex: 0 0 auto;
  }
  .tl-badge small {
    font-size: 8.5px;
  }
  .tl-content {
    padding: 20px 20px;
  }
  .tl-content .tl-period {
    font-size: 12px;
    line-height: 1.4;
  }
  .tl-content h4 {
    font-size: 18px;
    line-height: 1.4;
  }
  .tl-content p {
    font-size: 13px;
  }
  .tl-body-ico {
    display: none;
  }
  .caution {
    max-width: 100%;
    margin: 44px auto 0;
    padding: 30px 40px;
  }

  /* ---------- 料金プラン：2表を横並びに ---------- */
  .pricing {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 0 28px; */
    align-items: start;
  }
  .pricing > .eyebrow,
  .pricing > .sec-title,
  .pricing > .sec-title2,
  .pricing > .sec-lead,
  .pricing > .price-fine {
    grid-column: 1/-1;
  }
  .price-block {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .price-block-title {
    font-size: 16.5px;
  }
  .price-fine {
    margin-top: 28px;
    text-align: center;
  }

  /* ---------- お支払い方法 ---------- */
  .payment {
    padding: 84px 64px;
  }
  .pay-row {
    max-width: 560px;
    margin: 28px auto 0;
  }
  .pay-chip {
    padding: 25px 10px 20px;
    font-size: 16px;
  }
  .pay-note {
    margin-top: 18px;
  }

  /* ---------- 知って納得！肥満症のこと ---------- */
  .kn-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 42px 46px;
  }
  .kn-box {
    padding: 30px 25px;
  }
  .kn-value {
    font-size: 30px;
  }
  .kn-list {
    columns: 2;
    column-gap: 30px;
    padding: 25px 26px;
    font-size: 14px;
    border-radius: 10px;
    background: #fff;
    margin-top: 15px;
  }
  .kn-foot {
    text-align: left;
  }

  /* ---------- 代用すべきでない理由：3カラムカード ---------- */
  .why-not {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
  }
  .why-not > .eyebrow,
  .why-not > .sec-title,
  .why-not > .sec-title2,
  .why-not > .sec-lead {
    grid-column: 1/-1;
  }
  .why-not .sec-title-sm {
    font-size: 32px;
  }
  .wn-item {
    margin-bottom: 0;
    border-left: none;
    border-top: 4px solid var(--sj-cblue);
    border-radius: 0 0 12px 12px;
    padding: 26px 24px;
  }
  .wn-item h3 {
    font-size: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .wn-item h3 i {
    font-size: 26px;
    margin: 0 auto;
  }

  /* ---------- FAQ：2カラム ---------- */
  .faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    align-items: start;
  }
  .faq > .eyebrow,
  .faq > .sec-title {
    grid-column: 1/-1;
  }
  .faq .sec-title {
    margin-bottom: 32px;
  }
  .faq-item {
    margin-bottom: 0;
  }
  .faq-item summary {
    font-size: 16px;
    padding: 18px 20px;
  }
  .faq-a {
    padding: 0 20px 20px;
  }

  /* ---------- 運営会社 ---------- */
  .company-lead {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    font-size: 15px;
  }
  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 900px;
    margin: 0 auto 34px;
  }
  .company-table {
    max-width: 780px;
    margin: 0 auto;
  }
  .company-table dl {
    grid-template-columns: 160px 1fr;
  }
  .company-table dt {
    font-size: 13px;
  }
  .company-table dd {
    font-size: 13.5px;
  }

  /* ---------- フッター ---------- */
  footer {
    padding: 54px 64px 30px;
  }
  .logo-img-footer {
    height: 40px;
  }
  .footer-links {
    font-size: 12.5px;
    gap: 10px 28px;
    margin-top: 26px;
  }
}

/* ===== 追加スタイル（CTA強化・ボタン大型化）===== */
.cta-em-large {
  font-size: 1.25em;
  font-weight: 700;
  font-style: normal;
  color: var(--sj-green);
}
.btn-line-lg {
  font-size: 24px;
  padding: 18px 28px;
  letter-spacing: 0.04em;
  position: relative;
  /* padding-right: 88px; */
}
.line-badge {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  background: #f5c518;
  color: #333;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.line-badge b {
  font-size: 20px;
  line-height: 1;
}
.deliver-badge-lg {
  width: 96px;
  height: 96px;
  font-size: 13px;
  line-height: 1.25;
}
.deliver-badge-lg b {
  font-size: 22px;
  line-height: 1;
}
.cmp-cta {
  margin-top: 24px;
  text-align: center;
  padding: 20px 0 4px;
}
.cmp-cta .btn-line-lg {
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.ev-disclaimer {
  font-size: 12px;
  color: var(--sj-orange);
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(174, 70, 0, 0.06);
  border-radius: 8px;
  line-height: 1.7;
}
.kn-source {
  font-size: 11px;
  color: #888;
  text-align: right;
  margin-top: 8px;
}

.db-line {
  display: block;
  font-size: 12px;
  line-height: 1.5;
}
.db-main {
  display: block;
  font-size: 22px;
  line-height: 1.3;
}

/* 開閉アニメーション用 */
.reason-item::details-content,
.faq-item::details-content {
  height: 0;
  overflow: clip;
  transition:
    height 0.4s ease,
    content-visibility 0.4s allow-discrete;
}

.reason-item[open]::details-content,
.faq-item[open]::details-content {
  height: auto;
}

small {
  font-size: 13.5px !important;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  /* PC追加修正============= */
  .cmp-head {
    font-size: 18px;
  }
  .cmp-step {
    font-size: 16px;
  }
  .cmp-total {
    font-size: 16px;
    line-height: 1.4;
  }
  .kn-box .kn-head {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .kn-list-title {
    font-size: 18px;
    margin-bottom: 0;
    justify-content: center;
  }
  .flow-point {
    margin-top: 25px;
    padding: 20px 20px 22px;
  }
  .kn-or {
    text-align: center;
    margin: 35px 0 15px;
  }

  .sp__br {
    display: none;
  }
  .kn-list-grid {
    gap: 20px;
  }
  .sp__show {
    display: none;
  }
  #bmi-comment span {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  #bmi-comment strong {
    font-weight: 800;
  }
}

@media (max-width: 1023px) {
  .sp__hidden {
    display: none !important;
  }

  .merit-trio {
    display: flex;
    flex-direction: column;
  }
  .merit-cell .merit-head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
  .merit-cell h3 {
    font-size: 18px;
  }
  .merit-cell i {
    margin-bottom: 0;
  }
  .btn-line-lg{
    max-width: 365px;
    margin: 0 auto;
  }
}
#line__bt_area {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 192px;
  height: 67px;
  z-index: 10;
}
#line__bt {
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  height: 65px;
  border-radius: 80px;
  border: 2px solid var(--line-green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: #fff;
  gap: 7px;
  animation: 6s linear infinite line__anim;
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.3);
}

#line__bt_area:hover > #line__bt {
  top: 2px;
  left: 2px;
}
#line__bt_area a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#line__bt .icon_circle {
  width: 43px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#line__bt .icon_circle i {
  color: var(--line-green);
  font-size: 35px;
}
#line__bt .bt__text strong {
  font-weight: 600;
  font-size: 14px;
}

#line__bt .bt__text p {
  font-weight: 900;
  font-size: 11px;
  color: #42845c;
}
@keyframes line__anim {
  0% {
    transform: translateY(0px);
  }
  2.5% {
    transform: translateY(-5px);
  }
  5% {
    transform: translateY(0px);
  }
  7.5% {
    transform: translateY(-5px);
  }
  10% {
    transform: translateY(0px);
  }
}
@media screen and (max-width: 520px) {
  .btn {
    justify-content: left;
  }

  .btn-line .line-ico {
    font-size: 8vw;
  }

  .btn-line-lg {
    font-size: 6vw;
    padding: 15px 0 15px 12vw;
  }

  .line-badge {
    right: 5vw;
    max-width: 68px;
    width: 22vw;
    height: auto;
    aspect-ratio: 1;
  }
  .line-badge b {
    font-size: min(20px, 5vw);
  }
  .bmi-result_data p {
    font-size: 16px;
  }
  #bmi-comment span {
    font-size: 18px;
    display: flex;
    flex-wrap: wrap;
    font-weight: 600;
    display: block;
    text-align: center;
    line-height: 1;
    background:none;
  }
  
  #bmi-btn {
    justify-content: center;
  }
  .bmi-card .cmp-cta .btn-line-lg ,.reason-body .btn-line-lg{
    font-size: 5.5vw;
    padding: 12px 0 12px 0;
  }
  .cta-callout {
    font-size: 4vw;
  }
}


.contact__box{
  padding: 15px;
  border: 1px solid #aaa;
  text-align:center;
  max-width: 500px;
  margin: 30px auto 0;
}
.contact__box a{
  color: dodgerblue;
  margin-top: 10px;
  display: block;
  text-decoration: underline;
}


.legal__area{
  margin: 50px 0;
}
.legal__area h3{
  font-weight: 600;
  font-size: 140%;
}
.legal__body{
  margin: 30px 0;
}
.legal__body h4{
  font-weight: 600;
  font-size: 110%;
}
.legal__body p{
  padding-left: 30px;
  margin: 10px 0;
}
.legal__body a{
  text-decoration: underline;

}
.privacy__table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.privacy__table th,.privacy__table td{
  padding: 15px;
  border: 1px solid #aaa;
  text-align:left;
}