/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .ws-eyebrow         - 小英字ラベル（青線＋文字）。heading__en の補完
 * .ws-mv              - MV 分割レイアウト（左テキスト・右スライドショー）
 * .ws-strength-card   - OUR STRENGTHS カード（ナンバー＋イラスト＋テキスト）
 * .ws-news-gallery    - NEWS 画像ギャラリー（PDF リンク形式）
 * .ws-footer-*        - フッター固有スタイル（ダーク背景用テキスト・DL等）
 *
 * ======================================
 * 共通SCSSに不足していたもの
 * ======================================
 *
 * 値の粒度不足：eyebrow の letter-spacing .34em（既存 ls-* では再現不可）
 * 構造不足：左テキスト＋右スライドの MV レイアウト
 * 値の粒度不足：strength カードの 01/02/03 数字あしらい位置
 * 装飾パターン不足：PDF バッジ付き NEWS ギャラリー（縦長サムネイル）
 *
 */

/* ===========================================================================
   CSS カスタムプロパティ（白石歯科商店テーマ）
   =========================================================================== */
:root {
  --ws-blue:      #0d2bf5;
  --ws-blue-ink:  #0a1747;
  --ws-cream:     #fbf7f6;
  --ws-border:    #e7e0dd;
  --ws-ink:       #1b1b22;
  --ws-ink-muted: #5a5a66;
}

/* ===========================================================================
   フォントオーバーライド
   =========================================================================== */
body {
  font-family: 'Outfit', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', sans-serif;
  color: var(--ws-ink);
  line-height: 1.95;
  letter-spacing: 0.04em;
}

.header__nav-en,
.header-logo__name,
.header-logo__sub,
.sp-nav__en,
.heading__en,
.footer-bottom__copyright {
  font-family: 'Afacad', 'Outfit', sans-serif;
}

/* ===========================================================================
   ヘッダー追加スタイル
   =========================================================================== */

/* ナビ英語ラベル色：通常=#0a1747、hover/active=青 */
.header__nav .header__nav-item a .header__nav-en {
  color: var(--ws-blue-ink);
}
.header__nav .header__nav-item a:hover .header__nav-en,
.header__nav .header__nav-item--current a .header__nav-en {
  color: var(--ws-blue);
}

.header-logo__name {
  display: block;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--ws-blue-ink);
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.header-logo__sub {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  color: var(--ws-ink-muted);
  text-transform: uppercase;
  font-weight: 400;
}

/* ===========================================================================
   eyebrow ラベル（例：MESSAGE / OUR STRENGTHS の上に付く青い英語ラベル）
   =========================================================================== */
.ws-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Afacad', 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ws-blue);
  margin: 0;
}

.ws-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--ws-blue);
  display: inline-block;
  flex-shrink: 0;
}

/* 中央揃えのとき左右に線を付ける */
.ws-eyebrow--center {
  justify-content: center;
}

.ws-eyebrow--center::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--ws-blue);
  display: inline-block;
  flex-shrink: 0;
}

/* セクション見出し */
.ws-section-head {
  margin-bottom: 54px;
}

.ws-section-title {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: var(--ws-blue-ink);
  font-size: 3.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 16px 0 0;
}

@media (max-width: 896px) {
  .ws-section-title {
    font-size: 2.4rem;
  }
}

/* ===========================================================================
   MV（メインビジュアル）— 左テキスト + 右スライドショー
   =========================================================================== */
.ws-mv {
  background: var(--ws-cream);
  overflow: hidden;
  padding: 56px 0;
}

.ws-mv__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  min-height: 580px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 0;
}

/* 左：装飾イラスト（文章の左側・余白に配置） */
.ws-mv__deco {
  position: absolute;
  left: -260px;
  top: 85%;
  transform: translateY(-50%);
  width: 240px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 18px rgba(10, 23, 70, 0.08));
}

/* 余白が狭い画面では文章に被らないよう縮小・左寄せ調整 */
@media (max-width: 1400px) {
  .ws-mv__deco {
    left: -200px;
    width: 190px;
  }
}

.ws-mv__copy {
  padding-right: 60px;
}

.ws-mv__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Afacad', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--ws-blue);
  background: #eef0ff;
  padding: 8px 18px;
  border-radius: 9999px;
  margin-bottom: 28px;
  white-space: nowrap;
}

.ws-mv__h1 {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: var(--ws-blue-ink);
  font-size: 4.2rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
  margin: 0 0 26px;
}

.ws-mv__h1 .ws-hl {
  color: var(--ws-blue);
  white-space: nowrap;
}

.ws-mv__sub {
  font-size: 1.5rem;
  line-height: 2.1;
  color: var(--ws-ink);
  max-width: 500px;
}

.ws-mv__actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* 右側：スライドショーエリア */
.ws-mv__stage {
  position: relative;
  height: 580px;
}

#slideshow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
}

#slideshow .swiper-slide {
  width: 100%;
  height: 100%;
}

#slideshow .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* イラスト装飾（チェアが右下に重なる） */
.ws-mv__chair {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: auto;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 4px 18px rgba(10, 23, 70, 0.08));
}

@media (max-width: 1100px) {
  .ws-mv__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ws-mv__copy {
    padding-right: 0;
  }
  .ws-mv__stage {
    height: 380px;
  }
  .ws-mv__h1 {
    font-size: 3.2rem;
  }
  .ws-mv__deco {
    display: none;
  }
}

@media (max-width: 639px) {
  .ws-mv {
    padding: 40px 0;
  }
  .ws-mv__h1 {
    font-size: 2.6rem;
  }
  .ws-mv__stage {
    height: 280px;
  }
  .ws-mv__chair {
    width: 140px;
  }
}

/* ===========================================================================
   MESSAGE セクション
   =========================================================================== */
/* タイトル両サイドの装飾イラスト */
.ws-message-head {
  position: relative;
}

.ws-message-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.ws-message-deco--left {
  left: 50px;
}

.ws-message-deco--right {
  right: 50px;
}

@media (max-width: 900px) {
  .ws-message-deco {
    width: 80px;
  }
  .ws-message-deco--left {
    left: 0;
  }
  .ws-message-deco--right {
    right: 0;
  }
}

@media (max-width: 600px) {
  .ws-message-deco {
    display: none;
  }
}

.ws-message-body {
  font-size: 1.6rem;
  line-height: 2.2;
  color: var(--ws-ink);
}

.ws-message-body p + p {
  margin-top: 20px;
}

.ws-message-ill {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.ws-message-ill img {
  height: 110px;
  width: auto;
  opacity: 0.9;
}

/* ===========================================================================
   OUR STRENGTHS — 3列カード（ナンバー＋イラスト＋タイトル＋テキスト）
   =========================================================================== */
.ws-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ws-strength-card {
  background: #fff;
  border: 1px solid var(--ws-border);
  border-radius: 14px;
  padding: 40px 32px 36px;
  position: relative;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ws-strength-card:hover {
  border-color: #c9d0ff;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -24px rgba(13, 43, 245, 0.28);
}

.ws-strength-card__num {
  font-family: 'Afacad', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ws-blue);
  letter-spacing: 0.12em;
}

.ws-strength-card__ill {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}

.ws-strength-card__ill img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.ws-strength-card__title {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--ws-blue-ink);
  line-height: 1.55;
  margin: 0 0 14px;
}

.ws-strength-card__text {
  font-size: 1.4rem;
  line-height: 2.05;
  color: var(--ws-ink-muted);
  text-align: left;
}

@media (max-width: 896px) {
  .ws-strength-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===========================================================================
   SERVICES — 画像ボタン形式（3列）
   =========================================================================== */
/* 左下の装飾イラスト */
.ws-services-section {
  position: relative;
  overflow: hidden;
}

.ws-services-deco {
  position: absolute;
  left: 30px;
  bottom: 40px;
  width: 200px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1400px) {
  .ws-services-deco {
    width: 150px;
    left: 10px;
  }
}

@media (max-width: 1100px) {
  .ws-services-deco {
    display: none;
  }
}

/* CONTACT 右下の装飾イラスト */
.ws-contact-section {
  position: relative;
  overflow: hidden;
}

.ws-contact-deco {
  position: absolute;
  right: 30px;
  bottom: 40px;
  width: 150px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1400px) {
  .ws-contact-deco {
    width: 150px;
    right: 10px;
  }
}

@media (max-width: 1100px) {
  .ws-contact-deco {
    display: none;
  }
}

.ws-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ws-service-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ws-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.ws-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -26px rgba(10, 23, 71, 0.35);
}

.ws-service-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ws-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ws-service-card:hover .ws-service-card__img img {
  transform: scale(1.05);
}

.ws-service-card__body {
  padding: 24px 26px 28px;
}

.ws-service-card__num {
  font-family: 'Afacad', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ws-blue);
  letter-spacing: 0.12em;
}

.ws-service-card__title {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--ws-blue-ink);
  margin: 8px 0 10px;
  line-height: 1.5;
}

.ws-service-card__text {
  font-size: 1.4rem;
  color: var(--ws-ink-muted);
  line-height: 1.9;
}

.ws-service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Afacad', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--ws-blue);
  transition: gap 0.25s ease;
}

.ws-service-card:hover .ws-service-card__more {
  gap: 12px;
}

@media (max-width: 896px) {
  .ws-service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===========================================================================
   NEWS — 画像ギャラリー＋PDF リンク（4列）
   =========================================================================== */
.ws-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* お知らせが1件のみの場合は中央寄せ */
.ws-news-grid.ws-news-grid--single {
  grid-template-columns: minmax(0, 280px);
  justify-content: center;
}

.ws-news-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ws-news-item__thumb {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--ws-border);
  position: relative;
  background: var(--ws-cream);
  transition: box-shadow 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-news-item:hover .ws-news-item__thumb {
  box-shadow: 0 16px 32px -20px rgba(10, 23, 71, 0.38);
}

.ws-news-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws-news-item__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  color: #aaa;
  font-size: 1.2rem;
}

.ws-news-item__pdf {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Afacad', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  background: var(--ws-blue);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
}

.ws-news-item__title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ws-blue-ink);
  margin: 12px 0 4px;
  line-height: 1.6;
}

.ws-news-item__date {
  font-family: 'Afacad', sans-serif;
  font-size: 1.2rem;
  color: var(--ws-ink-muted);
  letter-spacing: 0.06em;
}

@media (max-width: 896px) {
  .ws-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 639px) {
  .ws-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================================================================
   CONTACT フォームセクション（TOP ページ用）
   =========================================================================== */
.ws-contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.ws-contact-side__tel-card {
  background: #fff;
  border: 1px solid var(--ws-border);
  border-radius: 14px;
  padding: 30px;
  margin-top: 28px;
}

.ws-contact-side__tel-label {
  font-family: 'Afacad', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--ws-ink-muted);
}

.ws-contact-side__tel-num {
  font-family: 'Afacad', sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--ws-blue-ink);
  margin: 6px 0;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.ws-contact-side__tel-hours {
  font-size: 1.3rem;
  color: var(--ws-ink-muted);
}

.ws-contact-side__ill {
  margin-top: 24px;
}

.ws-contact-side__ill img {
  height: 110px;
  width: auto;
}

.ws-contact-form {
  background: #fff;
  border: 1px solid var(--ws-border);
  border-radius: 16px;
  padding: 44px;
}

.ws-form-field {
  margin-bottom: 22px;
}

.ws-form-field label {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ws-blue-ink);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.ws-form-field .ws-req {
  font-family: 'Afacad', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--ws-blue);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: 2px;
}

.ws-form-field input,
.ws-form-field textarea,
.ws-form-field select {
  width: 100%;
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  color: var(--ws-ink);
  padding: 13px 16px;
  border: 1.5px solid var(--ws-border);
  border-radius: 8px;
  background: var(--ws-cream);
  transition: border-color 0.2s, background 0.2s;
}

.ws-form-field input:focus,
.ws-form-field textarea:focus {
  outline: none;
  border-color: var(--ws-blue);
  background: #fff;
}

.ws-form-field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.9;
}

.ws-form-submit {
  text-align: center;
  margin-top: 12px;
}

.ws-form-privacy {
  font-size: 1.2rem;
  color: var(--ws-ink-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.8;
}

@media (max-width: 896px) {
  .ws-contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ws-contact-form {
    padding: 28px 20px;
  }
}

/* ===========================================================================
   Contact CTA バンド（共通フッター上）
   main.css の .footer-cta::before が $base_color = #0d2bf5 で青背景を生成する
   デザイン参照：foot-cta { padding:64px 0 } / lead-en { font-size:46px }
   =========================================================================== */
.footer-cta {
  /* background は common CSS の ::before（$base_color = #0d2bf5）に任せる */
  padding: 64px 0;
}

/* common の justify-content:center を space-between に変更して左右分割 */
.footer-cta .footer-cta__inner {
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.footer-cta__left .ws-eyebrow {
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
}

.footer-cta__left .ws-eyebrow::before {
  background: rgba(255,255,255,0.35);
}

/* デザイン lead-en 相当：Afacad 46px 白 太字 */
.ws-footer-cta-title {
  font-family: 'Afacad', 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 4.6rem;
  color: #fff;
  margin: 10px 0 0;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.footer-cta__desc {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.85);
  margin-top: 10px;
  line-height: 1.85;
  letter-spacing: 0.06em;
}

.footer-cta__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 300px;
  flex-shrink: 0;
}

/* 電話番号：白文字・大きめ数字で目立たせる */
.btn-cta-tel--bordered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Afacad', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 9999px;
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
  letter-spacing: 0.03em;
  line-height: 1;
}

.btn-cta-tel--bordered i {
  font-size: 1.8rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.85;
}

.btn-cta-tel--bordered:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  opacity: 1;
}

/* メールフォームボタン：デザインの white pill btn に準拠 */
.btn-cta-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ws-blue);
  background: #fff;
  border: 1.5px solid #fff;
  border-radius: 9999px;
  padding: 18px 40px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  letter-spacing: 0.06em;
}

.btn-cta-mail i {
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--ws-blue);
}

.btn-cta-mail:hover {
  background: var(--ws-blue-ink);
  border-color: var(--ws-blue-ink);
  color: #fff;
  opacity: 1;
}

.btn-cta-mail:hover i {
  color: #fff;
}

@media (max-width: 896px) {
  .footer-cta .footer-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .footer-cta__right {
    width: 100%;
    min-width: 0;
  }
  .ws-footer-cta-title {
    font-size: 3.2rem;
  }
}

/* ===========================================================================
   フッター本体
   デザイン参照：
     foot-main { padding:72px 0 30px }
     foot-grid  { grid-template-columns:1.2fr 1fr 1.3fr; gap:48px }
     foot-nav   { flex; gap:10px 26px; mt:34px; pt:26px; border-top:rgba(.16) }
     copy       { font-size:11px; padding:24px 0 40px; color:rgba(.45) }
   =========================================================================== */

/* ── 背景・全体余白 ── */
.footer-body--dark {
  background: var(--ws-blue-ink);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 30px;
}

/* ── 3列グリッド：デザイン foot-grid { 1.2fr 1fr 1.3fr; gap:48px } ── */
.footer-body__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  padding: 0;
}

/* 列幅は grid に委ねる */
.footer-body__left,
.footer-body__right {
  width: auto;
  min-width: 0;
  max-width: none;
  flex: none;
}

/* ── ロゴ：デザイン .foot-brand .mark 25px ── */
.header-logo--dark .header-logo__name {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.2;
  display: block;
}

/* デザイン .foot-brand .en 11px uppercase rgba(.6) */
.header-logo--dark .header-logo__sub {
  font-family: 'Afacad', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 8px;
  display: block;
}

/* ── 会社説明文：デザイン .foot-info 14px / lh 2 / rgba(.85) ── */
.ws-footer-info-text {
  font-size: 1.4rem;
  line-height: 2;
  color: rgba(255,255,255,0.85);
}

/* ── 会社情報 DL：デザイン .foot-info { lh:2; 14px } ── */
.ws-footer-dl {
  font-size: 1.4rem;
  line-height: 2;
  color: rgba(255,255,255,0.85);
}

.ws-footer-dl dt {
  font-family: 'Afacad', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.6;
}

.ws-footer-dl dt:first-child {
  margin-top: 0;
}

.ws-footer-dl dd {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 1.4rem;
  line-height: 2;
}

/* 電話番号：デザイン .foot-info .num 21px 700 */
.ws-footer-tel {
  font-family: 'Afacad', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
  display: inline-block;
}

.ws-footer-tel:hover {
  opacity: 0.75;
}

.ws-footer-mail {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s;
}

.ws-footer-mail:hover {
  color: #fff;
  opacity: 1;
}

/* ── Google マップ：デザイン 230px / border / grayscale(.2) ── */
.footer-body__map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
}

.footer-body__map iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
  filter: grayscale(0.2);
}

/* ── ナビゲーション：グリッド下・フル幅
   デザイン：flex wrap / gap 10px 26px / mt 34px / pt 26px / border-top rgba(.16) ── */
.ws-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.ws-footer-nav a {
  font-family: 'Afacad', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.25s;
  text-transform: uppercase;
}

.ws-footer-nav a:hover {
  color: #fff;
  opacity: 1;
}

/* ── コピーライト行：デザイン .copy { 11px; rgba(.45); padding 24px 0 40px } ── */
.footer-bottom--dark {
  background: var(--ws-blue-ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0;
}

.footer-bottom__copyright {
  font-family: 'Afacad', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45);
  padding: 24px 0 40px;
}

/* ── SP レスポンシブ ── */
@media (max-width: 896px) {
  .footer-body--dark {
    padding: 52px 0 24px;
  }
  .footer-body__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom__copyright {
    padding: 18px 0 56px;
  }
}

/* ===========================================================================
   ページヒーロー（下層ページ用）
   =========================================================================== */
.ws-page-hero {
  background: var(--ws-cream);
  padding: 80px 0 68px;
  border-bottom: 1px solid var(--ws-border);
  position: relative;
  overflow: hidden;
}

.ws-page-hero__en {
  font-family: 'Afacad', 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
  color: var(--ws-blue-ink);
  letter-spacing: 0.02em;
}

.ws-page-hero__ja {
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: var(--ws-blue);
  font-weight: 500;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ws-page-hero__ja::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--ws-blue);
  flex-shrink: 0;
}

.ws-page-hero__deco {
  position: absolute;
  right: 48px;
  bottom: 0;
  width: 200px;
  height: auto;
  max-height: 80%;
  object-fit: contain;
  opacity: 0.85;
  pointer-events: none;
}

@media (max-width: 896px) {
  .ws-page-hero__en {
    font-size: 4.8rem;
  }
  .ws-page-hero__deco {
    width: 130px;
    right: 20px;
  }
}

/* ===========================================================================
   会社概要テーブル（ABOUT ページ）
   =========================================================================== */
.ws-about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.ws-profile-table {
  width: 100%;
  border-collapse: collapse;
}

.ws-profile-table th,
.ws-profile-table td {
  text-align: left;
  vertical-align: top;
  padding: 18px 6px;
  border-bottom: 1px solid var(--ws-border);
  font-size: 1.5rem;
  line-height: 1.9;
}

.ws-profile-table th {
  width: 160px;
  font-weight: 700;
  color: var(--ws-blue-ink);
  letter-spacing: 0.06em;
}

.ws-profile-table td {
  color: var(--ws-ink);
}

.ws-profile-table .ws-th-en {
  font-family: 'Afacad', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
  color: var(--ws-blue);
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.ws-about-photo {
  position: sticky;
  top: 110px;
}

.ws-about-photo .ws-photo-frame {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ws-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-about-photo .ws-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 896px) {
  .ws-about-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ws-about-photo {
    position: static;
  }
}

/* ===========================================================================
   SERVICE ページ — 詳細行レイアウト
   =========================================================================== */
.ws-svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ws-svc-row + .ws-svc-row {
  margin-top: 100px;
}

.ws-svc-row--flip .ws-svc-row__media {
  order: 2;
}

.ws-svc-row__media {
  border-radius: 16px;
  overflow: hidden;
  background: var(--ws-cream);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-svc-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws-svc-row__num {
  font-family: 'Afacad', sans-serif;
  font-weight: 700;
  font-size: 6.4rem;
  color: #eef0ff;
  line-height: 0.85;
  letter-spacing: 0.01em;
}

.ws-svc-row__body .ws-eyebrow {
  position: relative;
  margin-top: -28px;
}

.ws-svc-row__title {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--ws-blue-ink);
  line-height: 1.5;
  margin: 16px 0 20px;
  letter-spacing: 0.03em;
}

.ws-svc-row__text {
  font-size: 1.5rem;
  line-height: 2.15;
  color: var(--ws-ink);
}

.ws-svc-row__text + .ws-svc-row__text {
  margin-top: 18px;
}

/* 強調ブロック（引用帯） */
.ws-quote-band {
  background: var(--ws-blue-ink);
  color: #fff;
  text-align: center;
  padding: 96px 0;
}

.ws-quote-band__q {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.ws-quote-band__q .ws-hl {
  color: #8fa0ff;
}

/* サポートリスト */
.ws-support-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.ws-support-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.5rem;
  color: var(--ws-blue-ink);
  font-weight: 500;
}

.ws-support-list__chk {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ws-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-top: 2px;
}

.ws-svc-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

@media (max-width: 896px) {
  .ws-svc-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ws-svc-row--flip .ws-svc-row__media {
    order: 0;
  }
  .ws-svc-row__num {
    font-size: 4.8rem;
  }
  .ws-svc-row__title {
    font-size: 2.2rem;
  }
  .ws-quote-band__q {
    font-size: 2.2rem;
  }
}

/* ===========================================================================
   LINE UP ページ — メーカー一覧
   =========================================================================== */
.ws-maker-block + .ws-maker-block {
  margin-top: 80px;
}

.ws-maker-block__title {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: var(--ws-blue-ink);
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-left: 16px;
  border-left: 4px solid var(--ws-blue);
}

.ws-maker-block__sub {
  font-size: 1.5rem;
  color: var(--ws-ink-muted);
  letter-spacing: 0.04em;
  margin: 12px 0 28px;
}

.ws-maker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ws-maker-grid--main {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ws-maker-cell {
  background: #fff;
  border: 1px solid var(--ws-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ws-blue-ink);
  text-align: center;
  padding: 12px;
}

.ws-maker-cell--main {
  aspect-ratio: 16 / 8;
  font-size: 1.7rem;
}

.ws-maker-cell:hover {
  border-color: #c9d0ff;
}

.ws-maker-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  color: var(--ws-ink-muted);
  background: #eef0ff;
  padding: 8px 18px;
  border-radius: 9999px;
  margin-top: 22px;
}

@media (max-width: 896px) {
  .ws-maker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ws-maker-grid--main {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================================================================
   WORKS ページ — ギャラリー
   =========================================================================== */
.ws-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ws-work-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ws-border);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ws-work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -18px rgba(10, 23, 71, 0.28);
}

.ws-work-card__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ws-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-work-card__thumb img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.ws-work-card__body {
  padding: 18px 20px;
}

.ws-work-card__cat {
  font-family: 'Afacad', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--ws-blue);
  font-weight: 600;
}

.ws-work-card__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ws-blue-ink);
  margin: 6px 0 0;
  line-height: 1.6;
}

@media (max-width: 896px) {
  .ws-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 639px) {
  .ws-works-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================================
   ボタン追加スタイル
   =========================================================================== */
/* プライマリアウトラインボタン（濃い青枠線 + hover で塗り） */
.ws-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: 9999px;
  border: 1.5px solid var(--ws-blue-ink);
  color: var(--ws-blue-ink);
  background: transparent;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.ws-btn-outline:hover {
  background: var(--ws-blue-ink);
  color: #fff;
  opacity: 1;
}

/* プライマリ塗りボタン */
.ws-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: 9999px;
  border: 1.5px solid var(--ws-blue);
  color: #fff;
  background: var(--ws-blue);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.ws-btn-primary:hover {
  background: var(--ws-blue-ink);
  border-color: var(--ws-blue-ink);
  opacity: 1;
}

.ws-btn-arrow {
  font-family: 'Afacad', sans-serif;
  transition: transform 0.25s ease;
}

.ws-btn-outline:hover .ws-btn-arrow,
.ws-btn-primary:hover .ws-btn-arrow {
  transform: translateX(4px);
}

/* ===========================================================================
   SP 固定バー（電話・メール）
   =========================================================================== */
.sp-fixed-bar {
  background: var(--ws-blue-ink);
}

/* ページトップボタン：chevron-up アイコン */
.page-top__link::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 1.4rem;
  line-height: 1;
}

/* CMSフォーム：必須ラベル色 */
.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
    background: #0d2bf5!important;
}
