@charset "UTF-8";

/* =========================================================
   Base / Reset
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* 横スクロール抑止は html 側に置く。
   body に overflow:hidden を入れると position:sticky が
   一部ブラウザで効かなくなったり、スクロールが奪われる事があるため。 */
html {
  overflow-x: clip;
}

body {
  margin: 0;
  color: #14304d;
  background: #fff;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}

/* ===== WordPress 管理バー対応 =====
   ログイン時のみ <body class="admin-bar"> が付くので、
   sticky ヘッダーを管理バーの分だけ下げる。 */
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
/* ヒーローの高さも管理バー分を考慮 */
.admin-bar .hero {
  min-height: calc(100vh - 74px - 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar .hero {
    min-height: calc(100vh - 74px - 46px);
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s;
}
a:hover { opacity: .8; }

button {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

h1, h2, h3, p, ul, ol, dl, dd {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

/* =========================================================
   Variables
   ========================================================= */
:root {
  --blue: #32b9d5;
  --blue-dark: #1d76b7;
  --navy: #214a72;
  --orange: #ff8424;
  --yellow: #f7d200;
  --green: #8fca54;
  --green-dark: #08af31;
  --purple: #6460a3;
  --red: #cf2455;
  --cream: #fff1df;
  --paper: #fffdf3;
  --container: 1120px;
  --shadow: 0 14px 26px rgba(19, 48, 77, .16);
}

.container {
  width: min(var(--container), calc(100% - 60px));
  margin: 0 auto;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
}

.site-header__inner {
  width: min(1280px, 100%);
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 20px;
}

.site-header__logo img {
  width: 180px;
}

.site-header__tagline {
  color: #697386;
  font-size: 15px;
  font-weight: 700;
}

.menu-button {
  width: 74px;
  height: 74px;
  margin-left: auto;
  display: grid;
  place-content: center;
  gap: 7px;
  background: var(--blue);
}

.menu-button span {
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: #fff;
}

/* =========================================================
   Drawer
   ========================================================= */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}
.drawer.is-open { visibility: visible; opacity: 1; }

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(645px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: 46px 52px 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform .24s ease;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
}
.drawer__close::before,
.drawer__close::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 3px;
  width: 36px;
  height: 4px;
  border-radius: 99px;
  background: #14304d;
}
.drawer__close::before { transform: rotate(45deg); }
.drawer__close::after  { transform: rotate(-45deg); }

.drawer__logo {
  width: 280px;
  margin: 0 auto 36px;
}

.drawer__body {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 32px;
}

.drawer__nav {
  border-top: 1px solid #e5e5e5;
}
.drawer__nav a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
  font-weight: 500;
}

.drawer__banners {
  display: grid;
  gap: 8px;
}
.drawer__banners img { width: 100%; border-radius: 6px; }

.drawer__cta {
  margin: 28px -52px 0;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #dff7f9;
}
.drawer__cta .button {
  min-height: 64px;
  font-size: 14px;
}

.drawer__tel {
  display: block;
  margin: 0 -52px;
  padding: 18px 20px 0;
  background: #06a7c7;
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 900;
}

.drawer__hours {
  margin: 0 -52px;
  padding: 4px 20px 24px;
  background: #06a7c7;
  color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}

/* =========================================================
   Buttons
   ========================================================= */
.button {
  min-height: 64px;
  padding: 12px 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.4;
  box-shadow: 0 6px 0 rgba(20, 48, 77, .18);
  position: relative;
}
.button--orange { background: var(--orange); }
.button--green  { background: var(--green-dark); }
.button--blue   { background: var(--blue); }
.button--red    { background: var(--red); }
.button--white  { background: #fff; color: var(--blue-dark); border: 2px solid var(--blue); box-shadow: 0 6px 0 rgba(20,48,77,.1); }

.button__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.button__arrow {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin-left: 8px;
  flex-shrink: 0;
}

.button--cta {
  min-width: min(440px, 90%);
  min-height: 78px;
  padding: 14px 32px;
  font-size: 19px;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  background: var(--blue);
}

.hero__media {
  position: relative;
  flex: 1 1 auto;
  min-height: 620px;
  background:
    url("../img/hero-bg-pc-v3.png") center top / 1920px auto no-repeat,
    #bfe8f4;
}

.hero__content {
  position: absolute;
  inset: 0;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.hero__area {
  position: absolute;
  top: clamp(10px, 1.6vh, 28px);
  left: 50%;
  width: clamp(300px, 27vw, 440px);
  transform: translateX(-50%);
  z-index: 2;
}

.hero__title-img {
  position: absolute;
  top: clamp(80px, 10vh, 130px);
  left: 50%;
  width: clamp(520px, 44vw, 720px);
  transform: translateX(-50%);
  z-index: 2;
}

.hero__badges {
  position: absolute;
  left: 50%;
  bottom: clamp(30px, 5vh, 60px);
  transform: translateX(-50%);
  display: flex;
  gap: clamp(8px, 1vw, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 4;
}
.hero__badges li { list-style: none; }
.hero__badges img { width: clamp(110px, 10vw, 156px); display: block; }

.hero__google {
  position: absolute;
  left: clamp(10px, 2vw, 30px);
  bottom: clamp(70px, 11vh, 150px);
  width: clamp(150px, 12vw, 210px);
  z-index: 4;
}

/* ---- 動的Googleクチコミバッジ（バナー画像の代替） ---- */
.hero__google-badge {
  position: absolute;
  left: clamp(14px, 2vw, 36px);
  bottom: clamp(70px, 11vh, 150px);
  width: clamp(240px, 19vw, 320px);
  z-index: 4;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 22px 20px;
  background: #fff;
  color: #14304d;
  text-decoration: none;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(20, 48, 77, .26), 0 0 0 1px rgba(20, 48, 77, .04);
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.hero__google-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(20, 48, 77, .32), 0 0 0 1px rgba(20, 48, 77, .04);
  opacity: 1;
}
.hero__google-badge::before {
  /* Googleの4色アクセントライン */
  content: "";
  position: absolute;
  left: 18px; right: 18px; top: 0;
  height: 5px; border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg,
    #4285F4 0 25%,
    #EA4335 25% 50%,
    #FBBC05 50% 75%,
    #34A853 75% 100%);
}

.hero__google-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.hero__google-badge-top img { height: 26px; width: auto; }
.hero__google-badge-label {
  font-size: 16px;
  font-weight: 700;
  color: #4d463d;
  letter-spacing: .04em;
}

.hero__google-badge-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 30px;
  line-height: 1;
  color: #FBBC05;
  letter-spacing: 2px;
  margin: 2px 0;
}
.hero__google-badge-stars .nijiiro-star-full { color: #FBBC05; }
.hero__google-badge-empty { color: #e1d9c4; }
.hero__google-badge-half {
  position: relative;
  color: #e1d9c4;
}
.hero__google-badge-half::before {
  content: "★";
  position: absolute;
  left: 0; top: 0;
  width: 50%;
  overflow: hidden;
  color: #FBBC05;
}

.hero__google-badge-rating {
  font-family: "Anton", "Yu Gothic", sans-serif;
  color: #14304d;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.hero__google-badge-rating strong {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: .02em;
}
.hero__google-badge-rating small {
  font-size: 16px;
  color: #6b6358;
}

.hero__google-badge-count {
  font-size: 14px;
  color: #4285F4;
  font-weight: 700;
  text-decoration: underline;
  margin-top: 2px;
}

/* タブレット以下：少し縮小 */
@media (max-width: 1024px) {
  .hero__google-badge {
    width: 230px;
    padding: 18px 18px 16px;
    gap: 6px;
  }
  .hero__google-badge-top img { height: 22px; }
  .hero__google-badge-label { font-size: 14px; }
  .hero__google-badge-stars { font-size: 24px; }
  .hero__google-badge-rating strong { font-size: 40px; }
  .hero__google-badge-rating small { font-size: 14px; }
  .hero__google-badge-count { font-size: 12px; }
}

/* スマホ */
@media (max-width: 600px) {
  .hero__google-badge {
    width: 180px;
    padding: 14px 14px 12px;
    gap: 5px;
    border-radius: 14px;
  }
  .hero__google-badge::before { left: 12px; right: 12px; height: 4px; }
  .hero__google-badge-top { gap: 7px; margin-top: 4px; }
  .hero__google-badge-top img { height: 18px; }
  .hero__google-badge-label { font-size: 12px; }
  .hero__google-badge-stars { font-size: 20px; letter-spacing: 1px; }
  .hero__google-badge-rating strong { font-size: 32px; }
  .hero__google-badge-rating small { font-size: 12px; }
  .hero__google-badge-count { font-size: 11px; }
}

.hero__chara {
  position: absolute;
  right: clamp(10px, 2vw, 30px);
  bottom: clamp(20px, 4vh, 60px);
  width: clamp(170px, 14vw, 240px);
  z-index: 4;
}

/* FV下メニュー（横スクロール） */
.hero-slider {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--blue);
  padding: 14px 0 18px;
}

.hero-slider__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 7px;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 48, 77, .45) rgba(255, 255, 255, .28);
}

.hero-slider__viewport::-webkit-scrollbar {
  height: 6px;
}

.hero-slider__viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .28);
  border-radius: 999px;
}

.hero-slider__viewport::-webkit-scrollbar-thumb {
  background: rgba(20, 48, 77, .45);
  border-radius: 999px;
}

.hero-slider__viewport:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -3px;
}

.hero-slider__track {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 0 7px 8px;
  list-style: none;
}

.hero-slider__track > li {
  flex: 0 0 20vw;
  padding: 0 7px;
  list-style: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-slider__track a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.hero-slider__track img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-slider__button {
  position: absolute;
  top: calc(50% - 3px);
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 2px solid rgba(20, 48, 77, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(20, 48, 77, .22);
  font-family: Arial, sans-serif;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.hero-slider__button--prev { left: 12px; }
.hero-slider__button--next { right: 12px; }

.hero-slider__button:hover,
.hero-slider__button:focus-visible {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.hero-slider__button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.hero-slider__button:disabled {
  opacity: .35;
  cursor: default;
  transform: translateY(-50%);
}

/* =========================================================
   Wave divider (between sections)
   ========================================================= */
.wave-divider {
  display: block;
  width: 100%;
  height: clamp(48px, 5.5vw, 90px);
  margin: -1px 0 -1px;
  position: relative;
  z-index: 1;
  background-color: transparent;
}
.wave-divider path { fill: currentColor; }

/* from-X: 上のセクションの色（波シェイプ） */
.wave-divider--from-blue       { color: var(--blue); }
.wave-divider--from-blue-dark  { color: var(--blue-dark); }
.wave-divider--from-cyan       { color: #dff7f9; }
.wave-divider--from-white      { color: #ffffff; }
.wave-divider--from-orange     { color: var(--orange); }
.wave-divider--from-yellow     { color: var(--yellow); }
.wave-divider--from-green      { color: var(--green); }
.wave-divider--from-purple     { color: var(--purple); }
.wave-divider--from-red        { color: var(--red); }
.wave-divider--from-cream      { color: var(--cream); }
.wave-divider--from-navy       { color: var(--navy); }

/* to-X: 下のセクションの色（波の外側＝SVG背景） */
.wave-divider--to-blue       { background-color: var(--blue); }
.wave-divider--to-blue-dark  { background-color: var(--blue-dark); }
.wave-divider--to-cyan       { background-color: #dff7f9; }
.wave-divider--to-white      { background-color: #ffffff; }
.wave-divider--to-orange     { background-color: var(--orange); }
.wave-divider--to-yellow     { background-color: var(--yellow); }
.wave-divider--to-green      { background-color: var(--green); }
.wave-divider--to-purple     { background-color: var(--purple); }
.wave-divider--to-red        { background-color: var(--red); }
.wave-divider--to-cream      { background-color: var(--cream); }
.wave-divider--to-navy       { background-color: var(--navy); }
.wave-divider--to-footer     { background-color: #f4f4f4; }

/* =========================================================
   Common section colors / patterns
   ========================================================= */
.section-blue       { background: var(--blue); }
.section-blue-dark  { background: var(--blue-dark); }
.section-orange     { background: var(--orange); }
.section-yellow     { background: var(--yellow); }
.section-green      { background: var(--green); }
.section-purple     { background: var(--purple); }
.section-red        { background: var(--red); }
.section-navy       { background: var(--navy); }
.section-cream      { background: var(--cream); }
.section-paper {
  background-color: #fff;
  background-image:
    linear-gradient(rgba(49, 185, 213, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 185, 213, .12) 1px, transparent 1px);
  background-size: 28px 28px;
}

.paper-card {
  background-color: #fff;
  background-image:
    linear-gradient(rgba(247, 210, 0, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 210, 0, .14) 1px, transparent 1px);
  background-size: 18px 18px;
  border: 4px solid rgba(255, 255, 255, .85);
  box-shadow: var(--shadow);
}

/* =========================================================
   Section heading
   ========================================================= */
.section-heading {
  margin-bottom: 48px;
}
.section-heading__title {
  width: auto;
  max-height: 180px;
  margin: 0 auto;
}
.section-heading__en {
  display: block;
  color: var(--blue);
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 3px;
  font-family: "Anton", "Impact", sans-serif;
}
.section-heading h2 {
  margin-top: 6px;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.45;
  font-weight: 900;
}
.section-heading p {
  margin-top: 18px;
  font-size: 15px;
}
.section-heading--split {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.section-heading--split > .section-heading__title {
  flex: 0 0 auto;
  max-width: 520px;
  max-height: 180px;
  margin: 0;
}
.section-heading--split > p {
  flex: 1 1 280px;
  margin-top: 0;
}
.section-heading--split > .section-heading__chara {
  flex: 0 0 130px;
  width: 130px;
}
.section-heading--center {
  text-align: center;
  position: relative;
}
.section-heading--center .section-heading__title { display: block; }
.section-heading--light,
.section-heading--light .section-heading__en,
.section-heading--light h2,
.section-heading--light p { color: #fff; }

.section-button {
  margin-top: 40px;
  text-align: center;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: 90px 0 100px;
  color: #fff;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.about__lead {
  padding: 44px 50px 40px;
  color: #14304d;
  font-size: 16px;
  line-height: 2;
  border-radius: 12px;
}
.about__hello {
  width: clamp(180px, 18vw, 240px);
  height: auto;
  margin-bottom: 18px;
}

.about__message {
  position: relative;
}
.about__bubble {
  position: relative;
  margin-right: 180px;
  padding: 28px 32px;
  border-radius: 18px;
  background: #fff;
  color: #14304d;
  line-height: 2;
  box-shadow: 0 8px 0 rgba(20, 48, 77, .1);
}
.about__bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 0;
  height: 0;
  border: 16px solid transparent;
  border-left-color: #fff;
  transform: translateY(-50%);
}
.about__bubble strong { color: var(--orange); }

.about__manager {
  position: absolute;
  right: 0;
  top: 50%;
  width: 200px;
  transform: translateY(-50%);
  text-align: center;
}
.about__manager img {
  width: 170px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 18px rgba(20, 48, 77, .25));
}
.about__name {
  margin-top: 14px;
  font-weight: 900;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}
.about__name span {
  font-size: 12px;
  font-weight: 500;
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.contact-strip {
  padding: 70px 0 90px;
  background: #dff7f9;
  text-align: center;
}
.contact-strip__lead {
  display: block;
  width: auto;
  max-height: 64px;
  margin: 0 auto 30px;
}
.discount-banner {
  width: min(620px, 100%);
  margin: 36px auto 0;
}

/* =========================================================
   NEWS
   ========================================================= */
.news { padding: 100px 0; }

.news__tabs {
  margin-bottom: 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.news__tab {
  min-width: 140px;
  padding: 10px 22px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-weight: 900;
  font-size: 14px;
}
.news__tab.is-active {
  color: #fff;
  background: var(--blue);
}

.news-list {
  padding: 18px 30px;
  border: 3px solid var(--blue);
  border-radius: 6px;
  background: #fff;
}
.news-list__item {
  display: grid;
  grid-template-columns: 130px 110px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dashed #bfe9f0;
}
.news-list__item:last-child { border-bottom: 0; }
.news-list__item.is-hidden { display: none; }
.news-list__item a {
  display: block;
  font-size: 15px;
  font-weight: 500;
}
.news-list__item time {
  font-weight: 700;
  color: #6b7c8a;
  font-size: 14px;
}

.label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  width: 110px;
}
.label--orange { background: var(--orange); }
.label--green  { background: #7cc23c; }
.label--purple { background: var(--purple); }
.label--red    { background: var(--red); }

/* =========================================================
   MENU (orange)
   ========================================================= */
.menu {
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  background:
    url("../img/menubgsozai.webp") center / cover no-repeat,
    var(--orange);
}
.menu::after {
  content: "MENU";
  position: absolute;
  top: 70px;
  right: -10px;
  font-family: "Anton", "Impact", "Arial Black", sans-serif;
  font-size: clamp(120px, 17vw, 280px);
  font-weight: 900;
  color: rgba(255, 255, 255, .22);
  line-height: .9;
  letter-spacing: .04em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.menu > .container {
  position: relative;
  z-index: 2;
}

/* Menu section heading: image left (overlapping cards), text right */
.section-heading--menu {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, .75fr);
  gap: 32px;
  align-items: center;
  margin-bottom: -40px;    /* overlap into cards */
  position: relative;
  z-index: 3;
}
.section-heading--menu .section-heading__title {
  width: 100%;
  max-height: none;
  height: auto;
  margin: 0 0 -60px;       /* heading image dips into card area */
  justify-self: start;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 8px 16px rgba(20, 48, 77, .25));
}
.section-heading--menu p {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 2;
}
.menu-grid {
  position: relative;
  z-index: 1;
}

/* paint-grid が使われている場合は、見出しイラストのめり込みを解除
   （見出しの左下にあるハシゴ＋ペンキ缶イラストが
     カード左上の「足場・工事費コミコミ」バッジと被るのを防ぐ） */
.menu:has(.paint-grid) .section-heading--menu {
  margin-bottom: 24px;
}
.menu:has(.paint-grid) .section-heading--menu .section-heading__title {
  margin-bottom: 0;
}
/* :has() 非対応ブラウザ向けの保険 — バッジを常に最前面に */
.paint-card {
  position: relative;
  z-index: 2;
}
.paint-card__topbadge {
  z-index: 5;
}

/* Menu cards grid: 6-col with 2-2-3 row pattern */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.menu-card {
  grid-column: span 2;
  background: #fff;
  border-radius: 12px;
  padding: 12px 12px 18px;
  box-shadow: 0 12px 28px rgba(20, 48, 77, .22);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease;
}
.menu-card:hover { transform: translateY(-4px); }
.menu-card--large { grid-column: span 3; }

.menu-card__photo {
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 8px;
}
.menu-card__photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.menu-card:hover .menu-card__photo img { transform: scale(1.06); }
.menu-card--large .menu-card__photo img { aspect-ratio: 16 / 9; }

.menu-card__title {
  position: relative;
  margin: 0 4px 12px;
  padding: 6px 44px 12px 14px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  color: #14304d;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-card__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 16px;
  width: 4px;
  border-radius: 2px;
  background: var(--blue-dark);
}
.menu-card__title > span { flex: 1; }

.menu-card--large .menu-card__title { font-size: 20px; padding-right: 50px; }

.menu-card__arrow {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-60%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 3px 0 rgba(20, 48, 77, .15);
}
.menu-card__arrow:hover { transform: translateY(-58%); opacity: .9; }

.menu-card--large .menu-card__arrow {
  width: 36px;
  height: 36px;
  font-size: 24px;
}

.menu-card__text {
  flex: 1;
  margin: 0 6px;
  font-size: 13px;
  line-height: 1.85;
  color: #14304d;
}
.menu-card--large .menu-card__text { font-size: 14px; }

/* =========================================================
   PAINT GRID（トップページの塗装プラン）
   ========================================================= */
.paint-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin: 32px auto 28px;
  max-width: 1100px;
}
@media (min-width: 900px) { .paint-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 380px) { .paint-grid { grid-template-columns: 1fr; } }

.paint-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.paint-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}
.paint-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #efe7d6;
  overflow: hidden;
}
.paint-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.paint-card__topbadge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: var(--yellow);
  color: #14304d;
  font-size: 12px; font-weight: 900; line-height: 1.25;
  padding: 6px 10px; border-radius: 6px;
  max-width: calc(100% - 16px);
  white-space: nowrap;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .08);
  text-align: center;
}
@media (max-width: 600px) {
  .paint-card__topbadge {
    font-size: 10px;
    padding: 4px 8px;
    line-height: 1.2;
    letter-spacing: -.02em;
  }
}
.paint-card__body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.paint-card__cat {
  align-self: flex-start;
  font-size: 12px; font-weight: 700; color: #fff;
  padding: 4px 12px; border-radius: 4px; letter-spacing: .04em; margin-bottom: 4px;
}
.paint-card__cat--cyan   { background: var(--blue); }
.paint-card__cat--navy   { background: var(--navy); }
.paint-card__cat--orange { background: var(--orange); }
.paint-card__plan { font-size: 17px; font-weight: 900; line-height: 1.45; color: var(--navy); margin: 2px 0 0; }
.paint-card__product { font-size: 12px; color: #6b6358; margin: 2px 0 6px; line-height: 1.4; }
.paint-card__price { display: flex; align-items: flex-end; gap: 4px; margin: 6px 0 4px; line-height: 1; }
.paint-card__price-num {
  font-family: "Anton", "Impact", sans-serif;
  font-size: clamp(40px, 7vw, 56px);
  color: var(--red); font-weight: 900; letter-spacing: .01em; line-height: .95;
}
.paint-card__price-side { display: flex; flex-direction: column; align-items: flex-start; padding-bottom: 4px; }
.paint-card__price-tax { font-size: 11px; color: #6b6358; line-height: 1; margin-bottom: 2px; }
.paint-card__price-unit { font-size: 16px; font-weight: 900; color: var(--navy); line-height: 1; }
.paint-card__sizenote { font-size: 12px; color: #6b6358; margin: 4px 0 0; }
.paint-card__feature {
  margin: 10px 0 0; font-size: 12px; font-weight: 700; color: var(--navy);
  background: #fff6dd; border-radius: 6px; padding: 6px 10px;
  display: inline-flex; align-self: flex-start; gap: 6px; align-items: center;
}
.paint-card__feature span {
  background: var(--green-dark); color: #fff;
  font-size: 10px; width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
}

.paint-section__note {
  background: rgba(255, 255, 255, .9);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px; color: #4d463d; line-height: 1.7;
  margin: 0 auto 32px; max-width: 900px;
}
.paint-section__note strong { color: var(--red); font-weight: 700; }
.paint-section__note--front { background: rgba(255, 255, 255, 1); border: 1px solid #f0d49b; }

/* =========================================================
   早見表 COMPARISON
   ========================================================= */
.paint-compare {
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px 24px;
  margin: 0 auto 32px;
  max-width: 1100px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}
.paint-compare__title {
  font-size: 22px; font-weight: 900; color: var(--navy);
  text-align: center; margin: 0 0 6px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.paint-compare__title-en {
  font-family: "Anton", sans-serif;
  font-size: 14px; color: var(--blue);
  letter-spacing: .18em; font-weight: 400;
}
.paint-compare__lead { text-align: center; color: #6b6358; font-size: 14px; margin: 0 0 20px; }
.paint-compare__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.paint-compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 760px;
  font-size: 13px;
}
.paint-compare__table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}
.paint-compare__table thead th:first-child { border-radius: 8px 0 0 0; }
.paint-compare__table thead th:last-child  { border-radius: 0 8px 0 0; }
.paint-compare__table tbody td {
  background: #fdfaf3;
  padding: 12px 12px;
  border-bottom: 1px dashed #e1d9c4;
  vertical-align: middle;
  line-height: 1.6;
}
.paint-compare__table tbody tr:nth-child(even) td { background: #fff; }
.paint-compare__table tbody td strong { color: var(--navy); font-weight: 700; display: block; }
.paint-compare__cat {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 4px;
}
.paint-compare__cat--cyan   { background: var(--blue); }
.paint-compare__cat--navy   { background: var(--navy); }
.paint-compare__cat--orange { background: var(--orange); }
.paint-compare__price {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  color: var(--red);
  font-weight: 900;
  margin-right: 2px;
}
.paint-compare__note { text-align: center; font-size: 11px; color: #6b6358; margin: 12px 0 0; }

/* スマホ：カード型レイアウトに切替 */
@media (max-width: 768px) {
  .paint-compare { padding: 22px 16px 18px; border-radius: 14px; }
  .paint-compare__wrap { overflow: visible; }
  .paint-compare__table { min-width: 0; display: block; }
  .paint-compare__table thead { display: none; }
  .paint-compare__table tbody, .paint-compare__table tr, .paint-compare__table td { display: block; width: 100%; }
  .paint-compare__table tbody tr {
    background: #fdfaf3; border-radius: 10px; margin-bottom: 14px; padding: 14px;
    border: 1px solid #e1d9c4;
  }
  .paint-compare__table tbody tr:nth-child(even) { background: #fdfaf3; }
  .paint-compare__table tbody td {
    background: transparent !important;
    border-bottom: 1px dashed #e1d9c4;
    padding: 8px 0;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px;
    align-items: center;
  }
  .paint-compare__table tbody td:last-child { border-bottom: 0; }
  .paint-compare__table tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--navy);
    font-size: 11px;
  }
}

/* =========================================================
   カテゴリー誘導ナビ
   ========================================================= */
.paint-catnav {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 8px auto 0;
}
@media (min-width: 700px) { .paint-catnav { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .paint-catnav { grid-template-columns: repeat(3, 1fr); } }

.paint-catnav__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 14px;
  background: #fff;
  border-radius: 12px;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .12);
  transition: transform .15s, box-shadow .15s;
  position: relative;
  overflow: hidden;
  border-left: 6px solid var(--blue);
}
.paint-catnav__btn--cyan   { border-left-color: var(--blue); }
.paint-catnav__btn--navy   { border-left-color: var(--navy); }
.paint-catnav__btn--orange { border-left-color: var(--orange); }
.paint-catnav__btn--blue   { border-left-color: var(--blue-dark); }
.paint-catnav__btn--red    { border-left-color: var(--red); }

.paint-catnav__btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, .12);
  opacity: 1;
}
.paint-catnav__icon {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: #efe7d6;
}
.paint-catnav__icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.paint-catnav__label {
  flex: 1;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.paint-catnav__label small {
  font-family: "Anton", sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 400;
  color: #6b6358;
}
.paint-catnav__arrow {
  font-size: 24px;
  color: var(--orange);
  font-weight: 900;
  line-height: 1;
}

/* =========================================================
   STRENGTHS (yellow)
   ========================================================= */
.strengths {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: var(--yellow);
}
/* Scattered decorative pattern (3 positions: top-left, middle-right, bottom-left) */
.strengths::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    url("../img/strengthbg.webp"),
    url("../img/strengthbg.webp"),
    url("../img/strengthbg.webp");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 280px auto, 260px auto, 280px auto;
  background-position:
    20px 40px,                          /* 左上 */
    calc(100% - 20px) 50%,              /* 中段 右 */
    20px calc(100% - 40px);             /* 左下 */
  pointer-events: none;
}
.strengths > .container {
  position: relative;
  z-index: 1;
}

/* Heading area: mascot LEFT (watermark) + title CENTER + businessman RIGHT */
.strengths__heading {
  position: relative;
  min-height: 260px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strengths__mascot {
  position: absolute;
  left: 6%;
  top: 10px;
  width: 200px;
  height: auto;
  opacity: .18;
  filter: saturate(.4);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}
.strengths__title-img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 780px;
  max-height: 260px;
  margin: 0 auto;
}
.strengths__person {
  position: absolute;
  right: 4%;
  bottom: -10px;
  width: 230px;
  z-index: 2;
}

/* Strength cards: alternating layout with big outlined number */
.strength-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.strength {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  min-height: 360px;
  padding: 40px 0;
}
.strength--02 .strength__photo { order: 2; }
.strength--02 .strength__body  { order: 1; }

/* Big outlined number */
.strength::before {
  position: absolute;
  font-family: "Anton", "Impact", "Arial Black", sans-serif;
  font-weight: 900;
  font-size: clamp(140px, 16vw, 240px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 3px rgba(20, 48, 77, .55);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.strength--01::before { content: "1."; top: 20px;  left: 4%;  }
.strength--02::before { content: "2."; top: 20px;  right: 4%; }
.strength--03::before { content: "3."; top: 30px;  left: 4%;  }

/* Photo (polaroid style) */
.strength__photo {
  position: relative;
  z-index: 1;
  max-width: 360px;
  align-self: end;
}
.strength--01 .strength__photo { margin: 0 0 0 80px; }
.strength--02 .strength__photo { margin: 0 60px 0 auto; }
.strength--03 .strength__photo { margin: 0 0 0 80px; }
.strength__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(20, 48, 77, .28);
}

/* Body */
.strength__body {
  position: relative;
  z-index: 2;
  max-width: 460px;
  align-self: start;
}
.strength--02 .strength__body { margin-left: auto; }

/* Title ribbon (colored pill) */
.strength__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  margin: 0 0 -8px 24px;
  padding: 10px 30px;
  border-radius: 6px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 5px 0 rgba(20, 48, 77, .15);
  z-index: 3;
}
.strength__label--pink  { background: #e57298; }
.strength__label--green { background: #8fc94a; }
.strength__label--blue  { background: #4aa3d6; }

.strength__brush {
  position: absolute;
  top: -28px;
  right: -10px;
  width: 56px;
  height: auto;
  transform: rotate(18deg);
  pointer-events: none;
}

/* Graph-paper text box */
.strength__text {
  position: relative;
  padding: 28px 32px;
  background-color: #fffdf3;
  background-image:
    linear-gradient(rgba(20, 48, 77, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 48, 77, .1) 1px, transparent 1px);
  background-size: 18px 18px;
  border-radius: 4px;
  box-shadow: 6px 6px 0 rgba(255, 255, 255, .55);
  z-index: 1;
}
.strength__text p {
  font-size: 14px;
  line-height: 1.95;
  color: #14304d;
  font-weight: 700;
  margin: 0;
}

/* =========================================================
   VOICE
   ========================================================= */
.voice {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Header area: title left + VOICE text & frog mascot right */
.voice__head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}
.voice__head-left { position: relative; z-index: 2; }

.voice__title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 18px;
  color: #14304d;
  padding-bottom: 14px;
  border-bottom: 2px dotted var(--yellow);
}
.voice__title-pre { display: inline-block; font-size: 22px; margin-right: 4px; }
.voice__title-main {
  display: inline-block;
  position: relative;
  font-size: 28px;
}
.voice__title-main::before {
  content: "・ ・ ・ ・ ・";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 16px;
  color: var(--orange);
  letter-spacing: 6px;
  font-weight: 900;
}

.voice__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
  color: #14304d;
  font-weight: 700;
}

.voice__head-right {
  position: relative;
  z-index: 1;
  min-height: 180px;
}
.voice__en {
  position: absolute;
  top: -10px;
  right: 0;
  font-family: "Anton", "Impact", "Arial Black", sans-serif;
  font-size: clamp(80px, 10vw, 150px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: .04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.voice__chara {
  position: absolute;
  right: 20px;
  bottom: -40px;
  width: 160px;
  height: auto;
  z-index: 2;
}

/* Cards */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.voice-card {
  position: relative;
  padding: 26px 28px 28px;
  background: #fff;
  border: 2px solid var(--yellow);
  border-radius: 16px;
  box-shadow: 0 8px 0 rgba(247, 210, 0, .35);
  /* notch corners at bottom */
  clip-path: polygon(
    0 16px,
    16px 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    18px 100%,
    0 calc(100% - 18px)
  );
}
.voice-card__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 22px;
  letter-spacing: 4px;
  text-align: center;
}
.voice-card__star-row { color: var(--orange); }
.voice-card__count {
  color: #14304d;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.voice-card__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.95;
  color: #14304d;
}
.voice-card__name {
  margin: 18px 0 0;
  font-weight: 900;
  font-size: 13px;
  color: #14304d;
}

/* =========================================================
   GOOGLE REVIEW
   ========================================================= */
.google-review { padding: 40px 0 100px; }

.google-review__box {
  position: relative;
  width: min(1080px, 100%);
  margin: 50px auto 0;
  padding: 56px 40px 50px;
  border-radius: 28px;
  background: #2BB4DD;
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 26px rgba(20, 48, 77, .14);
}

/* White speech bubble at the top center */
.google-review__badge {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 60px;
  padding: 8px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 0 rgba(20, 48, 77, .12);
  z-index: 2;
}
.google-review__badge::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
.google-review__badge img {
  width: auto;
  height: 28px;
  display: block;
}

.google-review__title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.google-review__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
}
.google-review__stars {
  color: var(--yellow);
  font-size: 30px;
  letter-spacing: 6px;
  line-height: 1;
}
.google-review__score {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

/* 半分星（黄色の左半分だけ塗りつぶし） */
.google-review__star-half {
  display: inline-block;
  position: relative;
  color: rgba(255, 255, 255, .35);
}
.google-review__star-half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #fff;
}

/* クチコミ件数バッジ */
.google-review__count {
  display: inline-block;
  margin-left: 12px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .google-review__count {
    display: block;
    margin: 8px auto 0;
    width: fit-content;
  }
}

.google-review__text {
  width: min(660px, 100%);
  margin: 0 auto 28px;
  font-size: 14px;
  line-height: 1.95;
  color: #fff;
  font-weight: 700;
}

/* Google Map 埋め込み */
.google-review__map {
  width: 100%;
  max-width: 720px;
  margin: 24px auto 28px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(20, 48, 77, .12);
  background: #eef2f6;
  aspect-ratio: 16 / 9;
}
.google-review__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.google-review__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* White pill button with blue arrow circle */
.google-review__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 320px;
  padding: 14px 28px;
  background: #fff;
  color: #14304d;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 0 rgba(20, 48, 77, .12);
  transition: transform .15s ease, box-shadow .15s ease;
}
.google-review__btn--primary {
  background: #4285F4; /* Google ブルー */
  color: #fff;
  box-shadow: 0 6px 0 rgba(20, 48, 77, .22);
}
.google-review__btn--primary .google-review__btn-arrow {
  background: #fff;
  color: #4285F4;
}
.google-review__btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(20, 48, 77, .12);
}
.google-review__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2BB4DD;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

/* =========================================================
   WORKS (green)
   ========================================================= */
.works {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.works::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.works > * { position: relative; z-index: 1; }

.works .section-heading {
  position: relative;
  min-height: 200px;
  padding-left: 38%;
}
.works .section-heading__en {
  position: absolute;
  top: 0;
  left: -20px;
  color: rgba(255, 255, 255, .2);
  font-size: 88px;
}
.works .section-heading h2 { font-size: 32px; }
.works .section-heading p  { font-size: 14px; max-width: 540px; }
.works__decor {
  position: absolute;
  left: 0;
  top: 20px;
  width: 32%;
  transform: rotate(-4deg);
  filter: drop-shadow(0 10px 16px rgba(20, 48, 77, .2));
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-grid article {
  position: relative;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.work-grid__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 6px 18px;
  border-radius: 8px 0 8px 0;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.work-grid__label--blue   { background: var(--blue); }
.work-grid__label--red    { background: var(--red); }
.work-grid__label--orange { background: var(--orange); }
.work-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}
.work-grid h3 {
  font-size: 20px;
  font-weight: 900;
}
.work-grid > article > p {
  font-size: 13px;
  color: #6b7c8a;
  margin: 2px 0 10px;
}
.work-grid__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.work-grid__tags span {
  padding: 4px 10px;
  background: var(--yellow);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

/* =========================================================
   REASON (blue-dark)
   ========================================================= */
.reason {
  padding: 70px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1f60a8 0%, #163d72 100%);
}
.reason::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}
/* REASON big background text (top-right) */
.reason::after {
  content: "REASON";
  position: absolute;
  top: 30px;
  right: -10px;
  font-family: "Anton", "Impact", "Arial Black", sans-serif;
  font-size: clamp(100px, 14vw, 220px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .18);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.reason > .container {
  position: relative;
  z-index: 3;
}

/* Background decorative elements (paint brushes, drops) - scattered */
.reason__bgdeco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.reason__bgdeco--1 { top: 22%;  left: -30px;   width: 130px; transform: rotate(-12deg); }
.reason__bgdeco--2 { top: 40%;  right: -20px;  width: 140px; transform: rotate(8deg); }
.reason__bgdeco--3 { top: 56%;  left: 30px;    width: 120px; transform: rotate(-15deg); }
.reason__bgdeco--4 { top: 76%;  right: 0px;    width: 130px; transform: rotate(10deg); }
.reason__bgdeco--5 { bottom: 6%; left: 25%;    width: 110px; transform: rotate(-5deg); }

/* Header area: title left + CHOICE! badge right */
.reason__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
}
.reason__title {
  position: relative;
  margin: 0 0 16px;
  padding: 14px 0 14px 20px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
  border-left: 4px solid #fff;
}
.reason__title::before {
  content: "・ ・ ・ ・ ・ ・ ・";
  position: absolute;
  top: -10px;
  left: 28px;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--yellow);
}
.reason__title span {
  position: relative;
  display: inline-block;
  padding: 0 4px;
}
.reason__title span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(247, 210, 0, .35);
  z-index: -1;
}
.reason__desc {
  margin: 0;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.95;
  color: #cfe1ff;
}
.reason__choice {
  width: 130px;
  height: auto;
  transform: rotate(6deg);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .2));
}

/* Card list with dashed connectors */
.reason-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reason-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 30px;
  align-items: center;
}
/* even items: photo LEFT, body RIGHT */
.reason-item--02,
.reason-item--04 {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}
.reason-item--02 .reason-item__photo,
.reason-item--04 .reason-item__photo { order: 1; }
.reason-item--02 .reason-item__body,
.reason-item--04 .reason-item__body { order: 2; }

/* Number badge (paint splatter image) */
.reason-item__num {
  position: absolute;
  width: 100px;
  height: auto;
  z-index: 4;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .25));
}
.reason-item--01 .reason-item__num { top: -10px; left: -10px; }
.reason-item--02 .reason-item__num { top: -10px; right: 38%; }
.reason-item--03 .reason-item__num { top: -10px; left: -10px; }
.reason-item--04 .reason-item__num { top: -10px; right: 38%; }
.reason-item--05 .reason-item__num { top: -10px; left: -10px; }

/* Body */
.reason-item__body {
  position: relative;
  z-index: 2;
}
.reason-item__title {
  margin: 0 0 18px;
  padding-top: 50px;
  padding-left: 20px;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.5;
  font-weight: 900;
  color: #fff;
}

/* Description box: semi-transparent blue background with dashed border */
.reason-item__text {
  position: relative;
  padding: 22px 26px;
  background: rgba(255, 255, 255, .08);
  border: 1px dashed rgba(255, 255, 255, .45);
  border-radius: 10px;
  backdrop-filter: blur(4px);
}
.reason-item__text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.95;
  color: #fff;
}

/* Photo: BLOB / organic shape (NO border) */
.reason-item__photo {
  position: relative;
  z-index: 1;
  justify-self: center;
}
.reason-item__photo img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 0;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .35);
  display: block;
}
/* Different organic shapes per card */
.reason-item--01 .reason-item__photo img { border-radius: 58% 42% 60% 40% / 45% 55% 45% 55%; }
.reason-item--02 .reason-item__photo img { border-radius: 48% 52% 38% 62% / 55% 45% 55% 45%; }
.reason-item--03 .reason-item__photo img { border-radius: 55% 45% 60% 40% / 60% 40% 60% 40%; }
.reason-item--04 .reason-item__photo img { border-radius: 42% 58% 45% 55% / 55% 45% 60% 40%; }
.reason-item--05 .reason-item__photo img { border-radius: 60% 40% 55% 45% / 50% 50% 55% 45%; }

/* Curved dashed connector lines (SVG) */
.reason-item__connector {
  position: absolute;
  z-index: 1;
  width: 240px;
  height: 90px;
  pointer-events: none;
}
.reason-item__connector path {
  fill: none;
  stroke: rgba(255, 255, 255, .55);
  stroke-width: 2;
  stroke-dasharray: 6 8;
  stroke-linecap: round;
}
.reason-item--01 .reason-item__connector { bottom: -50px; left: 50%; }
.reason-item--02 .reason-item__connector { bottom: -50px; right: 50%; transform: scaleX(-1); }
.reason-item--03 .reason-item__connector { bottom: -50px; left: 50%; }
.reason-item--04 .reason-item__connector { bottom: -50px; right: 50%; transform: scaleX(-1); }
.reason-item--05 .reason-item__connector { display: none; }

/* =========================================================
   BLOG
   ＊ `.blog` 単独セレクタは WordPress が body に付ける
   　 class="blog"（投稿一覧時）と衝突するため、
   　 必ず section 要素にスコープして適用する。
   ========================================================= */
section.blog {
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Header: BLOG title image LEFT + heading + desc RIGHT */
.blog__head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 30px;
  margin-bottom: 48px;
}
.blog__head-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  justify-self: start;
}
.blog__head-right { position: relative; }
.blog__title {
  position: relative;
  margin: 0 0 14px;
  padding-top: 18px;
  font-weight: 900;
  line-height: 1.5;
  color: #14304d;
}
.blog__title::before {
  content: "・ ・ ・ ・ ・ ・";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--blue);
}
.blog__title-pre {
  display: inline-block;
  font-size: 18px;
  margin-right: 6px;
}
.blog__title-main {
  display: inline-block;
  font-size: 26px;
  padding-bottom: 6px;
  border-bottom: 2px dotted var(--blue);
}
.blog__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
  color: #14304d;
  font-weight: 700;
}

/* Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #d6ecf6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(20, 48, 77, .1);
  transition: transform .25s ease;
}
.blog-card:hover { transform: translateY(-4px); }

.blog-card__thumb {
  background: linear-gradient(180deg, #b8dfee 0%, #9ed1e6 100%);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card__thumb img {
  max-width: 60%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: .55;
}

.blog-card__body {
  padding: 16px 20px 22px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
}
.blog-card__date {
  font-size: 13px;
  font-weight: 700;
  color: #14304d;
}
.blog-card__cat {
  padding: 3px 12px;
  border-radius: 4px;
  background: var(--blue-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.blog-card__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
  color: #14304d;
}

/* "もっと見る" button */
.blog__more {
  margin: 40px 0 0;
  text-align: center;
}
.blog__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 280px;
  padding: 14px 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 0 rgba(20, 48, 77, .15);
  transition: transform .15s ease, box-shadow .15s ease;
}
.blog__more-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(20, 48, 77, .15);
}
.blog__more-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  font-size: 15px;
  line-height: 1;
}

/* =========================================================
   AREA (purple)
   ========================================================= */
.area {
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #7e7ab5 0%, #6460a3 100%);
}
.area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}
/* AREA big text + pin in top-right corner */
.area::after {
  content: "AREA";
  position: absolute;
  top: 60px;
  right: 6%;
  font-family: "Anton", "Impact", "Arial Black", sans-serif;
  font-size: clamp(80px, 9vw, 150px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .22);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.area > .container {
  position: relative;
  z-index: 3;
}

/* Header area: title + description (left only) */
.area__head {
  margin-bottom: 48px;
  position: relative;
}
.area__title {
  position: relative;
  margin: 0 0 16px;
  padding: 14px 0 14px 24px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
  border-left: 4px solid #fff;
  display: inline-block;
  max-width: 80%;
}
.area__title::before {
  content: "・ ・ ・ ・ ・ ・";
  position: absolute;
  top: -8px;
  left: 32px;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--yellow);
}
.area__desc {
  margin: 0;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.95;
  color: #fff;
  max-width: 640px;
}

/* Pin icon next to AREA text (visual decoration via SVG) */
.area::before,
.area::after { z-index: 1; }

/* Cards */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.area-card {
  background: transparent;
  color: #fff;
  padding: 0;
  box-shadow: none;
}
.area-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-card__mark {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--red);
  flex-shrink: 0;
}
.area-card__desc {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.85;
  color: #fff;
}
.area-card__map {
  position: relative;
  padding: 18px;
  border-radius: 6px;
  background: rgba(20, 20, 60, .35);
  box-shadow: 4px 4px 0 rgba(20, 20, 60, .35);
}
.area-card__map img {
  width: 100%;
  display: block;
}

.area__note {
  margin-top: 36px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  padding: 12px;
  border-radius: 8px;
}

/* =========================================================
   SHOP
   ========================================================= */
.shop { padding: 80px 0 90px; position: relative; }

/* Header: SHOP image LEFT + title RIGHT */
.shop__head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
.shop__head-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  justify-self: start;
}
.shop__title {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  color: #14304d;
  padding-bottom: 8px;
  border-bottom: 2px solid #14304d;
  display: inline-block;
}
.shop__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
  color: #14304d;
}

/* Cards */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* =========================================================
   単独店舗のレイアウト（PC：写真左／テキスト右 のワンカラム）
   ========================================================= */
.shop-grid--single {
  display: block;
  grid-template-columns: none;
  max-width: none;
  margin: 0 auto;
}
.shop-card--single {
  display: flex;
  flex-direction: column;
}
.shop-card--single .shop-card__thumb {
  aspect-ratio: 16 / 10;
}
.shop-card--single .shop-card__body {
  flex: 1;
}
.shop-card__cta {
  margin: 18px 0 0;
}

.shop-introductions {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

.shop-intro {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 48, 77, .11);
}

.shop-intro__media {
  min-height: 100%;
  overflow: hidden;
}

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

.shop-intro--manager .shop-intro__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px 24px 0;
  background: linear-gradient(145deg, #e7f7fb, #fff4dc);
}

.shop-intro--manager .shop-intro__media img {
  width: min(280px, 100%);
  height: auto;
  object-fit: contain;
}

.shop-intro--showroom {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
}

.shop-intro--showroom .shop-intro__media { order: 2; }

.shop-intro__body {
  padding: clamp(26px, 4vw, 44px);
}

.shop-intro__en {
  display: block;
  margin-bottom: 4px;
  color: #2f86c8;
  font-family: "Anton", "Yu Gothic", sans-serif;
  font-size: 15px;
  letter-spacing: .14em;
}

.shop-intro__title {
  margin: 0 0 18px;
  padding-bottom: 9px;
  border-bottom: 2px solid #14304d;
  color: #14304d;
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.5;
}

.shop-intro__body p {
  margin: 0 0 1em;
  color: #34435d;
  font-size: 14px;
  line-height: 1.95;
}

.shop-intro__body p:last-child { margin-bottom: 0; }

@media (max-width: 899px) {
  .shop-introductions { gap: 22px; margin-top: 32px; }
  .shop-intro,
  .shop-intro--showroom { grid-template-columns: 1fr; }
  .shop-intro--showroom .shop-intro__media { order: 0; }
  .shop-intro__media { min-height: 0; aspect-ratio: 16 / 10; }
  .shop-intro--manager .shop-intro__media { aspect-ratio: auto; }
  .shop-intro--manager .shop-intro__media img { max-height: 300px; }
  .shop-intro__body { padding: 26px 22px 30px; }
}

@media (min-width: 900px) {
  .shop-card--single {
    flex-direction: row;
    align-items: stretch;
    min-height: 360px;
  }
  .shop-card--single .shop-card__thumb {
    flex: 0 0 45%;
    aspect-ratio: auto;
    min-height: 100%;
  }
  .shop-card--single .shop-card__thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .shop-card--single .shop-card__body {
    flex: 1 1 55%;
    padding: 32px 40px;
  }
}

/* =========================================================
   AREA 単独レイアウト（PC：マップ左／テキスト右）
   ========================================================= */
.area-grid--single {
  display: block;
  grid-template-columns: none;
  max-width: none;
  margin: 0 auto;
}
.area-card--single {
  background: rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.area-card--single .area-card__text { text-align: left; }
@media (min-width: 900px) {
  .area-card--single {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 32px 40px;
  }
  .area-card--single .area-card__map {
    flex: 0 0 55%;
  }
  .area-card--single .area-card__map img {
    width: 100%;
    height: auto;
    display: block;
  }
  .area-card--single .area-card__text {
    flex: 1 1 45%;
  }
  .area-card--single .area-card__title {
    font-size: 22px;
    margin: 0 0 14px;
  }
  .area-card--single .area-card__desc {
    font-size: 14px;
    line-height: 1.95;
    margin: 0;
  }
}

.shop-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(20, 48, 77, .12);
}

/* Thumbnail with badge tab */
.shop-card__thumb {
  position: relative;
  aspect-ratio: 16 / 8;
  background: #cdc8e3;
  overflow: hidden;
}
.shop-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-card__badge {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 8px 24px;
  background: #4c447f;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  border-radius: 0 0 6px 6px;
  z-index: 2;
}

/* Body */
.shop-card__body {
  padding: 22px 28px 26px;
}
.shop-card__name {
  position: relative;
  margin: 0 0 12px;
  padding: 4px 0 8px 16px;
  font-size: 20px;
  font-weight: 900;
  color: #14304d;
  border-bottom: 1px solid #cdc8e3;
}
.shop-card__mark {
  position: absolute;
  top: 6px;
  left: 0;
  width: 4px;
  height: 22px;
  border-radius: 2px;
  background: var(--blue-dark);
}
.shop-card__desc {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.85;
  color: #14304d;
}

/* Info table */
.shop-card__info {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 6px 12px;
  padding: 16px 18px;
  border-radius: 6px;
  background: #4c447f;
  color: #fff;
  font-size: 12px;
}
.shop-card__info dt {
  margin: 0;
  padding: 3px 0;
  background: transparent;
  color: var(--yellow);
  text-align: left;
  font-weight: 700;
  border-bottom: 1px dotted rgba(255, 255, 255, .4);
}
.shop-card__info dd {
  margin: 0;
  padding: 3px 0;
  line-height: 1.6;
  border-bottom: 1px dotted rgba(255, 255, 255, .4);
}
.shop-card__info dt:last-of-type,
.shop-card__info dd:last-of-type {
  border-bottom: none;
}

/* =========================================================
   FAQ (red)
   ========================================================= */
.faq {
  padding: 100px 0;
  background: var(--red);
}
.faq .section-heading__title { max-height: 180px; }

.faq-list {
  padding: 30px 50px;
  background: #fff;
  border-radius: 10px;
}
.faq-item {
  border-bottom: 1px solid #e5e5e5;
}
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  padding: 20px 50px 20px 0;
  position: relative;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  display: inline-block;
  margin-right: 16px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-family: "Anton", sans-serif;
  font-size: 18px;
}
.faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 28px;
  font-weight: 700;
}
.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  position: relative;
  margin: 0 0 18px;
  padding: 12px 0 12px 48px;
  font-size: 14px;
  color: #283e55;
  line-height: 1.85;
}
.faq-item p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 10px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-family: "Anton", sans-serif;
  font-size: 18px;
  font-weight: 900;
}

/* =========================================================
   EVENTS (cream)
   ========================================================= */
.events {
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
  background-color: #fff1df;
}
.events::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243, 192, 116, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 192, 116, .18) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Top garland decoration (image, full width) */
.events__deco-top {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* Bottom confetti/poppers decoration (image, full width) */
.events__deco-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.events__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Title image */
.events__title-img {
  display: block;
  width: auto;
  max-width: 560px;
  max-height: 180px;
  margin: 0 auto 30px;
  height: auto;
}

.events__lead-top {
  margin: 0 auto 36px;
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  color: #14304d;
}

/* Topic balloons */
.events__balloons {
  width: min(440px, 100%);
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
}
.events__balloons li {
  position: relative;
  padding: 12px 50px;
  border: 2px solid var(--orange);
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  font-weight: 900;
  color: #14304d;
}
.events__balloons li::before,
.events__balloons li::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Georgia", "Hiragino Mincho ProN", serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.events__balloons li::before {
  content: "“";
  left: 16px;
}
.events__balloons li::after {
  content: "”";
  right: 16px;
}

.events__lead {
  margin: 16px 0 28px;
  font-size: 14px;
  font-weight: 700;
  color: #14304d;
}

/* Red pill button */
.events__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 280px;
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 0 rgba(20, 48, 77, .15);
  transition: transform .15s ease, box-shadow .15s ease;
}
.events__btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(20, 48, 77, .15);
}
.events__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  font-size: 14px;
  line-height: 1;
}

.events__chara {
  position: absolute;
  right: 60px;
  bottom: -60px;
  width: 160px;
  z-index: 3;
}

/* =========================================================
   LEAK (navy)
   ========================================================= */
.leak {
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(33, 74, 114, .78), rgba(15, 33, 82, .9)),
    url("../img/rainbg.png") center bottom / cover no-repeat,
    var(--navy);
  color: #fff;
}

/* Title image (RAIN LEAK + 雨漏り・水漏れが気になる方へ) */
.leak__title-img {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: 0 0 24px;
}

.leak__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Top row: photo LEFT + heading/text RIGHT */
.leak__top,
.leak__bottom {
  display: grid;
  align-items: center;
  gap: 30px;
}
.leak__top { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.leak__bottom { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

.leak__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 2;
  color: #fff;
}
.leak__text:last-child { margin-bottom: 0; }

/* Checklist */
.leak__checks {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.leak__checks li {
  position: relative;
  margin-bottom: 10px;
  padding: 14px 20px 14px 56px;
  background: rgba(255, 255, 255, .92);
  color: #14304d;
  font-size: 15px;
  font-weight: 900;
  border-radius: 4px;
}
.leak__check-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
}
.leak__check-icon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 1px;
  width: 8px;
  height: 14px;
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(45deg);
}

.leak__note {
  margin: 16px 0 24px;
  font-size: 14px;
  line-height: 2;
  color: #fff;
}

/* Red CTA button */
.leak__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 320px;
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 0 rgba(0, 0, 0, .25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.leak__btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(0, 0, 0, .25);
}
.leak__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  font-size: 14px;
  line-height: 1;
}

/* Photos with rough/torn edges (clip-path) */
.leak__photo {
  position: relative;
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .4));
}
.leak__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  /* Ragged torn-paper circle shape using clip-path */
  clip-path: polygon(
    50% 0%,
    61% 2%, 71% 0%, 80% 5%, 89% 4%, 95% 12%, 99% 22%, 97% 32%,
    100% 42%, 98% 51%, 100% 61%, 96% 71%, 99% 80%, 91% 87%,
    87% 95%, 78% 96%, 70% 100%, 61% 96%, 50% 99%,
    40% 96%, 30% 99%, 22% 95%, 12% 96%, 8% 87%, 1% 80%,
    4% 71%, 0% 61%, 2% 51%, 0% 42%, 3% 32%, 1% 22%, 6% 12%,
    11% 4%, 20% 5%, 29% 0%, 39% 2%
  );
}
.leak__photo--1 { justify-self: start; margin-left: -40px; }
.leak__photo--2 { justify-self: end;   margin-right: -40px; }

@media (max-width: 900px) {
  .leak__photo--1,
  .leak__photo--2 { margin: 0 auto; max-width: 280px; justify-self: center; }
}

/* =========================================================
   FINAL CTA (yellow)
   ========================================================= */
.final-cta {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  text-align: center;
}
.final-cta__side {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.final-cta__side--left  { left: 0; }
.final-cta__side--right { right: 0; }
.final-cta > .container { position: relative; z-index: 1; }
.final-cta__en {
  width: auto;
  max-height: 100px;
  margin: 0 auto 14px;
}
.final-cta__title {
  width: auto;
  max-height: 200px;
  margin: 0 auto 24px;
}
.final-cta p {
  width: min(680px, 100%);
  margin: 0 auto 30px;
  font-size: 15px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  padding: 70px 0 24px;
  background: #f4f4f4;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 320px 1fr 180px;
  gap: 48px;
  align-items: start;
}
.site-footer__logo {
  width: 200px;
  margin-bottom: 16px;
}
.site-footer__name { font-weight: 900; font-size: 18px; margin-bottom: 8px; }
.site-footer__addr { font-size: 13px; line-height: 1.9; color: #555; margin-bottom: 14px; }
.site-footer__info {
  display: grid;
  grid-template-columns: 80px 1fr;
  font-size: 13px;
  line-height: 1.9;
  gap: 0 8px;
}
.site-footer__info dt { color: #6b7c8a; }
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.site-footer__col-title {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 15px;
}
.site-footer__nav ul li {
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px dashed #ddd;
}
.site-footer__chara { width: 160px; }

.site-footer__makers {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #ddd;
}
.site-footer__makers p:last-child {
  font-size: 13px;
  line-height: 2;
  color: #6b7c8a;
}

.copyright {
  width: min(var(--container), calc(100% - 60px));
  margin: 40px auto 0;
  padding-top: 18px;
  border-top: 1px solid #e5e5e5;
  color: #888;
  font-size: 12px;
  text-align: center;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  body { font-size: 15px; }
  .container { width: min(100% - 36px, 780px); }

  .site-header__inner {
    height: 70px;
    padding-left: 14px;
    gap: 12px;
  }
  .site-header__logo img { width: 140px; }
  .site-header__tagline { display: none; }
  .menu-button { width: 70px; height: 70px; }

  .drawer__panel { width: 100%; padding: 36px 22px 0; }
  .drawer__body, .drawer__cta { grid-template-columns: 1fr; }
  .drawer__banners { grid-template-columns: 1fr 1fr; }
  .drawer__cta, .drawer__tel, .drawer__hours {
    margin-left: -22px;
    margin-right: -22px;
  }
  .drawer__cta { padding: 18px 22px; grid-template-columns: 1fr 1fr; gap: 10px; }

  .button { min-height: 56px; padding: 10px 22px; font-size: 14px; }
  .button-row { gap: 12px; }

  .hero {
    min-height: calc(100vh - 70px);
  }
  .hero__media {
    min-height: 540px;
    background-size: 1100px auto;
  }
  .hero__area { top: 20px; width: 200px; }
  .hero__title-img { top: 80px; width: calc(100% - 28px); max-width: 460px; }
  .hero__badges { bottom: 120px; gap: 6px; }
  .hero__badges img { width: 88px; }
  .hero__google { left: 50%; bottom: 240px; width: 150px; transform: translateX(-50%); }
  /* バッジと重ならないようキャラクターを上にずらす */
  .hero__chara { right: 8px; bottom: 250px; width: 110px; }
  .hero-slider__track > li { flex-basis: 60vw; padding: 0 6px; }
  .hero-slider { padding: 10px 0 14px; }
  .hero-slider__button {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
  .hero-slider__button--prev { left: 8px; }
  .hero-slider__button--next { right: 8px; }

  .about, .contact-strip, .news, .blog, .shop, .menu, .strengths, .voice, .works, .reason, .area, .faq, .events, .leak, .final-cta { padding: 60px 0 70px; }

  .about__grid,
  .section-heading--split,
  .service-grid, .voice-grid, .work-grid, .blog-grid, .shop-grid, .area-grid, .leak__grid, .site-footer__grid {
    grid-template-columns: 1fr !important;
  }
  .section-heading--split { gap: 16px; }
  .section-heading__chara { display: none; }
  .section-heading h2 { font-size: 22px; }
  /* 通常の見出し画像は110pxに収める（タイトル用） */
  .section-heading__title { max-height: 110px; }
  /* MENU の見出しは横長イラスト入りなので個別にサイズ拡大（max-height制限を解除） */
  .section-heading--menu .section-heading__title { max-height: none !important; }

  .about { padding: 60px 0 70px; }
  .about__lead { padding: 32px 28px 28px; font-size: 15px; }
  .about__hello { width: 180px; }
  .about__bubble { margin-right: 0; padding: 22px 22px; font-size: 14px; }
  .about__bubble::after { display: none; }
  .about__manager {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 18px;
  }
  .about__manager img { width: 140px; }
  .about__name { text-align: center; }

  .contact-strip { padding: 50px 0 60px; }
  .contact-strip__lead { max-height: 44px; margin-bottom: 24px; }
  .button--cta { min-width: 0; width: 100%; padding: 14px 22px; font-size: 16px; min-height: 70px; }
  .button__icon { width: 22px; height: 22px; }

  .news-list { padding: 14px 18px; }
  .news-list__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
  .news__tab { min-width: 0; flex: 1 1 28%; padding: 8px 12px; font-size: 13px; }

  .section-heading--menu { grid-template-columns: 1fr; gap: 16px; }
  /* 見出し画像はスマホで縦に潰れて見えるため、幅基準で大きく表示 */
  .section-heading--menu .section-heading__title {
    justify-self: center;
    max-height: none;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
  }
  .section-heading--menu p { font-size: 14px; }

  .menu-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
  .menu-card,
  .menu-card--large { grid-column: span 1; }
  .menu-card__title { font-size: 16px; padding-right: 40px; }
  .menu-card--large .menu-card__title { font-size: 17px; padding-right: 44px; }
  .menu-card__arrow { width: 28px; height: 28px; font-size: 18px; }
  .menu-card--large .menu-card__arrow { width: 30px; height: 30px; font-size: 20px; }
  .menu-card__text { font-size: 13px; }

  .strengths { padding: 50px 0 60px; }
  .strengths::before {
    background-size: 160px auto, 140px auto, 160px auto;
    background-position: 10px 20px, calc(100% - 10px) 50%, 10px calc(100% - 20px);
  }
  /* スマホでは見出し画像を主役にして大きく表示 */
  .strengths__heading {
    min-height: 0;
    margin-bottom: 32px;
    padding: 12px 0 8px;
    position: relative;
  }
  /* 左のマスコット（ウォーターマーク）は非表示 */
  .strengths__mascot { display: none; }
  /* 右の営業マンはコンパクトに、右下隅に */
  .strengths__person {
    width: 80px;
    bottom: -6px;
    right: 0;
    z-index: 2;
  }
  /* タイトル画像を大きく表示（max-height 制限解除、ほぼ全幅） */
  .strengths__title-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    max-height: none;
    height: auto;
    margin: 0 auto;
    /* 右の営業マン分だけ右側を空ける */
    padding-right: 70px;
    box-sizing: border-box;
  }

  .strength,
  .strength--02 {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 24px 0;
  }
  .strength--02 .strength__photo { order: 1; }
  .strength--02 .strength__body  { order: 2; }
  .strength__photo,
  .strength--01 .strength__photo,
  .strength--02 .strength__photo,
  .strength--03 .strength__photo {
    margin: 0 auto;
    max-width: 320px;
  }
  .strength__body { margin: 0 auto !important; max-width: 100%; }
  .strength::before { font-size: 100px; opacity: .8; }
  .strength--01::before, .strength--03::before { left: 0; }
  .strength--02::before { right: 0; }
  .strength__label { font-size: 18px; min-width: 0; padding: 8px 22px; margin-left: 12px; }
  .strength__brush { width: 42px; top: -22px; right: -8px; }
  .strength__text { padding: 22px 22px; }
  .strength__text p { font-size: 13px; }

  .voice { padding: 50px 0 60px; }
  .voice__head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 36px;
  }
  .voice__title { font-size: 20px; padding-bottom: 12px; }
  .voice__title-pre { font-size: 16px; }
  .voice__title-main { font-size: 22px; }
  /* スマホでは VOICE 文字とキャラクターを横並びで配置（被り防止） */
  .voice__head-right {
    position: relative;
    z-index: 1;
    min-height: 0;
    padding: 8px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
  }
  .voice__en {
    position: static;
    display: block;
    font-size: 56px;
    line-height: 1;
    text-align: left;
    flex-shrink: 0;
  }
  .voice__chara {
    position: static;
    display: block;
    width: 90px;
    height: auto;
    flex-shrink: 0;
    margin-bottom: -10px;
  }

  .google-review { padding: 30px 0 60px; }
  .google-review__box { padding: 44px 22px 36px; border-radius: 22px; }
  .google-review__badge { min-width: 110px; height: 50px; padding: 6px 18px; }
  .google-review__badge img { height: 22px; }
  .google-review__title { font-size: 17px; }
  .google-review__stars { font-size: 22px; letter-spacing: 4px; }
  .google-review__score { font-size: 15px; }
  .google-review__text { font-size: 13px; }
  .google-review__btn { min-width: 0; width: 100%; padding: 13px 20px; font-size: 14px; }

  /* BLOG responsive */
  .blog { padding: 50px 0 60px; }
  .blog__head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
  .blog__head-img { max-width: 200px; justify-self: center; }
  .blog__title-pre { font-size: 14px; }
  .blog__title-main { font-size: 20px; }
  .blog__desc { font-size: 13px; }
  .blog-grid { gap: 16px; }
  .blog-card__title { font-size: 13px; }
  .blog__more-btn { min-width: 0; width: 100%; }

  /* AREA responsive */
  .area { padding: 50px 0 60px; }
  .area::after { font-size: 60px; top: 30px; right: 4%; }
  .area__head { margin-bottom: 30px; }
  .area__title { font-size: 18px; padding-left: 14px; max-width: 100%; }
  .area__title::before { left: 18px; }
  .area__desc { padding-left: 18px; font-size: 13px; }
  .area-grid { gap: 20px; }
  .area-card__title { font-size: 16px; }
  .area-card__map { padding: 12px; }

  /* REASON responsive */
  .reason { padding: 50px 0 70px; }
  .reason__head { grid-template-columns: 1fr; gap: 14px; }
  .reason__choice { width: 80px; justify-self: end; }
  .reason__title { font-size: 19px; padding-left: 14px; }
  .reason__desc { padding-left: 14px; font-size: 13px; }
  .reason__bgdeco { width: 70px !important; }

  .reason-list { gap: 36px; }
  .reason-item,
  .reason-item--02,
  .reason-item--04 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reason-item--02 .reason-item__photo,
  .reason-item--04 .reason-item__photo { order: 0; }
  .reason-item--02 .reason-item__body,
  .reason-item--04 .reason-item__body { order: 0; }
  .reason-item__num,
  .reason-item--01 .reason-item__num,
  .reason-item--02 .reason-item__num,
  .reason-item--03 .reason-item__num,
  .reason-item--04 .reason-item__num,
  .reason-item--05 .reason-item__num {
    position: static;
    width: 70px;
    margin-bottom: 4px;
  }
  .reason-item__title { padding-top: 0; padding-left: 4px; font-size: 18px; }
  .reason-item__text { padding: 16px 18px; }
  .reason-item__text p { font-size: 13px; }
  .reason-item__photo img { max-width: 280px; }
  .reason-item::after { display: none; }

  .works .section-heading {
    min-height: 0;
    padding-left: 0;
    text-align: center;
  }
  .works .section-heading__en { position: static; font-size: 56px; }
  .works .section-heading h2 { font-size: 22px; }
  .works__decor { position: static; width: 60%; margin: 24px auto 0; transform: none; }

  .reason-item,
  .reason-item--reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .reason-item--reverse .reason-item__text { order: 0; }
  .reason-item--reverse .reason-item__photo { order: 0; }
  .reason-item__num { width: 72px; top: -28px; left: 8px; }
  .reason-item--reverse .reason-item__num { right: 8px; }
  .reason__choice { width: 70px; right: 6px; }
  .reason__bgdeco { width: 80px !important; }
  .reason-item__text h3 { padding-top: 24px; }

  .blog-grid h3 { font-size: 14px; }

  .area__note { font-size: 12px; }

  .shop { padding: 50px 0 60px; }
  .shop__head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 30px; }
  .shop__head-img { max-width: 220px; justify-self: center; }
  .shop__title { font-size: 18px; }
  .shop__desc { font-size: 13px; }
  .shop-grid { gap: 20px; grid-template-columns: 1fr; }
  .shop-card__body { padding: 18px 18px 22px; }
  .shop-card__name { font-size: 18px; }
  .shop-card__info { grid-template-columns: 50px 1fr; padding: 12px 14px; font-size: 11px; }

  .faq-list { padding: 18px 22px; }
  .faq-item summary { font-size: 15px; padding: 16px 36px 16px 0; }
  .faq-item summary::before { width: 26px; height: 26px; line-height: 26px; font-size: 15px; margin-right: 10px; }
  .faq-item p { padding-left: 36px; font-size: 13px; }
  .faq-item p::before { width: 26px; height: 26px; line-height: 26px; font-size: 15px; }

  .events { padding: 40px 0 60px; }
  .events__deco-top { top: 6px; }
  .events__deco-bottom { bottom: 0; }
  .events__title-img { max-height: 120px; margin: 30px auto 24px; }
  .events__lead-top { font-size: 13px; margin-bottom: 24px; }
  .events__balloons { width: 92%; }
  .events__balloons li { padding: 10px 38px; font-size: 14px; }
  .events__balloons li::before,
  .events__balloons li::after { font-size: 24px; }
  .events__balloons li::before { left: 10px; }
  .events__balloons li::after { right: 10px; }
  .events__lead { font-size: 13px; margin-bottom: 22px; }
  .events__btn { min-width: 0; width: 90%; padding: 13px 22px; font-size: 14px; }
  .events__chara { width: 90px; right: 4px; bottom: -20px; }

  .leak { padding: 50px 0 60px; }
  .leak__inner { gap: 30px; }
  .leak__top,
  .leak__bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .leak__title-img { max-width: 100%; margin-bottom: 16px; }
  .leak__text { font-size: 14px; }
  .leak__checks li { font-size: 13px; padding: 12px 14px 12px 46px; }
  .leak__check-icon { left: 14px; width: 18px; height: 18px; }
  .leak__btn { min-width: 0; width: 100%; padding: 13px 18px; font-size: 14px; }

  .final-cta__side { width: 50px; }
  .final-cta__en  { max-height: 60px; }
  .final-cta__title { max-height: 130px; }
  .final-cta p { font-size: 14px; }

  .site-footer__nav { grid-template-columns: 1fr; gap: 18px; }
  .site-footer__chara { width: 110px; margin: 0 auto; }
}

@media (max-width: 540px) {
  .menu-grid { grid-template-columns: 1fr !important; }
  .menu-card,
  .menu-card--large { grid-column: span 1; }

  /* =========================================================
     スマホでは絶対配置をやめて、上から順に縦並びに切り替え
     順序：地域密着 → タイトル → 3バッジ → Googleクチコミ
     ========================================================= */
  .hero { min-height: 0; }
  .hero__media {
    min-height: 0;
    background-size: cover;
    background-position: center;
    padding: 18px 0 26px;
  }
  .hero__content {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    padding: 0 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-sizing: border-box;
  }
  .hero__area,
  .hero__title-img,
  .hero__badges,
  .hero__google-badge {
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 0;
  }
  .hero__area { width: 170px; }
  .hero__title-img { width: 100%; max-width: 420px; }
  .hero__badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
    flex-wrap: nowrap;
  }
  .hero__badges img { width: clamp(82px, 28vw, 112px); }
  /* Google クチコミカードをセンター寄せ・幅広に */
  .hero__google-badge {
    width: 100%;
    max-width: 320px;
    padding: 16px 16px 14px;
  }
  .hero__google-badge-stars { font-size: 26px; }
  .hero__google-badge-rating strong { font-size: 40px; }
  .hero__google-badge-rating small { font-size: 14px; }
  /* スマホではキャラクターは非表示（可読性優先） */
  .hero__chara { display: none; }
  .hero-slider__track > li { flex-basis: 70vw; }
  .hero-slider__button {
    width: 34px;
    height: 34px;
    font-size: 26px;
  }
  .hero-slider__button--prev { left: 6px; }
  .hero-slider__button--next { right: 6px; }
  .voice-grid article { padding: 22px 20px; }
}
