﻿@charset "UTF-8";
/*
Theme Name: kachofuketsu
*/
/* CSS Document */ :root {
  --brand: #ee7602; /* オレンジ */
  --brand2: #f6b34f;
  --ink: #2b2b2b;
  --muted: #6b7280;
  --soft: #f7f5f1;
  --line: #e8e2d8;
  --works-bg: #f7f3ec; /* WORKS背景 */
  --news-bg: #dfe8f2; /* NEWS背景 */
  --panel: #ffffff;
  --stroke: #d9d2c6;
  --shadow: 0 12px 28px rgba(0, 0, 0, .08);
  --soft-shadow: 0 14px 28px rgba(0, 0, 0, .08);
  --radius: 1rem;
  --radius-xl: 15px;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: var(--ink);
  line-height: 1.7;
  background: #fff;
}
html {
  scroll-padding-top: 224px;
}
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 66px;
  }
}
.material-symbols-outlined {
  font-variation-settings:
    'FILL'0, 'wght'400, 'GRAD'0, 'opsz'24
}
img, svg {
  max-width: 100%;
}
a {
  transition: opacity 0.3s ease;
}
.text-muted2 {
  color: var(--muted) !important;
  line-height: 1.3rem;
}
.border-line {
  border-color: var(--line) !important
}
.shadow-soft {
  box-shadow: var(--shadow) !important
}
.rounded-2xl {
  border-radius: var(--radius) !important
}
.text-brand {
  color: var(--brand);
}
/* ===== Header (2段 / デザイン寄せ) ===== */
.logo img {
  width: 160px;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
/* ===== PCだけ：下段ナビだけ fixed にする ===== */
@media (min-width: 992px) {
  .site-header {
    position: relative;
  }
  /* fixedになる時に付与するクラス */
  #stickyNav.is-fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1040;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
  }
}
.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: url("images/logo_mark.svg") no-repeat center left / 50px auto;
  position: relative;
  flex: 0 0 auto;
}
.chip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .55rem .95rem;
  border-radius: 999px;
  background: var(--works-bg);
  font-weight: 800;
  font-size: .9rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  min-width: 120px;
}
.chip-btn .dot {
  display: none;
}
/*
.chip-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .95rem;
  border-radius: 999px;
  border: 1px solid #d9d9d9;
  background: #fff;
  font-weight: 800;
  font-size: .9rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.chip-btn .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  display: inline-block;
}
*/
.tel-pill {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem 1.05rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
}
.tel-icon {
  opacity: .95;
}
.tel-num {
  font-size: 1.25rem;
  letter-spacing: .02em;
}
.tel-time {
  font-weight: 800;
  font-size: .85rem;
  opacity: .95;
}
.tel-note {
  font-weight: 700;
  font-size: .8rem;
  opacity: .9;
}
.main-nav {
  padding: .35rem 0;
}
.nav-itemx {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.05rem;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
}
.nav-itemx:hover {
  color: var(--brand);
}
.nav-ic img {
  width: 40px;
}
.nav-sep {
  width: 1px;
  height: 22px;
  background: var(--line);
  display: inline-block;
}
/* =========================
   Header hover sub menu
========================= */
.nav-item-wrap {
  position: relative;
}
/* サブメニュー */
.nav-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1000;
}
/* hoverで表示 */
.nav-has-sub:hover .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* サブメニュー項目 */
.nav-sub a {
  display: block;
  padding: 10px 18px;
  font-weight: 700;
  font-size: .95rem;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}
.nav-sub a:hover {
  background: rgba(242, 154, 24, .12); /* ブランド薄オレンジ */
  color: #8a4f00;
}
/* 親項目 hover時の強調（任意） */
.nav-has-sub:hover > .nav-itemx {
  color: #e89a2b;
}
/* ===== MV Swiper (marutomi-like centered peek) ===== */
.mv-swiper-wrap {
  border-radius: 1.35rem;
  overflow: hidden; /* ←左右が見切れる“窓” */
  border: 1px solid rgba(0, 0, 0, .06);
  background: #fff;
  box-shadow: var(--shadow);
}
/* Swiper本体 */
.mv-swiper {
  width: 100%;
  padding: 16px 0 36px; /* 下のpagination分 */
}
/* スライド */
.mv-swiper .swiper-slide {
  /*transition: transform .35s ease, opacity .35s ease, filter .35s ease;
  opacity: .55;
  transform: scale(.92);
  filter: saturate(.95);*/
}
.mv-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}
/* 画像の見た目 */
.mv-swiper .swiper-slide img {
  width: 100%;
  /*height: min(552px, 50vw);
  min-height: 320px;
  object-fit: cover;*/
  display: block;
  border-radius: 1.1rem;
}
/* ページネーション（小さい点） */
.mv-swiper .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, .75);
  opacity: 1;
}
.mv-swiper .swiper-pagination-bullet-active {
  background: var(--brand);
}
/* SP：1枚だけ“しっかり”表示 */
@media (max-width: 991.98px) {
  .mv-swiper {
    padding: 0;
  }
  .mv-swiper-wrap {
    padding: 1%;
  }
  .mv-swiper .swiper-slide {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .mv-swiper .swiper-slide img {
    /* height: 52vw;
    min-height: 260px;*/
    border-radius: 1.1rem;
  }
}
/* ===== セクション見出し ===== */
.sec-en {
  font-family: "Futura", "Futura PT", "Montserrat", "Noto Sans JP", sans-serif;
  color: var(--brand);
  letter-spacing: .10em;
}
.sec-ja {
  font-size: .9rem;
  font-weight: 800;
  color: #333;
}
.sec-en-white {
  font-family: "Futura", "Futura PT", "Montserrat", "Noto Sans JP", sans-serif;
  color: #fff;
  letter-spacing: .10em;
}
.sec-ja-white {
  color: rgba(255, 255, 255, .92);
  font-size: .9rem;
  font-weight: 800;
}
/* ===== WORKS〜NEWS（スクショ寄せ） ===== */
.sec-works {
  background: var(--works-bg);
}
.work-card {
  background: var(--panel);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(0, 0, 0, .04);
}
.work-card a {
  text-decoration: none;
}
.work-img {
  height: 300px;
  overflow: hidden;
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-body {
  padding: 18px 22px 22px;
  text-align: center;
}
.work-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 8px;
}
.work-arrow {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid var(--brand);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
}
.work-desc {
  color: #555;
  font-size: .92rem;
}
.work-card, .mini-tile, .chip-btn, .tel-pill, .btn-news-more, .btn-voice-more, .contact-tel, .contact-mail, .reason-media {
  transition: .2s all linear;
}
.work-card:hover, .mini-tile:hover, .chip-btn:hover, .tel-pill:hover, .btn-news-more:hover, .btn-voice-more:hover, .contact-tel:hover, .contact-mail:hover, .reason-media:hover {
  transform: scale(1.03);
}
/* 3タイル */
.mini-tile {
  background: var(--panel);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #ccc;
  min-height: 96px;
  color: inherit;
}
.mini-thumb {
  width: 35%;
  background: #eee;
}
.mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mini-body {
  position: relative;
  padding: 14px 14px 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex: 1;
}
.mini-title {
  font-weight: 900;
  font-size: 1.2rem;
  color: #3b2a1a;
  letter-spacing: .02em;
  line-height: 1.2;
}
.mini-badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1rem;
  font-weight: 900;
  padding: .22rem .55rem;
  border-radius: 0 0 0 6px;
  color: #fff;
}
.mini-badge-dark {
  background: #603813;
}
.mini-badge-pink {
  background: #ff7bac;
}
.mini-badge-green {
  background: #8cc63f;
}
/* AREAパネル */
.area-panel {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  overflow: hidden;
}
.area-left {
  border-right: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.area-left-inner {
  text-align: center;
}
.area-en {
  font-family:
    "Futura", "Futura PT", "Montserrat", "Noto Sans JP", sans-serif;
  letter-spacing: .12em;
  font-size: 2.1rem;
  color: #222;
}
.area-ja {
  font-weight: 900;
  color: #333;
  font-size: .95rem;
}
.area-mid {
  border-right: 1px solid var(--stroke);
}
.area-mid-inner {
  padding: 22px 22px;
  font-size: .9rem;
  color: #333;
}
.area-line strong {
  font-weight: 900;
}
.area-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .35rem .8rem;
  border-radius: 6px;
  background: #6a5b46;
  color: #fff;
  font-weight: 900;
  font-size: .8rem;
  text-decoration: none;
  white-space: nowrap;
}
.area-btn .material-symbols-outlined {
  font-size: 14px;
  margin-right: 2%;
}
.area-map {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.area-map img {
  width: 70%;
}
/* NEWS */
.sec-news {
  background: var(--news-bg);
}
.news-box {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
  overflow: hidden;
  max-width: 980px;
  padding: 0 3%;
}
.news-row {
  display: grid;
  grid-template-columns: 120px 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  color: #222;
}
.news-row:first-child {
  border-top: 0;
}
.news-date {
  font-weight: 900;
  color: #333;
}
.news-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-size: .6rem;
  padding: .12rem .65rem;
  border-radius: 6px;
  white-space: nowrap;
}
.news-ttl {
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-news-more {
  background: #e89a2b;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: .85rem 2.2rem;
  border: 1px solid rgba(0, 0, 0, .04);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-news-more:hover {
  filter: brightness(.98);
  color: #fff;
}
/* ===== TROUBLE ===== */
.sec-trouble {
  background: var(--brand);
  position: relative;
  overflow: visible;
}
.trouble-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .10);
  border: 1px solid rgba(0, 0, 0, .05);
  padding: 14px 14px 16px;
  text-align: center;
}
.trouble-illust {
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trouble-illust img {}
.trouble-text {
  margin-top: 12px;
  font-weight: 900;
  font-size: .95rem;
  color: #4f1a1a;
  line-height: 1.5;
}
.trouble-notch {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--brand);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
}
/* ===== REASONS ===== */
.sec-reasons {
  background:
    #f7f0e6 url("images/br_cloud.png") no-repeat center bottom / 100% auto;
}
.reasons-wrap {
  position: relative;
  padding-bottom: 10rem;
}
.reasons-kicker {
  color: #6b5b46;
  font-weight: 900;
  letter-spacing: .02em;
  padding-bottom: 2%;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.reasons-title {
  font-weight: 900;
  letter-spacing: .04em;
  color: #3b2a1a;
  font-size: 1.6rem;
}
.reasons-deco {
  width: 140px;
  height: auto;
  opacity: .9;
  border-radius: 10px;
}
.reason-media {
  position: relative;
}
.reason-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  filter: saturate(.95);
  border-radius: 15px;
}
.reason-no {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 3px solid #fff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .10);
  z-index: 3;
}
.reason-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .28), rgba(0, 0, 0, .38));
  z-index: 1;
  border-radius: 15px;
  border: solid 3px #fff;
}
.reason-overlay-inner {
  color: #fff;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  font-size: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}
.reason-dots {
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  border: 2px dotted rgba(255, 255, 255, .8);
  pointer-events: none;
  z-index: 2;
}
.reason-body {
  margin-top: 12px;
  font-size: .9rem;
  color: #4b3b2a;
  line-height: 1.9;
}
/* ===== VOICE ===== */
.sec-voice {
  background: #fff;
}
.voice-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 10px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .06);
  padding: 18px 18px 18px 190px;
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
}
.voice-illust {
  position: absolute;
  top: -13%;
  left: 1%;
  flex: 0 0 auto;
}
.voice-illust img {
  width: 160px;
}
.voice-body {
  flex: 1;
}
.voice-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6a5b46;
  color: #fff;
  font-weight: 900;
  font-size: .75rem;
  padding: .22rem .65rem;
  border-radius: 6px;
  margin-bottom: .6rem;
}
.voice-text {
  font-weight: 900;
  color: #2b2b2b;
  line-height: 1.6;
}
.voice-meta {
  font-size: .85rem;
  color: #666;
  font-weight: 700;
}
.btn-voice-more {
  background: #e89a2b;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: .85rem 2.2rem;
  border: 1px solid rgba(0, 0, 0, .04);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-voice-more:hover {
  filter: brightness(.98);
  color: #fff;
}
/* ===== CONTACT (orange full + line-art bg + pills) ===== */
.sec-contact {
  background: var(--brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sec-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  background-image:
    url("images/bg_contact.png");
}
.sec-contact > .container {
  position: relative;
  z-index: 1;
}
.contact-title {
  font-family: "Futura", "Futura PT", "Montserrat", "Noto Sans JP", sans-serif;
  letter-spacing: .10em;
  font-size: 2.6rem;
}
.contact-lead {
  font-weight: 800;
  font-size: 1.1rem;
  opacity: .95;
}
.contact-divider .line {
  height: 1px;
  width: 140px;
  background: rgba(255, 255, 255, .65);
  display: inline-block;
}
.contact-sub {
  font-weight: 900;
  opacity: .95;
  white-space: nowrap;
}
.contact-tel {
  background: #fff;
  color: #6b1f12;
  border-radius: 999px;
  padding: 14px 18px;
  min-width: min(520px, 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid rgba(255, 255, 255, .6);
}
.tel-ic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel-ic .material-symbols-outlined, .mail-ic .material-symbols-outlined {
  font-size: 2rem;
}
.tel-num2 {
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.1;
}
.tel-time2 {
  font-weight: 800;
  font-size: .95rem;
  opacity: .9;
}
.contact-mail {
  background: #8b1e12;
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px;
  min-width: min(420px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, .14);
  border: 2px solid rgba(255, 255, 255, .6);
}
.mail-ic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mail-text {
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: .02em;
}
/* ---------------- COMPANY ---------------- */
.company {
  background: #f8f6ef;
  padding: 36px 0;
}
.companygrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}
.companyphoto {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .06);
  min-height: 240px;
}
.companyphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.companybox h3 {
  font-family: "Futura", "Futura PT", "Montserrat", "Noto Sans JP", sans-serif;
  margin: 0 0 10px;
  color: var(--brand);
  letter-spacing: .08em;
}
.companybox p {
  margin: 0 0 14px;
  color: var(--muted);
}
/* ===== Footer nav (beige area + multi links + top button) ===== */
.footer-nav {
  background: #f7efe3;
  color: #6b1f12;
  position: relative;
}
.footer-links a {
  color: #6b1f12;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.foot-head {
  font-weight: 900;
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.foot-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: .95rem;
}
.foot-hr {
  border-color: rgba(107, 31, 18, .18);
  opacity: 1;
}
.foot-copy {
  color: rgba(107, 31, 18, .85);
  font-weight: 800;
}
.backtop {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  border: 1px solid rgba(107, 31, 18, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(107, 31, 18, .85);
  text-decoration: none;
  font-weight: 900;
}
.backtop:hover {
  filter: brightness(.98);
}
/* ===== Fixed bottom CTA (like screenshot) ===== */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050; /* Bootstrapのnavbarより上にしたい場合 */
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 64px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 -10px 20px rgba(0, 0, 0, .08);
}
/* ボタン共通 */
.fixed-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 18px;
}
/* 左：WEB予約（オレンジ） */
.fixed-cta__btn--web {
  background: #f29a18; /* ブランド色に合わせて調整 */
  color: #fff;
}
/* 右：電話（白） */
.fixed-cta__btn--tel {
  background: #fff;
  color: #222;
}
/* 真ん中の仕切り線 */
.fixed-cta__btn--tel {
  border-left: 1px solid rgba(0, 0, 0, .12);
}
/* アイコン */
.fixed-cta__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1;
}
/* ===== fixed-cta scroll hide ===== */
.fixed-cta {
  transition: transform .3s ease, opacity .3s ease;
}
.fixed-cta.is-hidden {
  transform: translateY(100%);
  opacity: 0;
}
/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  /*.mv-main img {
    height: 52vw;
    min-height: 260px;
  }*/
  .tel-num {
    font-size: 1.05rem;
  }
  .work-img {
    height: 210px;
  }
  .mini-thumb {
    width: 96px;
  }
  .news-row {
    grid-template-columns: 110px 110px 1fr;
    padding: 14px 16px;
  }
  .trouble-illust {
    height: 100px;
  }
  .reason-media img {
    height: 170px;
  }
  .voice-card {
    flex-direction: column;
    align-items: stretch;
  }
  .voice-illust {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .contact-title {
    font-size: 2.1rem;
  }
  .contact-divider .line {
    width: 45px;
  }
  .tel-num2 {
    font-size: 1.45rem;
  }
  .contact-tel, .contact-mail {
    min-width: 100%;
  }
  .backtop {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}
@media (max-width: 575.98px) {
  .area-left {
    border-right: 0;
    border-bottom: 1px solid var(--stroke);
  }
  .area-mid {
    border-right: 0;
    border-bottom: 1px solid var(--stroke);
  }
  .news-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .news-ttl {
    white-space: normal;
  }
  .contact-sub {
    white-space: normal;
  }
}
/* ===== 共通 HERO（背景は変数で指定） ===== */
.page-hero {
  border-bottom: 1px solid var(--line);
}
/* 写真付きヒーロー（汎用） */
.page-hero--photo {
  --hero-bg-image: none; /* ← デフォルト */
  --hero-overlay: rgba(0, 0, 0, .20);
  background:
    linear-gradient(var(--hero-overlay), var(--hero-overlay)), var(--hero-bg-image) center / cover no-repeat;
  padding: 4% 0;
  min-height: 260px;
  margin-bottom: 5%;
  display: flex;
  align-items: center;
}
/* 中央カード（共通） */
.page-hero-card {
  width: min(560px, 92vw);
  background: rgba(255, 255, 255, .96);
  border-radius: 10px;
  padding: 34px 22px 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .7);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.page-hero-card .reason-dots {
  border: 2px dotted rgba(238, 118, 2, .8);
}
.page-hero-ic {
  font-size: 22px;
  margin-bottom: 14px;
  opacity: .9;
}
.page-hero-title {
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 1.8rem;
  margin: 0;
}
.page-hero-slug {
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .9rem;
  color: #ee7602;
}
/* SP */
@media (max-width: 767.98px) {
  .page-hero--photo {
    padding: 44px 0;
    min-height: 220px;
  }
  .page-hero-title {
    font-size: 1.5rem;
  }
}
/* ===== USP list ===== */
.usp-list {
  padding: 22px 0 40px;
  background: #fff;
}
.usp-item {
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, .06);
}
.usp-item:first-child {
  border-top: 0;
}
.usp-no {
  font-family: jost;
  font-size: 20px;
  padding: 10px 14px;
  margin-bottom: 15px;
  border-radius: 30px;
  color: #ffffff;
  background-color: var(--brand);
  display: inline-block;
}
.usp-h3 {
  font-weight: 900;
  font-size: 1.3rem;
  margin: 0 0 10px;
  line-height: 1.35;
}
.usp-desc {
  color: #3a3a3a;
  line-height: 1.9;
  margin: 0;
}
.usp-media {
  box-shadow: var(--shadow);
  background: #fff;
}
.usp-media img {
  width: 100%;
  display: block;
  border-radius: 14px;
}
.yt-embed {
  width: 100%;
  aspect-ratio: 16 / 9; /* 16:9 */
  border-radius: 12px; /* 任意 */
  overflow: hidden; /* 角丸にしたい時 */
  background: #000; /* 読み込み中の黒背景 */
}
.yt-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* =========================
   FLOW page only
========================= */
/* hero background */
.page-flow {
  --hero-bg-image: url("/images/hero-flow.jpg");
  --hero-overlay: rgba(0, 0, 0, .25);
}
/* intro */
.flow-intro {
  padding: 40px 0 24px;
  background: #fff;
}
.flow-intro h2 {
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.flow-intro p {
  color: #3a3a3a;
  line-height: 1.9;
  margin: 0;
}
/* steps */
.flow-steps {
  padding: 20px 0 56px;
  background: #fff;
}
.flow-step {
  position: relative;
  padding: 28px 20px 28px 56px;
  /*border-top:1px solid rgba(0,0,0,.06);*/
}
.flow-step:first-child {
  border-top: 0;
}
/* 左のライン */
.flow-step::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(242, 154, 24, .35);
}
/* 丸ポイント */
.flow-step::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 34px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
}
/* step no */
.flow-no {
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: .12em;
  color: #8a4f00;
  margin-bottom: 6px;
}
/* title */
.flow-title {
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
/* desc */
.flow-desc {
  margin: 0;
  color: #3a3a3a;
  line-height: 1.9;
}
/* SP */
@media (max-width: 767.98px) {
  .flow-step {
    padding: 24px 14px 24px 46px;
  }
  .flow-step::before {
    left: 18px;
  }
  .flow-step::after {
    left: 11px;
  }
}
/* =========================
   service/senior page only
========================= */
/* Hero background for this page */
.page-service-senior {
  --hero-bg-image: url("/images/hero-senior.jpg");
  --hero-overlay: rgba(0, 0, 0, .25);
}
/* tabs under hero */
.service-tabs {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.service-tabs-inner {
  padding: 14px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.service-tab {
  padding: .7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .04);
}
.service-tab.is-active {
  border-color: rgba(242, 154, 24, .55);
  background: rgba(242, 154, 24, .10);
  color: #8a4f00;
}
/* section titles */
.sec-title2 {
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 1.55rem;
  margin: 0 0 14px;
}
.sec-title3 {
  font-weight: 900;
  font-size: 1rem;
  background-color: #f4f4f4;
  padding: 5px;
}
.material-symbols-outlined {
  vertical-align: middle;
}
.lead2 {
  margin: 0;
  color: #3a3a3a;
  line-height: 1.9;
}
.subhead {
  color: #3a3a3a;
  line-height: 1.9;
  margin: 0;
}
/* campaign block */
.campaign {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .08);
  padding: 22px 18px;
  text-align: center;
}
.campaign-badge {
  font-weight: 900;
  color: #8a4f00;
  letter-spacing: .06em;
}
.campaign-title {
  font-weight: 900;
  font-size: 1.35rem;
  margin-top: 6px;
}
.campaign-price {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.campaign-price .price {
  font-weight: 900;
  font-size: 2rem;
  color: var(--brand);
  letter-spacing: .02em;
}
.campaign-price .tax {
  font-weight: 800;
  color: #555;
}
.campaign-note {
  margin-top: 10px;
  font-weight: 800;
  color: #444;
}
.btn-campaign {
  background: #e89a2b;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: .85rem 2.2rem;
  box-shadow: 0 14px 26px rgba(232, 154, 43, .28);
  border: 1px solid rgba(0, 0, 0, .04);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-campaign:hover {
  filter: brightness(.98);
  color: #fff;
}
/* trouble chips */
.senior-troubles {
  background: #f7f3ec; /* TOPのWORKS寄せ */
}
.trouble-chip {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  padding: 14px 14px;
  font-weight: 900;
  color: #2b2b2b;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .05);
  min-height: 56px;
  display: flex;
  align-items: center;
}
.trouble-chip span {
  color: #bc2322;
  margin-right: 1%;
}
.reassure {
  background: rgba(242, 154, 24, .10);
  border: 1px solid rgba(242, 154, 24, .25);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}
.reassure-ttl {
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 1.8rem;
}
.reassure-main {
  margin-top: 6px;
  font-weight: 900;
  font-size: 2rem;
  color: var(--brand)
}
/* price cards */
.price-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .08);
  text-align: center;
  margin-bottom: 2%;
}
.price-label {
  padding: 14px 14px 0;
  font-weight: 900;
  color: #8a4f00;
  letter-spacing: .06em;
}
.price-img {
  height: 240px;
  margin: 10px 14px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
}
.price-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-detail {
  padding: 16px 14px 10px;
  font-size: .9rem;
  color: #222;
  text-align: left;
}
.price-yen {
  padding: 0 14px 18px;
  font-weight: 900;
  font-size: 1.3rem;
  color: #b42423;
  text-align: right;
}
.price-yen span {
  font-size: .7rem;
  color: #666;
  margin: 0 1px;
}
/* reasons tiles */
.reason-tile {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 16px 14px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .06);
  height: 100%;
  text-align: center;
}
.rt-ic img {
  margin-bottom: 1%;
  width: 50%;
}
.rt-text {
  margin: 0;
  font-weight: 800;
  color: #333;
  line-height: 1.8;
}
/* feature cards */
.senior-features {
  background: #fff;
}
.feature-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 16px 14px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .06);
  height: 100%;
  text-align: center;
}
.fc-ic {
  margin: 0 auto 12px;
}
.fc-ttl {
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.fc-desc {
  margin: 0;
  color: #444;
  line-height: 1.85;
  font-size: .95rem;
}
/* order steps */
.senior-order {
  background: #f7f0e6;
}
.order-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.order-step {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .06);
}
.os-ic {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  overflow: hidden;
  background: #f3f3f3;
  margin: 0 auto 10px;
  border: 1px solid rgba(0, 0, 0, .06);
}
.os-ic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.os-no {
  font-weight: 900;
  color: #8a4f00;
  letter-spacing: .08em;
  font-size: .85rem;
}
.os-ttl {
  font-weight: 900;
  margin-top: 4px;
}
/* notes */
.order-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.note-block {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .06);
}
.note-ttl {
  font-weight: 900;
  color: #8a4f00;
  margin-bottom: 6px;
}
.note-desc {
  color: #444;
  line-height: 1.85;
}
/* area */
.senior-area {
  background: #fff;
}
.area-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .06);
}
.area-list {
  padding-left: 1.1rem;
  color: #444;
  line-height: 1.9;
}
.area-map2 {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  height: 240px;
  background: #eee;
}
.area-map2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-arrow .material-symbols-outlined {
  font-size: 5rem;
}
/* responsive */
@media (max-width: 991.98px) {
  .order-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-notes {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .price-img {
    height: 180px;
  }
  .area-map2 {
    height: 200px;
  }
}
.merit-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 10px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .06);
  padding: 26px;
  position: relative;
}
.merit-card dl {
  display: flex;
  justify-content: space-between;
  margin: 0;
}
.merit-card dt {
  width: 20%;
}
.merit-card dd {
  width: 78%;
}
.merit-card dt img {
  border-radius: 10px;
}
.merit-no {
  width: 44px;
  line-height: 44px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  display: inline-block;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .10);
  text-align: center;
  margin-right: 1%;
}
.service_icon_img {
  width: 30%;
  margin: 0 auto 3%;
}
.title-icon {
  text-align: center;
  margin-bottom: 1%;
}
.title-icon span {
  font-size: 3rem;
}
/* table tweaks */
.care-table .table {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  text-align: center;
}
.care-table thead th {
  background: rgba(242, 154, 24, .10);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-weight: 900;
  white-space: nowrap;
}
.care-table tbody th {
  white-space: nowrap;
  font-weight: 900;
}
.care-table-strong {
  color: #8a4f00;
  font-weight: 900;
}
.care-table .bg_gray {
  background-color: #f4f4f4;
}
.care-table td span {
  display: block;
  font-size: 3em;
}
/* =========================
   menu page (reference-like)
========================= */
/* list wrapper */
.menu-list {
  background: #fff;
}
/* row style（参考サイト寄せ） */
.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.menu-row:last-child {
  border-bottom: 0;
}
.menu-row-title {
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0;
}
.menu-row-note {
  margin: 4px 0 0;
  font-size: .9rem;
  color: #666;
}
/* action */
.menu-row-action {
  flex-shrink: 0;
}
/* 既存トーンに寄せたボタン */
.menu-btn {
  background: #e89a2b;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: .55rem 1.3rem;
  border: 1px solid rgba(0, 0, 0, .04);
}
.menu-btn:hover {
  filter: brightness(.98);
  background: #f4f4f4;
}
/* SP */
@media (max-width: 575.98px) {
  .menu-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-row-action {
    margin-top: 8px;
  }
}
/* ===== Company table (same taste) ===== */
.company-table-wrap {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  overflow: hidden;
}
.company-table {
  margin: 0;
}
.company-table th, .company-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  vertical-align: top;
}
.company-table tr:last-child th, .company-table tr:last-child td {
  border-bottom: 0;
}
.company-table th {
  width: 28%;
  background: rgba(242, 154, 24, .08); /* ブランド薄オレンジ */
  font-weight: 900;
  color: #3b2a1a;
  letter-spacing: .02em;
  white-space: nowrap;
}
.company-table td {
  color: #333;
  line-height: 1.9;
}
.company-link {
  color: #8a4f00;
  font-weight: 900;
  text-decoration: none;
}
.company-link:hover {
  text-decoration: underline;
}
.company-cta {
  background: #e89a2b;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  padding: .55rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, .04);
  box-shadow: 0 10px 20px rgba(232, 154, 43, .22);
}
.company-cta:hover {
  color: #fff;
  filter: brightness(.98);
}
/* SP */
@media (max-width: 575.98px) {
  .company-table th {
    width: auto;
    white-space: normal;
  }
  .company-table th, .company-table td {
    display: block;
    padding: 12px 14px;
  }
  .company-table th {
    border-bottom: 0;
  }
  .company-table td {
    padding-top: 0;
  }
  header .small {
    font-size: .5rem;
  }
  .text-muted2 {
    line-height: .8rem;
  }
}
/* =========================
   contact form add-on
========================= */
/* 上部の電話カード */
.contact-top-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 16px 18px;
}
.contact-top-tel {
  font-weight: 900;
  font-size: 1.35rem;
  color: #222;
}
.contact-top-tel-link {
  color: #222;
  text-decoration: none;
  font-size: 1.8rem;
}
.contact-top-tel-link:hover {
  text-decoration: underline;
}
.contact-top-hours {
  margin-top: 6px;
  color: #666;
  font-weight: 800;
  font-size: .95rem;
}
/* フォーム外枠 */
.form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .07);
  padding: 22px 18px;
}
/* ラベルの見た目（既存トーン寄せ） */
.form-labelx {
  font-weight: 900;
  color: #3b2a1a;
  letter-spacing: .02em;
  margin-bottom: 8px;
}
/* 必須バッジ */
.req {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: .35rem;
  padding: .15rem .5rem;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 900;
  color: #fff;
  background: #c81d1d; /* heroのUSP赤と近い */
  vertical-align: middle;
}
/* フォーム内リンク */
.form-link {
  color: #8a4f00;
  font-weight: 900;
  text-decoration: none;
}
.form-link:hover {
  text-decoration: underline;
}
/* 入力の角丸を少し強め（既存に合わせる） */
.form-control, .form-select {
  border-radius: 12px;
  border-color: rgba(0, 0, 0, .12);
}
.form-control:focus, .form-select:focus {
  border-color: rgba(242, 154, 24, .55);
  box-shadow: 0 0 0 .2rem rgba(242, 154, 24, .18);
}
.wpcf7-list-item {
  display: inline-block;
  margin: 1% 1% 1% 0 !important;
  font-size: 1.2rem;
}
/* ===== date picker add-on ===== */
.date-field {
  position: relative;
}
.date-ic {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: rgba(0, 0, 0, .55);
  pointer-events: none;
  z-index: 1;
}
.date-input {
  padding-left: 46px; /* アイコン分 */
}
/* ヒント */
.form-hint {
  margin-top: 8px;
  font-size: .85rem;
  color: #666;
  font-weight: 700;
}
/* フォーカス時（既存のfocusと合わせる場合は不要） */
.date-input:focus {
  border-color: rgba(242, 154, 24, .55);
  box-shadow: 0 0 0 .2rem rgba(242, 154, 24, .18);
}
/* pagination（既存Bootstrapを少しだけ寄せる） */
.news-pagination .page-link {
  color: #8a4f00;
  font-weight: 800;
  border-color: rgba(0, 0, 0, .08);
}
.news-pagination .page-item.active .page-link {
  background: rgba(242, 154, 24, .18);
  border-color: rgba(242, 154, 24, .35);
  color: #8a4f00;
}
/* SP */
@media (max-width: 575.98px) {
  .news-row {
    flex-direction: column;
    gap: 8px;
  }
  .news-date {
    flex: none;
    font-size: .85rem;
  }
}
/*==========================
PC common
==============================*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .contact-tel, .contact-mail {
    width: 500px;
  }
  .fixed-cta {
    display: none;
  }
}
/*==========================
SP common
==============================*/
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  body {
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  }
  /* =========================
   SP nav (offcanvas) submenu
========================= */
  .sp-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  header .btn-nav {
    background: var(--brand);
    border-radius: 100px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    color: #fff;
  }
  /* 共通：リンク/親ボタンの見た目を揃える */
  .sp-link, .sp-parent {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .04);
  }
  .sp-parent {
    justify-content: space-between;
    text-align: left;
  }
  /* 左側（アイコン＋文字）をまとめる */
  .sp-parent::before {
    content: none;
  }
  .sp-ic {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }
  .sp-ic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .logo img {
    width: 100px;
  }
  .logo-mark {
    width: 40px;
    height: 40px;
    background: url("images/logo_mark.svg") no-repeat center left / 40px auto;
  }
  /* 親ボタンの右矢印 */
  .sp-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(0, 0, 0, .45);
    border-bottom: 2px solid rgba(0, 0, 0, .45);
    transform: rotate(45deg);
    transition: transform .2s ease;
    margin-left: auto;
  }
  /* 開いたら矢印を上向きに */
  .sp-parent[aria-expanded="true"] .sp-chevron {
    transform: rotate(-135deg);
  }
  /* サブ */
  .sp-sub {
    padding: 8px 2px 2px;
  }
  .sp-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px 10px 44px; /* インデント */
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    color: #333;
  }
  .sp-sub-link:hover {
    background: rgba(242, 154, 24, .10);
    color: #8a4f00;
  }
  /* CTA（ご注文）だけ少し強調したい場合 */
  .sp-cta {
    border-color: rgba(242, 154, 24, .35);
    background: rgba(242, 154, 24, .08);
  }
  .reasons-wrap {
    padding-bottom: 5rem;
  }
  .mini-badge {
    font-size: .8rem;
  }
  .companygrid {
    display: block;
  }
  .companyphoto {
    margin-bottom: 3%;
    min-height: auto;
  }
  .tel-time2 {
    font-size: .6rem;
  }
  .sp-nav .contact-tel {
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
  }
  footer .list-inline-item {
    display: block;
    margin-bottom: 10px;
  }
  .usp-intro {
    padding-top: 5%;
  }
  .btn-news-more {
    padding: .85rem;
    width: 100%;
  }
  .merit-card {
    padding: 10px;
  }
  .merit-card dl {
    display: block;
  }
  .merit-card dt, .merit-card dd {
    width: 100%;
  }
  .merit-card dd h5 {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
  }
  .contact-lead {
    font-size: 1rem;
  }
  .contact-top-tel {
    font-size: 1rem;
  }
  .lead2 {
    line-height: 1.4;
    font-size: 13px;
  }
  .reason-body {
    font-size: 1rem;
  }
  .reason-overlay-inner {
    font-size: 1.3rem;
  }
  .flow-title {
    font-size: 1.1rem;
  }
  .voice-card {
    margin-bottom: 5%;
  }
  .voice-badge {
    font-size: .7rem;
    padding: .1rem .65rem;
    margin-bottom: 2px;
  }
  .sec-title2 {
    font-size: 1.3rem;
  }
  .voice-text {
    line-height: 1.2;
  }
  .campaign-badge {
    font-size: 20px;
  }
  .campaign-title {
    font-size: 1rem;
  }
  .merit-no {
    display: block;
    margin: 10px auto;
  }
  .price-yen {
    padding: 0 0 15px 0;
    font-size: 1.1rem;
    text-align: center;
  }
  .price-yen span {
    font-size: .6rem;
    display: block;
  }
  .care-table .bg_gray {
    white-space: nowrap;
  }
  tbody, td, tfoot, th, thead, tr {
    font-size: 14px;
  }
}
/* =========================
   news single add-on
========================= */
.news-taxnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.news-taxnav__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
  color: #222;
  font-weight: 900;
  text-decoration: none;
}
.news-taxnav__item:hover {
  background: rgba(242, 154, 24, .10);
  color: #8a4f00;
}
.news-taxnav__item.is-active {
  background: rgba(242, 154, 24, .18);
  border-color: rgba(242, 154, 24, .35);
  color: #8a4f00;
}
.news-single-title {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.35;
  margin: 0 0 .4rem;
}
.news-single-date {
  display: inline-block;
  font-weight: 800;
  color: #666;
}
.news-thumb img {
  height: auto !important;
}
.news-meta {
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding-top: 14px;
}
.news-meta__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 8px 0;
}
.news-meta__label {
  font-weight: 900;
  color: #666;
}
.news-meta__val a {
  color: #8a4f00;
  font-weight: 900;
  text-decoration: none;
}
.news-meta__val a:hover {
  text-decoration: underline;
}
/* Sidebar */
.side-card {}
.side-ttl {
  font-weight: 900;
  font-size: 1.05rem;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.side-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3%;
}
.side-list li + li {
  border-top: 1px solid rgba(0, 0, 0, .06);
}
.side-list a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  color: #222;
  text-decoration: none;
  font-weight: normal;
}
.side-list a:hover {
  color: #e89a2b;
  text-decoration: underline;
}
.side-count {
  color: #777;
  font-weight: 900;
}
/* =========================
   News Prev / Next Buttons
========================= */
.news-pn a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: all .25s ease;
  white-space: nowrap;
}
/* 前の記事（オレンジ系） */
.news-pn-prev a {
  background: #fde7c8;
  color: #8a4f00;
}
.news-pn-prev a:hover {
  background: #f7c98a;
  color: #5c3300;
}
/* 次の記事（グリーン系） */
.news-pn-next a {
  background: #e6f2e8;
  color: #1f6b3b;
}
.news-pn-next a:hover {
  background: #bfe0c9;
  color: #0f4d29;
}
/* アイコン */
.news-pn-ic {
  font-size: 1.1em;
  line-height: 1;
}
/* SP調整 */
@media (max-width:575.98px) {
  .news-pn a {
    padding: .7rem 1.1rem;
    font-size: .9rem;
  }
}
@media (max-width: 575.98px) {
  .news-single-title {
    font-size: 1.25rem;
  }
}
/* ===== Category archive (2col) ===== */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* card */
.news-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, .10);
}
.news-card-link {
  display: flex;
  gap: 16px;
  text-decoration: none;
  color: #222;
}
/* thumb */
.news-card-thumb {
  flex: 0 0 180px;
  background: #f2f2f2;
}
.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card-ph {
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: linear-gradient(135deg, #eee, #ddd);
}
/* body */
.news-card-body {
  flex: 1;
  padding: 16px 16px 16px 0;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.news-card-date {
  font-weight: 800;
  color: #777;
  font-size: .92rem;
}
.news-card-title {
  font-weight: 900;
  font-size: 1.12rem;
  line-height: 1.45;
  margin: 0;
}
/* current category highlight */
.side-list a.is-current {
  color: #e89a2b;
  font-weight: 900;
}
/* pagination (link list) */
.news-pagination {
  text-align: center;
}
.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0 4px;
  border: 1px solid rgba(0, 0, 0, .12);
  font-weight: 900;
  text-decoration: none;
  color: #222;
}
.news-pagination .current {
  background: #e89a2b;
  color: #fff;
  border-color: #e89a2b;
}
@media (max-width: 575.98px) {
  .news-card-link {
    flex-direction: column;
  }
  .news-card-thumb {
    flex-basis: auto;
  }
  .news-card-body {
    padding: 14px;
  }
}