/* ============================================================
   整骨院元 くまなん院 / 肩こりページ 専用スタイルシート
   ファイル名: katakori.css
   配置場所  : amaterasu現行テーマフォルダ直下
   読み込み  : header-2.php に1行追記（kumanan-symptoms.cssの直後、
               jquery.min.jsの直前を推奨）
   ラッパー  : .km-page--katakori
   プレフィックス: kk-
   ※ 既存の共有ファイル(kumanan-symptoms.css)とは完全に独立。
     他症状ページのクラスとは一切重複しない設計。
   ============================================================ */

/* ============================================================
   肩こりページ(page-id-2717)専用の#wrapper上書き
   テーマ本体(mobile_layout.css)の#wrapper{display:table}が、
   本ページのCSSと組み合わさって高さの計算異常を起こすため、
   このページ(body.page-id-2717)に限定してdisplay:blockに変更。
   他ページのmobile_layout.cssの挙動には一切影響しない。
   ============================================================ */
@media screen and (max-width: 768px) {
  body.page-id-2717 #wrapper {
    display: block !important;
  }
}

.km-page--katakori {
  --kk-navy: #1a4fa0;
  --kk-navy-dark: #123870;
  --kk-navy-light: #eef4ff;
  --kk-accent: #ff7a45;
  --kk-accent-light: #fff1ea;
  --kk-red: #e02020;
  --kk-yellow: #ffc93c;
  --kk-text: #333333;
  --kk-text-sub: #666666;
  --kk-border: #dfe7f5;

  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 15px;
  color: var(--kk-text);
  background: #fff;
  line-height: 1.8;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.km-page--katakori *,
.km-page--katakori *::before,
.km-page--katakori *::after {
  box-sizing: border-box;
}

.km-page--katakori img {
  max-width: 100%;
  height: auto;
  display: block;
}

.km-page--katakori a {
  color: inherit;
  text-decoration: none;
}

.km-page--katakori p,
.km-page--katakori h1,
.km-page--katakori h2,
.km-page--katakori h3,
.km-page--katakori h4,
.km-page--katakori span,
.km-page--katakori div,
.km-page--katakori li,
.km-page--katakori td,
.km-page--katakori th {
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

/* 見出し：amaterasuテーマの矢印装飾・下線などを明示的にリセット */
.km-page--katakori h1,
.km-page--katakori h2,
.km-page--katakori h3,
.km-page--katakori h4 {
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.km-page--katakori h2::before,
.km-page--katakori h2::after,
.km-page--katakori h3::before,
.km-page--katakori h3::after {
  display: none !important;
  content: none !important;
  border: none !important;
}
.km-page--katakori p {
  margin: 0;
  text-align: left;
}

/* ============================================================
   レイアウト共通
   ============================================================ */
.kk-section {
  padding: 48px 20px;
}
.kk-section--full {
  padding: 0;
}
.kk-section--white {
  background: #fff;
}
.kk-section--alt {
  background: var(--kk-navy-light);
}
.kk-section--navy {
  background: linear-gradient(160deg, var(--kk-navy-dark), var(--kk-navy));
}

.kk-inner {
  max-width: 680px;
  margin: 0 auto;
}

.kk-full-img {
  width: 100%;
  height: auto;
  display: block;
}
.kk-img-mt {
  margin-top: 20px;
}
.kk-img-rounded {
  border-radius: 12px;
  overflow: hidden;
}
.kk-mt {
  margin-top: 16px;
}

/* ============================================================
   見出し・テキスト共通パーツ
   ============================================================ */
.kk-eyebrow {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--kk-navy);
  font-weight: 700;
  margin-bottom: 8px !important;
}

.kk-heading {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 18px !important;
}
.kk-heading--left {
  text-align: left;
}
.kk-heading--white {
  color: #fff;
}

.kk-subheading {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 12px !important;
  color: var(--kk-text);
}
.kk-subheading--bar {
  background: var(--kk-navy-light);
  color: var(--kk-navy);
  padding: 10px 14px;
  border-radius: 6px;
  margin: 28px 0 16px !important;
}

.kk-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--kk-accent);
  margin-bottom: 6px !important;
}

.kk-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--kk-text);
}
.kk-text--white {
  color: rgba(255, 255, 255, 0.92);
}
.kk-text-center {
  text-align: center !important;
}
.kk-text-emphasis {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--kk-yellow);
  margin: 16px 0 !important;
}

.kk-color-navy { color: var(--kk-navy); }
.kk-color-red { color: var(--kk-red); }
.kk-color-yellow { color: var(--kk-yellow); }
.kk-color-accent { color: var(--kk-accent); }

.kk-divider {
  height: 1px;
  background: var(--kk-border);
  margin: 32px 0;
}

.kk-bridge-text {
  text-align: center;
  font-size: 14px;
  color: var(--kk-text-sub);
  background: var(--kk-navy-light);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 28px;
}

/* ============================================================
   02 / 10: オファーCTAバナー
   ============================================================ */
.kk-offer {
  position: relative;
}
.kk-offer-link {
  position: relative;
  display: block;
}
.kk-offer-badge {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--kk-accent), #ff9466);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(255, 122, 69, 0.4);
  white-space: nowrap;
  max-width: calc(100% - 32px);
}

/* ============================================================
   03: お悩み描写
   ============================================================ */
.kk-worry-lead {
  text-align: center;
  margin-bottom: 8px;
}
.kk-sp-only {
  display: inline;
}

.kk-table-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--kk-navy);
  text-align: left;
  margin: 20px 0 10px !important;
}
.kk-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  border: 1px solid var(--kk-border);
}
.kk-symptom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 560px;
}
.kk-symptom-table th {
  background: var(--kk-navy);
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
}
.kk-symptom-table td {
  padding: 12px;
  border-bottom: 1px solid var(--kk-border);
  vertical-align: top;
  line-height: 1.6;
}
.kk-th-name {
  width: 26%;
}
.kk-th-area {
  width: 18%;
}
.kk-th-trigger {
  width: 56%;
}
.kk-symptom-table tbody tr:last-child td {
  border-bottom: none;
}
.kk-td-name {
  font-weight: 800;
  color: var(--kk-navy);
  white-space: nowrap;
}

/* ============================================================
   04: 患者様の声
   ============================================================ */
.kk-voice-imgs {
  max-width: 680px;
  margin: 0 auto;
}
.kk-voice-imgs img + img {
  margin-top: 12px;
}

/* ============================================================
   05: 根本的な理由
   ============================================================ */
.kk-cause-box {
  background: var(--kk-navy-light);
  border-radius: 14px;
  padding: 24px 20px;
  margin-bottom: 8px;
}
.kk-cause-lead {
  text-align: center;
  font-size: 14px;
  color: var(--kk-text-sub);
  margin-bottom: 4px !important;
}
.kk-cause-main {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px !important;
}
.kk-cause-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kk-cause-item {
  display: flex;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(20, 40, 80, 0.06);
}
.kk-cause-item > div {
  min-width: 0;
  flex: 1;
}
.kk-cause-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--kk-navy);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kk-cause-item strong {
  display: block;
  font-size: 15px;
  color: var(--kk-text);
  margin-bottom: 4px;
}
.kk-cause-item p {
  font-size: 13px;
  color: var(--kk-text-sub);
  line-height: 1.7;
}

/* ============================================================
   06: どうやったら改善するのか（歪みが原因）
   ============================================================ */
.kk-highlight-box {
  text-align: center;
  margin-bottom: 16px;
}
.kk-highlight-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 4px !important;
}
.kk-num-large {
  font-size: 40px;
  color: var(--kk-yellow);
  margin: 0 4px;
}
.kk-highlight-main {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

/* ============================================================
   07: 改善しやすい理由（復活）
   ============================================================ */
.kk-kaizen-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.kk-kaizen-header__text {
  min-width: 0;
}
.kk-kaizen-header__sub {
  font-size: 13px;
  color: var(--kk-text-sub);
  margin-top: 8px;
}
.kk-photo-round {
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.kk-photo-round--sm {
  width: 90px;
  height: 90px;
}
.kk-photo-round--sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kk-kaizen-header .kk-photo-round {
  width: 110px;
  height: 110px;
}
.kk-kaizen-header .kk-photo-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kk-photo-round--wide {
  width: 100%;
}
.kk-photo-round--square {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.kk-photo-round--square img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kk-flow-block {
  background: var(--kk-navy-light);
  border-radius: 14px;
  padding: 20px 16px;
  margin-bottom: 24px;
}
.kk-flow-block--navy {
  background: var(--kk-navy-dark);
}
.kk-flow-block__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.kk-flow-block__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--kk-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.kk-flow-block__num--white {
  background: #fff;
  color: var(--kk-navy-dark);
}
.kk-flow-block__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--kk-text);
  min-width: 0;
  flex: 1;
}
.kk-flow-block__title--white {
  color: #fff;
}

.kk-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kk-flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 12px 14px;
}
.kk-flow-step--red {
  background: #fff5f5;
  border: 1px solid #f6c6c6;
}
.kk-flow-step__num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--kk-navy-light);
  color: var(--kk-navy);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kk-flow-step__num--red {
  background: var(--kk-red);
  color: #fff;
}
.kk-flow-step__label {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px !important;
}
.kk-flow-step__desc {
  font-size: 12px;
  color: var(--kk-text-sub);
}
.kk-flow-arrow {
  text-align: center;
  font-size: 16px;
  color: var(--kk-navy);
  line-height: 1;
  padding: 2px 0;
}
.kk-flow-arrow--white {
  color: #fff;
}

.kk-flow-block__inner {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.kk-flow-block__inner .kk-photo-round {
  width: 160px;
  height: 160px;
}
.kk-flow-block__inner .kk-photo-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kk-flow-steps--reverse {
  min-width: 0;
}
.kk-flow-step--onwhite {
  background: rgba(255, 255, 255, 0.08);
  justify-content: center;
}
.kk-flow-steps--reverse .kk-flow-step {
  padding: 8px 12px;
}
.kk-flow-steps--reverse .kk-flow-step__label {
  color: #fff;
  margin-bottom: 0 !important;
}
.kk-flow-block__note {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.kk-kaizen-result {
  text-align: center;
  padding: 24px 0 8px;
}
.kk-kaizen-result__lead {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px !important;
}
.kk-kaizen-result__main {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 12px !important;
}

.kk-reason-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.kk-reason-icon-item {
  text-align: center;
  background: var(--kk-navy-light);
  border-radius: 10px;
  padding: 14px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--kk-navy);
  min-width: 90px;
  flex: 1 1 90px;
}
.kk-reason-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--kk-navy);
  color: #fff;
  font-weight: 800;
  margin: 0 auto 8px;
}

/* ============================================================
   08: 他院との違い（比較表）
   ============================================================ */
.kk-comp-intro {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.kk-comp-intro__title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
  min-width: 0;
  flex: 1;
}
.kk-comp-header-box {
  background: linear-gradient(135deg, var(--kk-navy-dark), var(--kk-navy));
  border-radius: 14px 14px 0 0;
  text-align: center;
  padding: 20px 16px;
}
.kk-comp-header-box__small {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin-bottom: 4px !important;
}
.kk-comp-header-box__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  margin-top: 8px !important;
}
.kk-comp-header-box + .kk-table-wrap {
  border-radius: 0 0 14px 14px;
  border-top: none;
}

.kk-comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 560px;
  background: #fff;
}
.kk-comp-table th,
.kk-comp-table td {
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid var(--kk-border);
  vertical-align: top;
  line-height: 1.6;
}
.kk-comp-th--empty {
  background: #f0f0f0;
}
.kk-comp-th--our {
  background: var(--kk-navy);
  color: #fff;
}
.kk-comp-th--other {
  background: #888;
  color: #fff;
}
.kk-comp-label {
  text-align: left;
  font-weight: 800;
  background: #fafafa;
  white-space: nowrap;
}
.kk-comp-our {
  background: var(--kk-navy-light);
  color: var(--kk-navy);
  font-weight: 700;
}
.kk-comp-other {
  color: #888;
}
.kk-mark {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}
.kk-mark--dbl { color: var(--kk-navy); }
.kk-mark--cir { color: #4a90d9; }
.kk-mark--tri { color: #c0a020; }
.kk-mark--batu { color: var(--kk-red); }

/* ============================================================
   09: なぜくまなん院が改善に導けるのか
   ============================================================ */
.kk-badge-why {
  display: inline-block;
  background: var(--kk-red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 4px;
  margin-right: 4px;
}
.kk-reason-box {
  background: #fff5f0;
  border: 2px solid var(--kk-accent);
  border-radius: 10px;
  padding: 16px;
  margin: 20px 0;
}
.kk-reason-box__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--kk-accent);
  margin-bottom: 10px !important;
}
.kk-reason-box__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kk-reason-box__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--kk-text);
}
.kk-reason-box__list li::before {
  content: "✕";
  color: var(--kk-red);
  font-weight: 800;
  flex-shrink: 0;
}

.kk-check-banner {
  background: var(--kk-navy);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}

.kk-check-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 14px 0;
  flex-wrap: wrap;
}
.kk-check-tag {
  background: var(--kk-navy-light);
  color: var(--kk-navy);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 6px;
  text-align: center;
  flex: 1 1 90px;
}

.kk-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}
.kk-approach-item {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--kk-text);
}

/* ============================================================
   11: 改善までの流れ
   ============================================================ */
.kk-step-list {
  display: flex;
  flex-direction: column;
}
.kk-step {
  background: #fff;
  border: 1px solid var(--kk-border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(20, 40, 80, 0.06);
}
.kk-step__num {
  display: inline-block;
  background: var(--kk-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.kk-step .kk-photo-round {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}
.kk-step__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--kk-text);
  margin-bottom: 8px !important;
}
.kk-step__body {
  font-size: 13px;
  color: var(--kk-text-sub);
  margin-bottom: 12px;
}
.kk-step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.kk-step__tag {
  background: var(--kk-navy-light);
  color: var(--kk-navy);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
}
.kk-step-arrow {
  text-align: center;
  font-size: 20px;
  color: var(--kk-navy);
  padding: 8px 0;
  line-height: 1;
}

/* ============================================================
   12: 3つのメリット
   ============================================================ */
.kk-merit-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.kk-merit-icon-item {
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  min-width: 90px;
  flex: 1 1 90px;
}
.kk-merit-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
  filter: brightness(0) invert(1);
}
.kk-merit-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kk-merit-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 18px;
}
.kk-merit-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.kk-merit-card__num {
  font-size: 30px;
  font-weight: 900;
  color: var(--kk-yellow);
  line-height: 1;
  flex-shrink: 0;
}
.kk-merit-card__title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
}
.kk-merit-card .kk-photo-round {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}
.kk-merit-card__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

/* ============================================================
   14: FAQ
   ============================================================ */
.kk-faq-list {
  display: flex;
  flex-direction: column;
}
.kk-faq-item {
  border-bottom: 1px solid var(--kk-border);
  padding: 16px 0;
}
.kk-faq-item:first-child {
  padding-top: 0;
}
.kk-faq-item:last-child {
  border-bottom: none;
}
.kk-faq-q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  color: var(--kk-text);
  margin-bottom: 8px !important;
}
.kk-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--kk-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.kk-faq-a {
  padding-left: 34px;
  font-size: 13px;
  color: var(--kk-text-sub);
  line-height: 1.8;
}
.kk-underline {
  background: linear-gradient(transparent 60%, var(--kk-yellow) 60%);
  font-weight: 700;
  color: var(--kk-text);
}

/* ============================================================
   15: 最終CTA
   ============================================================ */
.kk-section--cta {
  background: linear-gradient(160deg, var(--kk-navy-dark), var(--kk-navy));
  text-align: center;
}
.kk-final-cta__title {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 14px !important;
}
.kk-final-cta__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.kk-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--kk-accent), #ff9466);
  color: #fff !important;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 122, 69, 0.4);
}
.kk-final-cta__note {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  margin-top: 16px;
}

/* ============================================================
   スマホ対応（767px以下）
   ============================================================ */
@media screen and (max-width: 767px) {
  .kk-section {
    padding: 36px 16px;
  }
  .kk-heading {
    font-size: 19px;
  }
  .kk-kaizen-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .kk-kaizen-header .kk-photo-round {
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }
  .kk-flow-block__inner {
    grid-template-columns: 1fr;
  }
  .kk-flow-block__inner .kk-photo-round {
    width: 100%;
    height: 200px;
  }
  .kk-flow-block__inner .kk-photo-round img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .kk-comp-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .kk-comp-intro .kk-photo-round--sm {
    margin: 0 auto;
  }
  .kk-approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .kk-symptom-table,
  .kk-comp-table {
    min-width: 480px;
  }
}
