/*
Theme Name:BUZZ新潟 洗車特化LP
Author: adhook
Version: 1.0
*/
/* ============================================
   BUZZ新潟 洗車特化LP（別パターン0601準拠）
   カラー定義：
   --green:  メイン緑（バンド・見出し・価格）
   --mint:   ACCESSセクション背景
   --pink:   アクセント（3 / 予約制）
   --line:   LINEブランド緑
   ============================================ */
:root {
  --green: #59d084;
  --green-dark: #3cb869;
  --mint: #a4eebf;
  --pink: #e63178;
  --line: #06c755;
  --ink: #1a1a1a;
  --radius-card: 8px;
  --font-en: "Montserrat", sans-serif;
  --font-ja: "Noto Sans JP", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ja);
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 640 / 760;
  max-height: 82vh;
  overflow: hidden;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__logo {
  position: absolute;
  top: 14px;
  left: 14px;
}
.hero__logo img {
  width: 104px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
}

/* ---------- キャッチコピー（緑バンド） ---------- */
.catch {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 40px 20px 48px;
}
.catch__title {
  position: relative;
  display: inline-block;
  font-size: clamp(34px, 9vw, 56px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .04em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .12);
}
.catch__num {
  font-family: var(--font-en);
  font-size: 1.25em;
  vertical-align: -0.06em;
  padding: 0 .04em;
}
.catch__sub { font-size: .78em; }

/* 泡の装飾 */
.bubble-deco {
  position: absolute;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  opacity: .9;
}
.bubble-deco::before,
.bubble-deco::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}
.bubble-deco::before { width: 12px; height: 12px; top: -10px; left: 16px; }
.bubble-deco::after { width: 7px; height: 7px; top: 6px; left: -10px; }
.bubble-deco--left { top: -14px; left: -26px; }
.bubble-deco--right { bottom: 2px; right: -26px; }

.catch__lead {
  margin-top: 18px;
  font-size: clamp(13px, 3.6vw, 16px);
  font-weight: 500;
}

/* 実績カード */
.stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.stats__card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-card);
  padding: 14px 22px;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.stats__label { font-size: 12px; font-weight: 700; }
.stats__value {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}
.stats__value--green { color: var(--green-dark); }
.stats__unit {
  font-family: var(--font-ja);
  font-size: 13px;
  font-weight: 700;
}
.stats__star { color: #ffc400; }

/* ---------- 実績写真 ---------- */
.photos { padding: 0; }
.photos__grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.photos__grid li { aspect-ratio: 4 / 3; overflow: hidden; }
.photos__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 特徴（円形バッジ） ---------- */
.features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 56px 20px;
  flex-wrap: wrap;
}
.features__circle {
  width: 230px;
  height: 230px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5;
  background: #fff;
}
.accent-pink { color: var(--pink); }
.features__circle .accent-pink { font-size: 1.15em; }

/* ---------- セクション見出し ---------- */
.section-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .18em;
  padding: 0 20px;
  max-width: 1080px;
  margin: 0 auto 26px;
}
.blob {
  width: 30px;
  height: 24px;
  background: var(--green);
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
  position: relative;
  flex-shrink: 0;
}
.blob::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  top: -6px;
  right: -5px;
}
.blob--white { background: #fff; }
.blob--white::after { background: #fff; }

/* ---------- メニュー ---------- */
.menu { padding: 30px 0 70px; }
.menu__list {
  display: grid;
  gap: 28px;
  padding: 0 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.menu__card {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: #fff;
  padding: 26px 22px 30px;
}
/* カード右上の泡 */
.menu__card::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 14px;
  width: 26px;
  height: 26px;
  background: var(--green);
  border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%;
  box-shadow: 14px 10px 0 -8px var(--green), -6px 16px 0 -10px var(--green);
}
.menu__name {
  font-family: var(--font-en);
  font-size: clamp(26px, 6.4vw, 32px);
  font-weight: 800;
  color: var(--green);
  letter-spacing: .02em;
  line-height: 1.2;
}
.menu__tagline {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  margin-top: 2px;
}
.menu__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.menu__time {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 3px 18px;
}
.menu__price {
  font-family: var(--font-en);
  color: var(--green-dark);
  font-size: clamp(22px, 5.6vw, 27px);
  font-weight: 800;
}
.menu__divider {
  border: none;
  border-top: 1px solid var(--ink);
  margin: 18px 0;
}
.menu__work-label { font-weight: 700; }
.menu__note { font-weight: 500; }
.menu__works {
  list-style: none;
  counter-reset: work;
  margin-top: 4px;
}
.menu__works li {
  counter-increment: work;
  position: relative;
  padding-left: 1.7em;
  font-weight: 500;
}
.menu__works li::before {
  content: counter(work);
  position: absolute;
  left: 0;
  top: .32em;
  width: 1.25em;
  height: 1.25em;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: .8em;
  line-height: 1.25em;
  text-align: center;
}

/* ---------- シーン別おすすめ ---------- */
.scene { padding: 10px 0 64px; }
.scene__lead {
  text-align: center;
  font-weight: 500;
  margin: -8px 0 26px;
  padding: 0 20px;
}
.scene__grid {
  display: grid;
  gap: 16px;
  padding: 0 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.scene__card {
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: #fff;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
}
.scene__title {
  font-size: 16px;
  font-weight: 900;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--ink);
}
.scene__combo {
  font-size: 14px;
  font-weight: 700;
  flex: 1;
}
.scene__hint {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  margin-top: 4px;
}
.scene__price {
  font-family: var(--font-en);
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 800;
  margin-top: 10px;
}

/* ---------- オプション（アラカルト） ---------- */
.opt { padding: 0 0 70px; }
.opt__lead {
  text-align: center;
  font-weight: 500;
  margin: -8px 0 22px;
  padding: 0 20px;
}
.opt__note { font-size: 12px; color: #555; }
.opt__list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 14px;
}
.opt__group {
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: #fff;
}
.opt__cat {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
  padding: 16px 44px 16px 18px;
}
.opt__cat::-webkit-details-marker { display: none; }
.opt__cat::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
}
.opt__group[open] .opt__cat::after { content: "?"; }
.opt__cat-note {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
  padding: 0 18px 8px;
}
.opt__rows {
  list-style: none;
  padding: 0 18px 14px;
}
.opt__rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px dashed #bbb;
  font-size: 14px;
  font-weight: 500;
}
.opt__price {
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
  text-align: right;
}

/* ---------- ご利用の流れ（縦4ステップ） ---------- */
.flow { padding: 10px 0 70px; }
.flow__lead {
  text-align: center;
  font-weight: 500;
  margin: -8px 0 30px;
  padding: 0 20px;
}
.flow__steps {
  list-style: none;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 20px;
}
.flow__step {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: #fff;
  padding: 20px 18px;
}
/* ステップ間の接続ライン */
.flow__step + .flow__step { margin-top: 34px; }
.flow__step + .flow__step::before {
  content: "";
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 38px;
  background: var(--green);
}
.flow__step + .flow__step::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--green);
}
.flow__num {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  padding-top: 4px;
  flex-shrink: 0;
}
.flow__name {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 4px;
}
.flow__body p { font-size: 14px; font-weight: 500; }
.flow__body a { text-decoration: underline; }

/* ---------- 中間CTAバンド ---------- */
.cta-band {
  background: var(--green);
  text-align: center;
  padding: 40px 20px 44px;
}
.cta-band__copy {
  color: #fff;
  font-size: clamp(17px, 4.6vw, 22px);
  font-weight: 900;
  margin-bottom: 18px;
}
.btn--line-invert {
  background: #fff;
  color: var(--line);
  min-width: 240px;
}

/* ---------- FAQ ---------- */
.faq { padding: 56px 0 70px; }
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 14px;
}
.faq__item {
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: #fff;
}
.faq__q {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 16px 44px 16px 46px;
}
.faq__q::-webkit-details-marker { display: none; }
/* Qマーク */
.faq__q::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-weight: 800;
  color: var(--green-dark);
  font-size: 18px;
}
/* 開閉アイコン */
.faq__q::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  transition: transform .2s;
}
.faq__item[open] .faq__q::after { content: "?"; }
.faq__a {
  padding: 0 18px 18px 46px;
  font-size: 14px;
  font-weight: 500;
}

/* ---------- アクセス ---------- */
.access {
  background: var(--mint);
  padding: 56px 0 60px;
}
.section-title--access { justify-content: center; }
.access__map {
  width: 100%;
  height: 320px;
  max-width: 1080px;
  margin: 0 auto;
}
.access__map iframe { width: 100%; height: 100%; }
.access__info {
  text-align: center;
  padding: 28px 20px 0;
  font-size: 14px;
  font-weight: 500;
}
.access__name {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .5em;
  text-indent: .5em;
  margin-bottom: 8px;
}

/* ---------- CTA ---------- */
.cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 44px 20px 56px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  transition: opacity .2s;
}
.btn:hover { opacity: .8; }
.btn--line {
  background: var(--line);
  color: #fff;
}
.btn__line-icon { width: 22px; height: 22px; }
.btn--contact {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}

/* ---------- PC用サイド固定ボタン ---------- */
.side-nav {
  display: none;
  position: fixed;
  top: 90px;
  right: 0;
  z-index: 100;
  flex-direction: column;
  gap: 6px;
}
.side-nav__btn {
  writing-mode: vertical-rl;
  padding: 22px 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2em;
  border-radius: 6px 0 0 6px;
  transition: opacity .2s;
}
.side-nav__btn:hover { opacity: .85; }
.side-nav__btn--line {
  background: var(--line);
  color: #fff;
}
.side-nav__btn--contact {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-right: none;
}

/* ---------- フッター ---------- */
.footer {
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 12px;
}

/* ---------- スマホ用フローティングCTA ---------- */
.float-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 -3px 14px rgba(0, 0, 0, .14);
  transform: translateY(110%);
  transition: transform .3s ease;
}
.float-cta.is-visible { transform: translateY(0); }
.float-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  padding: 13px 0;
}
.float-cta__btn--line {
  flex: 1.6;
  background: var(--line);
  color: #fff;
}
.float-cta__btn--tel {
  flex: 1;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.float-cta__tel-icon { width: 18px; height: 18px; }

/* ============================================
   お問い合わせページ（contact.html）
   ============================================ */
.page-header {
  background: var(--green);
  padding: 12px 16px;
}
.page-header__logo img { width: 88px; height: auto; }

.section-title--page {
  justify-content: center;
  margin-top: 36px;
}
.contact-lead {
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  margin-top: -18px;
}
.contact-note {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 18px 20px 0;
}
.contact-note a { text-decoration: underline; font-weight: 700; }
.contact-quick {
  display: flex;
  justify-content: center;
  padding: 18px 20px 8px;
}

.contact-form {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 0 20px;
  display: grid;
  gap: 24px;
}
.form-block {
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: #fff;
  padding: 22px 20px 24px;
}
.form-block__title {
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
}
.form-block__sub { font-size: 12px; font-weight: 500; }
.form-block__hint {
  font-size: 13px;
  font-weight: 500;
  margin: -6px 0 12px;
}
.badge-required {
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  padding: 2px 8px;
  line-height: 1.4;
}

/*.form-radio-list { list-style: none; display: grid; gap: 10px; }*/
.form-radio-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
}
.form-radio-list input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-dark);
  flex-shrink: 0;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.form-row + .form-row { margin-top: 12px; }
.form-row__label {
  font-weight: 700;
  font-size: 14px;
  min-width: 4.5em;
}

.form-field + .form-field { margin-top: 14px; }
.form-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
  font-family: var(--font-ja);
  font-size: 16px; /* iOSの自動ズーム防止のため16px未満にしない */
  border: 1px solid #999;
  border-radius: 4px;
  padding: 10px 12px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.form-row input[type="date"] { width: auto; flex: 1; min-width: 140px; }
.form-row select { width: auto; flex: 1; min-width: 130px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--green);
  border-color: var(--green);
}

.form-privacy {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #555;
}
.form-submit {
  /*display: flex;
  justify-content: center;*/
  padding-bottom: 8px;
	text-align:center;
}
.btn--submit {
  background: var(--green-dark);
  color: #fff;
  border: none;
  font-family: var(--font-ja);
  font-size: 17px;
  font-weight: 700;
  border-radius: 6px;
  padding: 16px 48px;
  cursor: pointer;
  transition: opacity .2s;
}
.btn--submit:hover { opacity: .85; }

.contact-back {
  text-align: center;
  padding: 28px 20px 48px;
  font-weight: 500;
}
.contact-back a { text-decoration: underline; }

/* ============================================
   PCレイアウト（PC版デザイン 1440px 準拠）
   ============================================ */
@media (min-width: 900px) {
  .hero {
    aspect-ratio: auto;
    height: 78vh;
    min-height: 520px;
  }
  .hero__logo img { width: 130px; }

  .catch { padding: 52px 20px 60px; }
  .catch__title { font-size: 56px; }
  .stats { gap: 20px; margin-top: 30px; }
  .stats__card { padding: 16px 34px; }

  .photos__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 1180px;
    margin: 48px auto 0;
    padding: 0 20px;
  }

  .features { padding: 72px 20px; gap: 48px; }
  .features__circle { width: 250px; height: 250px; }

  .menu__list { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .menu__name { font-size: 24px; }
  .menu__price { font-size: 22px; }
  .menu__card { padding: 24px 20px 28px; font-size: 14px; }

  .scene__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .scene__title { font-size: 15px; }

  /* FLOWはPCでも縦導線を維持（中央寄せで幅だけ広げる） */
  .flow__steps { max-width: 640px; }
  .flow__step { padding: 24px 26px; }
  .flow__name { font-size: 19px; }
  .flow__body p { font-size: 15px; }

  .faq__list { gap: 16px; }
  .faq__q { font-size: 16px; }
  .faq__a { font-size: 15px; }

  .access__map { height: 380px; }
  .access__info { font-size: 15px; }

  /* PCはサイド固定ボタンを表示し、下部CTA・フローティングCTAは非表示 */
  .side-nav { display: flex; }
  .cta { display: none; }
  .float-cta { display: none; }
}


.wpcf7-list-item {
    margin:0 !important;
}

.wpcf7-form-control.wpcf7-radio {
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	gap:5px;
}
.wpcf7-spinner{display:none !important;}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	margin:2em auto 0;
    border-color:red !important;
	max-width:680px;
	text-align:center;
}

/* ============================================
   PS SP 表示切替
   ============================================ */
.sp {display:none;}
@media (max-width: 767px) {
	.sp {display:inline-block;}
	.pc {display:none;}
{