@charset "UTF-8";
/* =========================
  Base
========================= */
:root {
  --bg: #efe7dc; /* 画像の薄ベージュ */
  --paper: #ffffff;
  --ink: #1b1b1b;
  --muted: #666;
  --brown: #6b5a48;
  --line: #d9cdbf;
  --accent: #d6b07a; /* ゴールド寄り */
  --accent2: #9c7a51;
  --shadow: 0 6px 18px rgba(0,0,0,.12);
  --radius: 10px;
  --radius2: 14px;
  --container: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
  font-size: 14px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn--line {
  background: #2fbf5b;
  color: #fff;
  box-shadow: 0 4px 12px rgba(47, 191, 91, 0.25);
}

.btn--mail {
  background: #fff;
  border-color: #FFA90A;
  color: #FFA90A;
}

.btn--lg {
  padding: 14px 18px;
  font-size: 15px;
}

.btn:hover {
  transform: translateY(-1px);
}

/* Section title */
.secTitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
}
@media (max-width: 760px) {
  .secTitle {
    flex-direction: column;
    align-items: center;
  }
}

.secTitle__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(214, 176, 122, 0.25);
}

.secTitle--center {
  justify-content: center;
  text-align: center;
}

.secTitle .en {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 6px;
}

.secTitle .num {
  font-size: 1.2em;
  color: var(--accent2);
}

/* =========================
  Header
========================= */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}

.topbar {
  background: #2b2b2b;
  color: #fff;
  font-size: 12px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}

.topbar__company {
  margin: 0;
  font-weight: 700;
  opacity: 0.95;
  font-size: 3rem;
}
@media (max-width: 760px) {
  .topbar__company {
    font-size: 2rem;
  }
}

.topbar__tel {
  margin: 0;
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  flex-direction: column;
}
.topbar__tel .top {
  font-size: 1.8rem;
  display: block;
  text-align: center;
}
.topbar__tel .bottom {
  font-size: 2.4rem;
}
.topbar__tel .bottom .mini {
  font-size: 2.1rem;
}

.nav {
  border-bottom: 1px solid #eee;
  background-color: #DDD7D7;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 44px;
  width: auto;
}

.gnav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 13px;
}
.gnav__list li:last-of-type a {
  border-right: none;
}

.gnav__list a {
  font-size: 1.6rem;
  display: block;
  width: 100%;
  padding: 5px 10px;
  border-right: 1px solid #333;
}

.gnav__list a:hover {
  background: #f6f3ee;
}

.nav__cta {
  display: flex;
  gap: 10px;
}

/* SPメニュー：ボタン本体 */
.nav__toggle {
  display: none; /* ←PCは非表示 */
  width: 44px;
  height: 44px;
  border: 1px solid #e7e1d9;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

/* 3本線 */
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  margin: 5px auto;
  transition: 0.25s ease;
  transform-origin: center;
}

/* =========================
   OPEN時：×にする
========================= */
.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* SP menu */
.spmenu {
  border-top: 1px solid #eee;
  background: #fff;
}

.spmenu__inner {
  padding: 14px 0 18px;
  width: min(var(--container), 100% - 40px);
  margin: 0 auto;
}

.spmenu__btn {
  width: 100%;
  margin-bottom: 10px;
}

.spmenu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.spmenu__list a {
  display: block;
  padding: 12px 12px;
  border: 1px solid #eee;
  border-radius: 12px;
}

/* =========================
  Hero
========================= */
.hero {
  position: relative;
  overflow: hidden;
  background-image: url(../images/mv.jpg);
  background-size: cover;
  margin-top: -7px;
}
@media (max-width: 760px) {
  .hero {
    background-image: url(../images/mv_sp.jpg);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 34px 0 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 22px;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding: 30px;
}

.hero__copy {
  color: #fff;
  padding: 18px 18px 20px;
  border-radius: var(--radius2);
}
@media (max-width: 760px) {
  .hero__copy {
    padding: 18px 15px 20px;
  }
}
.hero__copy .flex_box {
  display: flex;
}

.hero__badge {
  display: inline-block;
  background: #E4B076;
  color: #fff;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 10px;
  margin: 0 8px 10px 0;
  font-size: 2.4rem;
  max-width: 270px;
  width: 100%;
  text-align: center;
}
@media (max-width: 760px) {
  .hero__badge span {
    display: block;
  }
}

.hero__title {
  margin: 6px 0 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.35;
  font-size: clamp(22px, 2.4vw, 34px);
}

.hero__titleBig {
  font-size: 3.4rem;
  font-weight: 500;
  display: block;
}

.hero__titleBig2 {
  font-size: 3.4rem;
  font-weight: 500;
  display: block;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 760px) {
  .hero__titleBig2 {
    font-size: 2.4rem;
  }
}

.hero__titleBig3 {
  font-size: 9rem;
  font-weight: 500;
  display: block;
  line-height: 1;
}

.hero__lead {
  margin: 30px 0 0 0;
  font-size: 14px;
  opacity: 0.95;
}

.hero__photos {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* =========================
  Reviews
========================= */
.reviews {
  background: #fff;
  padding: 16px 0 18px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.review {
  border: 1px solid #eee;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 120px;
}

.review__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #e9e9e9;
}

.review__icon--g {
  background: #fff3cc;
  border: 1px solid #f0d893;
}

.review__body {
  flex: 1;
}

.review__stars {
  margin: 0;
  color: #f2b01e;
  font-weight: 900;
}

.review__txt {
  margin: 0;
  font-size: 12px;
  color: #333;
}

.review__btn {
  display: block;
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f6f3ee;
  border: 1px solid #eadfce;
}

/* =========================
   SERVICES（スクショ寄せ）
========================= */
.services {
  background: #fff;
  padding: 34px 0 40px;
}

/* タイトル（会社名＋サービス一覧＋黄色ライン） */
.servicesTitle {
  margin: 0;
  text-align: center;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.servicesTitle__sub {
  display: block;
  font-weight: 800;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.servicesTitle__main {
  display: inline-block;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.02em;
  padding: 0 10px;
  background: linear-gradient(transparent 62%, #f1ef58 62%);
}

/* 上段：左（サービス＋お悩み）＋右（サイド） */
.servicesTop {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  margin-top: 16px;
  align-items: start;
}

/* ✅ 左カラム内は縦積み */
.servicesLeft {
  display: grid;
  gap: 18px;
}

/* =========================
   左：サービス一覧（5枚）
========================= */
.servicesCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.serviceCard {
  display: block;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}
@media (max-width: 760px) {
  .serviceCard {
    width: 46%;
    background-color: #e2b985;
  }
}

.serviceCard__img {
  margin: 0;
  height: 170px;
}

.serviceCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* 下のベージュ帯 */
.serviceCard__label {
  margin: 0;
  padding: 10px 12px;
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background: #e2b985;
}

/* 4枚目（横長：2カラムぶち抜き） */
.serviceCard--wide {
  grid-column: 1/span 2;
}

/* =========================
   右：サイド（カード2つ＋バッジ＋ランキング）
========================= */
.servicesSide {
  display: grid;
  gap: 14px;
}

.sideCard {
  background: #fff;
  border: 2px solid #e2b985;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 6px;
}

.sideCard__head {
  background: #e2b985;
  color: #fff;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sideCard__title {
  margin: 0;
  font-weight: 900;
  font-size: 14px;
}

.sideCard__btn {
  background: #fff;
  color: #c08a45;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.sideCard__body {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
  padding: 10px 12px 12px;
  align-items: start;
}

.sideCard__img {
  margin: 0;
  height: 92px;
  overflow: hidden;
  background: #ddd;
}

.sideCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sideCard__txt {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  line-height: 1.55;
}

/* バッジ2枚 */
.sideBadges {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.sideBadges img {
  width: calc(50% - 5px);
  height: auto;
  display: block;
}

/* ランキング（オレンジ箱） */
.rankingBox {
  background: #e2b985;
  padding: 16px 14px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.rankingBox__title {
  margin: 0 0 12px;
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}

.rankingBox__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rankingBox__list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  line-height: 1.5;
}

.rankingBox__list li:first-child {
  border-top: 0;
}

.rankingBox__list time {
  opacity: 0.95;
  font-weight: 900;
}

/* =========================
   左：お悩み（ベージュ枠）
========================= */
.worry {
  background: #E7DFD5;
  padding: 18px 18px 20px;
}

/* タイトル：下に黄色ライン */
.worry__title {
  margin: 0 0 16px;
  text-align: center;
  font-weight: 900;
  font-size: 22px;
  display: inline-block;
  width: 100%;
}

.worry__title::after {
  content: "";
  display: block;
  height: 8px;
  width: 56%;
  margin: -10px auto 0;
  background: #f1ef58;
}

/* お悩みカード：白・角丸・左丸アイコン・右矢印 */
.worry__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
}

.worryItem {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 18px 44px 18px 84px;
  display: flex;
  align-items: center;
  min-height: 74px;
  border: 1px solid #e7e2da;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  color: #333;
  line-height: 1.35;
  font-size: 1.8rem;
}

.worryItem::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #e2b985;
  border-right: 3px solid #e2b985;
  transform: translateY(-50%) rotate(45deg);
}

/* 左の丸アイコン */
.worryItem::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #ddd;
  background-size: cover;
  background-position: center;
}

/* 各アイコン画像（必要に応じて差し替え） */
.worryItem--1::before {
  background-image: url("../images/worry-01.png");
}

.worryItem--2::before {
  background-image: url("../images/worry-02.png");
}

.worryItem--3::before {
  background-image: url("../images/worry-03.png");
}

.worryItem--4::before {
  background-image: url("../images/worry-04.png");
}

.worryItem--5::before {
  background-image: url("../images/worry-05.png");
}

.worryItem--6::before {
  background-image: url("../images/worry-06.png");
}

/* =========================
   Responsive
========================= */
@media (max-width: 1020px) {
  .servicesTop {
    grid-template-columns: 1fr;
  }
  .servicesSide {
    grid-template-columns: repeat(2, 1fr);
  }
  .rankingBox {
    grid-column: 1/-1;
  }
}
@media (max-width: 760px) {
  .servicesCards {
    grid-template-columns: repeat(2, 1fr);
  }
  .serviceCard--wide {
    grid-column: auto;
  }
  .servicesSide {
    grid-template-columns: 1fr;
  }
  .worry__grid {
    grid-template-columns: 1fr;
  }
  .servicesTitle__main {
    font-size: 22px;
  }
}
/* =========================
   PROMISE（4つのお約束：スクショ寄せ）
========================= */
.promise {
  background: #E7DFD5; /* スクショの薄ベージュ */
  padding: 48px 0 56px;
}

/* タイトル（中央＋4に黄色ハイライト） */
.promise .secTitle {
  margin: 0 0 22px;
  text-align: center;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 0.02em;
  color: #111;
}

.promise .secTitle .num {
  display: inline-block;
  padding: 0 10px;
  background: linear-gradient(transparent 62%, #f1ef58 62%);
}

/* 2列×2段 */
.promise__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 26px;
}

/* カード：外枠の細線＋直角＋内側余白 */
.promiseCard {
  background: transparent;
  border: 2px solid #a9a7a4; /* スクショのグレー枠 */
  border-radius: 0;
  padding: 18px;
}

/* オレンジの帯見出し（白文字） */
.promiseCard__title {
  margin: 0 0 16px;
  background: #e2b985;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  text-align: center;
  padding: 10px 12px;
  border-radius: 0;
}

/* 中身：左画像＋右文章 */
.promiseCard__inner {
  display: grid;
  grid-template-columns: 260px 1fr; /* スクショの比率に寄せる */
  gap: 18px;
  align-items: start;
}

/* 画像枠（直角） */
.promiseCard__img {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #ddd;
}

.promiseCard__img img {
  width: 100%;
  height: 190px; /* スクショの縦サイズ感 */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* 本文 */
.promiseCard__txt {
  margin: 0;
  color: #111;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.9;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1020px) {
  .promise .secTitle {
    font-size: 28px;
    flex-direction: column;
  }
  .promiseCard__inner {
    grid-template-columns: 220px 1fr;
  }
  .promiseCard__img img {
    height: 170px;
  }
}
@media (max-width: 760px) {
  .promise {
    padding: 34px 0 40px;
  }
  .promise__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .promise .secTitle {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .promiseCard {
    padding: 14px;
  }
  .promiseCard__title {
    font-size: 18px;
    padding: 10px;
  }
  .promiseCard__inner {
    grid-template-columns: 1fr;
  }
  .promiseCard__img img {
    height: 180px;
  }
}
/* =========================
   ABOUT（スクショ寄せ＋スクロール本文）
========================= */
.about {
  background: #fff;
  padding: 46px 0 56px;
}

/* タイトル：中央＋会社名だけ黄色ハイライト */
.about__title {
  margin: 0 0 18px;
  text-align: center;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #111;
  line-height: 1.2;
}
@media (max-width: 760px) {
  .about__title {
    line-height: 1.5;
  }
}

.about__title span {
  display: inline-block;
  padding: 0 10px;
  background: linear-gradient(transparent 62%, #f1ef58 62%);
}

/* 外枠（薄グレー） */
.about__frame {
  border: 2px solid #a9a7a4;
  background: #fff;
  padding: 0; /* スクロール領域に合わせる */
}

/* ✅ 本文をスクロールさせる領域 */
.about__scroll {
  max-height: 520px; /* スクショの“箱内に収める”高さ */
  overflow: auto;
  padding: 22px 26px 26px;
}

/* 中ブロック（見出し＋罫線＋本文） */
.aboutBlock {
  padding: 14px 0 10px;
}

.aboutBlock + .aboutBlock {
  border-top: 2px solid #a9a7a4;
  margin-top: 10px;
}

.aboutBlock__ttl {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
  color: #111;
}

.aboutBlock__txt {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  color: #111;
}

/* CTA（箱の最後） */
.aboutCta {
  border-top: 2px solid #a9a7a4;
  margin-top: 14px;
  padding-top: 16px;
  text-align: center;
}

.aboutCta__lead {
  margin: 0 0 12px;
  font-weight: 900;
  font-size: 16px;
  color: #111;
}

.aboutCta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  padding: 14px 20px;
  background: #e2b985;
  color: #fff;
  font-weight: 900;
  border-radius: 8px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

/* スクロールバーが気になる場合（任意・軽め） */
.about__scroll::-webkit-scrollbar {
  width: 10px;
}

.about__scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.about__scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .about__title {
    font-size: 26px;
  }
  .aboutBlock__ttl {
    font-size: 20px;
  }
  .aboutBlock__txt {
    font-size: 15px;
  }
  .about__scroll {
    max-height: 520px;
    padding: 18px 18px 22px;
  }
  .aboutCta__btn {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .about {
    padding: 34px 0 40px;
  }
  .about__title {
    font-size: 20px;
  }
  .aboutBlock__ttl {
    font-size: 18px;
    line-height: 1.35;
  }
  .aboutBlock__txt {
    font-size: 14px;
    line-height: 1.9;
  }
  .about__scroll {
    max-height: 480px;
  }
}
/* =========================
   INFO（12:21:21 レイアウト）
========================= */
.info--v2121 {
  background: #e9e3db;
  padding: 60px 0 70px;
}

/* セクション見出し：中央＋英字は下（小さく） */
.info--v2121 .infoHead {
  margin: 0 0 28px;
  text-align: center;
  font-weight: 900;
  font-size: 34px;
  color: #111;
  line-height: 1.15;
}

.info--v2121 .infoHead__en {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #9b9b9b;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* 2カラム（白い箱＋影） */
.info--v2121 .info__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  align-items: start;
}

/* 白い箱 */
.info--v2121 .infoPanel {
  background: #fff;
  padding: 18px 22px 18px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

/* 上のオレンジ罫線（上下2本）＋中央タイトル */
.info--v2121 .infoPanel__head {
  padding: 14px 0;
  margin: 0 0 12px;
  border-top: 2px solid #e2b985;
  border-bottom: 2px solid #e2b985;
  text-align: center;
}

.info--v2121 .infoPanel__title {
  margin: 0;
  font-weight: 900;
  font-size: 22px;
  color: #111;
}

/* リスト行（サムネ＋右本文） */
.info--v2121 .infoList {
  display: block;
}

.info--v2121 .infoRow {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 2px solid #bdbdbd;
  text-decoration: none;
  color: #111;
}

.info--v2121 .infoRow__thumb {
  width: 86px;
  height: 68px;
  border-radius: 12px;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 13px;
  color: #111;
  line-height: 1.25;
}

.info--v2121 .infoRow__body {
  display: block;
}

.info--v2121 .infoRow__date {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #8b8b8b;
  margin-bottom: 4px;
}

.info--v2121 .infoRow__ttl {
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

/* 下のベージュボタン（スクショの形） */
.info--v2121 .infoBtn {
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(420px, 100%);
  height: 48px;
  background: #e6ded3;
  border-radius: 10px;
  color: #111;
  font-weight: 900;
  text-decoration: none;
  position: relative;
}

.info--v2121 .infoBtn__arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-52%);
  font-size: 18px;
  color: #111;
}

/* hover */
.info--v2121 .infoRow:hover .infoRow__ttl {
  text-decoration: underline;
}

.info--v2121 .infoBtn:hover {
  filter: brightness(0.98);
}

/* responsive */
@media (max-width: 900px) {
  .info--v2121 .infoHead {
    font-size: 28px;
  }
  .info--v2121 .info__cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .info--v2121 {
    padding: 44px 0 52px;
  }
  .info--v2121 .infoHead {
    font-size: 22px;
  }
  .info--v2121 .infoHead__en {
    font-size: 14px;
    margin-top: 8px;
  }
  .info--v2121 .infoRow {
    grid-template-columns: 76px 1fr;
    gap: 12px;
  }
  .info--v2121 .infoRow__thumb {
    width: 76px;
    height: 60px;
    font-size: 12px;
  }
  .info--v2121 .infoRow__ttl {
    font-size: 14px;
  }
}
/* =========================
   AREA（スクショ 12:37 寄せ）
========================= */
.area--v1237 {
  padding: 70px 0 86px;
  background: #fff;
}

.area--v1237 .area__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

/* 左：MAPカード */
.area--v1237 .areaMap {
  background: #e9e3db;
  padding: 42px 44px 38px;
  text-align: center;
}

.area--v1237 .areaMap__title {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 900;
  color: #2b2b2b;
  letter-spacing: 0.02em;
}

/* 「エリア」だけ黄色マーカー */
.area--v1237 .areaMap__title span {
  display: inline-block;
  padding: 0 0.15em;
  background: linear-gradient(transparent 58%, #f2e600 58%);
  margin-left: 0.15em;
}

.area--v1237 .areaMap__img {
  margin: 0 auto 22px;
  max-width: 520px;
}

.area--v1237 .areaMap__img img {
  width: 100%;
  height: auto;
  display: block;
}

.area--v1237 .areaMap__txt {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.65;
  color: #111;
}

/* 右 */
.area--v1237 .areaSide__title {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #111;
  text-align: center;
}

.area--v1237 .areaSide__title span {
  display: inline-block;
  padding: 0 0.12em;
  background: linear-gradient(transparent 60%, #f2e600 60%);
}

.area--v1237 .areaSide__lead {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.7;
  color: #111;
  text-align: center;
}

/* 投稿カード（オレンジ枠＋角丸） */
.area--v1237 .areaPost {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 18px 18px;
  border: 2px solid #e2b985;
  border-radius: 12px;
  background: #fff;
}

.area--v1237 .areaPost + .areaPost {
  margin-top: 22px;
}

.area--v1237 .areaPost__img {
  margin: 0;
}

.area--v1237 .areaPost__img img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  display: block;
}

.area--v1237 .areaPost__body {
  position: relative;
  padding-right: 10px;
}

.area--v1237 .areaPost__date {
  margin: 2px 0 6px;
  font-size: 18px;
  font-weight: 900;
  color: #9a9a9a;
}

.area--v1237 .areaPost__ttl {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 900;
  color: #111;
  line-height: 1.15;
}

.area--v1237 .areaPost__meta {
  margin: 0 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #111;
}

/* 右下ボタン（ベージュ） */
.area--v1237 .areaPost__btn {
  margin-top: 16px;
  margin-left: auto;
  width: 240px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2b985;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  border-radius: 12px;
  text-decoration: none;
  gap: 10px;
}

.area--v1237 .areaPost__btn span {
  font-size: 16px;
  transform: translateY(1px);
}

.area--v1237 .areaPost__btn:hover {
  filter: brightness(0.98);
}

/* responsive */
@media (max-width: 980px) {
  .area--v1237 .area__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .area--v1237 .areaSide__title {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .area--v1237 {
    padding: 46px 0 56px;
  }
  .area--v1237 .areaMap {
    padding: 28px 20px;
  }
  .area--v1237 .areaMap__title {
    font-size: 22px;
  }
  .area--v1237 .areaMap__txt {
    font-size: 16px;
  }
  .area--v1237 .areaSide__title {
    font-size: 26px;
  }
  .area--v1237 .areaSide__lead {
    font-size: 15px;
  }
  .area--v1237 .areaPost {
    grid-template-columns: 1fr;
  }
  .area--v1237 .areaPost__img img {
    height: 190px;
  }
  .area--v1237 .areaPost__btn {
    width: 100%;
  }
}
/* =========================
   CTA（スクショ 12:44 寄せ）
========================= */
.cta--consult {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* 背景：放射＋薄い円 */
.cta--consult .cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(800px 420px at 30% 35%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 60%), radial-gradient(900px 520px at 60% 35%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 65%), radial-gradient(1100px 700px at 55% 45%, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0) 68%), radial-gradient(900px 900px at 45% 60%, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0) 70%), linear-gradient(#f5f5f5, #eeeeee);
}

/* 下の“床”白帯（スクショ下部の白） */
.cta--consult::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 86px;
  background: #fff;
  z-index: 0;
}

/* レイアウト */
.cta--consult .cta__wrap {
  position: relative;
  z-index: 1;
  align-items: end;
  min-height: 420px;
  background-image: url(../images/consultbk.jpg);
  background-position: right;
  background-size: cover;
  padding: 45px 0 45px 70px;
  max-width: 1200px;
  width: 100%;
}

.cta--consult .cta__left {
  padding: 0 0 78px; /* 下の白帯に食い込まない */
  max-width: 650px;
}

.cta--consult .cta__headline {
  margin: 0 0 18px;
  font-size: 3.4rem;
  font-weight: 900;
  color: #111;
  letter-spacing: 0.02em;
  text-align: center;
}
.cta--consult .cta__headline .mini {
  font-size: 2.4rem;
}

/* 白い吹き出し */
.cta--consult .cta__bubble {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 16px 22px;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  max-width: 500px;
}

.cta--consult .cta__bubble p {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
  color: #111;
  text-align: center;
}

/* TEL/モバイル：明朝っぽく太め */
.cta--consult .cta__phones {
  margin: 0 0 14px;
  display: flex;
  gap: 26px;
  align-items: baseline;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #333;
  display: flex;
}
@media (max-width: 760px) {
  .cta--consult .cta__phones {
    justify-content: center;
  }
}

.cta--consult .cta__phoneLabel {
  font-size: 22px;
  font-weight: 700;
}

.cta--consult .cta__phoneNum {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* 赤帯 */
.cta--consult .cta__badge {
  display: block;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #e60012;
  color: #fff;
  font-weight: 900;
  border-radius: 2px;
  margin: 0 auto 22px;
  font-size: 18px;
  max-width: 400px;
}

/* ボタン2つ */
.cta--consult .cta__actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.cta--consult .ctaBtn {
  height: 56px;
  padding: 0 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

/* LINE：白＋グリーン枠＋文字グリーン */
.cta--consult .ctaBtn--line {
  border: 2px solid #00b900;
  color: #00b900;
}

.cta--consult .ctaBtn--line .ctaBtn__ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #00b900;
  color: #fff;
}

/* MAIL：白＋オレンジ枠＋文字オレンジ */
.cta--consult .ctaBtn--mail {
  border: 2px solid #f2a43a;
  color: #f2a43a;
}

.cta--consult .ctaBtn--mail .ctaBtn__ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #f2a43a;
}

.cta--consult .ctaBtn__text {
  white-space: nowrap;
}

/* 右の人物 */
.cta--consult .cta__right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 0;
}

.cta--consult .cta__person {
  width: min(520px, 100%);
  height: auto;
  display: block;
  transform: translateY(8px); /* 床に少し乗る */
}

/* SP */
@media (max-width: 900px) {
  .cta--consult .cta__wrap {
    grid-template-columns: 1fr;
    min-height: auto;
    background-position: center;
  }
  .cta--consult .cta__left {
    padding-bottom: 20px;
  }
  .cta--consult .cta__right {
    justify-content: center;
  }
  .cta--consult .cta__person {
    width: min(460px, 92%);
  }
  .cta--consult::after {
    height: 44px;
  }
}
@media (max-width: 600px) {
  .cta--consult {
    padding-top: 38px;
  }
  .cta--consult .cta__headline {
    font-size: 28px;
  }
  .cta--consult .cta__bubble p {
    font-size: 16px;
  }
  .cta--consult .cta__phoneLabel {
    font-size: 18px;
  }
  .cta--consult .cta__phoneNum {
    font-size: 22px;
  }
  .cta--consult .cta__badge {
    height: 40px;
    font-size: 16px;
    padding: 0 18px;
    display: block;
    height: auto;
    padding: 10px 0;
    text-align: center;
  }
  .cta--consult .ctaBtn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================
  Responsive
========================= */
@media (max-width: 980px) {
  .cta--consult .cta__wrap {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }
  .cta--consult .cta__right {
    justify-content: center;
  }
  .cta--consult .cta__headline {
    font-size: 28px;
  }
  .cta--consult .cta__bubble p {
    font-size: 16px;
  }
  .cta--consult .ctaBtn {
    font-size: 16px;
  }
}
@media (max-width: 520px) {
  .cta--consult .cta__phones {
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .cta--consult .cta__phones span {
    display: block;
    text-align: center;
    width: 100%;
  }
  .cta--consult .cta__phoneLabel {
    font-size: 16px;
  }
  .cta--consult .cta__phoneNum {
    font-size: 20px;
  }
  .cta--consult .ctaBtn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================
  Footer (pixel-like)
========================= */
.siteFooter {
  background: #3a3a3a;
  color: #fff;
  padding: 52px 0 64px;
  position: relative;
  overflow: hidden;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.siteFooter a {
  color: #fff;
  text-decoration: none;
}

.siteFooter a:hover {
  text-decoration: underline;
}

.siteFooter__inner {
  width: min(1200px, 100% - 120px); /* 画像の左右余白感 */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 180px 1fr 1fr; /* 左太め＋2列目細め＋右2カラム */
  gap: 20px;
  align-items: start;
}

/* 左：会社情報 */
.fCompany {
  margin: 0 0 18px;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.02em;
}

.fAddr__head {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 14px;
}

.fAddr__head--mt {
  margin-top: 18px;
}

.fAddr__txt {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
  opacity: 0.95;
}

.fTel {
  margin-top: 26px;
}

.fTel__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 10px;
}

.fTel__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.9;
  min-width: 64px;
}

.fTel__num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* リスト */
.fList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.fCol--nav .fList {
  gap: 12px;
}

/* 右側ブロック見出し（横線付き） */
.fBlock {
  min-width: 0;
}

.fBlock--mt {
  margin-top: 26px;
}

.fHead {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fHead::after {
  content: "";
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
  flex: 1 1 auto; /* 見出し右側に伸びる線 */
  transform: translateY(1px);
}

/* 右下コピーライト */
.fCopy {
  position: absolute;
  right: 62px;
  bottom: 18px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
  white-space: nowrap;
}

/* =========================
  Responsive
========================= */
@media (max-width: 1100px) {
  .siteFooter__inner {
    width: min(1200px, 100% - 48px);
    grid-template-columns: 1fr 1fr;
    gap: 34px 34px;
  }
  .fCopy {
    position: static;
    margin-top: 22px;
    text-align: right;
    padding-right: 24px;
  }
}
@media (max-width: 640px) {
  .siteFooter {
    padding: 34px 0 34px;
  }
  .siteFooter__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .fTel__num {
    font-size: 22px;
  }
  .fCopy {
    text-align: center;
    padding-right: 0;
    white-space: normal;
  }
}
/* =========================
  Responsive
========================= */
@media (max-width: 980px) {
  .gnav {
    display: none;
  }
  .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: block;
    margin-left: auto;
  }
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__photos {
    max-width: 640px;
    margin: 0 auto;
  }
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__lower {
    grid-template-columns: 1fr;
  }
  .promise__grid {
    grid-template-columns: 1fr;
  }
  .info__cols {
    grid-template-columns: 1fr;
  }
  .area__grid {
    grid-template-columns: 1fr;
  }
  .cta__inner {
    grid-template-columns: 1fr;
  }
  .cta__photo {
    justify-content: center;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(var(--container), 100% - 28px);
  }
  .topbar__tel {
    display: none;
  }
  .serviceCard__img {
    height: 128px;
  }
  .hero__photo--sub1,
.hero__photo--sub2 {
    height: 140px;
  }
  .worry__grid {
    grid-template-columns: 1fr;
  }
  .infoItem {
    grid-template-columns: 86px 72px 1fr;
  }
} /*# sourceMappingURL=style.css.map */
/* =========================================================
  Service Page (Gomiyashiki) - Additions
========================================================= */
.servicePage {
  background: var(--bg);
}

/* HERO */
.serviceHero {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 38px 0 26px;
}

.serviceHero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 35% 40%, #ffffff 0%, #f6f6f6 55%, #ececec 100%), linear-gradient(180deg, #f6f6f6 0%, #efefef 100%);
}

.serviceHero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
  border-radius: 6px;
  padding: 36px 42px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 12px 28px rgba(0, 0, 0, 0.08);
}

.serviceHero__copy {
  color: #111;
}

.serviceHero__tag {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #444;
  margin: 0 0 10px;
}

.serviceHero__title {
  margin: 0 0 10px;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.serviceHero__lead {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.serviceHero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.serviceHero__badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 900;
  font-size: 12px;
}

.serviceHero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.serviceHero__tel {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.serviceHero__telLabel {
  font-size: 13px;
  color: #333;
}

.serviceHero__telNum {
  font-size: 22px;
  letter-spacing: 0.02em;
}

.serviceHero__telNote {
  font-size: 12px;
  color: #666;
  font-weight: 800;
}

.serviceHero__note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #666;
  font-weight: 700;
}

.serviceHero__media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
  height: 330px;
}

.serviceHero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Anchor */
.serviceAnchor {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-bottom: 1px solid #e8ded2;
}

.serviceAnchor__inner {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  overflow: auto;
  scrollbar-width: none;
}

.serviceAnchor__inner::-webkit-scrollbar {
  display: none;
}

.serviceAnchor a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #eadfce;
  background: #f6f3ee;
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

/* sections */
.servicePain, .serviceCases, .servicePrice, .serviceFlow, .serviceFaq, .serviceArea {
  padding: 34px 0 36px;
}

.servicePain {
  background: var(--bg);
}

.servicePoints {
  background: var(--bg);
  padding: 0 0 26px;
}

/* cards */
.sCardGrid {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.sCardGrid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.sCard {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.sCard__ttl {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.45;
}

.sCard__txt {
  margin: 0;
  font-weight: 700;
  color: #333;
  font-size: 13px;
}

/* points */
.sPointGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.sPoint {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
  padding: 16px 16px 14px;
  position: relative;
}

.sPoint::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, #f2dfc6, #e9cda9);
  border-radius: 16px 16px 0 0;
}

.sPoint__ttl {
  margin: 10px 0 8px;
  font-weight: 900;
}

.sPoint__txt {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

/* mini cta */
.miniCta {
  background: var(--bg);
  padding: 0 0 10px;
}

.miniCta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
}

.miniCta__txt {
  margin: 0;
  font-weight: 900;
}

.miniCta__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* cases */
.caseGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.caseCard {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
}

.caseCard__ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.caseCard__ba figure {
  margin: 0;
  position: relative;
}

.caseCard__ba figure::before {
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 900;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.caseCard__ba figure:first-child::before {
  content: "Before";
}

.caseCard__ba figure:last-child::before {
  content: "After";
}

.caseCard__ba img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.caseCard__meta {
  padding: 14px 14px 16px;
}

.caseCard__ttl {
  margin: 0 0 8px;
  font-weight: 900;
}

.caseCard__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
  font-size: 12px;
  font-weight: 800;
  color: #333;
}

/* price */
.priceGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.priceCard {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
  padding: 14px 14px 12px;
}

.priceCard__ttl {
  margin: 0 0 8px;
  font-weight: 900;
}

.priceCard__price {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
  color: var(--accent2);
}

.priceCard__txt {
  margin: 0;
  font-weight: 700;
  color: #333;
  font-size: 12px;
}

.priceNotes {
  margin: 12px 0 0;
  padding-left: 1.2em;
  color: #333;
  font-weight: 700;
  font-size: 12px;
}

.servicePrice__cta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* flow */
.flowList {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.flowStep {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
  padding: 14px;
}

.flowStep__no {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2dfc6, #e9cda9);
  border: 1px solid #e6d6c3;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 auto;
}

.flowStep__ttl {
  margin: 0 0 4px;
  font-weight: 900;
}

.flowStep__txt {
  margin: 0;
  font-weight: 700;
  color: #333;
  font-size: 13px;
}

/* faq */
.faqList {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.faqItem {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faqItem__q {
  list-style: none;
  padding: 14px 16px;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}

.faqItem__q::-webkit-details-marker {
  display: none;
}

.faqItem__q::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--accent2);
}

.faqItem[open] .faqItem__q::after {
  content: "–";
}

.faqItem__a {
  padding: 0 16px 14px;
  color: #333;
  font-weight: 700;
  font-size: 13px;
}

.serviceFaq__cta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* area */
.serviceArea {
  background: var(--bg);
  padding-top: 0;
}

.serviceArea__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.serviceArea__map {
  background: #f4ece1;
  border: 1px solid #e6d6c3;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.serviceArea__title {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 16px;
  text-align: center;
}

.serviceArea__txt {
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  color: #3a332b;
}

.serviceArea__img {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
}

.serviceArea__img img {
  width: 100%;
  height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}

.serviceArea__side {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.serviceArea__sideTitle {
  margin: 0 0 12px;
  font-weight: 900;
  text-align: center;
}

.serviceArea__sideList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.serviceArea__sideList li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: #faf8f4;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 12px;
  font-weight: 900;
}

.serviceArea__sideList li span {
  color: #333;
  font-size: 12px;
  font-weight: 800;
}

.serviceArea__sideList li strong {
  color: var(--accent2);
  font-size: 12px;
}

.serviceArea__sideBtn {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-weight: 900;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2dfc6, #e9cda9);
  border: 1px solid #e6d6c3;
}

/* responsive */
@media (max-width: 980px) {
  .serviceHero__inner {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }
  .serviceHero__title {
    font-size: 30px;
  }
  .serviceHero__media {
    height: 260px;
  }
  .sCardGrid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sPointGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .caseGrid {
    grid-template-columns: 1fr;
  }
  .priceGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .serviceArea__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .serviceHero {
    padding: 22px 0 16px;
  }
  .serviceHero__title {
    font-size: 26px;
  }
  .serviceHero__lead {
    font-size: 14px;
  }
  .serviceHero__cta {
    gap: 10px;
  }
  .serviceHero__telNum {
    font-size: 18px;
  }
  .sCardGrid--3 {
    grid-template-columns: 1fr;
  }
  .miniCta__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .miniCta__btns {
    justify-content: center;
  }
  .serviceAnchor {
    top: 60px;
  }
}
/* =========================================================
  Gomiyashiki Layout Fix (v2.2)
  - 既存のserviceHero / servicePoints等を活かしつつ
  - 参考サイト風の2カラム交互（serviceDetail）を追加
========================================================= */
.serviceHero__media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.serviceDetail {
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.serviceDetail__head {
  margin-bottom: 22px;
}

.sectionEn {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #666;
}

.sectionTitle {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.sectionLead {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  line-height: 1.75;
}

.serviceDetail__rows {
  display: grid;
  gap: 18px;
}

.detailRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  background: #faf8f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.detailRow__img {
  margin: 0;
  height: 260px;
}

.detailRow__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.detailRow__body {
  padding: 18px 18px;
}

.detailRow__label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #7a6a58;
}

.detailRow__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
}

.detailRow__text {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  line-height: 1.75;
}

.detailRow__list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 12px;
  font-weight: 800;
  color: #333;
}

.detailRow__list li {
  margin: 6px 0;
}

.detailRow--reverse .detailRow__img {
  order: 2;
}

.detailRow--reverse .detailRow__body {
  order: 1;
}

.detailCta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f3efe7;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.detailCta__text {
  margin: 0;
  font-weight: 900;
  font-size: 13px;
  color: #2b251e;
}

.detailCta__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .detailRow {
    grid-template-columns: 1fr;
  }
  .detailRow__img {
    height: 220px;
  }
  .detailRow--reverse .detailRow__img,
.detailRow--reverse .detailRow__body {
    order: 0;
  }
  .detailCta {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================================================
  Sub Pages Common (generated)
========================================================= */
.subPage {
  background: var(--bg);
}

.subHero {
  padding: 34px 0 18px;
  background: #f6f3ee;
}

.subHero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 14px 30px rgba(0, 0, 0, 0.08);
}

.subHero__en {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 900;
  color: #666;
}

.subHero__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.subHero__lead {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  color: #222;
  line-height: 1.75;
}

.subHero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subHero__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 320px;
  background: #ddd;
}

.subHero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.subSection {
  padding: 46px 0;
}

.subSection--paper {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.subCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.subCard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.subCard__ttl {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 15px;
}

.subCard__txt {
  margin: 0;
  font-weight: 700;
  font-size: 13px;
  color: #333;
  line-height: 1.75;
}

.subText p {
  margin: 0 0 10px;
  font-weight: 700;
  color: #333;
  line-height: 1.85;
  font-size: 13px;
}

@media (max-width: 980px) {
  .subHero__grid {
    grid-template-columns: 1fr;
  }
  .subHero__media {
    height: 240px;
  }
  .subCards {
    grid-template-columns: 1fr;
  }
}
.sitemapList {
  margin: 0;
  padding-left: 1.2em;
  font-weight: 800;
}

.sitemapList li {
  margin: 8px 0;
}

.sitemapList a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contactBox {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 760px;
}

.contactForm {
  display: grid;
  gap: 12px;
}

.contactForm__row {
  display: grid;
  gap: 6px;
}

.contactForm__row label {
  font-weight: 900;
  font-size: 13px;
}

.contactForm__row input, .contactForm__row textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
}

/* =========================================================
  Gomiyashiki CV Upgrade (v4)
========================================================= */
.gomiIntro {
  padding: 48px 0;
}

.gomiIntro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.gomiIntro__text p {
  margin: 0 0 10px;
  font-weight: 700;
  color: #333;
  line-height: 1.9;
  font-size: 13px;
}

.gomiIntro__list {
  margin: 0;
  padding-left: 1.2em;
  font-weight: 900;
  font-size: 12px;
  color: #333;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
}

.gomiIntro__list li {
  margin: 10px 0;
}

.gomiPromise {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.midCta {
  padding: 48px 0;
  background: #f3efe7;
}

.midCta__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.midCta__copy {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: var(--shadow);
}

.midCta__en {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #666;
}

.midCta__ttl {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.midCta__txt {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  line-height: 1.85;
}

.midCta__note {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 800;
  color: #555;
}

.midCta__box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: var(--shadow);
  height: 100%;
}

.midCta__label {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 13px;
}

.midCta__list {
  margin: 0;
  padding-left: 1.2em;
  font-weight: 800;
  font-size: 12px;
}

.midCta__list li {
  margin: 8px 0;
}

@media (max-width: 980px) {
  .gomiIntro__grid, .midCta__inner {
    grid-template-columns: 1fr;
  }
}
/* Company table */
.tableWrap {
  margin-top: 16px;
}

.infoTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.infoTable th, .infoTable td {
  padding: 14px 16px;
  vertical-align: top;
  font-size: 13px;
}

.infoTable th {
  width: 32%;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.03);
}

.infoTable tr + tr th, .infoTable tr + tr td {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 700px) {
  .infoTable th {
    width: 38%;
  }
}
/* 下層MV */
.subMv {
  position: relative;
  padding: 74px 0 56px;
  background: #fff;
  overflow: hidden;
  background-color: #ededed;
}

.subMv__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 20% 10%, rgba(0, 0, 0, 0.06), transparent 60%), radial-gradient(900px 420px at 80% 30%, rgba(0, 0, 0, 0.06), transparent 60%), url("../images/submv-reason.jpg") center/cover no-repeat;
  filter: saturate(0.95);
  opacity: 0.9;
}

.subMv__inner {
  position: relative;
}

.subMv__eyebrow {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.7);
  margin: 0 0 10px;
}

.subMv__title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}

.subMv__lead {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
  margin: 0 0 16px;
}

.subMv__crumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: rgba(17, 17, 17, 0.75);
}

.subMv__crumb a {
  color: inherit;
  text-decoration: none;
}

.subMv__crumb a:hover {
  text-decoration: underline;
}

/* =========================================
  REASON (Image heavy layout)
========================================= */
.reasonPage {
  --beige:#e9e2d8;
  --accent:#e3b173;
  --marker:#f2f06a;
  --line:#d6d0c7;
  --shadow:0 12px 26px rgba(0,0,0,.08);
}

.reasonVisual {
  padding: 64px 0;
  background: var(--beige);
}

.reasonVisual__list {
  display: grid;
  gap: 26px;
  margin-top: 22px;
}

/* 1行：画像(大) + 文章 */
.reasonVisualItem {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.reasonVisualItem.is-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}
@media (max-width: 760px) {
  .reasonVisualItem.is-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

.reasonVisualItem.is-reverse .reasonVisualItem__media {
  order: 2;
}

.reasonVisualItem.is-reverse .reasonVisualItem__body {
  order: 1;
}

/* 画像を大きく */
.reasonVisualItem__media {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.reasonVisualItem__media img {
  width: 100%;
  height: 320px; /* ←画像の“主役感” */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* 画像上にタイトル帯（ゴールド） */
.reasonVisualItem__cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(227, 177, 115, 0.95);
  color: #fff;
  padding: 12px 14px;
  font-weight: 900;
}

.reasonVisualItem__no {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.reasonVisualItem__ttl {
  font-size: 18px;
  letter-spacing: 0.02em;
}

/* 文章側 */
.reasonVisualItem__body {
  padding: 18px 18px 18px 6px;
  display: grid;
  align-content: center;
}

.reasonVisualItem__lead {
  margin: 0 0 12px;
  font-weight: 800;
  line-height: 1.95;
  color: #222;
  font-size: 2rem;
}

.reasonVisualItem__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.reasonVisualItem__points li {
  position: relative;
  padding-left: 26px;
  font-weight: 850;
  line-height: 1.65;
  font-size: 1.6rem;
}

.reasonVisualItem__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--accent);
}

/* =========================================
  PROOF (Image cards)
========================================= */
.proofVisual {
  padding: 64px 0;
  background: #fff;
}

.proofVisual__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.proofVisualCard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.proofVisualCard__img {
  margin: 0;
}

.proofVisualCard__img img {
  width: 100%;
  height: 170px; /* ←ここも画像を主役に */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.proofVisualCard__body {
  padding: 14px 14px 16px;
}

.proofVisualCard__ttl {
  margin: 0 0 8px;
  font-weight: 900;
  padding-left: 10px;
  border-left: 6px solid var(--accent);
  font-size: 1.8rem;
}

.proofVisualCard__txt {
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
  font-weight: 650;
  line-height: 1.9;
  font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 980px) {
  .reasonVisualItem,
.reasonVisualItem.is-reverse {
    grid-template-columns: 1fr;
  }
  .reasonVisualItem__media img {
    height: 280px;
  }
  .reasonVisualItem__body {
    padding: 16px;
  }
  .proofVisual__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .reasonVisualItem__media img {
    height: 240px;
  }
  .reasonVisualItem__cap {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }
  .reasonVisualItem__ttl {
    font-size: 16px;
  }
  .proofVisual__grid {
    grid-template-columns: 1fr;
  }
  .proofVisualCard__img img {
    height: 200px;
  }
}
/* =========================================================
  SERVICE PAGE (Clean + Larger type)
========================================================= */
/* ---------- Design Tokens ---------- */
.pageService {
  /* base */
  --sv-text: 18px; /* ★全体の基準フォントサイズ */
  --sv-text-sm: 16px;
  --sv-text-xs: 15px;
  /* colors */
  --sv-ink: #222;
  --sv-ink-soft: #333;
  --sv-muted: #8a8a8a;
  --sv-beige: #f2eee6;
  --sv-card: #fff;
  --sv-card-sub: #faf8f3;
  --sv-line: #e8e2d8;
  --sv-accent: #d9ae7a;
  --sv-marker: #f3ef43;
  /* radius / shadow */
  --sv-r-lg: 18px;
  --sv-r-md: 14px;
  --sv-shadow: 0 12px 30px rgba(0,0,0,.08);
  background: #fff;
  font-size: var(--sv-text);
  color: var(--sv-ink);
}

/* page text defaults */
.pageService p,
.pageService li {
  font-size: 1em; /* = --sv-text */
  line-height: 2;
}

/* ---------- Common Heading ---------- */
.svH2 {
  font-size: 36px; /* 32 → 36 */
  font-weight: 900;
  text-align: center;
  margin: 0 0 28px;
  letter-spacing: 0.02em;
}

.svH2 > span {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  z-index: 0;
}

.svH2 > span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px; /* 10 → 12 */
  background: var(--sv-marker);
  z-index: -1;
}

/* ---------- INTRO ---------- */
.svIntro {
  padding: 64px 0 44px;
  background: #fff;
}

.svIntro__title {
  text-align: center;
  font-size: 46px; /* 40 → 46 */
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}

.svIntro__kicker {
  display: block;
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--sv-muted);
  margin-bottom: 8px;
}

.svIntro__lead {
  text-align: center;
  font-size: 18px; /* 16 → 18 */
  line-height: 2;
  margin: 0 auto 26px;
  max-width: 900px;
  color: var(--sv-ink);
}

/* intro points */
.svIntro__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto 28px;
}

.svPoint {
  border: 1px solid var(--sv-line);
  background: var(--sv-card-sub);
  border-radius: var(--sv-r-md);
  padding: 18px 10px; /* 少しゆったり */
}

.svPoint__ttl {
  font-weight: 900;
  font-size: 18px; /* 16 → 18 */
  margin: 0 0 6px;
  color: var(--sv-ink);
  text-align: center;
}

.svPoint__txt {
  font-size: 1.4rem; /* 14 → 15 */
  line-height: 1.9;
  margin: 0;
  color: var(--sv-ink-soft);
  text-align: center;
}

/* intro CTA */
.svIntro__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.svBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px; /* 52 → 58 */
  padding: 0 26px; /* 少し大きく */
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: 0.2s ease;
  white-space: nowrap;
  font-size: 16px; /* 明示 */
}

.svBtn--primary {
  background: var(--sv-accent);
  color: #fff;
  border: 1px solid var(--sv-accent);
}

.svBtn--primary:hover {
  filter: brightness(0.96);
}

.svBtn--ghost {
  background: #fff;
  color: var(--sv-ink-soft);
  border: 1px solid var(--sv-accent);
}

.svBtn--ghost:hover {
  background: #fff7ef;
}

/* text link button (→丸矢印) */
.svBtn--text {
  background: transparent;
  border: none;
  color: var(--sv-ink-soft);
  padding: 0;
  min-height: auto;
  border-radius: 0;
  position: relative;
  font-size: 16px;
  font-weight: 900;
}

.svBtn--text::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--sv-accent);
  vertical-align: -3px;
}

.svBtn--text::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: -12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  top: 1px;
  left: 8px;
  z-index: 2;
}

/* ---------- BLOCKS ---------- */
.svBlocks {
  padding: 30px 0 34px;
  background: var(--sv-beige);
}

.svBlock {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 44px;
  align-items: center;
  padding: 40px 0; /* 34 → 40 */
}

.svBlock + .svBlock {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* media */
.svBlock__media {
  margin: 0;
  border-radius: var(--sv-r-lg);
  overflow: hidden;
  box-shadow: var(--sv-shadow);
  background: #ddd;
}

.svBlock__media img {
  width: 100%;
  height: 380px; /* 360 → 380（“画像を主役”） */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* title / tag / text */
.svBlock__title {
  font-size: 32px; /* 28 → 32 */
  font-weight: 900;
  margin: 0 0 12px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.svBlock__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7dccf;
  font-size: 14px; /* 13 → 14 */
  font-weight: 900;
  margin-right: 10px;
}

.svBlock__text {
  font-size: 17px; /* 15 → 17 */
  line-height: 2;
  margin: 0 0 16px;
  color: var(--sv-ink);
}

.svBlock__list {
  margin: 0 0 20px;
  padding-left: 18px;
  line-height: 1.9;
  color: var(--sv-ink-soft);
  font-size: 16px;
}

/* actions */
.svBlock__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* reverse */
.svBlock--reverse {
  grid-template-columns: 1fr 520px;
}

.svBlock--reverse .svBlock__media {
  order: 2;
}

.svBlock--reverse .svBlock__body {
  order: 1;
}

/* ---------- MID CTA ---------- */
.svMidCta {
  background: #fff;
  padding: 38px 0 12px;
}

.svMidCta__inner {
  border: 1px solid #eadfce;
  background: #fffaf2;
  border-radius: var(--sv-r-lg);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.svMidCta__catch {
  margin: 0;
  font-size: 18px; /* 16 → 18 */
  line-height: 1.9;
  font-weight: 900;
  color: var(--sv-ink);
}

/* ---------- WORRY ---------- */
.svWorry {
  background: var(--sv-beige);
  padding: 50px 0 64px;
}

.svWorry__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 18px;
}

.svWorryCard {
  background: #fff;
  border-radius: var(--sv-r-md);
  border: 1px solid var(--sv-line);
  padding: 20px 20px; /* 18 → 20 */
  text-decoration: none;
  color: var(--sv-ink);
  min-height: 76px; /* 72 → 76 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: 0.2s ease;
}

.svWorryCard:hover {
  background: #fffaf2;
}

.svWorryCard__ttl {
  font-weight: 900;
  line-height: 1.45;
  font-size: 16px;
}

.svWorryCard__arrow {
  width: 36px; /* 34 → 36 */
  height: 36px;
  border-radius: 999px;
  background: var(--sv-accent);
  flex: 0 0 36px;
  position: relative;
}

.svWorryCard__arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 9px;
  height: 9px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  left: 2px;
  right: 0;
}

/* ---------- BOTTOM CTA ---------- */
.svBottomCta {
  background: #fff;
  padding: 60px 0 76px;
}

.svBottomCta__inner {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.svBottomCta__title {
  font-size: 34px; /* 30 → 34 */
  font-weight: 900;
  margin: 0 0 12px;
}

.svBottomCta__text {
  margin: 0 auto 22px;
  max-width: 740px;
  font-size: 17px; /* 15 → 17 */
  line-height: 2;
  color: var(--sv-ink-soft);
}

.svBottomCta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
  Responsive
========================================================= */
@media (max-width: 1024px) {
  .svIntro__points {
    grid-template-columns: 1fr;
  }
  .svBlock,
.svBlock--reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .svBlock--reverse .svBlock__media,
.svBlock--reverse .svBlock__body {
    order: initial;
  }
  .svBlock__media img {
    height: 320px;
  }
  .svWorry__grid {
    grid-template-columns: 1fr;
  }
  .svMidCta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .pageService {
    --sv-text: 17px; /* SPはほんの少しだけ控えめ */
  }
  .svIntro {
    padding: 46px 0 28px;
  }
  .svIntro__title {
    font-size: 34px;
  }
  .svH2 {
    font-size: 28px;
  }
  .svBlock__title {
    font-size: 26px;
  }
  .svBlock__media img {
    height: 240px;
  }
  .svBtn {
    min-height: 56px;
    width: 100%;
  }
  .svIntro__cta {
    flex-direction: column;
  }
  .svBottomCta__actions {
    flex-direction: column;
  }
}
/* =========================================================
  PRICE PAGE (Refined / Clean)
========================================================= */
/* =========================================================
  Tokens
========================================================= */
.pricePage {
  --price-ink: #222;
  --price-muted: #666;
  --price-line: #e8e2d8;
  --price-beige: #f2eee6;
  --price-card: #fff;
  --price-accent: #d9ae7a;
  --price-accent2: #fff7ef;
  --price-marker: #f3ef43;
  --price-radius-lg: 18px;
  --price-radius-md: 16px;
  background: #fff;
  color: var(--price-ink);
}

/* =========================================================
  Intro
========================================================= */
.priceIntro {
  padding: 56px 0 26px;
  text-align: center;
}

.priceIntro__title {
  font-size: 44px;
  font-weight: 900;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.priceIntro__lead {
  margin: 0 auto 18px;
  max-width: 860px;
  font-size: 16px;
  line-height: 2;
  color: var(--price-ink);
}

/* badges */
.priceIntro__badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.priceIntro__badges li {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--price-line);
  font-weight: 900;
  font-size: 13px;
}

/* =========================================================
  Price tables
========================================================= */
.priceTables {
  background: var(--price-beige);
  padding: 34px 0 60px;
}

.priceBlock {
  background: var(--price-card);
  border: 1px solid var(--price-line);
  border-radius: var(--price-radius-lg);
  padding: 22px 22px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.priceBlock + .priceBlock {
  margin-top: 22px;
}

.priceBlock__head {
  margin-bottom: 16px;
  text-align: center; /* タイトル類はセンター */
}

.priceBlock__title {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 6px;
  line-height: 1.5;
}

.priceBlock__note {
  margin: 0;
  color: var(--price-muted);
  font-size: 13px;
  line-height: 1.8;
}

/* grid cards */
.priceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.priceCard {
  border: 1px solid var(--price-line);
  border-radius: var(--price-radius-md);
  background: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: 0.2s ease;
}

.priceCard:hover {
  background: var(--price-accent2);
  transform: translateY(-1px);
}

.priceCard__room {
  margin: 0;
  font-weight: 900;
  font-size: 16px;
  color: var(--price-ink);
}

.priceCard__price {
  margin: 0;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--price-ink);
}

.priceCard__price span {
  font-size: 13px;
  font-weight: 900;
  color: var(--price-muted);
  margin-left: 2px;
}

/* =========================================================
  Mini CTA inside block
========================================================= */
.priceBlock__cta {
  margin-top: 16px;
}

.priceMiniCta {
  border-radius: var(--price-radius-md);
  border: 1px solid #eadfce;
  background: #fffaf2;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.priceMiniCta__txt {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 800;
  color: var(--price-ink);
  flex: 1;
}

/* =========================================================
  Buttons
========================================================= */
.priceBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.priceBtn--primary {
  background: var(--price-accent);
  border-color: var(--price-accent);
  color: #fff;
}

.priceBtn--primary:hover {
  filter: brightness(0.96);
}

.priceBtn--ghost {
  background: #fff;
  border-color: var(--price-accent);
  color: var(--price-ink);
}

.priceBtn--ghost:hover {
  background: var(--price-accent2);
}

/* =========================================================
  Flow (Vertical)
========================================================= */
.priceFlow {
  background: #fff;
  padding: 56px 0 70px;
}

/* section title（センター統一） */
.priceH2 {
  font-size: 34px;
  font-weight: 900;
  text-align: center;
  margin: 0 0 10px;
}

.priceH2 > span {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  z-index: 0;
}

.priceH2 > span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: var(--price-marker);
  z-index: -1;
}

.priceFlow__lead {
  text-align: center;
  margin: 0 auto 26px;
  max-width: 900px;
  font-size: 16px;
  line-height: 2;
  color: var(--price-ink);
}

/* vertical timeline */
.flowV {
  max-width: 920px;
  margin: 0 auto;
  padding-top: 6px;
}

.flowV__item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  padding: 18px 0;
}

.flowV__no {
  position: relative;
  display: flex;
  justify-content: center;
}

.flowV__no span {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--price-accent);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

/* line */
/* line（確実に表示される版） */
.flowV__item:not(:last-child) .flowV__no::after {
  content: "";
  position: absolute;
  /* 丸の“下端”からスタート */
  top: 62px;
  /* 下方向へ伸ばす（次のステップへ繋げる） */
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--price-line);
  border-radius: 99px;
  /* 前面に出す */
  z-index: 1;
}

/* 丸も線の上に出す（線が丸に被らないように） */
.flowV__no span {
  position: relative;
  z-index: 2;
}

/* bottom CTA */
.priceFlow__cta {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
  Responsive
========================================================= */
@media (max-width: 1024px) {
  .priceIntro__title {
    font-size: 36px;
  }
  .priceGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .priceIntro {
    padding: 44px 0 20px;
  }
  .priceIntro__title {
    font-size: 30px;
  }
  .priceIntro__lead {
    font-size: 15px;
  }
  .priceTables {
    padding: 26px 0 50px;
  }
  .priceBlock {
    padding: 18px 16px;
  }
  .priceGrid {
    grid-template-columns: 1fr;
  }
  .priceCard__price {
    font-size: 20px;
  }
  .priceMiniCta {
    flex-direction: column;
    align-items: flex-start;
  }
  .priceBtn {
    width: 100%;
  }
  /* Flow vertical SP */
  .flowV__item {
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding: 14px 0;
  }
  .flowV__no span {
    width: 54px;
    height: 54px;
    font-size: 14px;
  }
  .flowV__item:not(:last-child) .flowV__no::after {
    top: 62px;
    height: calc(100% - 46px);
  }
  .flowV__body {
    padding: 16px 14px;
  }
  .flowV__body .flowV__ttl {
    font-size: 1.6rem;
  }
}
.blockHead {
  text-align: center;
}
.blockHead .blockHead__jp {
  font-size: 3rem;
}

.subText {
  text-align: center;
}

/* =========================================================
  Blog Category (blog_column)
========================================================= */
.blogCat {
  --ink:#222;
  --muted:#666;
  --line:#e8e2d8;
  --beige:#f2eee6;
  --card:#fff;
  --accent:#d9ae7a;
  --accent2:#fff7ef;
}

/* sub mv */
.subMv--blog {
  background: linear-gradient(180deg, #f7f2ea 0%, #fff 70%);
  padding: 56px 0 26px;
}

.subMv--blog .subMv__title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin: 0 0 10px;
}

.subMv--blog .subMv__lead {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  color: var(--muted);
}

/* layout */
.blogCat__main {
  padding: 26px 0 70px;
  background: #fff;
}

.blogCat__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

/* search */
.blogSearch {
  display: flex;
  gap: 10px;
  margin: 0 0 16px;
}

.blogSearch__input {
  flex: 1;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 0 14px;
  font-size: 16px;
}

.blogSearch__btn {
  height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

/* cards */
.blogCards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.blogCard {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease;
}

.blogCard:hover {
  transform: translateY(-2px);
}

.blogCard__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blogCard__thumb {
  margin: 0;
  background: #ddd;
}

.blogCard__thumb img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.blogCard__body {
  padding: 14px 14px 16px;
}

.blogCard__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.blogCard__date {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.blogCard__cat {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

.blogCard__ttl {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.blogCard__excerpt {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}

/* pager */
.blogPager {
  margin-top: 18px;
}

.blogPager ul {
  display: flex;
  gap: 8px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blogPager a,
.blogPager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 900;
  color: var(--ink);
  background: #fff;
}

.blogPager .current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* mid cta */
.blogMidCta {
  margin-top: 22px;
}

.blogMidCta__inner {
  border: 1px solid #eadfce;
  background: #fffaf2;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}

.blogMidCta__ttl {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.blogMidCta__txt {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 2;
  color: var(--muted);
}

.blogMidCta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blogMidCta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
}

.blogMidCta__btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.blogMidCta__btn--ghost {
  background: #fff;
  border-color: var(--accent);
  color: var(--ink);
}

/* side */
.blogCat__side {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}

.sideBox {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.sideBox + .sideBox {
  margin-top: 14px;
}

.sideBox__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.sideRank {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sideRank__item a {
  display: flex;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
}

.sideRank__item a:hover {
  background: var(--accent2);
}

.sideRank__no {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 28px;
}

.sideRank__ttl {
  font-weight: 900;
  line-height: 1.5;
}

.sideCats li {
  list-style: none;
  display: flex;
  align-items: center;
}

.sideCats ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sideCats li a {
  display: flex;
  justify-content: space-between;
  padding: 10px 10px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
}

.sideCats li a:hover {
  background: var(--accent2);
}

/* responsive */
@media (max-width: 1024px) {
  .blogCat__grid {
    grid-template-columns: 1fr;
  }
  .blogCat__side {
    position: static;
    top: auto;
  }
}
@media (max-width: 600px) {
  .subMv--blog .subMv__title {
    font-size: 30px;
  }
  .subMv--blog .subMv__lead {
    font-size: 15px;
  }
  .blogCards {
    grid-template-columns: 1fr;
  }
  .blogCard__thumb img {
    height: 200px;
  }
  .blogSearch {
    flex-direction: column;
  }
  .blogSearch__btn {
    width: 100%;
  }
}
/* =========================================================
  COMPANY PAGE (Brush up)
========================================================= */
.pageCompany {
  --ink:#222;
  --muted:#666;
  --line:#e8e2d8;
  --beige:#f2eee6;
  --card:#fff;
  --accent:#d9ae7a;
  --accent2:#fff7ef;
  background: #fff;
}

/* 共通 */
.cpH2 {
  font-size: 34px;
  font-weight: 900;
  margin: 0 0 16px;
  line-height: 1.35;
}

.cpH2 > span {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}

.cpH2 > span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: #f3ef43;
  z-index: -1;
}

.cpH2--center {
  text-align: center;
}

.cpBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
}

.cpBtn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.cpBtn--primary:hover {
  filter: brightness(0.96);
}

.cpBtn--ghost {
  background: #fff;
  border-color: var(--accent);
  color: var(--ink);
}

.cpBtn--ghost:hover {
  background: var(--accent2);
}

/* Quick CTA */
.cpQuickCta {
  padding: 18px 0 8px;
}

.cpQuickCta__inner {
  border: 1px solid var(--line);
  background: #fffaf2;
  border-radius: 18px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cpQuickCta__txt {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 800;
  color: var(--ink);
}

/* Hero */
.cpHero {
  padding: 44px 0 44px;
}

.cpHero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

.cpHero__lead {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
}

.cpHero__points {
  margin: 0 0 18px;
  padding-left: 18px;
  line-height: 1.9;
  color: var(--ink);
}
@media (max-width: 760px) {
  .cpHero__points {
    font-size: 16px;
  }
}

.cpHero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cpHero__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  background: #ddd;
}

.cpHero__media img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Philosophy */
.cpPhilo {
  background: var(--beige);
  padding: 44px 0 54px;
}

.cpPhilo__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.cpPhiloCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.cpPhiloCard__ttl {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}

.cpPhiloCard__txt {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 700;
}

/* Greeting */
.cpGreeting {
  padding: 54px 0 54px;
  background: #fff;
}

.cpGreeting__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: center;
}

.cpGreeting__img {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  background: #ddd;
}

.cpGreeting__img img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.cpGreeting__txt {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 2;
  color: var(--ink);
}

.cpGreeting__sign {
  margin: 0;
  font-weight: 900;
}

/* Outline */
.cpOutline {
  background: var(--beige);
  padding: 54px 0 64px;
}

.cpOutline__wrap {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.cpDl {
  margin: 0;
}

.cpDl__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
}

.cpDl__row:first-child {
  border-top: none;
}

.cpDl dt {
  font-weight: 900;
  color: var(--ink);
}

.cpDl dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.9;
}

.cpOutline__cta {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid #eadfce;
  background: #fffaf2;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 760px) {
  .cpOutline__cta {
    flex-direction: column;
    align-items: center;
  }
}

.cpOutline__ctaTxt {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 800;
  color: var(--ink);
}

/* Licence */
.cpLicence {
  padding: 54px 0 64px;
}

.cpLicence__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.cpLicenceCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.cpLicenceCard h3 {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 16px;
}

.cpLicenceCard p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
  font-size: 14px;
}

/* Area */
.cpArea {
  background: var(--beige);
  padding: 54px 0 64px;
}

.cpArea__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.cpArea__img {
  margin: 12px 0 10px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  background: #ddd;
}

.cpArea__img img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.cpArea__txt {
  margin: 0;
  line-height: 2;
  color: var(--ink);
  font-size: 15px;
}

.cpAreaSideCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.cpAreaSideCard + .cpAreaSideCard {
  margin-top: 12px;
}

.cpAreaSideCard h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}

.cpAreaSideCard p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
  font-size: 14px;
}

/* responsive */
@media (max-width: 1024px) {
  .cpHero__grid {
    grid-template-columns: 1fr;
  }
  .cpHero__media img {
    height: 340px;
  }
  .cpPhilo__cards {
    grid-template-columns: 1fr;
  }
  .cpGreeting__grid {
    grid-template-columns: 1fr;
  }
  .cpGreeting__img img {
    height: 320px;
  }
  .cpDl__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .cpLicence__grid {
    grid-template-columns: 1fr;
  }
  .cpArea__grid {
    grid-template-columns: 1fr;
  }
  .cpArea__img img {
    height: 320px;
  }
  .cpQuickCta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .cpH2 {
    font-size: 28px;
  }
  .cpBtn {
    width: 100%;
  }
  .cpHero__media img {
    height: 260px;
  }
}
/* =========================================================
  POST SINGLE (Readable / Modern)
========================================================= */
.postSingle {
  --ink:#222;
  --muted:#666;
  --line:#e8e2d8;
  --beige:#f2eee6;
  --card:#fff;
  --accent:#d9ae7a;
  --accent2:#fff7ef;
  background: #fff;
}

/* breadcrumb */
.postCrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--muted);
}

.postCrumb a {
  color: inherit;
  text-decoration: none;
}

.postCrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

/* hero */
.postHero {
  padding: 26px 0 20px;
}

.postHero__kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
}

.postHero__cat {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 900;
  font-size: 12px;
}

.postHero__date {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #888;
}

.postHero__title {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 auto 10px;
  max-width: 980px;
}

.postHero__lead {
  text-align: center;
  margin: 0 auto 18px;
  max-width: 860px;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
}

.postHero__thumb {
  margin: 0 auto;
  max-width: 980px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.postHero__thumb img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* layout */
.postBody {
  padding: 28px 0 70px;
  background: #fff;
}

.postBody__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.postMain {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

/* content typography */
.postContent {
  font-size: 16px;
  line-height: 2.05;
  color: var(--ink);
}

.postContent h2 {
  margin: 42px 0 14px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
  text-align: left;
  position: relative;
  padding-left: 14px;
}

.postContent h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 6px;
  height: 1.3em;
  border-radius: 99px;
  background: var(--accent);
}

.postContent h3 {
  margin: 28px 0 10px;
  font-size: 20px;
  font-weight: 900;
}

.postContent p {
  margin: 0 0 16px;
}

.postContent ul, .postContent ol {
  margin: 0 0 16px;
  padding-left: 1.2em;
}

.postContent li {
  margin: 6px 0;
}

.postContent a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.postContent img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.postContent blockquote {
  margin: 18px 0;
  padding: 14px 14px;
  border-left: 4px solid var(--accent);
  background: #fffaf2;
  border-radius: 12px;
  color: var(--ink);
}

/* CTA */
.postCta {
  margin-top: 28px;
}

.postCta__inner {
  border: 1px solid #eadfce;
  background: #fffaf2;
  border-radius: 18px;
  padding: 18px 18px;
}

.postCta__ttl {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.postCta__txt {
  margin: 0 0 14px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.postCta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.postCta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.postCta__btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.postCta__btn--primary:hover {
  filter: brightness(0.96);
}

.postCta__btn--ghost {
  background: #fff;
  border-color: var(--accent);
  color: var(--ink);
}

.postCta__btn--ghost:hover {
  background: var(--accent2);
}

/* related */
.postRelated {
  margin-top: 34px;
}

.postRelated__ttl {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
}

.postRelated__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.relCard {
  display: block;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: 0.2s ease;
}

.relCard:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

.relCard__thumb img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.relCard__date {
  margin: 10px 12px 2px;
  font-size: 12px;
  color: #888;
  font-weight: 900;
}

.relCard__ttl {
  margin: 0 12px 12px;
  font-weight: 900;
  line-height: 1.4;
}

/* side */
.postSide {
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sideCta {
  border-radius: 18px;
  border: 1px solid #eadfce;
  background: #fffaf2;
  padding: 16px 16px;
}

.sideCta__ttl {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 16px;
  text-align: center;
}

.sideCta__txt {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}

.sideCta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.sideBox {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.sideBox__title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 16px;
  text-align: center;
}

.sideList {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.9;
}

.sideCats ul {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.9;
}

/* responsive */
@media (max-width: 1024px) {
  .postBody__grid {
    grid-template-columns: 1fr;
  }
  .postSide {
    position: static;
  }
  .postRelated__grid {
    grid-template-columns: 1fr;
  }
  .postHero__thumb img {
    height: 320px;
  }
}
@media (max-width: 600px) {
  .postHero__title {
    font-size: 28px;
  }
  .postMain {
    padding: 16px 14px;
  }
  .postContent {
    font-size: 15px;
  }
  .postHero__thumb img {
    height: 240px;
  }
  .postCta__actions {
    flex-direction: column;
  }
  .postCta__btn {
    width: 100%;
  }
}
.blogCard__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  position: relative;
  padding-right: 36px; /* ←丸分の余白確保 */
}

.blogCard__more::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.blogCard__more::before {
  content: "";
  position: absolute;
  right: 12px; /* ←丸の中の矢印位置 */
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  z-index: 2;
}

/* =========================================================
  SIDE CATEGORY (Polish)
========================================================= */
.sideCats {
  margin: 0;
}

/* ul/li の余計な見た目をリセット */
.sideCats__list,
.sideCats ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

/* li */
.sideCats__list > li,
.sideCats ul > li {
  margin: 0;
}

/* a をボタン風に */
.sideCats__list > li > a,
.sideCats ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line, #e8e2d8);
  background: #fff;
  text-decoration: none;
  color: var(--ink, #222);
  font-weight: 900;
  line-height: 1.4;
  transition: 0.2s ease;
}

.sideCats__list > li > a:hover,
.sideCats ul > li > a:hover {
  background: var(--accent2, #fff7ef);
  transform: translateY(-1px);
}

/* current-cat（選択中）を強調 */
.sideCats__list > li.current-cat > a,
.sideCats ul > li.current-cat > a {
  border-color: var(--accent, #d9ae7a);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* 件数 "(118)" をバッジ化
   wp_list_categories(show_count) は「リンクの後ろに (数字)」をテキストで出すので
   それを整形します */
.sideCats__list > li,
.sideCats ul > li {
  position: relative;
}

/* リンク後ろの "(数字)" を右側に寄せたいので、
   li のテキスト(リンク以外)をバッジ化 */
.sideCats__list > li::after,
.sideCats ul > li::after {
  content: "";
}

/* WordPressが出す "(118)" は li テキストとして残るため、
   一旦見た目を整える（簡易版） */
.sideCats__list > li,
.sideCats ul > li {
  font-size: 0; /* ← li直下のテキスト(= (118))を非表示にする */
}

/* aだけは表示 */
.sideCats__list > li > a,
.sideCats ul > li > a {
  font-size: 14px; /* 戻す */
  position: relative;
  padding-right: 64px; /* バッジ分 */
}

/* カウントを疑似要素で出す（data-countが無いのでPHPで付与できる場合のみ理想）
   → ここは“完全版”にするなら PHPで data-count を付けます（下に記載） */
@media (max-width: 600px) {
  .hero__grid {
    padding: 0;
  }
  .hero__titleBig {
    font-size: 2rem;
    text-align: center;
  }
  .hero__titleBig3 {
    font-size: 5rem;
    text-align: center;
  }
  .hero__lead {
    text-align: center;
    font-size: 1.3rem;
  }
  .hero__lead .sp_none {
    display: none;
  }
  .hero__lead span {
    display: block;
  }
}
@media (max-width: 520px) {
  .nav {
    width: 75px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .topbar {
    height: 55px;
  }
  .nav__inner {
    padding: 5px 0;
  }
  .spmenu.is-open {
    position: fixed;
    left: 0;
    width: 100%;
    top: 54px;
    height: 100vh;
  }
}
/* =========================================================
  PROBLEM PAGE
========================================================= */
.problemPage {
  --ink:#222;
  --muted:#666;
  --line:#e8e2d8;
  --beige:#f2eee6;
  --card:#fff;
  --accent:#d9ae7a;
  --accent2:#fff7ef;
  background: #fff;
}

/* buttons */
.pBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
}

.pBtn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pBtn--primary:hover {
  filter: brightness(0.96);
}

.pBtn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--accent);
}

.pBtn--ghost:hover {
  background: var(--accent2);
}

/* MV */
.problemMv {
  padding: 56px 0 26px;
  text-align: center;
}

.problemMv__kicker {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #888;
}

.problemMv__title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 12px;
}

.problemMv__lead {
  margin: 0 auto 16px;
  max-width: 920px;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
}

.problemMv__badges {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.problemMv__badges li {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 900;
  font-size: 13px;
}

.problemMv__cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* index */
.problemIndex {
  background: var(--beige);
  padding: 18px 0;
}

.problemIndex__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.problemIndex__grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-weight: 900;
  transition: 0.2s ease;
}

.problemIndex__grid a:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

/* blocks */
.problemBlocks {
  background: #fff;
  padding: 28px 0 70px;
}

.pBlock {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
}

.pBlock + .pBlock {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pBlock__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  background: #ddd;
}

.pBlock__media img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.pBlock__tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 10px;
}

.pBlock__title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 10px;
}

.pBlock__lead {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
}

.pPoints {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 12px;
}

.pPoint {
  border: 1px solid var(--line);
  background: #faf8f3;
  border-radius: 14px;
  padding: 14px 14px;
}

.pPoint h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 900;
}

.pPoint ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
  color: #333;
  font-weight: 700;
  font-size: 14px;
}

.pNote {
  border: 1px solid #eadfce;
  background: #fffaf2;
  border-radius: 14px;
  padding: 12px 12px;
  margin: 0 0 14px;
}

.pNote p {
  margin: 0;
  line-height: 1.9;
  font-weight: 800;
  color: var(--ink);
  font-size: 14px;
}

.pActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pFaq {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
}

.pFaq summary {
  cursor: pointer;
  font-weight: 900;
}

.pFaq__body {
  padding-top: 10px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
}

.pFaq__body p {
  margin: 0 0 10px;
}

/* reverse */
.pBlock--reverse {
  grid-template-columns: 1fr 560px;
}

.pBlock--reverse .pBlock__media {
  order: 2;
}

.pBlock--reverse .pBlock__body {
  order: 1;
}

/* mid cta */
.pMidCta {
  padding: 12px 0 20px;
}

.pMidCta__inner {
  border: 1px solid #eadfce;
  background: #fffaf2;
  border-radius: 18px;
  padding: 18px 18px;
  text-align: center;
}

.pMidCta__ttl {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.pMidCta__txt {
  margin: 0 auto 12px;
  max-width: 860px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 700;
}

.pMidCta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* flow */
.pFlow {
  background: var(--beige);
  padding: 56px 0 70px;
}

.pH2 {
  font-size: 34px;
  font-weight: 900;
  text-align: center;
  margin: 0 0 10px;
}

.pH2 > span {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}

.pH2 > span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: #f3ef43;
  z-index: -1;
}

.pFlow__lead {
  text-align: center;
  margin: 0 auto 26px;
  max-width: 900px;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
}

.pFlow__list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.pFlow__list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.pFlow__no {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #888;
}

.pFlow__list h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
}

.pFlow__list p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

/* final cta */
.pFinalCta {
  background: #fff;
  padding: 56px 0 70px;
}

.pFinalCta__inner {
  border: 1px solid #eadfce;
  background: #fffaf2;
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
}

.pFinalCta__ttl {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
}

.pFinalCta__txt {
  margin: 0 auto 14px;
  max-width: 900px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 700;
}

.pFinalCta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* responsive */
@media (max-width: 1024px) {
  .problemIndex__grid {
    grid-template-columns: 1fr;
  }
  .pBlock,
.pBlock--reverse {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pBlock--reverse .pBlock__media,
.pBlock--reverse .pBlock__body {
    order: initial;
  }
  .pBlock__media img {
    height: 320px;
  }
  .pPoints {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .problemMv__title {
    font-size: 30px;
  }
  .problemMv__lead {
    font-size: 15px;
  }
  .pBlock__title {
    font-size: 24px;
  }
  .pBlock__media img {
    height: 240px;
  }
  .pBtn {
    width: 100%;
  }
  .problemMv__cta {
    flex-direction: column;
  }
  .pMidCta__actions {
    flex-direction: column;
  }
  .pFinalCta__actions {
    flex-direction: column;
  }
}
/* =========================================================
  SERVICE LIST PAGE (1 page)
========================================================= */
.svListPage {
  --ink:#222;
  --muted:#666;
  --line:#e8e2d8;
  --beige:#f2eee6;
  --card:#fff;
  --accent:#d9ae7a;
  --accent2:#fff7ef;
  background: #fff;
}

/* buttons */
.sBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
}

.sBtn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.sBtn--primary:hover {
  filter: brightness(0.96);
}

.sBtn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--accent);
}

.sBtn--ghost:hover {
  background: var(--accent2);
}

/* MV */
.svListMv {
  padding: 56px 0 26px;
  text-align: center;
}

.svListMv__kicker {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #888;
}

.svListMv__title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 12px;
}

.svListMv__lead {
  margin: 0 auto 16px;
  max-width: 960px;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
}

.svListMv__badges {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.svListMv__badges li {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 900;
  font-size: 13px;
}

.svListMv__cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* index */
.svIndex {
  background: var(--beige);
  padding: 18px 0;
}

.svIndex__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.svIndex__grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-weight: 900;
  transition: 0.2s ease;
  font-size: 1.6rem;
}

.svIndex__grid a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  flex: 0 0 28px;
}

.svIndex__grid a:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

/* blocks */
.svBlocks {
  background: #fff;
  padding: 28px 0 70px;
}

.svBlock {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
}

.svBlock + .svBlock {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.svBlock__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  background: #ddd;
}

.svBlock__media img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.svBlock__tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 10px;
}

.svBlock__title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 10px;
}

.svBlock__lead {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
}

.svGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 0 12px;
}

.svBox {
  border: 1px solid var(--line);
  background: #faf8f3;
  border-radius: 14px;
  padding: 14px 14px;
}

.svBox h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 900;
}

.svBox ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
  color: #333;
  font-weight: 700;
  font-size: 14px;
}

.svActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* faq */
.svFaq {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
}

.svFaq summary {
  cursor: pointer;
  font-weight: 900;
}

.svFaq__body {
  padding-top: 10px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
}

.svFaq__body p {
  margin: 0 0 10px;
}

/* reverse */
.svBlock--reverse {
  grid-template-columns: 1fr 560px;
}

.svBlock--reverse .svBlock__media {
  order: 2;
}

.svBlock--reverse .svBlock__body {
  order: 1;
}

/* mid cta */
.svMidCta {
  padding: 12px 0 20px;
}

.svMidCta__inner {
  border: 1px solid #eadfce;
  background: #fffaf2;
  border-radius: 18px;
  padding: 18px 18px;
  text-align: center;
}

.svMidCta__ttl {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.svMidCta__txt {
  margin: 0 auto 12px;
  max-width: 860px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 700;
}

.svMidCta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* final cta */
.svFinalCta {
  background: #fff;
  padding: 56px 0 70px;
}

.svFinalCta__inner {
  border: 1px solid #eadfce;
  background: #fffaf2;
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
}

.svFinalCta__ttl {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
}

.svFinalCta__txt {
  margin: 0 auto 14px;
  max-width: 900px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 700;
}

.svFinalCta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* responsive */
@media (max-width: 1024px) {
  .svIndex__grid {
    grid-template-columns: 1fr;
  }
  .svBlock,
.svBlock--reverse {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .svBlock--reverse .svBlock__media,
.svBlock--reverse .svBlock__body {
    order: initial;
  }
  .svBlock__media img {
    height: 320px;
  }
  .svGrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .svListMv__title {
    font-size: 30px;
  }
  .svListMv__lead {
    font-size: 15px;
  }
  .svBlock__title {
    font-size: 24px;
  }
  .svBlock__media img {
    height: 240px;
  }
  .sBtn {
    width: 100%;
  }
  .svListMv__cta {
    flex-direction: column;
  }
  .svMidCta__actions {
    flex-direction: column;
  }
  .svFinalCta__actions {
    flex-direction: column;
  }
}
/* =========================================================
  CONTACT PAGE (フォーム軸)
========================================================= */
.contactPage {
  --ink:#222;
  --muted:#666;
  --line:#e8e2d8;
  --beige:#f2eee6;
  --card:#fff;
  --accent:#d9ae7a;
  --accent2:#fff7ef;
}

/* headings */
.ctH2 {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.ctH2 > span {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}

.ctH2 > span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: #f3ef43;
  z-index: -1;
}

.ctH2--center {
  text-align: center;
}

/* intro */
.ctIntro {
  padding: 56px 0 64px;
  background: #fff;
}

.ctIntro__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  align-items: start;
}

.ctBadges {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ctBadges li {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 900;
  font-size: 13px;
}

.ctCard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.ctCard + .ctCard {
  margin-top: 16px;
}

.ctCard--primary {
  border-color: #eadfce;
  background: #fffaf2;
}

.ctCard--soft {
  background: #faf8f3;
}

.ctCard__ttl {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}

.ctCard__txt {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: var(--ink);
}

.ctFormBox {
  margin-top: 14px;
}

/* tel */
.ctTel {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 10px;
}

.ctTel__label {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #8a8a8a;
}

.ctTel__num {
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
}

.ctHours {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

/* checklist */
.ctCheck {
  margin: 0;
  padding-left: 18px;
  line-height: 2;
  color: #333;
  font-weight: 700;
}

/* flow */
.ctFlow {
  background: var(--beige);
  padding: 56px 0 64px;
}

.ctSteps {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ctStep {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 18px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.ctStep__no {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #8a8a8a;
}

.ctStep__ttl {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 900;
}

.ctStep__txt {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 700;
}

/* faq */
.ctFaq {
  background: #fff;
  padding: 56px 0 70px;
}

.ctFaq__grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ctQa {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
}

.ctQa summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 15px;
}

.ctQa__a {
  margin-top: 10px;
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
  font-weight: 700;
}

/* minor */
.ctMiniNote p {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

/* responsive */
@media (max-width: 1024px) {
  .ctIntro__grid {
    grid-template-columns: 1fr;
  }
  .ctSteps {
    grid-template-columns: repeat(2, 1fr);
  }
  .ctFaq__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .ctH2 {
    font-size: 26px;
  }
  .ctTel__num {
    font-size: 20px;
  }
  .ctSteps {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
  Contact Form 7 styling (Kansai Eco Clean)
========================================================= */
.cf7Wrap {
  margin-top: 14px;
}

.cf7Grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.cf7Field {
  margin: 0 0 14px;
}

.cf7Label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 14px;
  margin: 0 0 8px;
  color: #222;
}

.cf7Req {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f3ef43;
  font-size: 12px;
  font-weight: 900;
}

.cf7Hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: #666;
  font-weight: 700;
  line-height: 1.6;
}

/* inputs */
.cf7Wrap input[type=text],
.cf7Wrap input[type=email],
.cf7Wrap input[type=tel],
.cf7Wrap input[type=date],
.cf7Wrap select,
.cf7Wrap textarea {
  width: 100%;
  border: 1px solid #e8e2d8;
  background: #fff;
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
}

.cf7Wrap textarea {
  min-height: 140px;
  resize: vertical;
}

.cf7Wrap input:focus,
.cf7Wrap select:focus,
.cf7Wrap textarea:focus {
  border-color: #d9ae7a;
  box-shadow: 0 0 0 3px rgba(217, 174, 122, 0.18);
}

/* checkbox list */
.cf7Wrap .wpcf7-list-item {
  margin: 0 10px 10px 0;
}

.cf7Wrap .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #e8e2d8;
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.cf7Wrap input[type=checkbox] {
  width: 18px;
  height: 18px;
}

/* acceptance */
.cf7Agree {
  margin: 8px 0 16px;
  font-weight: 800;
  color: #333;
}

.cf7Agree a {
  color: #222;
  text-decoration: underline;
}

/* submit */
.cf7Submit {
  margin-top: 6px;
}

.cf7Btn {
  width: 100%;
  min-height: 56px;
  border: 1px solid #d9ae7a;
  border-radius: 999px;
  background: #d9ae7a;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: 0.2s ease;
}

.cf7Btn:hover {
  filter: brightness(0.96);
}

/* validation / response */
.wpcf7 form .wpcf7-response-output {
  border-radius: 12px;
  border: 1px solid #e8e2d8;
  background: #fffaf2;
  padding: 12px 14px;
  margin: 16px 0 0;
  font-weight: 800;
}

.wpcf7-not-valid-tip {
  font-weight: 800;
  margin-top: 6px;
}

/* responsive */
@media (max-width: 600px) {
  .cf7Grid {
    grid-template-columns: 1fr;
  }
  .cf7Wrap input[type=text],
.cf7Wrap input[type=email],
.cf7Wrap input[type=tel],
.cf7Wrap input[type=date],
.cf7Wrap select,
.cf7Wrap textarea {
    font-size: 16px; /* iOS拡大防止 */
  }
}
/* =========================================================
  AKIYA PAGE
========================================================= */
.pageAkiya {
  --ink:#222;
  --muted:#666;
  --line:#e8e2d8;
  --beige:#f2eee6;
  --card:#fff;
  --accent:#d9ae7a;
  --accent2:#fff7ef;
  background: #fff;
}

/* sub MV small kicker */
.pageAkiya .subMv__kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #8a8a8a;
}

.akiyaMvCtas {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.akiyaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
}

.akiYaBtn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.akiYaBtn--primary:hover {
  filter: brightness(0.96);
}

.akiYaBtn--ghost {
  background: #fff;
  border-color: var(--accent);
  color: var(--ink);
}

.akiYaBtn--ghost:hover {
  background: var(--accent2);
}

/* H2 marker */
.akiyaH2 {
  font-size: 34px;
  font-weight: 900;
  text-align: center;
  margin: 0 0 18px;
}

.akiyaH2 > span {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}

.akiyaH2 > span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: #f3ef43;
  z-index: -1;
}

.akiyaH3 {
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 10px;
  line-height: 1.35;
}

/* badges */
.akiyaBadges {
  padding: 18px 0 10px;
  background: #fff;
}

.akiyaBadges__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.akiyaBadges__list li {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 900;
  font-size: 13px;
}

/* worry */
.akiyaWorry {
  padding: 48px 0 56px;
  background: var(--beige);
}

.akiyaWorry__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.akiyaWorryCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 16px;
  font-weight: 900;
  line-height: 1.6;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.akiyaNote {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

/* one stop */
.akiyaOneStop {
  padding: 56px 0 56px;
  background: #fff;
}

.akiyaOneStop__box {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.akiyaLead {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
}

.akiyaOneStop__list {
  margin: 0;
  padding-left: 18px;
  line-height: 2;
  color: #333;
  font-weight: 700;
}

/* blocks (big image) */
.akiyaBlocks {
  padding: 56px 0 66px;
  background: var(--beige);
}

.akiyaBlock {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 44px;
  align-items: center;
  padding: 30px 0;
}

.akiyaBlock + .akiyaBlock {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.akiyaBlock__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  background: #ddd;
}

.akiyaBlock__media img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.akiyaBlock__body p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
  font-weight: 700;
}

/* reverse */
.akiYaBlock--reverse {
  grid-template-columns: 1fr 560px;
}

.akiYaBlock--reverse .akiyaBlock__media {
  order: 2;
}

.akiYaBlock--reverse .akiyaBlock__body {
  order: 1;
}

/* mid cta */
.akiyaMidCta {
  padding: 40px 0 10px;
  background: #fff;
}

.akiyaMidCta__box {
  border: 1px solid #eadfce;
  background: #fffaf2;
  border-radius: 18px;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.akiyaMidCta__ttl {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 18px;
}

.akiyaMidCta__txt {
  margin: 0;
  font-weight: 800;
  color: var(--muted);
  line-height: 1.9;
}

.akiyaMidCta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* flow (vertical cards) */
.akiyaFlow {
  padding: 56px 0 70px;
  background: #fff;
}

.akiyaSteps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 14px;
}

.akiyaStep {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 18px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.akiyaStep__no {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #8a8a8a;
}

.akiyaStep__ttl {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
}

.akiyaStep__txt {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

/* faq */
.akiyaFaq {
  padding: 56px 0 70px;
  background: var(--beige);
}

.akiyaQaGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.akiyaQa {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.akiyaQa summary {
  cursor: pointer;
  font-weight: 900;
  line-height: 1.6;
}

.akiyaQa__a {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

/* form */
.akiyaForm {
  padding: 56px 0 70px;
  background: #fff;
}

.akiyaForm__lead {
  margin: 0 auto 18px;
  max-width: 900px;
  text-align: center;
  font-weight: 700;
  line-height: 2;
  color: var(--muted);
}

.akiyaForm__box {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.akiyaForm__placeholder {
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.akiyaFormTel {
  max-width: 980px;
  margin: 18px auto 0;
  text-align: center;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid #eadfce;
  background: #fffaf2;
}

.akiyaFormTel__ttl {
  margin: 0 0 6px;
  font-weight: 900;
}

.akiyaFormTel__nums {
  margin: 0 0 6px;
  font-weight: 900;
}

.akiyaFormTel__nums a {
  color: var(--ink);
  text-decoration: none;
}

.akiyaFormTel__note {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

/* responsive */
@media (max-width: 1024px) {
  .akiyaH2 {
    font-size: 30px;
  }
  .akiyaWorry__grid {
    grid-template-columns: 1fr;
  }
  .akiyaBlock,
.akiYaBlock--reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .akiYaBlock--reverse .akiyaBlock__media,
.akiYaBlock--reverse .akiyaBlock__body {
    order: initial;
  }
  .akiyaBlock__media img {
    height: 320px;
  }
  .akiyaMidCta__box {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .akiyaH2 {
    font-size: 26px;
  }
  .akiyaH3 {
    font-size: 22px;
  }
  .akiyaBtn {
    width: 100%;
  }
  .akiyaMvCtas {
    flex-direction: column;
  }
  .akiyaBlock__media img {
    height: 240px;
  }
  .akiyaQaGrid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 751px) {
  .pc_none {
    display: none !important;
  }
}
@media (max-width: 750px) {
  .sp_none {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */