/* =========================================================
   SimpCo — シンプル版（黒 × 白 ＋ オレンジ1点アクセント）
   設計思想：
     白  = 余白と可読性（=「簡単」）。サイトの土台。
     黒  = 主張の瞬間（ヒーロー／お問い合わせ／フッター）。
     橙  = 唯一のアクセント（ロゴのS＝「Simp」の火種）。面では使わない。
   グラデーションは一切使用しない。
   ========================================================= */
:root {
  --orange: #ef8200;
  --orange-dark: #d97600;
  --ink: #141210;          /* 見出し・本文の黒 */
  --body: #45403a;         /* 白地の説明文（視認性のため従来より濃く） */
  --paper: #ffffff;
  --black: #111111;        /* 黒帯・黒タイル */
  --line: #e2ddd5;         /* ヘアライン */
  --on-dark: rgba(255,255,255,0.90);  /* 黒地の説明文（薄すぎ・細すぎ回避） */

  /* 欧文=Futura PT（Adobe Fonts / futura-pt）→ 未接続時は Libre Franklin にフォールバック。
     和文=Noto Sans JP（明朝に変える場合はここを差し替え）。 */
  --font-base: "futura-pt", "Libre Franklin", "Noto Sans JP", "Hiragino Kaku Gothic ProN",
               "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  --container: 1160px;
  --radius: 4px;
  --shadow: 0 12px 34px rgba(0,0,0,0.10);
  --section-pad: 112px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-base); color: var(--ink); background: var(--paper);
  line-height: 1.85; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s, color .2s; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.accent { color: var(--orange); }

/* 改行の出し分け：<br class="br-pc">＝PCのみ改行／<br class="br-sp">＝スマホのみ改行 */
.br-pc { display: inline; }
.br-sp { display: none; }
@media (max-width: 900px) {
  .br-pc { display: none; }
  .br-sp { display: inline; }
}

/* ---- ボタン ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 36px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; letter-spacing: .02em;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: #fff; color: var(--black); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.55); }
.btn--ghost:hover { background: #fff; color: var(--black); border-color: #fff; }
.btn--lg { padding: 18px 48px; font-size: 16px; }

/* ---- ロゴ ---- */
.logo { display: inline-flex; align-items: center; }
.logo img { height: 30px; width: auto; }

/* ---- ヘッダー ---- */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: 72px;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); z-index: 100;
}
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.gnav__list { display: flex; align-items: center; gap: 30px; }
.gnav__list a { font-size: 15px; font-weight: 600; color: var(--ink); }
.gnav__list a:hover { color: var(--orange); }
.gnav__cta { padding: 9px 22px; background: var(--orange); color: #fff !important; border-radius: var(--radius); }
.gnav__cta:hover { background: var(--black); }
.hamburger {
  display: none; -webkit-appearance: none; appearance: none;
  flex-direction: column; justify-content: center; align-items: stretch; gap: 5px;
  width: 30px; height: 30px; padding: 4px 1px; background: none; border: 0; cursor: pointer;
}
.hamburger span { display: block; width: 100%; height: 2.5px; background: var(--black); border-radius: 2px; 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); }

/* ---- ヒーロー（黒・グラデなし） ---- */
.hero {
  position: relative; min-height: 700px; display: flex; align-items: center;
  padding-top: 72px; background: var(--black); color: #fff; overflow: hidden;
}
.hero__inner { position: relative; padding-block: 96px; max-width: 920px; }
.hero__lead {
  font-size: 13px; letter-spacing: .32em; font-weight: 700; color: var(--orange);
  margin-bottom: 26px; padding-left: 44px; position: relative;
}
.hero__lead::before { content: ""; position: absolute; left: 0; top: 50%; width: 32px; height: 2px; background: var(--orange); }
.hero__title { font-size: clamp(40px, 6.5vw, 78px); line-height: 1.12; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 30px; }
.hero__text { font-size: 18px; line-height: 1.95; color: var(--on-dark); font-weight: 400; margin-bottom: 44px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- セクション共通 ---- */
.section { padding-block: var(--section-pad); }
.section--dark { background: var(--black); color: #fff; }
.section__head { text-align: center; margin-bottom: 60px; }
.section__label {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .3em;
  color: var(--orange); margin-bottom: 16px;
}
.section__title { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; letter-spacing: -0.01em; }
.section--dark .section__title { color: #fff; }
.section__desc { margin-top: 20px; color: var(--body); font-size: 16px; }
.section--dark .section__desc { color: var(--on-dark); }

/* ---- ABOUT ---- */
.about__lead { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.about__lead p { font-size: 19px; color: var(--body); text-wrap: balance; }
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv__card {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--orange);
  border-radius: var(--radius); padding: 44px 40px;
}
.mv__label { font-size: 12px; font-weight: 700; letter-spacing: .3em; color: var(--orange); margin-bottom: 18px; }
.mv__title { font-size: 26px; font-weight: 800; line-height: 1.4; margin-bottom: 18px; color: var(--ink); }
.mv__text { color: var(--body); font-size: 15.5px; }

/* ---- SERVICES（白セクション × 黒タイル） ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--black); color: #fff; border: 1px solid var(--black);
  border-radius: var(--radius); padding: 40px 32px;
  transition: transform .25s, border-color .25s;
}
.card:hover { transform: translateY(-6px); border-color: var(--orange); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--orange); color: #fff; font-weight: 800; font-size: 18px;
  letter-spacing: .04em; margin-bottom: 26px;
}
.card__title { font-size: 21px; font-weight: 700; line-height: 1.4; margin-bottom: 14px; color: #fff; }
.card__text { color: var(--on-dark); font-size: 15.5px; font-weight: 400; line-height: 1.9; }

/* ---- 広告品質 ---- */
.quality { max-width: 900px; margin-inline: auto; }
.quality__intro { color: var(--ink); font-size: 16.5px; margin-bottom: 28px; }
.guidelines { display: grid; gap: 16px; }
.guideline {
  display: block; padding: 20px 22px; background: #fff;
  border: 1px solid var(--line); border-left: 3px solid var(--orange);
  border-radius: var(--radius); transition: background .2s, transform .2s;
}
.guideline:hover { background: #faf8f5; transform: translateX(3px); }
.guideline__title { display: block; font-weight: 700; font-size: 15px; color: var(--ink); line-height: 1.7; }
.guideline__mark { color: var(--orange); margin-right: 6px; }
.guideline__url { display: block; margin-top: 6px; font-size: 13px; color: var(--orange); word-break: break-all; }
.quality__badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  aspect-ratio: 1 / 1; background: var(--black); color: #fff; border-radius: var(--radius); padding: 40px;
}
.quality__badge-label { font-size: 13px; letter-spacing: .2em; color: var(--orange); margin-bottom: 12px; }
.quality__badge-main { font-size: 56px; font-weight: 800; line-height: 1; letter-spacing: .02em; }
.quality__badge-sub { margin-top: 16px; font-size: 14px; color: var(--on-dark); }

/* ---- COMPANY（白・ヘアライン） ---- */
.company-table { width: 100%; max-width: 820px; margin-inline: auto; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.company-table th, .company-table td { text-align: left; padding: 22px 30px; border-bottom: 1px solid var(--line); font-size: 15px; }
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: 0; }
.company-table th { width: 200px; background: #faf8f5; font-weight: 700; color: var(--ink); border-left: 3px solid var(--orange); }
.company-table td { color: var(--body); }
.company-map { max-width: 820px; margin: 32px auto 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; line-height: 0; }
.company-map iframe, .company-map img { display: block; width: 100%; }

/* ---- CTA（黒・グラデなし） ---- */
.cta { padding-block: 100px; background: var(--black); color: #fff; text-align: center; }
.cta__label { display:inline-block; font-size: 12px; font-weight: 700; letter-spacing: .3em; color: var(--orange); margin-bottom: 16px; }
.cta__title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; line-height: 1.4; margin-bottom: 18px; }
.cta__text { color: var(--on-dark); margin-bottom: 36px; }

/* お問い合わせフォーム（黒帯の上の白カード） */
.contact-form {
  max-width: 620px; margin: 8px auto 0; padding: 44px 44px 40px;
  background: #fff; color: var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); text-align: left;
}
.contact-form p { margin: 0 0 22px; }
/* CF7の隠しフィールド用fieldsetの標準枠線（黒い横線）を消す */
.contact-form fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.contact-form .hidden-fields-container { display: none; }
.contact-form label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; color: var(--ink); }
.form-req, .contact-form .req {
  display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 3px;
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em;
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"],
.contact-form input[type="url"], .contact-form textarea, .contact-form select {
  width: 100%; padding: 13px 15px; margin-top: 2px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fafafa; font-family: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .2s, background .2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--orange); background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-actions { text-align: center; margin-top: 8px; }
.form-submit, .contact-form input[type="submit"], .contact-form .wpcf7-submit {
  display: inline-block; background: var(--orange); color: #fff; border: 0;
  padding: 16px 52px; border-radius: var(--radius);
  font-family: inherit; font-weight: 700; font-size: 16px; letter-spacing: .02em;
  cursor: pointer; transition: background .2s, transform .2s;
}
.form-submit:hover, .contact-form input[type="submit"]:hover, .contact-form .wpcf7-submit:hover {
  background: var(--orange-dark); transform: translateY(-2px);
}

/* ---- フッター ---- */
.site-footer { background: var(--black); color: var(--on-dark); padding-block: 56px; }
.footer__inner { text-align: center; }
.footer__logo { height: 34px; width: auto; margin: 0 auto 24px; }
.footer__nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-bottom: 28px; }
.footer__nav a { font-size: 14px; }
.footer__nav a:hover { color: var(--orange); }
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ---- レスポンシブ ---- */
@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  .mv { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .quality { grid-template-columns: 1fr; gap: 36px; }
  .quality__badge { max-width: 320px; margin-inline: auto; }
  .hamburger { display: flex; }
  .gnav { position: fixed; inset: 72px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .3s; box-shadow: var(--shadow); }
  .gnav.is-open { transform: translateY(0); }
  .gnav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 20px; }
  .gnav__list li { border-bottom: 1px solid var(--line); }
  .gnav__list li:last-child { border-bottom: 0; }
  .gnav__list a { display: block; padding: 16px 4px; }
  .gnav__cta { text-align: center; margin-top: 12px; }
}
@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .contact-form { padding: 30px 22px; }
  .company-table th { width: 116px; padding: 16px; font-size: 14px; }
  .company-table td { padding: 16px; font-size: 14px; }
}
