/**
 * エリアLP CSS（kanagawa-mock.html ベース）
 * クラスプレフィックス: yal- （テーマ既存スタイルとの衝突を防ぐ）
 *
 * @package YaneCare
 */

/* ===== パンくずオーバーライド（エリアLP） ===== */
#breadcrumb {
  background: #F7F7F7 !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  min-height: 0 !important;
}
#breadcrumb .p-breadcrumb__list {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
/* 現在ページ（最後の項目）を表示・opacity統一 */
#breadcrumb .p-breadcrumb__item:last-child > span.p-breadcrumb__text {
  display: inline-flex !important;
}
#breadcrumb .p-breadcrumb__item:last-child span {
  opacity: 1 !important;
}
/* テキスト・アイコン色 */
#breadcrumb,
#breadcrumb .p-breadcrumb__item,
#breadcrumb .p-breadcrumb__text,
#breadcrumb .p-breadcrumb__text span,
#breadcrumb a.p-breadcrumb__text,
#breadcrumb a.p-breadcrumb__text span,
#breadcrumb ol,
#breadcrumb ol li,
#breadcrumb ol li a,
#breadcrumb ol li span {
  color: #314156 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}
/* リンク色を強制上書き（テーマのCSS変数対策） */
#breadcrumb .p-breadcrumb__item > a,
#breadcrumb .p-breadcrumb__item > a:link,
#breadcrumb .p-breadcrumb__item > a:visited,
#breadcrumb .p-breadcrumb__item > a:hover,
#breadcrumb .p-breadcrumb__item > a *,
body #breadcrumb a {
  color: #314156 !important;
}
/* リスト要素からの継承で統一 */
#breadcrumb ol.p-breadcrumb__list,
#breadcrumb ol.p-breadcrumb__list.l-container {
  color: #314156 !important;
}
/* 区切り矢印 */
#breadcrumb .p-breadcrumb__item::after {
  background-color: #314156 !important;
  opacity: 1 !important;
}

/* ===== SP専用改行 ===== */
.yal-sp-br { display: none; }
@media (max-width: 960px) {
  .yal-sp-br { display: inline; }
}

/* ===== VISUALLY HIDDEN（SEO用H1など） ===== */
.yal-visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important;
}

/* ===== VARIABLES ===== */
:root {
  --yal-blue: #3983C7;
  --yal-navy: #425374;
  --yal-yellow: #FDE14D;
  --yal-blue-dark: #2d6fab;
  --yal-navy-dark: #334060;
  --yal-gray-bg: #f5f7fa;
  --yal-border: #e4e8ef;
  --yal-text: #333;
  --yal-text-light: #666;
}

/* ===== FULL-WIDTH BREAKOUT ===== */
/* テーマの .post_content 幅制限を突き抜けてビューポート全幅にする */
.yal-lp-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: clip;
  box-sizing: border-box;
}

/* ===== SECTION COMMON ===== */
.yal-section { padding: 72px 0; }
.yal-section-bg { background: var(--yal-gray-bg); }
.yal-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.yal-sec-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--yal-blue); margin-bottom: 10px;
}
.yal-sec-eyebrow::before, .yal-sec-eyebrow::after {
  content: ''; flex: 1; height: 1px; background: var(--yal-blue); opacity: 0.3;
}
.yal-sec-title {
  font-size: 28px; font-weight: 900; color: var(--yal-navy);
  text-align: center; line-height: 1.4; margin-bottom: 10px;
  /* テーマの h2 スタイルをリセット */
  padding: 0 !important; background: none !important; border: none !important;
  border-left: none !important; box-shadow: none !important;
}
.yal-sec-title::before, .yal-sec-title::after { content: none !important; display: none !important; }
.yal-sec-sub {
  text-align: center; color: var(--yal-text-light); font-size: 14px; margin-bottom: 48px; line-height: 1.8;
}

/* ===== HERO ===== */
.yal-hero-pc {
  position: relative; overflow: hidden; padding: 36px 0;
  background-size: cover; background-position: center right; background-repeat: no-repeat;
}
.yal-hero-pc::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.53);
  z-index: 0; pointer-events: none;
}
.yal-hero-pc::after {
  content: none;
}
.yal-hero-inner {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
  position: relative; z-index: 1; box-sizing: border-box;
}
.yal-hero-text { display: flex; flex-direction: column; justify-content: center; overflow: visible; }

/* Hero タイトル */
.yal-hero-title {
  font-size: 40px !important; font-weight: 900 !important; line-height: 1.62 !important;
  color: #333 !important; margin: 0 0 14px 0 !important; padding: 0 !important;
  border: none !important; background: none !important; text-align: left !important;
  display: block !important; position: relative !important;
  letter-spacing: normal !important; text-indent: 0 !important; box-shadow: none !important;
  -webkit-text-fill-color: #333 !important;
}
.yal-hero-title::before, .yal-hero-title::after { content: none !important; display: none !important; }
.yal-hero-title span { paint-order: stroke fill; -webkit-text-stroke: 7px #fff; }
.yal-hero-title-black { color: #333 !important; -webkit-text-fill-color: #333 !important; }
.yal-hero-c-blue    { color: #3983C7 !important; -webkit-text-fill-color: #3983C7 !important; }
.yal-hero-c-orange  { color: #F39B07 !important; -webkit-text-fill-color: #F39B07 !important; }
.yal-hero-c-red     { color: #E33967 !important; -webkit-text-fill-color: #E33967 !important; }
.yal-hero-small { font-size: 0.74em !important; font-weight: 700 !important; }
.yal-hero-hl-row {
  display: inline-flex !important; flex-direction: row !important; flex-wrap: nowrap !important;
  align-items: baseline !important; vertical-align: baseline !important;
}
.yal-hero-hl {
  -webkit-text-stroke: 0 !important; paint-order: normal !important;
  color: #fff !important; -webkit-text-fill-color: #fff !important;
  background: #3983C7 !important; padding: 0 10px !important; border-radius: 0 !important;
  display: inline-block !important; margin: 3px 0 5px !important; vertical-align: baseline !important;
}
.yal-hero-marker-bottom {
  color: #3983C7 !important; -webkit-text-fill-color: #3983C7 !important;
  background: linear-gradient(transparent 0%, transparent calc(100% - 0.75em), #FDE14D calc(100% - 0.75em), #FDE14D calc(100% - 0.08em), transparent calc(100% - 0.08em), transparent 100%) !important;
  padding: 0 4px 8px !important; box-decoration-break: clone; -webkit-box-decoration-break: clone;
}

/* Hero 無料バッジ */
.yal-hero-free-rows {
  display: flex; flex-direction: row; flex-wrap: wrap;
  gap: clamp(10px,1.8vw,24px) clamp(14px,2.2vw,32px);
  margin-top: clamp(22px,3.6vw,42px); margin-bottom: clamp(12px,2vw,24px);
  align-items: flex-end; padding-top: clamp(10px,1.5vw,22px); padding-bottom: clamp(10px,1.5vw,22px);
}
.yal-hero-free-row { display: block; max-width: 100%; overflow: visible; }
.yal-hero-free-box {
  --yal-free-pad-y: clamp(8px,1vw,14px); --yal-free-pad-x: clamp(14px,1.6vw,20px);
  position: relative; display: inline-flex; flex-direction: row; align-items: flex-end;
  box-sizing: border-box; padding: var(--yal-free-pad-y) var(--yal-free-pad-x);
  padding-right: calc(clamp(40px,6.2vw,86px) * 2 + clamp(10px,1.2vw,20px));
  background: #fff; border: none; border-radius: 44px; overflow: visible; vertical-align: bottom;
}
.yal-hero-free-label {
  display: block; font-size: clamp(16px,2.2vw,32px); font-weight: 900; line-height: 1.15;
  color: #3983C7 !important; letter-spacing: 0.02em; -webkit-text-stroke: 0; -webkit-text-fill-color: #3983C7 !important;
}
.yal-hero-free-muryo {
  position: absolute; right: clamp(6px,1vw,14px); bottom: var(--yal-free-pad-y); top: auto;
  transform: none; font-size: clamp(40px,6.2vw,86px); font-weight: 900; line-height: 1;
  letter-spacing: 0.02em; color: #E33967 !important; -webkit-text-fill-color: #E33967 !important;
  paint-order: stroke fill; -webkit-text-stroke: 0.1em #fff; white-space: nowrap;
  z-index: 1; pointer-events: none;
}

/* Hero 問い合わせボックス */
.yal-hero-visual { display: flex; justify-content: flex-end; align-items: flex-start; }
.yal-hero-sp-cta { display: none; }
.yal-inquiry {
  max-width: 420px; width: 100%; padding: 24px; background: #fff;
  border-radius: 16px; border: 3px solid #3983C7;
  box-shadow: 0 0 0 2px #fff, 0 4px 12px rgba(57,131,199,0.38);
}
.yal-inquiry-header {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid rgba(57,131,199,0.12);
}
.yal-badge {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  background: #FDE14D; color: #425374; font-size: 11px; font-weight: bold;
  padding: 4px 12px; border-radius: 20px;
}
.yal-form-title { color: #425374; font-size: 18px; font-weight: 900; margin: 0; line-height: 1.4; }
.yal-form-group { margin-bottom: 12px; }
.yal-form-group:last-of-type { margin-bottom: 16px; }
.yal-form-label { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #425374; margin-bottom: 5px; }
.yal-form-label i { color: #3983C7; width: 14px; text-align: center; font-size: 12px; }
.yal-req { color: #dc3545; font-size: 10px; margin-left: 4px; font-weight: normal; background: #fde8e8; padding: 1px 6px; border-radius: 3px; }
.yal-form-input {
  width: 100%; padding: 10px 12px; font-size: 14px; border: 2px solid #e2e6ed;
  border-radius: 8px; transition: border-color 0.3s; outline: none; background: #fff; font-family: inherit;
  box-sizing: border-box;
}
.yal-form-input:focus { border-color: #3983C7; }
.yal-form-input::placeholder { color: #999; }
.yal-form-input--zip { max-width: 160px; }
.yal-form-options { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.yal-form-options--3col { grid-template-columns: repeat(3, 1fr); }
.yal-form-option { position: relative; }
.yal-form-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.yal-form-option label {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 8px 6px; text-align: center; font-size: 12px; font-weight: 600; color: #2a2f3a;
  background: #fff; border: 2px solid #e2e6ed; border-radius: 8px; cursor: pointer; transition: all 0.2s;
}
.yal-form-option label i { font-size: 14px; color: #3983C7; }
.yal-form-option label:hover { border-color: #3983C7; }
.yal-form-option input[type="radio"]:checked + label { border-color: #3983C7; background: rgba(57,131,199,0.06); color: #425374; }
/* プライバシーポリシー同意チェックボックス */
.yal-form-privacy { margin: 12px 0 4px; display: flex; justify-content: center; }
.yal-privacy-label {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: var(--yal-text-light); cursor: pointer; line-height: 1.5;
}
.yal-privacy-label input[type="checkbox"] {
  flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px; cursor: pointer;
  accent-color: var(--yal-blue);
}
.yal-privacy-label a { color: var(--yal-blue); text-decoration: underline; }
.yal-privacy-label a:hover { color: var(--yal-blue-dark); }
.yal-form-msg { font-size: 13px; margin-bottom: 0; min-height: 0; }
.yal-form-msg:not(:empty) { margin-bottom: 8px; }
.yal-form-msg.success { color: #2e7d32; }
.yal-form-msg.error   { color: #c62828; }
.yal-form-submit {
  width: 100%; padding: 12px; font-size: 16px; font-weight: 800; color: #fff;
  background: linear-gradient(to bottom, #4FBD35, #3C9D26); border: none; border-radius: 10px;
  cursor: pointer; box-shadow: 0 4px 0 #2d7a1c; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px;
  transition: opacity 0.2s;
}
.yal-form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.yal-form-note { display: flex; justify-content: center; gap: 16px; margin-top: 10px; }
.yal-form-note span { font-size: 11px; color: #6b7280; display: flex; align-items: center; gap: 4px; }
.yal-form-note span i { color: #3983C7; font-size: 12px; }

/* ===== HERO CTA BAR ===== */
.yal-hero-cta-bar { background: #fff; border-bottom: 1px solid var(--yal-border); box-shadow: 0 2px 3px rgba(0,0,0,0.30); }
.yal-hero-cta-inner {
  max-width: 1100px; margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; justify-content: center; gap: 16px; box-sizing: border-box;
}
.yal-hero-cta-tel { display: flex; align-items: center; gap: 10px; color: var(--yal-navy); text-decoration: none; }
.yal-hero-cta-tel i { font-size: 20px; color: var(--yal-blue); }
.yal-hero-cta-tel-num { font-size: 22px; font-weight: 900; letter-spacing: 0.04em; line-height: 1; }
.yal-hero-cta-tel-sub { font-size: 11px; color: var(--yal-text-light); margin-top: 2px; }
.yal-hero-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; padding: 13px 28px; border-radius: 4px; white-space: nowrap; text-decoration: none;
}
.yal-btn-primary-cta { background: #F39800; color: #fff; }
.yal-btn-line-cta { background: #06C755; color: #fff; }

/* ===== SERVICE ===== */
.yal-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.yal-service-card { background: #fff; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.20); display: flex; flex-direction: column; border: 1px solid var(--yal-border); border-radius: 6px; }
.yal-service-card-img { width: 100%; height: 200px; overflow: hidden; flex-shrink: 0; }
.yal-service-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* その他カード（全幅・ミニグリッド） */
.yal-service-other-header { padding: 20px 20px 0; }
.yal-service-other-header h3 { font-size: 17px; font-weight: 700; color: var(--yal-navy); margin-bottom: 6px; }
.yal-service-other-header p  { font-size: 13px; color: var(--yal-text-light); margin-bottom: 0; }
.yal-service-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
}
.yal-service-other-item {
  display: flex;
  align-items: center;
  background: var(--yal-gray-bg);
  overflow: hidden;
}
.yal-service-other-img { width: 100px; flex-shrink: 0; }
.yal-service-other-img img { width: 100%; height: 80px; object-fit: cover; display: block; }
.yal-service-other-body { padding: 10px 14px; }
.yal-service-other-name  { font-size: 14px; font-weight: 700; color: var(--yal-navy); margin-bottom: 4px; }
.yal-service-other-price { font-size: 13px; color: var(--yal-blue); font-weight: 700; }
@media (max-width: 960px) {
  .yal-service-other-grid { grid-template-columns: 1fr; }
}
.yal-service-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.yal-service-card-body h3 { font-size: 17px; font-weight: 700; color: var(--yal-navy); margin-bottom: 10px; }
.yal-service-card-body p { font-size: 13px; color: var(--yal-text-light); line-height: 1.75; margin-bottom: 14px; }
.yal-service-price-row { margin-top: auto; padding-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.yal-service-price-item {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--yal-border); padding-top: 6px; font-size: 12px;
}
.yal-sp-label { color: var(--yal-text-light); }
.yal-sp-val { font-weight: 700; color: var(--yal-navy); }
.yal-free-val { color: #e74c3c; }

/* ===== CTA SECTION ===== */
/* PC/SP 切替 */
.yal-cta-pc { display: block; position: relative; z-index: 1; }
.yal-cta-sp { display: none; position: relative; z-index: 1; }

.yal-cta-section-wrapper {
  position: relative; padding: 15px 20px 60px; overflow: visible; box-sizing: border-box;
}
.yal-cta-section-wrapper::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 30%; background: #3983C7; z-index: 0;
}
.yal-cta-section-wrapper::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 70%; background: #EFEFEF; z-index: 0;
}
.yal-cta-belt-text {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 15px; padding-bottom: 20px;
}
.yal-cta-belt-main { font-size: 28px; font-weight: 800; color: #fff; letter-spacing: 0.05em; white-space: nowrap; }
.yal-cta-belt-chevrons { color: rgba(255,255,255,0.6); font-size: 18px; }
.yal-cta-container { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; box-sizing: border-box; }
.yal-cta-box {
  background: #fff; border-radius: 20px; padding: 15px 40px 15px 370px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.30); position: relative; min-height: 200px;
}
.yal-cta-image {
  position: absolute; left: 30px; bottom: 0; width: 330px;
  height: calc(100% + 60px); display: flex; align-items: flex-end; justify-content: center;
}
.yal-cta-image img { max-width: 100%; max-height: 100%; object-fit: contain; object-position: bottom; }
.yal-cta-content { display: flex; flex-direction: column; gap: 15px; }
.yal-cta-top-area { display: flex; align-items: center; gap: 40px; }
.yal-cta-badges { display: flex; gap: 10px; flex-shrink: 0; }
.yal-cta-badge {
  width: 100px; height: 100px; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.yal-cta-badge img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; }
.yal-cta-badge-text { position: relative; z-index: 1; text-align: center; color: #fff; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.yal-cta-badge-top  { font-size: 11px; line-height: 1.3; display: block; }
.yal-cta-badge-main { font-size: 26px; line-height: 1.1; display: block; }
.yal-cta-phone-area { display: flex; flex-direction: column; align-items: center; }
.yal-cta-phone-number {
  font-size: 48px; font-weight: 900; color: #E33967; letter-spacing: -0.02em;
  line-height: 1; text-decoration: none;
}
.yal-cta-phone-number i { margin-right: 5px; font-size: 40px; }
.yal-cta-phone-info { font-size: 14px; color: #666; margin-top: 5px; }
.yal-cta-buttons { display: flex; gap: 15px; }
.yal-cta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 11px 25px; border-radius: 20px;
  font-weight: bold; font-size: 18px; transition: transform 0.2s, box-shadow 0.2s;
  color: #fff; text-decoration: none;
}
.yal-cta-btn-line { background: linear-gradient(to bottom, #06C755, #04a847); box-shadow: 0 4px 0 #047a34; }
.yal-cta-btn-mail { background: linear-gradient(to bottom, #F39800, #d98200); box-shadow: 0 4px 0 #a86200; }
.yal-cta-btn i { font-size: 24px; }
.yal-cta-btn-text { display: flex; flex-direction: column; align-items: flex-start; }
.yal-cta-btn-main { font-size: 18px; line-height: 1.2; }
.yal-cta-btn-sub  { font-size: 12px; font-weight: normal; color: rgba(255,255,255,0.9); }
.yal-cta-bottom-text { text-align: center; font-size: 16px; color: #333; }
.yal-highlight { color: #e53935; font-weight: bold; }

/* ===== WORKS MARQUEE ===== */
.yal-works-marquee-outer {
  width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden;
  cursor: grab; user-select: none; margin-top: 0; margin-bottom: 32px;
}
.yal-works-marquee-outer:active { cursor: grabbing; }
.yal-works-marquee-track {
  display: flex; gap: 16px; width: max-content;
  padding: 8px 0 8px 16px;
  /* アニメーションはJSのRAFで制御 */
}
.yal-works-card {
  background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.42);
  width: 480px; flex-shrink: 0;
  display: block; text-decoration: none; color: inherit; cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.yal-works-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.52);
  transform: translateY(-2px);
}
.yal-works-ba { display: flex; flex-direction: column; height: 360px; }
.yal-works-ba-item { position: relative; overflow: hidden; flex: 1; }
.yal-works-ba-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yal-works-ba-label {
  position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,0.55); color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 2px; letter-spacing: 0.08em;
}
.yal-works-ba-label.yal-after { background: #F39B07; }
.yal-works-body { padding: 14px 16px; }
.yal-works-category {
  display: inline-block; background: #eef4fb; color: var(--yal-blue);
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 2px; margin-bottom: 6px;
}
.yal-works-title { font-size: 13px; font-weight: 700; color: var(--yal-navy); line-height: 1.45; margin-bottom: 10px; }
.yal-works-meta { display: flex; gap: 12px; font-size: 12px; color: var(--yal-text-light); }
.yal-works-meta span { display: flex; align-items: center; gap: 4px; }
.yal-works-more { text-align: center; margin-top: 8px; }
.yal-btn-more {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--yal-blue); color: var(--yal-blue);
  font-size: 14px; font-weight: 700; padding: 12px 32px; border-radius: 4px; text-decoration: none;
}

/* ===== WHY ===== */
/* PC/SP 出し分け */
.yal-why-pc { display: block; }
.yal-why-sp { display: none; padding: 40px 18px; font-family: 'Noto Sans JP', sans-serif; }

@media (max-width: 959px) {
  .yal-why-pc { display: none !important; }
  .yal-why-sp { display: block !important; }
}

/* PC版 */
.yal-why-inner { width: 100%; padding: 0 5%; }
.yal-why-header { text-align: center; margin-bottom: 32px; }
.yal-why-en {
  font-size: 14px; font-weight: 700; letter-spacing: 0.2em; color: var(--yal-blue);
  text-transform: uppercase; display: block; margin-bottom: 10px;
}
.yal-why-h2 {
  font-size: 32px !important; font-weight: 900 !important; color: var(--yal-navy) !important;
  line-height: 1.4 !important; margin: 0 0 16px 0 !important; padding: 0 !important;
  border: none !important; background: none !important; text-align: center !important;
  display: block !important; box-shadow: none !important; -webkit-text-fill-color: var(--yal-navy) !important;
}
.yal-why-h2::before, .yal-why-h2::after { content: none !important; display: none !important; }
.yal-why-header p { font-size: 15px; color: var(--yal-text-light); line-height: 1.9; }

.yal-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.yal-why-card {
  background: #f7f8fa; border-radius: 20px; padding: 36px 24px;
  position: relative; overflow: hidden;
  border: 1px solid transparent;
}
.yal-why-num {
  font-size: 56px; font-weight: 800; color: rgba(57,131,199,0.2);
  position: absolute; top: 10px; right: 14px; line-height: 1;
  display: block; background: none; border-radius: 0; width: auto; height: auto;
}
.yal-why-card-img { width: 100%; height: 160px; border-radius: 12px; overflow: hidden; margin-bottom: 18px; }
.yal-why-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yal-why-card h3 {
  font-size: 17px !important; font-weight: 800 !important; color: var(--yal-navy) !important;
  margin-bottom: 10px !important; line-height: 1.5 !important;
  padding: 0 !important; border: none !important; background: none !important; box-shadow: none !important;
}
.yal-why-card h3::before, .yal-why-card h3::after { content: none !important; display: none !important; }
.yal-why-card p { font-size: 14px; color: var(--yal-text-light); line-height: 1.9; }

.yal-why-badges { display: flex; justify-content: center; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.yal-why-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--yal-yellow); color: var(--yal-navy);
  font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 50px;
}
.yal-why-badge i { font-size: 16px; color: var(--yal-navy); }

/* SP版 */
.yal-why-sp-header { text-align: center; margin-bottom: 20px; }
.yal-why-sp-en {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; color: var(--yal-blue);
  text-transform: uppercase; display: block; margin-bottom: 8px;
}
.yal-why-sp-h2 {
  font-size: 22px !important; font-weight: 900 !important; color: var(--yal-navy) !important;
  line-height: 1.4 !important; margin: 0 0 12px 0 !important; padding: 0 !important;
  border: none !important; background: none !important; text-align: center !important; box-shadow: none !important;
}
.yal-why-sp-h2::before, .yal-why-sp-h2::after { content: none !important; display: none !important; }
.yal-why-sp-header p { font-size: 13px; color: var(--yal-text-light); line-height: 1.8; }

.yal-why-sp-grid { display: flex; flex-direction: column; gap: 16px; }
.yal-why-sp-card {
  background: #f7f8fa; border-radius: 16px; padding: 28px 20px;
  position: relative; overflow: hidden;
}
.yal-why-sp-num {
  font-size: 48px; font-weight: 800; color: rgba(57,131,199,0.2);
  position: absolute; top: 8px; right: 12px; line-height: 1;
}
.yal-why-sp-card-img { width: 100%; height: 140px; border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
.yal-why-sp-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yal-why-sp-card-title {
  font-size: 16px; font-weight: 800; color: var(--yal-navy);
  margin-bottom: 8px; line-height: 1.5;
}
.yal-why-sp-card p { font-size: 13px; color: var(--yal-text-light); line-height: 1.9; }

.yal-why-sp-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }
.yal-why-sp-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--yal-yellow); color: var(--yal-navy);
  font-size: 12px; font-weight: 700; padding: 9px 16px; border-radius: 50px;
}
.yal-why-sp-badge i { font-size: 14px; color: var(--yal-navy); }

/* ===== PRICE ===== */
.yal-price-table {
  width: 100%; border-collapse: collapse; border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.20);
}
.yal-price-table th {
  background: var(--yal-navy); color: #fff; font-size: 13px; font-weight: 700;
  padding: 14px 20px; text-align: left; white-space: nowrap;
}
.yal-price-table td { padding: 13px 20px; font-size: 14px; border-bottom: 1px solid var(--yal-border); background: #fff; }
.yal-price-table tr:nth-child(even) td { background: #f0f5fb; }
.yal-price-table td:last-child { font-weight: 700; color: var(--yal-blue); text-align: right; }
.yal-free-cell { color: #e74c3c !important; font-size: 16px; font-weight: 900; }
.yal-price-note { font-size: 12px; color: var(--yal-text-light); margin-top: 16px; line-height: 1.8; }
.yal-price-note p { margin-bottom: 4px; }
.yal-price-note p::before { content: '※ '; }

/* ===== AREA ===== */
.yal-area-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.yal-area-map img { width: 100%; border-radius: 8px; box-shadow: none; }
.yal-area-list-title { font-size: 14px; font-weight: 700; color: var(--yal-navy); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.yal-area-list-title i { color: var(--yal-blue); }
.yal-area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.yal-area-tag {
  display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--yal-blue); color: var(--yal-blue);
  font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 20px;
  transition: all .2s; text-decoration: none;
}
.yal-area-tag:hover { background: var(--yal-blue); color: #fff; }
/* 町名タグ（非リンク） */
.yal-area-tag--plain { cursor: default; pointer-events: none; background: var(--yal-gray-bg); border-color: var(--yal-border); color: var(--yal-navy); }
/* アクセス情報 */
.yal-area-access { font-size: 13px; color: var(--yal-text-light); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.yal-area-access i { color: var(--yal-blue); }
/* アコーディオン展開エリア */
.yal-area-tags-more { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 0; }
.yal-area-tags-more[hidden] { display: none; }
/* 「もっと見る」ボタン */
.yal-area-more-btn {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  background: none; border: 1px solid var(--yal-blue); color: var(--yal-blue);
  font-size: 13px; font-weight: 600; padding: 7px 18px; border-radius: 20px;
  cursor: pointer; transition: all .2s;
}
.yal-area-more-btn:hover { background: var(--yal-blue); color: #fff; }
.yal-area-more-btn[aria-expanded="true"] .fa-chevron-down { transform: rotate(180deg); }
.yal-area-more-btn i { transition: transform .2s; }

/* ===== FAQ ===== */
.yal-faq-list { max-width: 760px; margin: 0 auto; }
.yal-faq-item { border-radius: 6px; overflow: hidden; margin-bottom: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.22); }
.yal-faq-q {
  background: #fff; padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px; font-weight: 700; color: var(--yal-navy); line-height: 1.5;
}
.yal-faq-q-icon {
  width: 28px; height: 28px; background: var(--yal-blue); color: #fff; font-size: 13px; font-weight: 900;
  border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.yal-faq-a {
  background: var(--yal-gray-bg); padding: 16px 20px; font-size: 14px; color: var(--yal-text); line-height: 1.8;
  display: flex; gap: 14px; align-items: flex-start;
}
.yal-faq-a-icon {
  width: 28px; height: 28px; background: var(--yal-navy); color: #fff; font-size: 13px; font-weight: 900;
  border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}

/* ===== CONTACT ===== */
.yal-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }
.yal-contact-card { background: #fff; border-radius: 8px; padding: 32px 28px; box-shadow: 0 2px 4px rgba(0,0,0,0.20); text-align: center; border: 1px solid var(--yal-border); }
.yal-contact-card h3 { font-size: 14px; font-weight: 700; color: var(--yal-navy); margin-bottom: 16px; }
.yal-contact-tel-num { font-size: 30px; font-weight: 900; color: var(--yal-navy); letter-spacing: 0.04em; margin-bottom: 4px; }
.yal-contact-hours { font-size: 12px; color: var(--yal-text-light); margin-bottom: 16px; }
.yal-btn-contact-tel {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: var(--yal-navy); color: #fff; font-size: 15px; font-weight: 700;
  padding: 14px; border-radius: 4px; text-decoration: none; box-sizing: border-box;
}
.yal-contact-or { font-size: 12px; color: var(--yal-text-light); margin: 14px 0; }
.yal-btn-contact-line {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: #06C755; color: #fff; font-size: 14px; font-weight: 700;
  padding: 13px; border-radius: 4px; margin-bottom: 10px; text-decoration: none; box-sizing: border-box;
}
.yal-btn-contact-mail {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: #F39800; color: #fff; font-size: 14px; font-weight: 700;
  padding: 13px; border-radius: 4px; text-decoration: none; box-sizing: border-box;
}
.yal-contact-badges { display: flex; justify-content: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.yal-contact-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--yal-text-light); }
.yal-contact-badge i { color: var(--yal-blue); }

/* ===== VOICE SECTION OVERRIDE ===== */
/* マーキー自身の背景色を透明にして yal-section-bg の色を統一して使う */
#voice .yt-voice-marquee-breakout {
  background: transparent;
}

/* ===== VOICE CARD OVERRIDE ===== */
/* 角丸なし・縦幅1.5倍・テキスト8行表示・Googleレビュー風 */
.yt-voice-card {
  border-radius: 0 !important;
  min-height: 300px !important;
  box-shadow: 0 1px 3px rgba(60,64,67,0.32), 0 2px 5px rgba(60,64,67,0.20) !important;
  border: none !important;
  padding: 20px 20px 16px !important;
}
.yt-voice-card__body-wrap {
  flex: 1 !important;
}
.yt-voice-card__body.is-clamped {
  -webkit-line-clamp: 8 !important;
  line-clamp: 8 !important;
  /* iOS Safari で line-clamp 要素のタッチ判定が視覚範囲外に広がるバグ対策 */
  pointer-events: none;
}

/* アバター: Google風ソリッドカラー + 白文字 */
.yt-voice-card__avatar {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: #4285F4 !important;
  flex-shrink: 0 !important;
}

/* 属性テキスト（年代・性別 / エリア） */
.yt-voice-card__attr {
  font-size: 12px;
  color: #80868b;
  margin-top: 2px;
  line-height: 1.3;
}

/* Google アイコン */
.yt-voice-card__google {
  margin-left: auto;
  flex-shrink: 0;
  color: #4285F4;
  font-size: 18px;
  align-self: flex-start;
}

/* 星 + 日付を横並び */
.yt-voice-card__rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  margin-top: 6px;
}

/* 相対日付 */
.yt-voice-card__date {
  font-size: 12px;
  color: #80868b;
}

/* nth-child で7色ローテーション */
.yt-voice-marquee-segment .yt-voice-card:nth-child(7n+1) .yt-voice-card__avatar { background: #4285F4 !important; } /* Google Blue   */
.yt-voice-marquee-segment .yt-voice-card:nth-child(7n+2) .yt-voice-card__avatar { background: #DB4437 !important; } /* Google Red    */
.yt-voice-marquee-segment .yt-voice-card:nth-child(7n+3) .yt-voice-card__avatar { background: #0F9D58 !important; } /* Google Green  */
.yt-voice-marquee-segment .yt-voice-card:nth-child(7n+4) .yt-voice-card__avatar { background: #F4B400 !important; } /* Google Yellow */
.yt-voice-marquee-segment .yt-voice-card:nth-child(7n+5) .yt-voice-card__avatar { background: #9C27B0 !important; } /* Purple        */
.yt-voice-marquee-segment .yt-voice-card:nth-child(7n+6) .yt-voice-card__avatar { background: #FF5722 !important; } /* Deep Orange   */
.yt-voice-marquee-segment .yt-voice-card:nth-child(7n+0) .yt-voice-card__avatar { background: #00897B !important; } /* Teal          */

/* 名前 */
.yt-voice-card__name {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #202124 !important;
  margin: 0 !important;
}
/* 星（rating-rowに移動済み） */
.yt-voice-card__stars {
  font-size: 14px !important;
  gap: 1px !important;
}
/* top行でstarsが出ても非表示（rating-rowで出力） */
.yt-voice-card__meta .yt-voice-card__stars {
  display: none !important;
}
/* 本文 */
.yt-voice-card__body {
  font-size: 14px !important;
  color: #3c4043 !important;
  line-height: 1.7 !important;
}
/* 「もっと見る」ボタン
   カードが端に半分かかっている場合でも必ずタップできるよう全幅にする */
.yt-voice-card__toggle {
  font-size: 13px !important;
  color: #1a73e8 !important;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  align-self: stretch !important;
  padding: 8px 0 !important;
  background: #ffffff !important;
  border-radius: 4px !important;
}
/* display: block !important を上書きされないよう hidden 時は確実に非表示 */
.yt-voice-card__toggle[hidden] {
  display: none !important;
}

/* ループセグメント間にもカード間と同じgapを付与 */
.yt-voice-marquee-loop {
  gap: var(--yt-voice-gap, 24px) !important;
}

/* ===== LINE フローティングウィジェット ===== */
.yal-line-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
/* FABボタン */
.yal-line-fab {
  position: relative; width: 60px; height: 60px; border-radius: 50%;
  background: #06C755; color: #fff; border: none; cursor: pointer;
  font-size: 32px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.28); transition: transform 0.2s, box-shadow 0.2s;
}
.yal-line-fab:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(0,0,0,0.32); }
/* 赤い通知バッジ */
.yal-line-fab-badge {
  position: absolute; top: 2px; right: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #e8003d; border: 2px solid #fff;
  display: block;
}
/* ポップアップ全体 */
.yal-line-popup {
  background: #fff; border-radius: 12px; width: 280px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22); overflow: hidden;
  transition: opacity 0.2s, transform 0.2s; transform-origin: bottom right;
}
.yal-line-popup[aria-hidden="true"]  { opacity: 0; pointer-events: none; transform: scale(0.92) translateY(10px); }
.yal-line-popup[aria-hidden="false"] { opacity: 1; pointer-events: auto; transform: scale(1) translateY(0); }
/* LINE プロフィールヘッダー：雲なし */
.yal-lp-profile { background: #839EBF; }
/* LINE チャットエリア：雲パターンあり */
.yal-lp-body {
  background-color: #839EBF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='160'%3E%3Cellipse cx='60' cy='120' rx='52' ry='22' fill='rgba(255,255,255,0.11)'/%3E%3Cellipse cx='95' cy='110' rx='36' ry='18' fill='rgba(255,255,255,0.09)'/%3E%3Cellipse cx='240' cy='40' rx='58' ry='24' fill='rgba(255,255,255,0.10)'/%3E%3Cellipse cx='280' cy='30' rx='34' ry='16' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 320px 160px;
}
/* プロフィールヘッダー */
.yal-lp-profile {
  padding: 10px 12px 14px; position: relative;
}
.yal-lp-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; color: rgba(255,255,255,0.8);
  font-size: 20px; cursor: pointer; line-height: 1; padding: 0;
}
.yal-lp-close:hover { color: #fff; }
.yal-lp-profile-row {
  display: flex; align-items: center; gap: 10px; padding-top: 4px;
}
.yal-lp-avatar {
  width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  background: #fff; border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.yal-lp-profile-meta { display: flex; flex-direction: column; gap: 3px; }
.yal-lp-sender   { font-size: 13px; font-weight: 700; color: #fff; }
.yal-lp-greeting { font-size: 11px; color: rgba(255,255,255,0.9); }
/* チャット吹き出しエリア */
.yal-lp-body {
  padding: 8px 12px 14px;
}
.yal-lp-timestamp {
  text-align: center; font-size: 11px; color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.yal-lp-bubble {
  background: #fff; border-radius: 0 12px 12px 12px;
  padding: 10px 12px; font-size: 13px; line-height: 1.55;
  color: #222; display: inline-block; max-width: 90%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  animation: yalFadeIn 0.3s ease;
}
/* hidden属性をCSSのdisplayが上書きしないよう明示的に指定 */
.yal-lp-bubble[hidden],
.yal-lp-typing[hidden] { display: none !important; }
/* タイピングインジケーター */
.yal-lp-typing {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff; border-radius: 0 12px 12px 12px;
  padding: 12px 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.yal-lp-typing span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #aaa; display: block;
  animation: yalTypingDot 1.2s infinite ease-in-out;
}
.yal-lp-typing span:nth-child(2) { animation-delay: 0.2s; }
.yal-lp-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes yalTypingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-5px); opacity: 1; }
}
@keyframes yalFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* フッター */
.yal-lp-footer { background: #fff; padding: 12px 14px 14px; }
.yal-lp-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px; background: #06C755; color: #fff;
  font-size: 14px; font-weight: 700; border-radius: 8px;
  text-decoration: none; transition: background 0.2s;
}
.yal-lp-btn i { font-size: 18px; }
.yal-lp-btn:hover { background: #04a847; color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .yal-hero-inner { grid-template-columns: 1fr; gap: 10px; }
  .yal-hero-visual { display: none; }
  .yal-hero-pc { background-image: url('https://yane-care.jp/wp-content/uploads/2026/03/yanecare-1.png') !important; background-position: center top; }
  .yal-hero-cta-bar { display: none; }
  /* SP専用ヒーロー内CTAボックス */
  .yal-hero-sp-cta { display: block; margin-top: 8px; }
  .yal-service-grid { grid-template-columns: 1fr; }
  .yal-why-grid { grid-template-columns: 1fr; }
  .yal-area-body { grid-template-columns: 1fr; }
  .yal-contact-grid { grid-template-columns: 1fr; }
  /* PC版非表示・SP版表示 */
  .yal-cta-pc { display: none; }
  .yal-cta-sp { display: block; }
  .yal-cta-section-wrapper {
    padding: 0 15px 40px; overflow-x: hidden;
  }
  .yal-cta-section-wrapper::before { display: none; }
  .yal-cta-section-wrapper::after  { height: 100%; }
  /* SP ベルト帯 */
  .yal-cta-belt-text {
    padding: 16px 10px !important; margin: 0 -15px 28px;
    background: #3983C7; justify-content: center; text-align: center;
    position: relative;
  }
  .yal-cta-belt-text::after {
    content: ''; position: absolute; bottom: -13px; left: 50%;
    transform: translateX(-50%); width: 0; height: 0;
    border-left: 16px solid transparent; border-right: 16px solid transparent;
    border-top: 14px solid #3983C7;
  }
  .yal-cta-belt-main { font-size: clamp(14px, 4.2vw, 18px) !important; letter-spacing: 0 !important; }
  /* SP コンテナ・ボックス */
  .yal-cta-sp-container { max-width: 480px; margin: 0 auto; }
  .yal-cta-sp-buttons-box {
    background: #fff; border-radius: 20px; padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.22);
    position: relative; overflow: hidden;
  }
  /* 人物画像：右側に絶対配置・ボタンより後ろ */
  .yal-cta-sp-person {
    position: absolute; right: 0; top: 0; z-index: 0;
    width: 180px; pointer-events: none;
  }
  .yal-cta-sp-person img { width: 100%; height: auto; display: block; }
  /* SP 上段: バッジ+テキスト（左） */
  .yal-cta-sp-top {
    position: relative; z-index: 1;
    margin-bottom: 14px;
  }
  /* 左カラム：右バッジの中心がボックス中央に来る幅（50% + バッジ半個分40px） */
  .yal-cta-sp-top-left { display: flex; flex-direction: column; gap: 8px; flex: none; width: calc(50% + 40px); }
  .yal-cta-sp-badges { display: flex; flex-direction: row; gap: 8px; justify-content: flex-end; }
  .yal-cta-sp-badge {
    width: 80px; height: 80px; position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
  }
  .yal-cta-sp-badge img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; }
  .yal-cta-sp-badge-text { position: relative; z-index: 1; text-align: center; color: #fff; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
  .yal-cta-sp-badge-top  { font-size: 10px; line-height: 1.3; display: block; }
  .yal-cta-sp-badge-main { font-size: 20px; line-height: 1.1; display: block; }
  /* テキスト（全幅・中央寄せ） */
  .yal-cta-sp-bottom-text {
    font-size: 13px; color: #333; line-height: 1.5;
    width: 100%; text-align: center; position: relative; z-index: 1;
    margin-bottom: 10px;
  }
  .yal-cta-sp-bottom-highlight {
    color: #e53935; font-weight: bold; display: block; text-align: center;
    text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff,
                 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
  }
  .yal-cta-sp-jisseki {
    display: block; text-align: center; font-weight: 700;
  }
  .yal-cta-sp-jisseki span {
    background: linear-gradient(transparent 55%, #FFE44D 55%);
    padding: 0 2px;
  }
  /* ボタンはすべて人物より前面 */
  .yal-cta-sp-btn-phone,
  .yal-cta-sp-btn-line,
  .yal-cta-sp-btn-mail { position: relative; z-index: 1; }
  /* SP 電話ボタン */
  .yal-cta-sp-btn-phone {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, #E33967, #C92D56);
    border-radius: 50px; padding: 12px 20px; margin-bottom: 10px;
    text-decoration: none; box-shadow: 0 4px 0 #9E1F3D; color: #fff;
  }
  .yal-cta-sp-btn-phone-left { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: center; }
  .yal-cta-sp-btn-phone-left i { font-size: 22px; }
  .yal-cta-sp-btn-phone-text { display: flex; flex-direction: column; align-items: center; }
  .yal-cta-sp-btn-phone-main { font-size: 19px; font-weight: 900; line-height: 1.2; }
  .yal-cta-sp-btn-phone-sub  { font-size: 10px; color: rgba(255,255,255,0.9); }
  /* SP LINEボタン */
  .yal-cta-sp-btn-line {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, #06C354, #04A746);
    border-radius: 50px; padding: 12px 20px; margin-bottom: 10px;
    text-decoration: none; box-shadow: 0 4px 0 #056B05; color: #fff;
  }
  .yal-cta-sp-btn-line-left { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: center; }
  .yal-cta-sp-btn-line-left i { font-size: 26px; }
  .yal-cta-sp-btn-line-text { display: flex; flex-direction: column; align-items: center; }
  .yal-cta-sp-btn-line-main { font-size: 17px; font-weight: bold; line-height: 1.2; }
  .yal-cta-sp-btn-line-sub  { font-size: 11px; color: rgba(255,255,255,0.9); }
  /* SP メールボタン */
  .yal-cta-sp-btn-mail {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, #0CC5E0, #0AA7C1);
    border-radius: 50px; padding: 12px 20px;
    text-decoration: none; box-shadow: 0 4px 0 #2C8391; color: #fff;
  }
  .yal-cta-sp-btn-mail-left { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: center; }
  .yal-cta-sp-btn-mail-left i { font-size: 22px; }
  .yal-cta-sp-btn-mail-text { display: flex; flex-direction: column; align-items: center; }
  .yal-cta-sp-btn-mail-main { font-size: 17px; font-weight: bold; line-height: 1.2; }
  .yal-cta-sp-btn-mail-sub  { font-size: 11px; color: rgba(255,255,255,0.9); }
  .yal-hero-cta-inner { flex-wrap: wrap; gap: 10px; }
  .yal-line-fab { width: 56px; height: 56px; font-size: 28px; }
  .yal-line-float { bottom: 16px; right: 16px; }
  .yal-line-popup { width: 260px; }
  /* 施工事例カード：画面幅に合わせる */
  .yal-works-card { width: calc(100vw - 56px); }
  .yal-works-ba { height: auto; }
  .yal-works-ba-item img { height: 180px; }
}

@media (max-width: 768px) {
  .yal-sec-title { font-size: 22px; }
  .yal-hero-title { font-size: 28px !important; }
  .yal-cta-top-area { flex-direction: column; gap: 16px; }
  .yal-cta-buttons { flex-direction: column; }
}
