@charset "UTF-8";

/* =============================================================
   RESET / BASE
============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1A1F29;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

:root {
  --red: #C0392B;
  --pink: #F0EAEA;
  --font-dark: #1A1F29;
  --font-red: #C0392B;
  --font-white: #FFFFFF;
  --font-222: #222222;
  --font-gray: #6B6B6B;
  --wrap: 1120px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }

/* Section heading (English label + JP title) */
.sec-label {
  display: block;
  text-align: center;
  color: var(--red);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 14px;
}
.sec-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: .04em;
}
.sec-lead { text-align: center; color: var(--font-222); margin-top: 14px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 200px; padding: 14px 28px;
  background: var(--red); color: #fff; font-weight: 700;
  border-radius: 2px; transition: opacity .2s;
}
.btn:hover { opacity: .85; }
.btn--ghost { background: #fff; color: var(--font-222); border: 1px solid #fff; }

/* =============================================================
   HEADER
============================================================= */
.header {
  position: absolute; top: 0; left: 0; width: 100%;
  height: 72px; z-index: 50;
  background: rgba(255,255,255,.5);
  display: flex; align-items: center;
}
.header__inner {
  width: 100%; max-width: 1440px; margin-inline: auto;
  padding-inline: 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.header__logo img { height: 64px; width: auto; }
.gnav { display: flex; align-items: center; gap: 28px; }
.gnav__list { display: flex; gap: 26px; font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.gnav__list a:hover { color: var(--red); }
.gnav__contact {
  background: var(--red); color: #fff; font-weight: 700;
  padding: 0 26px; height: 72px; display: flex; align-items: center;
  letter-spacing: .08em;
}
/* header on sub pages (solid white) */
.header--solid { background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.06); }

.hamburger { display: none; }

/* =============================================================
   FV (First View)
============================================================= */
.fv {
  position: relative;
  height: 778px;
  background: url("http://2026070919497tuv4n3n.conohawing.com/wp-content/uploads/2026/07/fv.webp") center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.fv__effect {
  position: absolute; inset: 0;
  background: url("http://2026070919497tuv4n3n.conohawing.com/wp-content/uploads/2026/07/fv-effect.webp") center/cover no-repeat;
  pointer-events: none;
}
.fv__inner { position: relative; z-index: 2; color: #fff; padding-top: 72px; }
.fv__sub { font-size: 22px; font-weight: 700; }
.fv__title { font-size: 32px; font-weight: 700; color: #fff; margin-top: 6px; }
.fv__desc { font-size: 15px; margin-top: 22px; line-height: 2; }
.fv__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
  align-items: stretch;   /* 両ボタンの高さを揃える */
}
.fv__btns .btn {
  min-width: 0;
  width: 285px;
}
.fv__tel { flex-direction: column; line-height: 1.3; }
.fv__tel small { font-size: 12px; font-weight: 400; }
.fv__tel strong { font-size: 22px; }

/* =============================================================
   SERVICE
============================================================= */
.service {
  padding: 80px 0;
  position: relative;   /* ← 追加 */
  z-index: 1;           /* ← 追加：requestより背面 */
}
.service__grid {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.card { background: var(--pink); }
.card__thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 16px 18px 20px; }
.card__title { font-size: 16px; font-weight: 700; }
.card__text { font-size: 12.5px; color: var(--font-gray); margin-top: 8px; line-height: 1.7; }

/* =============================================================
   REQUEST (タイヤ交換も、中古車販売も。)
============================================================= */
.request {
  position: relative;
  z-index: 3;           /* ← serviceより前面に */
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  background: url("http://2026070919497tuv4n3n.conohawing.com/wp-content/uploads/2026/07/request-back.webp") center/cover no-repeat;
  height: 326px;
}
.request__inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin-inline: auto;
}
.request__man {
  position: absolute;
  left: 50px;
  bottom: 0;
  height: 380px;     /* セクション326pxより大きく＝上へはみ出す */
  width: auto;
  z-index: 5;
}
.request__man img {
  height: 100%;
  width: auto;
  display: block;
}
/* コードで生成する白いぼかし */
.request__copy {
  position: absolute;
  left: 50%;                              /* 中央(50%)よりやや右 */
  top: 50%;
  transform: translate(-50%, -50%);       /* 自身の中心を基準に配置 */
  z-index: 4;
  padding: 30px 56px;
  text-align: center;
  white-space: nowrap;
  background: transparent;
}
.request__copy::before {
  content: "";
  position: absolute;
  inset: -25px;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0) 100%
  );
  filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}
.request__sub {
  font-size: 20px;
  font-weight: 700;
  color: var(--font-dark);
}
.request__title {
  font-size: 34px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.4;
  margin-top: 6px;
}

/* =============================================================
   REASON
============================================================= */
.reason { padding: 70px 0; background: var(--pink); }
.reason__grid {
  margin-top: 44px; max-width: 780px; margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.reason__item {
  background: #fff;
  padding: 22px 24px;
  border-left: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}
.reason__item h3 { font-size: 16px; font-weight: 700; }
.reason__item p { font-size: 13px; color: var(--font-gray); margin-top: 8px; }

/* =============================================================
   USED CAR
============================================================= */
.usedcar {
  padding: 70px 0 90px;
  background: url("http://2026070919497tuv4n3n.conohawing.com/wp-content/uploads/2026/07/car-back.webp") center/cover no-repeat;
}
.usedcar__cars {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 760px; margin-inline: auto;
}
.usedcar__cars .box { background: #fff; padding: 18px; }
.usedcar__lead { text-align: center; margin-top: 40px; font-weight: 700; }
.usedcar__btnwrap { text-align: center; margin-top: 20px; }
.usedcar .btn { min-width: 260px; }

/* =============================================================
   VOICE
============================================================= */
.voice { padding: 70px 0; background: var(--pink); }
.voice__grid {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.voice__item { background: #fff; padding: 22px 24px; }
.voice__item p { font-size: 13.5px; }
.voice__item .who { font-size: 12px; color: var(--red); margin-top: 12px; font-weight: 700; }

/* =============================================================
   ACCESS
============================================================= */
.access {
  position: relative;
  padding: 80px 0;
  background: url("http://2026070919497tuv4n3n.conohawing.com/wp-content/uploads/2026/07/company-back.webp") center/cover no-repeat;
}
.access__inner { position: relative; z-index: 2; }
.access__body {
  margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start; max-width: 960px; margin-inline: auto;
}
.access__map iframe, .access__map img { width: 100%; height: 320px; border: 0; object-fit: cover; }
.access__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.access__table th, .access__table td { text-align: left; padding: 12px 8px; vertical-align: top; border-bottom: 1px solid rgba(0,0,0,.1); }
.access__table th { width: 100px; color: var(--font-222); font-weight: 700; }

/* =============================================================
   CTA (bottom)
============================================================= */
.cta { background: var(--red); color: #fff; text-align: center; padding: 56px 20px; }
.cta__title { font-size: 26px; font-weight: 700; }
.cta__lead { margin-top: 14px; font-size: 14px; }
.cta__btns { display: flex; gap: 16px; justify-content: center; margin-top: 26px; }
.cta__btns .btn {
  background: #fff;
  color: var(--red);
  min-width: 0;
  width: 234px;
  padding: 14px 26px;
}
.cta__btns .btn--tel { min-width: 200px; }

/* =============================================================
   FOOTER
============================================================= */
.footer { padding: 50px 0 24px; }
.footer__inner {
  max-width: 1120px; margin-inline: auto; padding-inline: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.footer__logo img { height: 64px; width: auto; }
.footer__address { font-size: 12px; color: var(--font-222); margin-top: 12px; line-height: 1.7; }
.footer__nav { display: flex; align-items: center; gap: 24px; font-size: 13px; font-weight: 700; }
.footer__contact { background: var(--red); color: #fff; text-align: center; padding: 12px 28px; line-height: 1.3; font-weight: 700; }
.footer__contact small { display: block; font-size: 11px; font-weight: 400; }
.footer__copy { text-align: center; font-size: 12px; color: var(--font-gray); margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--pink); }

/* =============================================================
   PAGE HEADER (sub pages)
============================================================= */
.page-head {
  background: var(--red);
  color: #fff;
  padding: 46px 0;
  margin-top: 46px;
}
.page-head__title { font-size: 34px; font-weight: 700; }
.page-head__lead { margin-top: 10px; font-size: 14px; }

/* =============================================================
   CONTACT PAGE
============================================================= */
.contact-sec { background: var(--pink); padding: 70px 0 90px; }
.contact-box { max-width: 800px; margin-inline: auto; }

/* 電話ボックス */
.tel-box {
  background: #fff; border-radius: 4px; padding: 28px;
  text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.tel-box__label { font-weight: 700; }
.tel-box__num {
  font-size: 40px; font-weight: 700; color: var(--red);
  margin: 6px 0; letter-spacing: .02em;
}
.tel-box__num a { color: var(--red); }
.tel-box__hours { font-size: 13px; color: var(--font-gray); }

/* フォーム見出し */
.form-title { text-align: center; font-size: 26px; font-weight: 700; margin-top: 50px; }
.form-note { text-align: center; font-size: 13px; color: var(--font-gray); margin-top: 10px; }
.form-wrap { margin-top: 34px; }

/* フォーム内すべてを Noto Sans JP に強制（code を直接叩く） */
.form-wrap code,
.form-wrap label,
.form-wrap input,
.form-wrap textarea,
.form-wrap select,
.form-wrap button,
.form-wrap span,
.form-wrap p,
.form-wrap a {
  font-family: "Noto Sans JP", sans-serif !important;
}

/* 各項目の間隔（空pタグ対策も兼ねる） */
.form-wrap .wpcf7-form p { margin: 0 0 24px; }
.form-wrap .wpcf7-form p:empty { margin: 0; }   /* 空pの余白を消す */

/* ラベルと入力欄の距離 */
.form-label { display: block; font-weight: 700; margin-bottom: 8px; }

/* 必須／任意バッジ */
.form-badge {
  display: inline-block; font-size: 11px; color: #fff;
  background: var(--red); border-radius: 3px;
  padding: 2px 8px; margin-left: 8px; vertical-align: middle;
}
.form-badge--any { background: var(--font-gray); }

/* 入力欄 */
.form-wrap input[type="text"],
.form-wrap input[type="email"],
.form-wrap input[type="tel"],
.form-wrap textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid #ccc; border-radius: 4px;
  font-size: 15px; background: #fff;
}
.form-wrap textarea { min-height: 180px; resize: vertical; }

/* ラジオボタン */
/* ラジオブロックの上下の余分な余白を詰める */
.form-wrap .wpcf7-radio { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 4px; }

.form-wrap .wpcf7-list-item { margin: 0 !important; }
.form-wrap .wpcf7-list-item label {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
}
.form-wrap .wpcf7-list-item input[type="radio"] { margin: 0; }

/* CF7が挿入する空要素・brの余白を消す */
.form-wrap .wpcf7-form p:empty { display: none; }
.form-wrap .wpcf7-form br { display: none; }

/* プライバシー文 */
.form-privacy,
.form-privacy p { font-size: 13px; margin-top: 10px; line-height: 1.9; }
.form-privacy a,
.wpcf7-form .form-privacy a { color: var(--red); text-decoration: underline; }

/* フォーム内のリンクは赤・下線（クラス問わず） */
.form-wrap a,
.wpcf7-form a {
  color: var(--red);
  text-decoration: underline;
}

/* 送信ボタン */
.form-wrap .wpcf7-submit {
  display: block; margin: 30px auto 0; min-width: 280px;
  background: var(--red); color: #fff; font-weight: 700;
  border: 0; border-radius: 4px; padding: 15px 40px;
  cursor: pointer; font-size: 15px;
}
.form-wrap .wpcf7-submit:hover { opacity: .85; }

/* スマホ：入力欄16px（iOS自動ズーム防止） */
@media (max-width: 768px) {
  .form-wrap input[type="text"],
  .form-wrap input[type="email"],
  .form-wrap input[type="tel"],
  .form-wrap textarea { font-size: 16px; }
}

/* =============================================================
   PRIVACY PAGE
============================================================= */
.privacy-sec { background: var(--pink); padding: 60px 0 80px; }
.privacy-inner { max-width: 960px; margin-inline: auto; }
.privacy-intro { font-size: 14px; color: var(--font-222); }
.privacy-block { margin-top: 40px; }
.privacy-block h2 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.privacy-block p { font-size: 14px; color: var(--font-222); }
.privacy-contact { margin-top: 46px; background: #eae3e3; border-radius: 4px; padding: 24px 28px; }
.privacy-contact h3 { font-size: 15px; font-weight: 700; }
.privacy-contact p { font-size: 13px; margin-top: 10px; }

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1024px) {
  .service__grid { grid-template-columns: repeat(2, 1fr); }
  .request__man { display: none; }
  .request__copy { margin-inline: auto; text-align: center; }
}
@media (max-width: 900px) {
  /* header -> hamburger */
  .gnav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 90px 28px 40px; gap: 22px; transform: translateX(100%);
    transition: transform .3s; box-shadow: -4px 0 16px rgba(0,0,0,.12);
  }
  .gnav.is-open { transform: translateX(0); }
  .gnav__list { flex-direction: column; gap: 20px; }
  .gnav__contact { height: auto; padding: 12px 20px; border-radius: 3px; }
  .hamburger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; background: none; border: 0; cursor: pointer; z-index: 60;
  }
  .hamburger span { display: block; width: 26px; height: 2px; background: var(--font-dark); transition: .3s; }
  .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 768px) {
  .fv { height: auto; min-height: 620px; padding: 100px 20px 60px; }

 /* FVボタン：縦並び・間隔を詰めて下ボタンを上へ・高さを大きく */
  .fv__btns {
    flex-direction: column;
    align-items: center;
    gap: 1px;             /* ボタン間をさらに詰める */
    margin-top: 10px;
  }
  .fv__btns .btn {
    width: 285px;
    min-height: 76px;     /* フォームボタンの高さを大きく */
  }

  .reason__grid, .access__body { grid-template-columns: 1fr; }
  .voice__grid { grid-template-columns: 1fr; }
  .usedcar__cars { grid-template-columns: 1fr; max-width: 320px; }
  .sec-title { font-size: 24px; }
  .cta__btns, .cta__btns .btn { width: 100%; }
  .cta__btns { flex-direction: column; align-items: center; }

  /* フッター：中央揃え・メニュー非表示 */
  .footer__inner {
    flex-direction: column;
    align-items: center;   /* 左右中央に */
    text-align: center;
  }
  .footer__nav { display: none; }   /* メニュー非表示 */
  .footer__logo img { margin-inline: auto; }   /* ロゴを中央に */

.cta__btns, .cta__btns .btn { width: 100%; }
  .cta__btns {
    flex-direction: column;
    align-items: center;
    gap: 6px;             /* 16px → 6px に詰める（約1/3） */
  }

}
@media (max-width: 560px) {
  .service__grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .tel-box__num { font-size: 30px; }
}

/* REQUEST：SPで文字を可変縮小 */
@media (max-width: 768px) {
  .request {
    height: auto;
    min-height: 260px;
    display: flex;
    align-items: center;
  }
  .request__copy {
    position: static;
    transform: none;
    width: 100%;
    padding: 30px 16px;
    white-space: normal;
  }
  .request__sub {
    font-size: clamp(13px, 4.2vw, 20px);
  }
  .request__title {
    font-size: clamp(19px, 6.4vw, 34px);
    white-space: normal;
  }
}