@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/* =====================================================================
   Luxeritas移植 [BEGIN] - Luxeritas子テーマからのCSS移植
   下記ブロックを Cocoon子テーマの style.css の末尾に追記してください。
   （GB改修ブロックの前 or 後、どちらでも可）

   移植元: /wp-content/themes/luxeritas-child/style.css
   移植日: (追記者記入)
   ===================================================================== */

/* Contact Form 7 - 入力欄の幅を100%に */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
}

.wpcf7 input[type="submit"] {
    float: right;
}

/* Contact Form 7 - 送信ボタン装飾
   ※ 現状イエロー(#ffd700)。GB改修のディープレッド世界観と統一したい場合は
   var(--gb-accent) など変数に差し替え可能。今回は動作維持のため色は温存。 */
.wpcf7 input[type="submit"] {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border: none;
    box-shadow: 0 3px 0 #ddd;
    background: #ffd700;
    transition: 0.3s;
}
.wpcf7-submit:hover {
    background: #a4dd6c;
    transform: translate3d(0px, 3px, 1px);
    -webkit-transform: translate3d(0px, 3px, 1px);
    -moz-transform: translate3d(0px, 3px, 1px);
}

/* Luxeritas移植 [END] */

/* =====================================================================
   GB改修 [BEGIN] - 日本グルメバーガー協会 トップページ＆共通スタイル
   下記ブロックを Cocoon子テーマの style.css 末尾に追記してください。
   削除すれば完全に元の状態に戻ります。
   ===================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap');

/* ---------- デザイントークン ---------- */
:root {
  --gb-bg: #ffffff;
  --gb-bg-soft: #f7f4ef;
  --gb-bg-deep: #1a1612;
  --gb-ink: #1a1612;
  --gb-ink-soft: #6b6560;
  --gb-ink-mute: #9a948c;
  --gb-accent: #7a1f1f;
  --gb-accent-dark: #5a1414;
  --gb-accent-soft: #c89090;
  --gb-line: #e8e2d8;
  --gb-line-soft: #f0ebe2;
  --gb-font-serif: 'Noto Serif JP', 'Yu Mincho', serif;
  --gb-font-sans: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  --gb-font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --gb-max: 1180px;
  --gb-pad: 24px;
}

/* ---------- フロントページ用Cocoon上書き（front-page.phpだけに適用） ---------- */
body.gb-front-active #main {
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
  background: transparent !important;
}
body.gb-front-active #main-content,
body.gb-front-active .main-content {
  padding: 0 !important;
}
body.gb-front-active .article {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
body.gb-front-active #sidebar { display: none !important; }
body.gb-front-active .main { width: 100% !important; }

/* ---------- gb-front全体 ---------- */
.gb-front {
  font-family: var(--gb-font-sans);
  color: var(--gb-ink);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
.gb-front a { color: inherit; text-decoration: none; }
.gb-front img { max-width: 100%; display: block; }
.gb-container { max-width: var(--gb-max); margin: 0 auto; padding: 0 var(--gb-pad); }

/* ---------- セクション見出し（シグネチャ要素） ---------- */
.gb-section-head { text-align: center; margin-bottom: 56px; }
.gb-section-head__en {
  font-family: var(--gb-font-display);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gb-ink);
  display: inline-block;
  position: relative;
  padding-bottom: 18px;
}
.gb-section-head__en::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 1px;
  background: var(--gb-accent);
}
.gb-section-head__ja {
  display: block;
  margin-top: 14px;
  font-family: var(--gb-font-serif);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gb-ink-soft);
}

/* ---------- 共通ボタン ---------- */
.gb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}
.gb-btn--primary { background: var(--gb-accent) !important; color: #fff !important; }
.gb-btn--primary:hover { background: var(--gb-accent-dark) !important; color: #fff !important; }
.gb-btn--outline { background: transparent; color: var(--gb-ink) !important; border-color: var(--gb-ink); }
.gb-btn--outline:hover { background: var(--gb-ink); color: #fff !important; }
.gb-btn__arrow { font-family: var(--gb-font-display); font-size: 16px; line-height: 1; }

/* ============================================================
   HERO
   ============================================================ */
.gb-hero {
  position: relative;
  background: var(--gb-bg-soft);
  padding: 32px 0 80px;
  overflow: hidden;
}
.gb-hero__grid {
  max-width: var(--gb-max);
  margin: 0 auto;
  padding: 0 var(--gb-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  min-height: 540px;
}
.gb-hero__image {
  grid-column: 1 / 2;
  height: 540px;
  background-color: #ddd6cc;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2px;
}
.gb-hero__copy {
  position: absolute;
  right: var(--gb-pad);
  bottom: 0;
  background: #fff;
  padding: 56px 56px 48px;
  width: 56%;
  z-index: 2;
  border-radius: 2px;
  box-shadow: 0 4px 40px rgba(26, 22, 18, 0.06);
}
.gb-hero__eyebrow {
  font-family: var(--gb-font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gb-accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gb-hero__eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gb-accent); }
.gb-hero__title {
  font-family: var(--gb-font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--gb-ink);
}
.gb-hero__lead { font-size: 13px; line-height: 2; color: var(--gb-ink-soft); margin-bottom: 32px; }
.gb-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.gb-hero__seal {
  position: absolute;
  top: 32px;
  right: calc(var(--gb-pad) + 8px);
  width: 88px; height: 88px;
  border: 1px solid var(--gb-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--gb-accent);
  background: rgba(255,255,255,0.85);
  font-family: var(--gb-font-serif);
  z-index: 3;
}
.gb-hero__seal__en { font-family: var(--gb-font-display); font-size: 9px; letter-spacing: 0.2em; margin-bottom: 2px; }
.gb-hero__seal__ja { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; }
.gb-hero__seal__line { width: 16px; height: 1px; background: var(--gb-accent); margin: 4px 0; }

/* ============================================================
   INTRO
   ============================================================ */
.gb-intro { padding: 96px 0 80px; text-align: center; background: #fff; }
.gb-intro__lead {
  font-family: var(--gb-font-serif);
  font-size: 20px;
  line-height: 2.2;
  font-weight: 500;
  max-width: 720px;
  margin: 0 auto 32px;
  letter-spacing: 0.04em;
}
.gb-intro__text { max-width: 640px; margin: 0 auto 40px; font-size: 14px; line-height: 2.2; color: var(--gb-ink-soft); }
.gb-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 760px; margin: 0 auto; }
.gb-pill {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--gb-line);
  border-radius: 100px;
  font-size: 12px;
  color: var(--gb-ink);
  background: #fff;
  transition: all 0.2s;
}
.gb-pill:hover { border-color: var(--gb-accent); color: var(--gb-accent); }

/* ============================================================
   PICK UP
   ============================================================ */
.gb-pickup { padding: 96px 0; background: var(--gb-bg-soft); }
.gb-pickup__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gb-pickup__card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gb-pickup__card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,22,18,0.08); }
.gb-pickup__image {
  display: block;
  aspect-ratio: 4/3;
  background-color: #ddd6cc;
  background-size: cover;
  background-position: center;
  position: relative;
}
.gb-pickup__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,22,18,0.4));
}
.gb-pickup__num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--gb-font-display);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.3em;
  z-index: 2;
}
.gb-pickup__body { padding: 28px 26px 32px; flex: 1; display: flex; flex-direction: column; }
.gb-pickup__cat {
  font-family: var(--gb-font-display);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gb-accent);
  margin-bottom: 12px;
}
.gb-pickup__title {
  font-family: var(--gb-font-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.gb-pickup__text { font-size: 13px; color: var(--gb-ink-soft); line-height: 1.9; flex: 1; margin-bottom: 20px; }
.gb-pickup__link {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gb-ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gb-ink);
  align-self: flex-start;
  transition: all 0.2s;
}
.gb-pickup__link:hover { color: var(--gb-accent); border-color: var(--gb-accent); }

/* ============================================================
   LATEST（ショートコード共用）
   ============================================================ */
.gb-latest { padding: 110px 0; background: #fff; }
.gb-latest__grid {
  display: grid;
  gap: 36px 28px;
  margin-bottom: 56px;
}
.gb-latest__grid--c2 { grid-template-columns: repeat(2, 1fr); }
.gb-latest__grid--c3 { grid-template-columns: repeat(3, 1fr); }
.gb-latest__grid--c4 { grid-template-columns: repeat(4, 1fr); }

.gb-article { display: flex; flex-direction: column; transition: opacity 0.2s; }
.gb-article:hover { opacity: 0.8; }
.gb-article__image {
  aspect-ratio: 16/11;
  background-color: #ddd6cc;
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  border-radius: 2px;
}
.gb-article__cat {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gb-accent);
  font-weight: 500;
  margin-bottom: 10px;
  font-family: var(--gb-font-display);
}
.gb-article__title {
  font-family: var(--gb-font-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  color: var(--gb-ink);
}
.gb-article__date {
  font-family: var(--gb-font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gb-ink-mute);
}
.gb-latest__more { text-align: center; }

/* ============================================================
   LEARN / CULTURE
   ============================================================ */
.gb-categories { padding: 110px 0; background: var(--gb-bg-soft); }
.gb-categories.gb-categories--alt { background: #fff; }
.gb-cat__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gb-cat__card {
  background: #fff;
  padding: 32px 20px;
  text-align: center;
  border-radius: 2px;
  border: 1px solid var(--gb-line-soft);
  transition: all 0.25s;
  display: block;
}
.gb-categories--alt .gb-cat__card { background: var(--gb-bg-soft); border-color: transparent; }
.gb-cat__card:hover { border-color: var(--gb-accent); transform: translateY(-2px); }
.gb-cat__card:hover .gb-cat__name { color: var(--gb-accent); }
.gb-cat__icon {
  font-family: var(--gb-font-display);
  font-size: 28px;
  color: var(--gb-accent);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.gb-cat__name {
  font-family: var(--gb-font-serif);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  transition: color 0.2s;
  color: var(--gb-ink);
}
.gb-cat__en {
  font-family: var(--gb-font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gb-ink-mute);
  text-transform: uppercase;
}

/* ============================================================
   CERTIFY
   ============================================================ */
.gb-certify {
  background: var(--gb-bg-deep);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.gb-certify::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,31,31,0.4), transparent 50%), var(--gb-certify-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.gb-certify__inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; padding: 0 var(--gb-pad); }
.gb-certify__seal {
  width: 72px; height: 72px;
  border: 1px solid var(--gb-accent-soft);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gb-accent-soft);
  font-family: var(--gb-font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-align: center;
  line-height: 1.3;
}
.gb-certify__eyebrow { font-family: var(--gb-font-display); font-size: 13px; letter-spacing: 0.4em; color: var(--gb-accent-soft); margin-bottom: 24px; }
.gb-certify__title {
  font-family: var(--gb-font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  color: #fff;
}
.gb-certify__text { font-size: 14px; line-height: 2.2; color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.gb-certify .gb-btn--primary { background: #fff; color: var(--gb-ink); }
.gb-certify .gb-btn--primary:hover { background: var(--gb-accent-soft); color: var(--gb-bg-deep); }

/* ============================================================
   ABOUT
   ============================================================ */
.gb-about { padding: 120px 0; background: #fff; }
.gb-about__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.gb-about__image {
  aspect-ratio: 4/5;
  background-color: #ddd6cc;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}
.gb-about__body { padding-right: 24px; }
.gb-about__eyebrow {
  font-family: var(--gb-font-display);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--gb-accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gb-about__eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gb-accent); }
.gb-about__title {
  font-family: var(--gb-font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  color: var(--gb-ink);
}
.gb-about__text { font-size: 14px; line-height: 2.2; color: var(--gb-ink-soft); margin-bottom: 32px; }

/* ============================================================
   SNS
   ============================================================ */
.gb-sns { padding: 80px 0; background: var(--gb-bg-soft); text-align: center; }
.gb-sns__title { font-family: var(--gb-font-display); font-size: 22px; letter-spacing: 0.3em; margin-bottom: 8px; color: var(--gb-ink); }
.gb-sns__sub { font-size: 12px; color: var(--gb-ink-soft); letter-spacing: 0.2em; margin-bottom: 32px; }
.gb-sns__list { display: flex; justify-content: center; gap: 18px; }
.gb-sns__list a {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gb-line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-family: var(--gb-font-display);
  transition: all 0.2s;
  color: var(--gb-ink);
}
.gb-sns__list a:hover { background: var(--gb-ink); color: #fff; border-color: var(--gb-ink); }

/* ============================================================
   RELATED MEDIA（関連メディア：ハンバーガー紳士倶楽部）
   ============================================================ */
.gb-related { padding: 110px 0; background: #fff; }
.gb-related__card {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: center;
  padding: 48px;
  background: var(--gb-bg-soft);
  border-radius: 2px;
  border: 1px solid var(--gb-line-soft);
}
.gb-related__image {
  display: block;
  aspect-ratio: 4/3;
  background-color: #ddd6cc;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.gb-related__image:hover { opacity: 0.85; }
.gb-related__label {
  font-family: var(--gb-font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gb-accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gb-related__label::before { content: ''; width: 20px; height: 1px; background: var(--gb-accent); }
.gb-related__title {
  font-family: var(--gb-font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--gb-ink);
}
.gb-related__text {
  font-size: 13px;
  line-height: 2.1;
  color: var(--gb-ink-soft);
  margin-bottom: 24px;
}
.gb-related__text strong { color: var(--gb-ink); font-weight: 700; }
.gb-related__disclaimer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gb-line);
  font-size: 11px;
  line-height: 1.8;
  color: var(--gb-ink-mute);
  letter-spacing: 0.02em;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 768px) {
  .gb-hero { padding: 24px 0 48px; }
  .gb-hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .gb-hero__image { height: 280px; }
  .gb-hero__copy {
    position: relative;
    right: auto; bottom: auto;
    width: calc(100% - 32px);
    margin: -40px auto 0;
    padding: 32px 24px;
  }
  .gb-hero__title { font-size: 22px; }
  .gb-hero__lead { font-size: 13px; }
  .gb-hero__seal { width: 64px; height: 64px; top: 16px; right: 24px; }
  .gb-hero__seal__en { font-size: 7px; }
  .gb-hero__seal__ja { font-size: 9px; }
  .gb-hero__ctas { flex-direction: column; }
  .gb-btn { justify-content: center; }

  .gb-section-head { margin-bottom: 36px; }
  .gb-section-head__en { font-size: 28px; }
  .gb-section-head__ja { font-size: 11px; }

  .gb-intro { padding: 64px 0 48px; }
  .gb-intro__lead { font-size: 17px; line-height: 2; }
  .gb-intro__text { font-size: 13px; }

  .gb-pickup { padding: 64px 0; }
  .gb-pickup__grid { grid-template-columns: 1fr; gap: 20px; }

  .gb-latest { padding: 64px 0; }
  .gb-latest__grid--c2,
  .gb-latest__grid--c3,
  .gb-latest__grid--c4 { grid-template-columns: 1fr; gap: 32px; }

  .gb-categories { padding: 64px 0; }
  .gb-cat__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gb-cat__card { padding: 24px 12px; }

  .gb-certify { padding: 72px 0; }
  .gb-certify__title { font-size: 20px; line-height: 1.9; }
  .gb-certify__text { font-size: 13px; }

  .gb-about { padding: 64px 0; }
  .gb-about__grid { grid-template-columns: 1fr; gap: 32px; }
  .gb-about__body { padding-right: 0; }
  .gb-about__title { font-size: 20px; }

  .gb-related { padding: 64px 0; }
  .gb-related__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px;
  }
  .gb-related__title { font-size: 18px; }
}

/* GB改修 [END] */

/* ==== GB改修 フルワイド強化パッチ [BEGIN] ==== */
body.gb-front-active #content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
body.gb-front-active #content-in,
body.gb-front-active .content-in {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.gb-front-active #content-in.wrap,
body.gb-front-active .content-in.wrap {
  max-width: none !important;
  width: 100% !important;
}
body.gb-front-active #main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
  background: transparent !important;
  float: none !important;
}
body.gb-front-active #main-content,
body.gb-front-active .main-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
body.gb-front-active .article {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
body.gb-front-active #sidebar { display: none !important; }
body.gb-front-active .main {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
}
/* ==== GB改修 フルワイド強化パッチ [END] ==== */

/* ==== GB改修 SP最適化パッチ [BEGIN] ==== */
/* スマホでは本文系の強制改行(<br>)を無効化して自然に折り返す。
   ただし見出しのリズム改行(gb-hero__title等)は残す。 */
@media (max-width: 768px) {

  /* リード文・説明文の<br>を無効化（不自然な折れを防ぐ） */
  .gb-hero__lead br,
  .gb-intro__text br,
  .gb-pickup__text br,
  .gb-certify__text br,
  .gb-about__text br,
  .gb-related__text br {
    display: none;
  }

  /* 本文系の左右に少し余白を持たせて読みやすく */
  .gb-hero__lead,
  .gb-intro__text {
    padding-left: 4px;
    padding-right: 4px;
  }

  /* FVタイトルはリズム改行を残しつつサイズ最適化 */
  .gb-hero__title {
    font-size: 24px;
    line-height: 1.5;
  }

  /* FVコピーボックスの内側余白をSP用に調整 */
  .gb-hero__copy {
    padding: 28px 20px 32px;
  }

  /* PICK UPタイトルの<br>は残す（JAPAN BURGER / CHAMPIONSHIP等の意図的改行）
     が、日本語タイトルが2行で詰まる場合の行間を確保 */
  .gb-pickup__title {
    font-size: 18px;
    line-height: 1.6;
  }

  /* LEARN/CULTUREカード：数字とテキストの間隔をSPで確保 */
  .gb-cat__card {
    padding: 22px 10px;
  }
  .gb-cat__icon {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .gb-cat__name {
    font-size: 14px;
    line-height: 1.4;
  }
  .gb-cat__en {
    font-size: 9px;
  }

  /* セクション見出しの上下余白をSPで詰める */
  .gb-section-head {
    margin-bottom: 32px;
  }

  /* カテゴリピルの折り返しを見やすく */
  .gb-pills {
    gap: 8px;
    padding: 0 8px;
  }
  .gb-pill {
    padding: 7px 14px;
    font-size: 12px;
  }

  /* 検定CTAタイトルのリズム改行は残す、サイズ最適化 */
  .gb-certify__title {
    font-size: 21px;
    line-height: 1.7;
  }

  /* ABOUTタイトルの改行維持＋サイズ */
  .gb-about__title {
    font-size: 20px;
    line-height: 1.6;
  }

  /* 連携メディアカードのSP調整 */
  .gb-related__title {
    font-size: 18px;
    line-height: 1.5;
  }
  .gb-related__disclaimer {
    font-size: 10px;
    line-height: 1.7;
  }
}

/* 極小画面(〜380px)向けの追加調整 */
@media (max-width: 380px) {
  .gb-hero__title { font-size: 21px; }
  .gb-section-head__en { font-size: 24px; }
  .gb-cat__grid { gap: 8px; }
  .gb-cat__card { padding: 18px 8px; }
}
/* ==== GB改修 SP最適化パッチ [END] ==== */

/* =====================================================================
   GB改修 JBC(バガチャン)LP専用スタイル [BEGIN]
   ※ style.css の末尾に追記してください。
   ※ トップと同じ :root デザイントークン（--gb-*）を利用します。
   ===================================================================== */

/* JBCページの全幅化
   WordPressがテンプレート適用時に body.page-template-page-jbc クラスを自動付与するため、
   それを使って確実に対象を限定（:has不使用で互換性重視） */
body.page-template-page-jbc #content,
body.page-template-page-jbc #content-in,
body.page-template-page-jbc .content-in,
body.page-template-page-jbc #main,
body.page-template-page-jbc #main-content,
body.page-template-page-jbc .main-content,
body.page-template-page-jbc .article,
body.page-template-page-jbc .main {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none !important;
}
body.page-template-page-jbc #sidebar { display: none !important; }
body.page-template-page-jbc .entry-title,
body.page-template-page-jbc .article-title,
body.page-template-page-jbc .date-tags,
body.page-template-page-jbc .breadcrumb { display: none !important; }

/* ========== HERO ========== */
.jbc-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 120px 24px;
}
.jbc-hero__inner { max-width: 760px; }
.jbc-hero__logo {
  width: 200px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}
.jbc-hero__eyebrow {
  font-family: var(--gb-font-display);
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--gb-gold-bright, #e0be6a);
  margin-bottom: 22px;
}
.jbc-hero__title {
  font-family: var(--gb-font-serif);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.jbc-hero__lead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.jbc-hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== KPI ========== */
.jbc-kpi {
  background: var(--gb-bg-deep, #1a1612);
  color: #fff;
  padding: 56px 0;
}
.jbc-kpi__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.jbc-kpi__item { position: relative; }
.jbc-kpi__item:not(:last-child)::after {
  content: ''; position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%); height: 50px; width: 1px;
  background: rgba(201,162,75,0.25);
}
.jbc-kpi__num {
  font-family: var(--gb-font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--gb-accent-soft, #c89090);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.jbc-kpi__num span { font-size: 18px; margin-left: 2px; }
.jbc-kpi__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-top: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ========== ABOUT ========== */
.jbc-about { padding: 100px 0; background: #fff; text-align: center; }
.jbc-about__lead {
  font-family: var(--gb-font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  color: var(--gb-ink, #1a1612);
}
.jbc-about__text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2.3;
  color: var(--gb-ink-soft, #6b6560);
  text-align: left;
}

/* ========== FEATURES ========== */
.jbc-features { padding: 100px 0; background: var(--gb-bg-soft, #f7f4ef); }
.jbc-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.jbc-feature {
  background: #fff;
  padding: 40px 32px;
  border-radius: 2px;
  border-top: 3px solid var(--gb-accent, #7a1f1f);
}
.jbc-feature__num {
  font-family: var(--gb-font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--gb-accent, #7a1f1f);
  margin-bottom: 16px;
  line-height: 1;
}
.jbc-feature__title {
  font-family: var(--gb-font-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  color: var(--gb-ink, #1a1612);
}
.jbc-feature__text { font-size: 14px; line-height: 2; color: var(--gb-ink-soft, #6b6560); }

/* ========== WORLD ========== */
.jbc-world { padding: 100px 0; background: #fff; }
.jbc-world__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.jbc-world__img img { width: 100%; height: auto; border-radius: 3px; display: block; }
.jbc-world__eyebrow {
  font-family: var(--gb-font-display);
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--gb-accent, #7a1f1f);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.jbc-world__eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gb-accent, #7a1f1f); }
.jbc-world__title {
  font-family: var(--gb-font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: var(--gb-ink, #1a1612);
}
.jbc-world__text { font-size: 15px; line-height: 2.2; color: var(--gb-ink-soft, #6b6560); }

/* ========== OUTLINE ========== */
.jbc-outline { padding: 100px 0; background: var(--gb-bg-soft, #f7f4ef); }
.jbc-outline__table { max-width: 760px; margin: 0 auto; }
.jbc-outline__row {
  display: flex;
  border-bottom: 1px solid var(--gb-line, #e8e2d8);
  padding: 20px 8px;
  margin: 0;
}
.jbc-outline__row dt {
  width: 160px;
  flex-shrink: 0;
  font-family: var(--gb-font-serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--gb-ink, #1a1612);
}
.jbc-outline__row dd { margin: 0; font-size: 14px; color: var(--gb-ink-soft, #6b6560); line-height: 1.8; }
.jbc-outline__note { max-width: 760px; margin: 24px auto 0; font-size: 12px; color: var(--gb-ink-mute, #9a948c); line-height: 1.8; }

/* ========== FOUNDER ========== */
.jbc-founder { padding: 100px 0; background: #fff; }
.jbc-founder__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.jbc-founder__img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
}
.jbc-founder__eyebrow {
  font-family: var(--gb-font-display);
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--gb-accent, #7a1f1f);
  margin-bottom: 16px;
}
.jbc-founder__title {
  font-family: var(--gb-font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  color: var(--gb-ink, #1a1612);
}
.jbc-founder__name {
  font-family: var(--gb-font-serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gb-ink, #1a1612);
}
.jbc-founder__name span {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: var(--gb-ink-mute, #9a948c);
  margin-left: 10px;
  letter-spacing: 0.05em;
}
.jbc-founder__text { font-size: 14px; line-height: 2.2; color: var(--gb-ink-soft, #6b6560); margin-bottom: 24px; }
.jbc-founder__link {
  font-family: var(--gb-font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gb-accent, #7a1f1f);
  border-bottom: 1px solid var(--gb-accent, #7a1f1f);
  padding-bottom: 3px;
}

/* ========== CERTIFICATION CROSS ========== */
.jbc-cross { padding: 90px 0; background: var(--gb-bg-soft, #f7f4ef); }
.jbc-cross__card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gb-line, #e8e2d8);
  border-radius: 3px;
  padding: 48px;
  text-align: center;
}
.jbc-cross__en {
  font-family: var(--gb-font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gb-accent, #7a1f1f);
  margin-bottom: 12px;
}
.jbc-cross__title {
  font-family: var(--gb-font-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  color: var(--gb-ink, #1a1612);
}
.jbc-cross__text { font-size: 14px; line-height: 2.1; color: var(--gb-ink-soft, #6b6560); margin-bottom: 28px; }

/* ========== FINAL CTA ========== */
.jbc-final {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 110px 0;
  text-align: center;
}
.jbc-final__inner { max-width: 640px; margin: 0 auto; }
.jbc-final__title {
  font-family: var(--gb-font-serif);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.05em;
}
.jbc-final__text { font-size: 15px; line-height: 2.1; color: rgba(255,255,255,0.85); margin-bottom: 36px; }

/* ========== レスポンシブ ========== */
@media (max-width: 768px) {
  .jbc-hero { min-height: auto; padding: 90px 20px; }
  .jbc-hero__logo { width: 150px; margin-bottom: 24px; }
  .jbc-hero__title { font-size: 30px; }
  .jbc-hero__lead { font-size: 14px; }
  .jbc-hero__lead br, .jbc-final__text br { display: none; }
  .jbc-hero__ctas { flex-direction: column; }
  .jbc-hero__ctas .gb-btn { justify-content: center; }

  .jbc-kpi { padding: 40px 0; }
  .jbc-kpi__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .jbc-kpi__item:nth-child(2)::after { display: none; }
  .jbc-kpi__num { font-size: 30px; }

  .jbc-about { padding: 64px 0; }
  .jbc-about__lead { font-size: 20px; }
  .jbc-about__lead br { display: none; }

  .jbc-features { padding: 64px 0; }
  .jbc-features__grid { grid-template-columns: 1fr; gap: 20px; }
  .jbc-feature__title br { display: none; }

  .jbc-world { padding: 64px 0; }
  .jbc-world__grid { grid-template-columns: 1fr; gap: 32px; }
  .jbc-world__title { font-size: 26px; }
  .jbc-world__title br, .jbc-world__text br { display: none; }

  .jbc-outline { padding: 64px 0; }
  .jbc-outline__row { flex-direction: column; gap: 4px; }
  .jbc-outline__row dt { width: auto; }

  .jbc-founder { padding: 64px 0; }
  .jbc-founder__grid { grid-template-columns: 1fr; gap: 28px; }
  .jbc-founder__title { font-size: 24px; }

  .jbc-cross { padding: 56px 0; }
  .jbc-cross__card { padding: 32px 22px; }
  .jbc-cross__title { font-size: 20px; }

  .jbc-final { padding: 72px 0; }
  .jbc-final__title { font-size: 26px; }
}
/* GB改修 JBC(バガチャン)LP専用スタイル [END] */

/* =====================================================================
   GB改修 JBC(バガチャン)LP専用スタイル [BEGIN]
   ※ style.css の末尾に追記してください。
   ※ トップと同じ :root デザイントークン（--gb-*）を利用します。
   ===================================================================== */

/* JBCページの全幅化
   WordPressがテンプレート適用時に body.page-template-page-jbc クラスを自動付与するため、
   それを使って確実に対象を限定（:has不使用で互換性重視） */
body.page-template-page-jbc #content,
body.page-template-page-jbc #content-in,
body.page-template-page-jbc .content-in,
body.page-template-page-jbc #main,
body.page-template-page-jbc #main-content,
body.page-template-page-jbc .main-content,
body.page-template-page-jbc .article,
body.page-template-page-jbc .main {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none !important;
}
body.page-template-page-jbc #sidebar { display: none !important; }
body.page-template-page-jbc .entry-title,
body.page-template-page-jbc .article-title,
body.page-template-page-jbc .date-tags,
body.page-template-page-jbc .breadcrumb { display: none !important; }

/* ========== HERO ========== */
.jbc-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 120px 24px;
}
.jbc-hero__inner { max-width: 760px; }
.jbc-hero__eyebrow {
  font-family: var(--gb-font-display);
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--gb-gold-bright, #e0be6a);
  margin-bottom: 22px;
}
.jbc-hero__title {
  font-family: var(--gb-font-serif);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.jbc-hero__lead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.jbc-hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== KPI ========== */
.jbc-kpi {
  background: var(--gb-bg-deep, #1a1612);
  color: #fff;
  padding: 56px 0;
}
.jbc-kpi__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.jbc-kpi__item { position: relative; }
.jbc-kpi__item:not(:last-child)::after {
  content: ''; position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%); height: 50px; width: 1px;
  background: rgba(201,162,75,0.25);
}
.jbc-kpi__num {
  font-family: var(--gb-font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--gb-accent-soft, #c89090);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.jbc-kpi__num span { font-size: 18px; margin-left: 2px; }
.jbc-kpi__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-top: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ========== ABOUT ========== */
.jbc-about { padding: 100px 0; background: #fff; text-align: center; }
.jbc-about__lead {
  font-family: var(--gb-font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  color: var(--gb-ink, #1a1612);
}
.jbc-about__text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2.3;
  color: var(--gb-ink-soft, #6b6560);
  text-align: left;
}

/* ========== MOVIE ========== */
.jbc-movie { padding: 100px 0; background: var(--gb-bg-deep, #1a1612); }
.jbc-movie__frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.jbc-movie__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== FEATURES ========== */
.jbc-features { padding: 100px 0; background: var(--gb-bg-soft, #f7f4ef); }
.jbc-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.jbc-feature {
  background: #fff;
  padding: 40px 32px;
  border-radius: 2px;
  border-top: 3px solid var(--gb-accent, #7a1f1f);
}
.jbc-feature__num {
  font-family: var(--gb-font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--gb-accent, #7a1f1f);
  margin-bottom: 16px;
  line-height: 1;
}
.jbc-feature__title {
  font-family: var(--gb-font-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  color: var(--gb-ink, #1a1612);
}
.jbc-feature__text { font-size: 14px; line-height: 2; color: var(--gb-ink-soft, #6b6560); }

/* ========== WORLD ========== */
.jbc-world { padding: 100px 0; background: #fff; }
.jbc-world__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.jbc-world__img img { width: 100%; height: auto; border-radius: 3px; display: block; }
.jbc-world__eyebrow {
  font-family: var(--gb-font-display);
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--gb-accent, #7a1f1f);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.jbc-world__eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gb-accent, #7a1f1f); }
.jbc-world__title {
  font-family: var(--gb-font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: var(--gb-ink, #1a1612);
}
.jbc-world__text { font-size: 15px; line-height: 2.2; color: var(--gb-ink-soft, #6b6560); }

/* ========== OUTLINE ========== */
.jbc-outline { padding: 100px 0; background: var(--gb-bg-soft, #f7f4ef); }
.jbc-outline__table { max-width: 760px; margin: 0 auto; }
.jbc-outline__row {
  display: flex;
  border-bottom: 1px solid var(--gb-line, #e8e2d8);
  padding: 20px 8px;
  margin: 0;
}
.jbc-outline__row dt {
  width: 160px;
  flex-shrink: 0;
  font-family: var(--gb-font-serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--gb-ink, #1a1612);
}
.jbc-outline__row dd { margin: 0; font-size: 14px; color: var(--gb-ink-soft, #6b6560); line-height: 1.8; }
.jbc-outline__note { max-width: 760px; margin: 24px auto 0; font-size: 12px; color: var(--gb-ink-mute, #9a948c); line-height: 1.8; }

/* ========== FOUNDER ========== */
.jbc-founder { padding: 100px 0; background: #fff; }
.jbc-founder__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.jbc-founder__img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
}
.jbc-founder__eyebrow {
  font-family: var(--gb-font-display);
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--gb-accent, #7a1f1f);
  margin-bottom: 16px;
}
.jbc-founder__title {
  font-family: var(--gb-font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  color: var(--gb-ink, #1a1612);
}
.jbc-founder__name {
  font-family: var(--gb-font-serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gb-ink, #1a1612);
}
.jbc-founder__name span {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: var(--gb-ink-mute, #9a948c);
  margin-left: 10px;
  letter-spacing: 0.05em;
}
.jbc-founder__text { font-size: 14px; line-height: 2.2; color: var(--gb-ink-soft, #6b6560); margin-bottom: 24px; }
.jbc-founder__link {
  font-family: var(--gb-font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gb-accent, #7a1f1f);
  border-bottom: 1px solid var(--gb-accent, #7a1f1f);
  padding-bottom: 3px;
}

/* ========== CERTIFICATION CROSS ========== */
.jbc-cross { padding: 90px 0; background: var(--gb-bg-soft, #f7f4ef); }
.jbc-cross__card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gb-line, #e8e2d8);
  border-radius: 3px;
  padding: 48px;
  text-align: center;
}
.jbc-cross__en {
  font-family: var(--gb-font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gb-accent, #7a1f1f);
  margin-bottom: 12px;
}
.jbc-cross__title {
  font-family: var(--gb-font-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  color: var(--gb-ink, #1a1612);
}
.jbc-cross__text { font-size: 14px; line-height: 2.1; color: var(--gb-ink-soft, #6b6560); margin-bottom: 28px; }

/* ========== FINAL CTA ========== */
.jbc-final {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 110px 0;
  text-align: center;
}
.jbc-final__inner { max-width: 640px; margin: 0 auto; }
.jbc-final__title {
  font-family: var(--gb-font-serif);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.05em;
}
.jbc-final__text { font-size: 15px; line-height: 2.1; color: rgba(255,255,255,0.85); margin-bottom: 36px; }

/* ========== レスポンシブ ========== */
@media (max-width: 768px) {
  .jbc-hero { min-height: auto; padding: 90px 20px; }
  .jbc-hero__title { font-size: 30px; }
  .jbc-hero__lead { font-size: 14px; }
  .jbc-hero__lead br, .jbc-final__text br { display: none; }
  .jbc-hero__ctas { flex-direction: column; }
  .jbc-hero__ctas .gb-btn { justify-content: center; }

  .jbc-kpi { padding: 40px 0; }
  .jbc-kpi__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .jbc-kpi__item:nth-child(2)::after { display: none; }
  .jbc-kpi__num { font-size: 30px; }

  .jbc-about { padding: 64px 0; }
  .jbc-about__lead { font-size: 20px; }
  .jbc-about__lead br { display: none; }

  .jbc-movie { padding: 56px 0; }

  .jbc-features { padding: 64px 0; }
  .jbc-features__grid { grid-template-columns: 1fr; gap: 20px; }
  .jbc-feature__title br { display: none; }

  .jbc-world { padding: 64px 0; }
  .jbc-world__grid { grid-template-columns: 1fr; gap: 32px; }
  .jbc-world__title { font-size: 26px; }
  .jbc-world__title br, .jbc-world__text br { display: none; }

  .jbc-outline { padding: 64px 0; }
  .jbc-outline__row { flex-direction: column; gap: 4px; }
  .jbc-outline__row dt { width: auto; }

  .jbc-founder { padding: 64px 0; }
  .jbc-founder__grid { grid-template-columns: 1fr; gap: 28px; }
  .jbc-founder__title { font-size: 24px; }

  .jbc-cross { padding: 56px 0; }
  .jbc-cross__card { padding: 32px 22px; }
  .jbc-cross__title { font-size: 20px; }

  .jbc-final { padding: 72px 0; }
  .jbc-final__title { font-size: 26px; }
}
/* GB改修 JBC(バガチャン)LP専用スタイル [END] */

/* =====================================================================
   GB独自ヘッダー スタイル [BEGIN]
   style.css 末尾に追記してください。
   ===================================================================== */

/* ---- Cocoon純正ヘッダーを非表示（独自ヘッダーに置換） ---- */
#header-container,
.header-container {
  display: none !important;
}

/* ---- 独自ヘッダー本体（固定・白基調・ブラー） ---- */
.gbh {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gb-line-soft, #f0ebe2);
  transition: box-shadow 0.3s, background 0.3s;
}
.gbh.is-scrolled {
  box-shadow: 0 4px 30px rgba(26,22,18,0.08);
  background: rgba(255,255,255,0.98);
}
/* 管理バー(ログイン時)分の位置ずれ対策 */
.admin-bar .gbh { top: 32px; }
@media (max-width: 782px) { .admin-bar .gbh { top: 46px; } }

.gbh__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---- ロゴ ---- */
.gbh__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.gbh__logo img {
  height: 52px;
  width: auto;
  display: block;
  transition: transform 0.3s;
}
.gbh__logo:hover img { transform: scale(1.04); }

/* ---- PCナビ ---- */
.gbh__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gbh__link {
  font-family: var(--gb-font-serif, 'Noto Serif JP', serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gb-ink, #1a1612);
  padding: 10px 18px;
  position: relative;
  transition: color 0.25s;
}
.gbh__link::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px; bottom: 6px;
  height: 1px;
  background: var(--gb-accent, #7a1f1f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.gbh__link:hover { color: var(--gb-accent, #7a1f1f); }
.gbh__link:hover::after { transform: scaleX(1); }

/* ---- CTAボタン ---- */
.gbh__cta {
  margin-left: 14px;
  background: var(--gb-accent, #7a1f1f);
  color: #fff !important;
  font-family: var(--gb-font-serif, serif);
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 11px 24px;
  border-radius: 3px;
  transition: background 0.25s, transform 0.25s;
  white-space: nowrap;
}
.gbh__cta:hover {
  background: var(--gb-accent-dark, #5a1414);
  transform: translateY(-2px);
  color: #fff !important;
}

/* ---- ハンバーガーボタン（SPのみ表示） ---- */
.gbh__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.gbh__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gb-ink, #1a1612);
  margin: 0 auto;
  transition: transform 0.3s, opacity 0.3s;
}
.gbh.is-open .gbh__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gbh.is-open .gbh__burger span:nth-child(2) { opacity: 0; }
.gbh.is-open .gbh__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- モバイルドロワー ---- */
.gbh__drawer {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--gb-line-soft, #f0ebe2);
  padding: 8px 20px 20px;
}
.gbh__drawer-link {
  font-family: var(--gb-font-serif, serif);
  font-size: 16px;
  color: var(--gb-ink, #1a1612);
  padding: 16px 4px;
  border-bottom: 1px solid var(--gb-line-soft, #f0ebe2);
}
.gbh__drawer-link:hover { color: var(--gb-accent, #7a1f1f); }
.gbh__drawer-cta {
  margin-top: 16px;
  background: var(--gb-accent, #7a1f1f);
  color: #fff !important;
  text-align: center;
  padding: 14px;
  border-radius: 3px;
  font-family: var(--gb-font-serif, serif);
  letter-spacing: 0.05em;
}

/* ---- ヘッダー分のスペーサー（固定ヘッダーで本文が隠れないように） ---- */
.gbh__spacer { height: 76px; }
.admin-bar .gbh__spacer { height: 76px; }

/* ============ レスポンシブ ============ */
@media (max-width: 900px) {
  .gbh__inner { height: 62px; padding: 0 16px; }
  .gbh__logo img { height: 42px; }
  .gbh__nav { display: none; }        /* PCナビを隠す */
  .gbh__burger { display: flex; }     /* ハンバーガー表示 */
  .gbh.is-open .gbh__drawer { display: flex; }
  .gbh__spacer { height: 62px; }
}

/* GB独自ヘッダー スタイル [END] */

/* ==== GBヘッダー ロゴテキスト調整パッチ [BEGIN] ==== */
.gbh__logo,
.gbh__logo:hover {
  text-decoration: none !important;
  gap: 12px;
}
.gbh__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.gbh__logo-text-sub {
  font-family: var(--gb-font-serif, 'Noto Serif JP', serif);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gb-ink-mute, #9a948c);
}
.gbh__logo-text-main {
  font-family: var(--gb-font-serif, 'Noto Serif JP', serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gb-ink, #1a1612);
}
@media (max-width: 900px) {
  .gbh__logo { gap: 8px; }
  .gbh__logo-text-sub { font-size: 8px; }
  .gbh__logo-text-main { font-size: 13px; }
}
@media (max-width: 420px) {
  .gbh__logo-text { display: none; }
}
/* ==== GBヘッダー ロゴテキスト調整パッチ [END] ==== */

/* =====================================================================
   GB改修 検定LP専用スタイル [BEGIN]
   style.css の末尾に追記してください。
   ===================================================================== */

/* 全幅化＋Cocoonページ装飾を隠す */
body.page-template-page-certification #content,
body.page-template-page-certification #content-in,
body.page-template-page-certification .content-in,
body.page-template-page-certification #main,
body.page-template-page-certification #main-content,
body.page-template-page-certification .main-content,
body.page-template-page-certification .article,
body.page-template-page-certification .main {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none !important;
}
body.page-template-page-certification #sidebar { display: none !important; }
body.page-template-page-certification .entry-title,
body.page-template-page-certification .article-title,
body.page-template-page-certification .date-tags,
body.page-template-page-certification .sns-share,
body.page-template-page-certification .sns-follow,
body.page-template-page-certification .breadcrumb { display: none !important; }

/* SP用改行制御 */
.sp-br { display: none; }
@media (max-width: 768px) { .sp-br { display: inline; } }

/* ========== HERO ========== */
.cert-hero { padding: 90px 0 70px; background: var(--gb-bg-soft, #f7f4ef); }
.cert-hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.cert-hero__eyebrow {
  font-family: var(--gb-font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gb-accent, #7a1f1f);
  margin-bottom: 18px;
}
.cert-hero__title {
  font-family: var(--gb-font-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--gb-ink, #1a1612);
  margin-bottom: 22px;
}
.cert-hero__lead { font-size: 15px; line-height: 2.1; color: var(--gb-ink-soft, #6b6560); margin-bottom: 24px; }
.cert-hero__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.cert-badge {
  font-family: var(--gb-font-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gb-accent, #7a1f1f);
  border: 1px solid var(--gb-accent, #7a1f1f);
  border-radius: 999px;
  padding: 7px 18px;
  background: #fff;
}
.cert-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.cert-hero__note { font-size: 12px; color: var(--gb-ink-mute, #9a948c); margin-top: 14px; }
.cert-hero__visual img { width: 100%; height: auto; border-radius: 4px; box-shadow: 0 16px 50px rgba(26,22,18,0.15); display: block; }

/* ========== KPI ========== */
.cert-kpi { background: var(--gb-bg-deep, #1a1612); color: #fff; padding: 52px 0; }
.cert-kpi__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.cert-kpi__item { position: relative; }
.cert-kpi__item:not(:last-child)::after {
  content: ''; position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%); height: 46px; width: 1px;
  background: rgba(201,162,75,0.25);
}
.cert-kpi__num {
  font-family: var(--gb-font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--gb-accent-soft, #c89090);
  line-height: 1.1;
}
.cert-kpi__num span { font-size: 17px; margin-left: 2px; }
.cert-kpi__label { font-size: 12px; letter-spacing: 0.08em; margin-top: 10px; color: rgba(255,255,255,0.72); line-height: 1.7; }

/* ========== ABOUT ========== */
.cert-about { padding: 96px 0; background: #fff; text-align: center; }
.cert-about__lead {
  font-family: var(--gb-font-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--gb-ink, #1a1612);
  margin-bottom: 28px;
}
.cert-about__text { max-width: 720px; margin: 0 auto; font-size: 15px; line-height: 2.3; color: var(--gb-ink-soft, #6b6560); text-align: left; }

/* ========== MERIT ========== */
.cert-merit { padding: 96px 0; background: var(--gb-bg-soft, #f7f4ef); }
.cert-merit__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cert-merit__card { background: #fff; padding: 38px 30px; border-radius: 2px; border-top: 3px solid var(--gb-accent, #7a1f1f); }
.cert-merit__num { font-family: var(--gb-font-display); font-size: 30px; font-weight: 600; color: var(--gb-accent, #7a1f1f); margin-bottom: 14px; line-height: 1; }
.cert-merit__title { font-family: var(--gb-font-serif); font-size: 18px; font-weight: 700; line-height: 1.65; letter-spacing: 0.03em; color: var(--gb-ink, #1a1612); margin-bottom: 14px; }
.cert-merit__text { font-size: 14px; line-height: 2; color: var(--gb-ink-soft, #6b6560); }

/* ========== CARD ========== */
.cert-card { padding: 96px 0; background: #fff; }
.cert-card__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.cert-card__img { width: 100%; height: auto; border-radius: 4px; border: 1px solid var(--gb-line, #e8e2d8); box-shadow: 0 10px 34px rgba(26,22,18,0.08); display: block; }
.cert-card__note { text-align: center; font-size: 12px; color: var(--gb-ink-mute, #9a948c); margin-top: 22px; }

/* ========== FLOW ========== */
.cert-flow { padding: 96px 0; background: var(--gb-bg-soft, #f7f4ef); }
.cert-flow__grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: stretch; }
.cert-flow__step { background: #fff; border: 1px solid var(--gb-line, #e8e2d8); border-radius: 3px; padding: 32px 26px; text-align: center; }
.cert-flow__num { font-family: var(--gb-font-display); font-size: 12px; letter-spacing: 0.25em; color: var(--gb-accent, #7a1f1f); margin-bottom: 12px; }
.cert-flow__title { font-family: var(--gb-font-serif); font-size: 18px; font-weight: 700; color: var(--gb-ink, #1a1612); margin-bottom: 12px; }
.cert-flow__text { font-size: 13px; line-height: 1.9; color: var(--gb-ink-soft, #6b6560); text-align: left; }
.cert-flow__arrow { display: flex; align-items: center; font-family: var(--gb-font-display); font-size: 22px; color: var(--gb-accent, #7a1f1f); }

/* ========== FAQ ========== */
.cert-faq { padding: 96px 0; background: #fff; }
.cert-faq__list { max-width: 760px; margin: 0 auto; }
.cert-faq__item { border-bottom: 1px solid var(--gb-line, #e8e2d8); }
.cert-faq__item summary {
  font-family: var(--gb-font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gb-ink, #1a1612);
  padding: 22px 36px 22px 8px;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.cert-faq__item summary::-webkit-details-marker { display: none; }
.cert-faq__item summary::after {
  content: '+';
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--gb-font-display);
  font-size: 20px;
  color: var(--gb-accent, #7a1f1f);
  transition: transform 0.25s;
}
.cert-faq__item[open] summary::after { content: '−'; }
.cert-faq__item p { font-size: 14px; line-height: 2; color: var(--gb-ink-soft, #6b6560); padding: 0 8px 22px; margin: 0; }

/* ========== FINAL CTA ========== */
.cert-final { padding: 100px 0; background: var(--gb-bg-deep, #1a1612); color: #fff; text-align: center; }
.cert-final__en { font-family: var(--gb-font-display); font-size: 12px; letter-spacing: 0.35em; color: var(--gb-gold-bright, #e0be6a); margin-bottom: 18px; }
.cert-final__title { font-family: var(--gb-font-serif); font-size: 32px; font-weight: 700; letter-spacing: 0.05em; line-height: 1.6; margin-bottom: 18px; }
.cert-final__text { font-size: 15px; line-height: 2; color: rgba(255,255,255,0.85); margin-bottom: 34px; }

/* ========== レスポンシブ ========== */
@media (max-width: 768px) {
  .cert-hero { padding: 56px 0 48px; }
  .cert-hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .cert-hero__title { font-size: 28px; }
  .cert-hero__lead { font-size: 14px; }
  .cert-hero__ctas { flex-direction: column; }
  .cert-hero__ctas .gb-btn { justify-content: center; text-align: center; }

  .cert-kpi { padding: 40px 0; }
  .cert-kpi__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
  .cert-kpi__item:nth-child(2)::after { display: none; }
  .cert-kpi__num { font-size: 30px; }

  .cert-about { padding: 60px 0; }
  .cert-about__lead { font-size: 21px; }

  .cert-merit { padding: 60px 0; }
  .cert-merit__grid { grid-template-columns: 1fr; gap: 18px; }
  .cert-merit__title br { display: none; }

  .cert-card { padding: 60px 0; }
  .cert-card__grid { grid-template-columns: 1fr; gap: 18px; }

  .cert-flow { padding: 60px 0; }
  .cert-flow__grid { grid-template-columns: 1fr; }
  .cert-flow__arrow { justify-content: center; transform: rotate(90deg); }

  .cert-faq { padding: 60px 0; }
  .cert-final { padding: 64px 0; }
  .cert-final__title { font-size: 24px; }
}
/* GB改修 検定LP専用スタイル [END] */

/* =====================================================================
   GB改修 協会紹介LP専用スタイル [BEGIN]
   style.css の末尾に追記してください。
   ===================================================================== */

/* 全幅化＋Cocoonページ装飾を隠す */
body.page-template-page-association #content,
body.page-template-page-association #content-in,
body.page-template-page-association .content-in,
body.page-template-page-association #main,
body.page-template-page-association #main-content,
body.page-template-page-association .main-content,
body.page-template-page-association .article,
body.page-template-page-association .main {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none !important;
}
body.page-template-page-association #sidebar { display: none !important; }
body.page-template-page-association .entry-title,
body.page-template-page-association .article-title,
body.page-template-page-association .date-tags,
body.page-template-page-association .sns-share,
body.page-template-page-association .sns-follow,
body.page-template-page-association .breadcrumb { display: none !important; }

/* ========== HERO / MISSION ========== */
.assoc-hero { padding: 110px 0 90px; background: var(--gb-bg-soft, #f7f4ef); text-align: center; }
.assoc-hero__eyebrow {
  font-family: var(--gb-font-display);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--gb-accent, #7a1f1f);
  margin-bottom: 22px;
}
.assoc-hero__title {
  font-family: var(--gb-font-serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--gb-ink, #1a1612);
  margin-bottom: 28px;
}
.assoc-hero__lead { max-width: 760px; margin: 0 auto; font-size: 15px; line-height: 2.3; color: var(--gb-ink-soft, #6b6560); }

/* ========== ROLE ========== */
.assoc-role { padding: 96px 0; background: #fff; }
.assoc-role__intro { text-align: center; font-size: 15px; line-height: 2.1; color: var(--gb-ink-soft, #6b6560); margin-bottom: 44px; }
.assoc-role__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.assoc-role__card {
  background: var(--gb-bg-soft, #f7f4ef);
  border-radius: 3px;
  padding: 38px 30px;
  border-top: 3px solid var(--gb-accent, #7a1f1f);
}
.assoc-role__icon { font-family: var(--gb-font-display); font-size: 28px; font-weight: 600; color: var(--gb-accent, #7a1f1f); margin-bottom: 14px; line-height: 1; }
.assoc-role__title { font-family: var(--gb-font-serif); font-size: 18px; font-weight: 700; letter-spacing: 0.03em; color: var(--gb-ink, #1a1612); margin-bottom: 14px; }
.assoc-role__text { font-size: 14px; line-height: 2; color: var(--gb-ink-soft, #6b6560); }

/* ========== ACTIVITIES ========== */
.assoc-act { padding: 96px 0; background: var(--gb-bg-soft, #f7f4ef); }
.assoc-act__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.assoc-act__card {
  display: block;
  background: #fff;
  border: 1px solid var(--gb-line, #e8e2d8);
  border-radius: 3px;
  padding: 36px 30px;
  transition: transform 0.25s, box-shadow 0.25s;
  color: inherit;
}
.assoc-act__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,22,18,0.10);
}
.assoc-act__en { font-family: var(--gb-font-display); font-size: 11px; letter-spacing: 0.28em; color: var(--gb-accent, #7a1f1f); margin-bottom: 14px; }
.assoc-act__title { font-family: var(--gb-font-serif); font-size: 19px; font-weight: 700; line-height: 1.6; color: var(--gb-ink, #1a1612); margin-bottom: 14px; }
.assoc-act__text { font-size: 13px; line-height: 2; color: var(--gb-ink-soft, #6b6560); margin-bottom: 18px; }
.assoc-act__link {
  font-family: var(--gb-font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gb-accent, #7a1f1f);
  border-bottom: 1px solid var(--gb-accent, #7a1f1f);
  padding-bottom: 2px;
}

/* ========== FOUNDER ========== */
.assoc-founder { padding: 96px 0; background: #fff; }
.assoc-founder__grid { display: grid; grid-template-columns: 0.85fr 1.3fr; gap: 56px; align-items: start; }
.assoc-founder__img img { width: 100%; height: auto; border-radius: 4px; display: block; }
.assoc-founder__eyebrow { font-family: var(--gb-font-display); font-size: 12px; letter-spacing: 0.3em; color: var(--gb-accent, #7a1f1f); margin-bottom: 14px; }
.assoc-founder__title { font-family: var(--gb-font-serif); font-size: 28px; font-weight: 700; letter-spacing: 0.04em; color: var(--gb-ink, #1a1612); margin-bottom: 18px; }
.assoc-founder__name { font-family: var(--gb-font-serif); font-size: 20px; font-weight: 700; color: var(--gb-ink, #1a1612); margin-bottom: 18px; }
.assoc-founder__name span { display: inline-block; font-size: 12px; font-weight: 400; color: var(--gb-ink-mute, #9a948c); margin-left: 10px; letter-spacing: 0.05em; }
.assoc-founder__text { font-size: 14px; line-height: 2.2; color: var(--gb-ink-soft, #6b6560); margin-bottom: 26px; }
.assoc-founder__history { margin: 0 0 22px; border-top: 1px solid var(--gb-line, #e8e2d8); }
.assoc-founder__row { display: flex; gap: 18px; padding: 14px 4px; border-bottom: 1px solid var(--gb-line, #e8e2d8); }
.assoc-founder__row dt { flex-shrink: 0; width: 100px; font-family: var(--gb-font-serif); font-weight: 700; font-size: 13px; color: var(--gb-accent, #7a1f1f); }
.assoc-founder__row dd { margin: 0; font-size: 13px; line-height: 1.9; color: var(--gb-ink-soft, #6b6560); }
.assoc-founder__quals { font-size: 11px; line-height: 1.9; color: var(--gb-ink-mute, #9a948c); }

/* ========== OUTLINE ========== */
.assoc-outline { padding: 96px 0; background: var(--gb-bg-soft, #f7f4ef); }
.assoc-outline__table { max-width: 760px; margin: 0 auto; }
.assoc-outline__row { display: flex; border-bottom: 1px solid var(--gb-line, #e8e2d8); padding: 20px 8px; margin: 0; }
.assoc-outline__row dt { width: 140px; flex-shrink: 0; font-family: var(--gb-font-serif); font-weight: 700; font-size: 14px; color: var(--gb-ink, #1a1612); }
.assoc-outline__row dd { margin: 0; font-size: 14px; color: var(--gb-ink-soft, #6b6560); line-height: 2; }

/* ========== FINAL CTA ========== */
.assoc-final { background-size: cover; background-position: center; color: #fff; padding: 100px 0; text-align: center; }
.assoc-final__title { font-family: var(--gb-font-serif); font-size: 32px; font-weight: 700; letter-spacing: 0.05em; line-height: 1.7; margin-bottom: 20px; text-shadow: 0 2px 14px rgba(0,0,0,0.5); }
.assoc-final__text { font-size: 15px; line-height: 2.1; color: rgba(255,255,255,0.9); margin-bottom: 34px; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }

/* ========== レスポンシブ ========== */
@media (max-width: 768px) {
  .assoc-hero { padding: 60px 0 50px; }
  .assoc-hero__title { font-size: 27px; }
  .assoc-hero__lead { font-size: 14px; }
  .assoc-hero__lead br { display: none; }

  .assoc-role, .assoc-act, .assoc-founder, .assoc-outline { padding: 60px 0; }
  .assoc-role__grid, .assoc-act__grid { grid-template-columns: 1fr; gap: 18px; }

  .assoc-founder__grid { grid-template-columns: 1fr; gap: 28px; }
  .assoc-founder__title { font-size: 24px; }
  .assoc-founder__row { flex-direction: column; gap: 4px; }
  .assoc-founder__row dt { width: auto; }

  .assoc-outline__row { flex-direction: column; gap: 4px; }
  .assoc-outline__row dt { width: auto; }

  .assoc-final { padding: 64px 0; }
  .assoc-final__title { font-size: 23px; }
}
/* GB改修 協会紹介LP専用スタイル [END] */

/* =====================================================================
   GB改修 グルメバーガーとはLP専用スタイル [BEGIN]
   style.css の末尾に追記してください。
   ===================================================================== */

/* 全幅化＋Cocoonページ装飾を隠す */
body.page-template-page-gourmetburger #content,
body.page-template-page-gourmetburger #content-in,
body.page-template-page-gourmetburger .content-in,
body.page-template-page-gourmetburger #main,
body.page-template-page-gourmetburger #main-content,
body.page-template-page-gourmetburger .main-content,
body.page-template-page-gourmetburger .article,
body.page-template-page-gourmetburger .main {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none !important;
}
body.page-template-page-gourmetburger #sidebar { display: none !important; }
body.page-template-page-gourmetburger .entry-title,
body.page-template-page-gourmetburger .article-title,
body.page-template-page-gourmetburger .date-tags,
body.page-template-page-gourmetburger .sns-share,
body.page-template-page-gourmetburger .sns-follow,
body.page-template-page-gourmetburger .toc,
body.page-template-page-gourmetburger .breadcrumb { display: none !important; }

/* ========== HERO / DEFINITION ========== */
.gbg-hero { padding: 100px 0 84px; background: var(--gb-bg-deep, #1a1612); color: #fff; text-align: center; }
.gbg-hero__eyebrow { font-family: var(--gb-font-display); font-size: 12px; letter-spacing: 0.35em; color: var(--gb-gold-bright, #e0be6a); margin-bottom: 16px; }
.gbg-hero__title { font-family: var(--gb-font-serif); font-size: 34px; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 44px; }
.gbg-hero__def {
  max-width: 820px;
  margin: 0 auto 32px;
  padding: 44px 40px 34px;
  border: 1px solid rgba(201,162,75,0.45);
  border-radius: 3px;
  position: relative;
}
.gbg-hero__def::before {
  content: '“';
  position: absolute;
  top: -28px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--gb-font-display);
  font-size: 64px;
  color: var(--gb-gold-bright, #e0be6a);
  background: var(--gb-bg-deep, #1a1612);
  padding: 0 18px;
  line-height: 1;
}
.gbg-hero__def-text {
  font-family: var(--gb-font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.gbg-hero__def-note { font-size: 12px; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }
.gbg-hero__lead { font-size: 15px; line-height: 2.1; color: rgba(255,255,255,0.85); }

/* ========== PHILOSOPHY ========== */
.gbg-philosophy { padding: 96px 0; background: #fff; }
.gbg-philosophy__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.gbg-philosophy__img img { width: 100%; height: auto; border-radius: 4px; display: block; }
.gbg-philosophy__eyebrow {
  font-family: var(--gb-font-display);
  font-size: 12px; letter-spacing: 0.3em;
  color: var(--gb-accent, #7a1f1f);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.gbg-philosophy__eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gb-accent, #7a1f1f); }
.gbg-philosophy__title { font-family: var(--gb-font-serif); font-size: 32px; font-weight: 700; line-height: 1.5; letter-spacing: 0.05em; color: var(--gb-ink, #1a1612); margin-bottom: 22px; }
.gbg-philosophy__text { font-size: 14px; line-height: 2.2; color: var(--gb-ink-soft, #6b6560); margin-bottom: 24px; }
.gbg-philosophy__elements { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.gbg-el {
  font-family: var(--gb-font-serif);
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--gb-ink, #1a1612);
  border: 1px solid var(--gb-line, #e8e2d8);
  border-radius: 999px;
  padding: 6px 15px;
  background: var(--gb-bg-soft, #f7f4ef);
}
.gbg-philosophy__link {
  font-family: var(--gb-font-display);
  font-size: 13px; letter-spacing: 0.1em;
  color: var(--gb-accent, #7a1f1f);
  border-bottom: 1px solid var(--gb-accent, #7a1f1f);
  padding-bottom: 3px;
}

/* ========== HISTORY (タイムライン) ========== */
.gbg-history { padding: 96px 0; background: var(--gb-bg-soft, #f7f4ef); }
.gbg-history__timeline { max-width: 820px; margin: 0 auto; position: relative; padding-left: 8px; }
.gbg-history__timeline::before {
  content: '';
  position: absolute;
  left: 74px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--gb-line, #e8e2d8);
}
.gbg-history__item { display: flex; gap: 34px; padding: 26px 0; position: relative; }
.gbg-history__year {
  flex-shrink: 0;
  width: 66px;
  font-family: var(--gb-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gb-accent, #7a1f1f);
  line-height: 1.3;
  text-align: right;
}
.gbg-history__year span { display: block; font-size: 10px; letter-spacing: 0.1em; color: var(--gb-ink-mute, #9a948c); }
.gbg-history__item::after {
  content: '';
  position: absolute;
  left: 70px; top: 36px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gb-accent, #7a1f1f);
  border: 2px solid var(--gb-bg-soft, #f7f4ef);
}
.gbg-history__body { padding-left: 14px; }
.gbg-history__body h3 { font-family: var(--gb-font-serif); font-size: 17px; font-weight: 700; color: var(--gb-ink, #1a1612); margin: 4px 0 10px; letter-spacing: 0.03em; }
.gbg-history__body p { font-size: 14px; line-height: 2; color: var(--gb-ink-soft, #6b6560); margin: 0; }

/* ========== EXPERIENCE (紳士倶楽部) ========== */
.gbg-media { padding: 96px 0; background: #fff; }
.gbg-media__card {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--gb-line, #e8e2d8);
  border-radius: 4px;
  overflow: hidden;
  background: var(--gb-bg-soft, #f7f4ef);
}
.gbg-media__img { min-height: 280px; }
.gbg-media__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gbg-media__body { padding: 44px 42px; }
.gbg-media__eyebrow { font-family: var(--gb-font-serif); font-size: 12px; letter-spacing: 0.08em; color: var(--gb-accent, #7a1f1f); margin-bottom: 12px; }
.gbg-media__title { font-family: var(--gb-font-serif); font-size: 24px; font-weight: 700; letter-spacing: 0.05em; color: var(--gb-ink, #1a1612); margin-bottom: 16px; }
.gbg-media__text { font-size: 14px; line-height: 2.1; color: var(--gb-ink-soft, #6b6560); margin-bottom: 26px; }

/* ========== FINAL CTA ========== */
.gbg-final { padding: 96px 0; background: var(--gb-bg-deep, #1a1612); color: #fff; text-align: center; }
.gbg-final__title { font-family: var(--gb-font-serif); font-size: 30px; font-weight: 700; letter-spacing: 0.05em; line-height: 1.7; margin-bottom: 18px; }
.gbg-final__text { font-size: 15px; line-height: 2; color: rgba(255,255,255,0.85); margin-bottom: 34px; }
.gbg-final__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.gbg-final__outline { color: #fff !important; border-color: #fff !important; }
.gbg-final__outline:hover { background: #fff !important; color: var(--gb-ink, #1a1612) !important; }

/* ========== レスポンシブ ========== */
@media (max-width: 768px) {
  .gbg-hero { padding: 56px 0 48px; }
  .gbg-hero__title { font-size: 25px; }
  .gbg-hero__def { padding: 34px 22px 26px; }
  .gbg-hero__def-text { font-size: 17px; }
  .gbg-hero__lead { font-size: 13px; }
  .gbg-hero__lead br { display: none; }

  .gbg-philosophy { padding: 60px 0; }
  .gbg-philosophy__grid { grid-template-columns: 1fr; gap: 28px; }
  .gbg-philosophy__title { font-size: 25px; }
  .gbg-philosophy__title br { display: none; }

  .gbg-history { padding: 60px 0; }
  .gbg-history__timeline::before { left: 52px; }
  .gbg-history__item { gap: 22px; padding: 20px 0; }
  .gbg-history__year { width: 46px; font-size: 17px; }
  .gbg-history__item::after { left: 48px; top: 30px; }
  .gbg-history__body h3 { font-size: 15px; }
  .gbg-history__body p { font-size: 13px; }

  .gbg-media { padding: 60px 0; }
  .gbg-media__card { grid-template-columns: 1fr; }
  .gbg-media__img { min-height: 200px; }
  .gbg-media__body { padding: 30px 24px; }
  .gbg-media__title { font-size: 20px; }

  .gbg-final { padding: 60px 0; }
  .gbg-final__title { font-size: 22px; }
  .gbg-final__ctas { flex-direction: column; align-items: stretch; }
  .gbg-final__ctas .gb-btn { justify-content: center; }
}
/* GB改修 グルメバーガーとはLP専用スタイル [END] */

/* =====================================================================
   GB改修 お問い合わせLP専用スタイル [BEGIN]
   style.css の末尾に追記してください。
   ===================================================================== */

/* 全幅化＋Cocoonページ装飾を隠す */
body.page-template-page-contact #content,
body.page-template-page-contact #content-in,
body.page-template-page-contact .content-in,
body.page-template-page-contact #main,
body.page-template-page-contact #main-content,
body.page-template-page-contact .main-content,
body.page-template-page-contact .article,
body.page-template-page-contact .main {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none !important;
}
body.page-template-page-contact #sidebar { display: none !important; }
body.page-template-page-contact .entry-title,
body.page-template-page-contact .article-title,
body.page-template-page-contact .date-tags,
body.page-template-page-contact .sns-share,
body.page-template-page-contact .sns-follow,
body.page-template-page-contact .breadcrumb { display: none !important; }

/* ========== HERO ========== */
.ct-hero { padding: 90px 0 64px; background: var(--gb-bg-soft, #f7f4ef); text-align: center; }
.ct-hero__eyebrow { font-family: var(--gb-font-display); font-size: 12px; letter-spacing: 0.35em; color: var(--gb-accent, #7a1f1f); margin-bottom: 16px; }
.ct-hero__title { font-family: var(--gb-font-serif); font-size: 34px; font-weight: 700; letter-spacing: 0.06em; color: var(--gb-ink, #1a1612); margin-bottom: 22px; }
.ct-hero__lead { font-size: 15px; line-height: 2.1; color: var(--gb-ink-soft, #6b6560); }

/* ========== TYPE ========== */
.ct-type { padding: 64px 0 20px; background: #fff; }
.ct-type__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ct-type__item { background: var(--gb-bg-soft, #f7f4ef); border-radius: 3px; padding: 26px 22px; border-top: 3px solid var(--gb-accent, #7a1f1f); }
.ct-type__en { font-family: var(--gb-font-display); font-size: 10px; letter-spacing: 0.25em; color: var(--gb-accent, #7a1f1f); margin-bottom: 10px; }
.ct-type__item h3 { font-family: var(--gb-font-serif); font-size: 15px; font-weight: 700; color: var(--gb-ink, #1a1612); margin: 0 0 10px; }
.ct-type__item p { font-size: 12px; line-height: 1.9; color: var(--gb-ink-soft, #6b6560); margin: 0; }

/* ========== FORM ========== */
.ct-form { padding: 56px 0 96px; background: #fff; }
.ct-form__box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--gb-bg-soft, #f7f4ef);
  border: 1px solid var(--gb-line, #e8e2d8);
  border-radius: 4px;
  padding: 48px 46px;
}
.ct-form__note { font-size: 12px; line-height: 2; color: var(--gb-ink-mute, #9a948c); margin-top: 26px; }
.ct-form__note strong { color: var(--gb-ink, #1a1612); }

/* --- CF7フォームの世界観統一 --- */
.gb-contact .wpcf7 p,
.gb-contact .wpcf7 label {
  font-family: var(--gb-font-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--gb-ink, #1a1612);
  letter-spacing: 0.04em;
}
.gb-contact .wpcf7-form-control-wrap { display: block; margin-top: 8px; }
.gb-contact .wpcf7 input[type="text"],
.gb-contact .wpcf7 input[type="email"],
.gb-contact .wpcf7 input[type="tel"],
.gb-contact .wpcf7 input[type="url"],
.gb-contact .wpcf7 textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--gb-line, #e8e2d8);
  border-radius: 3px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--gb-font-sans, 'Noto Sans JP', sans-serif);
  font-weight: 400;
  color: var(--gb-ink, #1a1612);
  transition: border-color 0.25s, box-shadow 0.25s;
  box-sizing: border-box;
}
.gb-contact .wpcf7 input:focus,
.gb-contact .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--gb-accent, #7a1f1f);
  box-shadow: 0 0 0 3px rgba(122,31,31,0.08);
}
.gb-contact .wpcf7 textarea { min-height: 220px; resize: vertical; }

/* ファイル選択 */
.gb-contact .wpcf7 input[type="file"] {
  font-size: 13px;
  color: var(--gb-ink-soft, #6b6560);
  margin-top: 8px;
}

/* 送信ボタン（黄色 → 深紅） */
.gb-contact .wpcf7 input[type="submit"],
.gb-contact .wpcf7-submit {
  display: block;
  width: 100%;
  background: var(--gb-accent, #7a1f1f) !important;
  color: #fff !important;
  font-family: var(--gb-font-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  border: none;
  border-radius: 3px;
  padding: 17px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  box-shadow: none !important;
  text-shadow: none !important;
}
.gb-contact .wpcf7 input[type="submit"]:hover,
.gb-contact .wpcf7-submit:hover {
  background: var(--gb-accent-dark, #5a1414) !important;
  transform: translateY(-2px);
}

/* バリデーションエラー表示 */
.gb-contact .wpcf7-not-valid-tip { font-size: 12px; color: var(--gb-accent, #7a1f1f); margin-top: 6px; font-weight: 400; }
.gb-contact .wpcf7 .wpcf7-response-output {
  border: 1px solid var(--gb-accent, #7a1f1f);
  border-radius: 3px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--gb-ink, #1a1612);
  margin: 22px 0 0;
  background: #fff;
}

/* ========== レスポンシブ ========== */
@media (max-width: 768px) {
  .ct-hero { padding: 54px 0 40px; }
  .ct-hero__title { font-size: 26px; }
  .ct-hero__lead { font-size: 13px; }
  .ct-hero__lead br { display: none; }

  .ct-type { padding: 44px 0 8px; }
  .ct-type__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ct-type__item { padding: 20px 16px; }

  .ct-form { padding: 40px 0 60px; }
  .ct-form__box { padding: 30px 20px; }
}
/* GB改修 お問い合わせLP専用スタイル [END] */

/* =====================================================================
   GB改修 記事ページ デザイン強化 [BEGIN]
   style.css の末尾に追記してください。PHP変更なし・CSSのみ。
   対象: 投稿ページ(single-post)。
   ===================================================================== */

/* ---- 記事全体の読みやすい幅と余白 ---- */
.single-post .article {
  max-width: 760px;
  margin: 0 auto !important;
  padding: 48px 20px 60px !important;
  background: #fff !important;
  border: none !important;
  box-shadow: none !important;
}
.single-post #main {
  background: #fff !important;
  padding-top: 0 !important;
}

/* ---- 記事タイトル ---- */
.single-post .entry-title,
.single-post .article-header .entry-title {
  font-family: var(--gb-font-serif, 'Noto Serif JP', serif) !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  line-height: 1.7 !important;
  letter-spacing: 0.04em !important;
  color: var(--gb-ink, #1a1612) !important;
  margin-bottom: 18px !important;
}

/* ---- 日付・カテゴリ ---- */
.single-post .date-tags {
  font-family: var(--gb-font-display, Georgia, serif);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gb-ink-mute, #9a948c);
}
/* アイキャッチ上のカテゴリラベル */
.single-post .cat-label {
  background: var(--gb-accent, #7a1f1f) !important;
  color: #fff !important;
  font-family: var(--gb-font-serif, serif) !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 6px 14px !important;
  opacity: 1 !important;
}

/* ---- アイキャッチ ---- */
.single-post .eye-catch {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
}
.single-post .eye-catch img { border-radius: 4px; }

/* ---- 本文タイポグラフィ ---- */
.single-post .entry-content {
  font-size: 16px;
  line-height: 2.15;
  color: #2e2a26;
  letter-spacing: 0.02em;
}
.single-post .entry-content > p { margin-bottom: 1.8em; }
.single-post .entry-content strong {
  color: var(--gb-ink, #1a1612);
  background: linear-gradient(transparent 68%, rgba(122,31,31,0.14) 68%);
  font-weight: 700;
}

/* ---- 見出し ---- */
.single-post .entry-content h2 {
  font-family: var(--gb-font-serif, serif) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.7 !important;
  letter-spacing: 0.04em !important;
  color: var(--gb-ink, #1a1612) !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--gb-line, #e8e2d8) !important;
  padding: 0 0 16px !important;
  margin: 72px 0 30px !important;
  position: relative;
}
.single-post .entry-content h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 56px; height: 2px;
  background: var(--gb-accent, #7a1f1f);
}
.single-post .entry-content h3 {
  font-family: var(--gb-font-serif, serif) !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  line-height: 1.7 !important;
  color: var(--gb-ink, #1a1612) !important;
  background: transparent !important;
  border: none !important;
  border-left: 3px solid var(--gb-accent, #7a1f1f) !important;
  padding: 4px 0 4px 16px !important;
  margin: 52px 0 24px !important;
}
.single-post .entry-content h4 {
  font-family: var(--gb-font-serif, serif) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--gb-accent, #7a1f1f) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 40px 0 18px !important;
}

/* ---- 本文中の画像 ---- */
.single-post .entry-content img {
  border-radius: 4px;
  margin: 10px auto;
}

/* ---- 目次 ---- */
.single-post .toc {
  background: var(--gb-bg-soft, #f7f4ef) !important;
  border: 1px solid var(--gb-line, #e8e2d8) !important;
  border-radius: 4px !important;
  padding: 28px 32px !important;
  margin: 40px auto !important;
}
.single-post .toc-title {
  font-family: var(--gb-font-serif, serif) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  color: var(--gb-ink, #1a1612) !important;
  text-align: center;
}
.single-post .toc-content ol,
.single-post .toc-list { font-size: 14px; line-height: 2; }
.single-post .toc a {
  color: var(--gb-ink-soft, #6b6560) !important;
  text-decoration: none !important;
}
.single-post .toc a:hover { color: var(--gb-accent, #7a1f1f) !important; }
.single-post .toc .toc-list li::marker { color: var(--gb-accent, #7a1f1f); font-family: var(--gb-font-display, serif); }

/* ---- 引用 ---- */
.single-post .entry-content blockquote {
  background: var(--gb-bg-soft, #f7f4ef) !important;
  border: none !important;
  border-left: 3px solid var(--gb-accent, #7a1f1f) !important;
  border-radius: 0 4px 4px 0;
  padding: 22px 26px !important;
  font-size: 14px;
  color: var(--gb-ink-soft, #6b6560);
}

/* ---- リスト ---- */
.single-post .entry-content ul li::marker { color: var(--gb-accent, #7a1f1f); }
.single-post .entry-content ol li::marker { color: var(--gb-accent, #7a1f1f); font-family: var(--gb-font-display, serif); font-weight: 600; }

/* ---- テーブル ---- */
.single-post .entry-content table { border: 1px solid var(--gb-line, #e8e2d8); font-size: 14px; }
.single-post .entry-content th {
  background: var(--gb-bg-soft, #f7f4ef) !important;
  font-family: var(--gb-font-serif, serif);
  color: var(--gb-ink, #1a1612);
  border: 1px solid var(--gb-line, #e8e2d8) !important;
}
.single-post .entry-content td { border: 1px solid var(--gb-line, #e8e2d8) !important; }

/* ---- SNSシェアボタンを上品に（原色 → 白×罫線、ホバーで深紅） ---- */
.single-post .sns-share { margin: 34px 0; }
.single-post .sns-share-message {
  font-family: var(--gb-font-display, serif) !important;
  font-size: 12px !important;
  letter-spacing: 0.25em !important;
  color: var(--gb-ink-mute, #9a948c) !important;
}
.single-post .sns-share-buttons a,
.single-post .sns-share-buttons a .button-caption {
  background: #fff !important;
  color: var(--gb-ink-soft, #6b6560) !important;
}
.single-post .sns-share-buttons a {
  border: 1px solid var(--gb-line, #e8e2d8) !important;
  border-radius: 3px !important;
  transition: border-color 0.25s, color 0.25s !important;
}
.single-post .sns-share-buttons a:hover,
.single-post .sns-share-buttons a:hover .button-caption {
  background: #fff !important;
  color: var(--gb-accent, #7a1f1f) !important;
}
.single-post .sns-share-buttons a:hover { border-color: var(--gb-accent, #7a1f1f) !important; }

/* ---- フォローボタン・著者表記まわりの色味を抑える ---- */
.single-post .sns-follow-message {
  font-family: var(--gb-font-display, serif) !important;
  font-size: 12px !important;
  letter-spacing: 0.25em !important;
  color: var(--gb-ink-mute, #9a948c) !important;
}
.single-post .sns-follow-buttons a {
  background: #fff !important;
  color: var(--gb-ink-soft, #6b6560) !important;
  border: 1px solid var(--gb-line, #e8e2d8) !important;
  border-radius: 3px !important;
}
.single-post .sns-follow-buttons a:hover { color: var(--gb-accent, #7a1f1f) !important; border-color: var(--gb-accent, #7a1f1f) !important; }

/* ---- 著者ボックス ---- */
.single-post .author-box {
  border: 1px solid var(--gb-line, #e8e2d8) !important;
  border-radius: 4px;
  background: var(--gb-bg-soft, #f7f4ef) !important;
}
.single-post .author-box .author-name a {
  font-family: var(--gb-font-serif, serif);
  color: var(--gb-ink, #1a1612) !important;
}

/* ---- 関連記事 ---- */
.single-post .related-entry-heading,
.single-post #comment-area .comment-title {
  font-family: var(--gb-font-serif, serif) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: var(--gb-ink, #1a1612) !important;
}
.single-post .related-entry-card-title {
  font-family: var(--gb-font-serif, serif) !important;
  line-height: 1.7 !important;
}

/* ---- パンくず ---- */
.single-post .breadcrumb {
  font-size: 12px;
  color: var(--gb-ink-mute, #9a948c);
}
.single-post .breadcrumb a { color: var(--gb-ink-mute, #9a948c) !important; }

/* ---- ページ送り（前後記事） ---- */
.single-post .pager-post-navi a {
  border: 1px solid var(--gb-line, #e8e2d8) !important;
  border-radius: 4px;
  background: #fff !important;
}
.single-post .pager-post-navi a:hover { border-color: var(--gb-accent, #7a1f1f) !important; }
.single-post .pager-post-navi .iconfont { color: var(--gb-accent, #7a1f1f) !important; }

/* ---- レスポンシブ ---- */
@media (max-width: 768px) {
  .single-post .article { padding: 28px 16px 44px !important; }
  .single-post .entry-title,
  .single-post .article-header .entry-title { font-size: 23px !important; }
  .single-post .entry-content { font-size: 15px; line-height: 2.05; }
  .single-post .entry-content h2 { font-size: 20px !important; margin: 52px 0 24px !important; }
  .single-post .entry-content h3 { font-size: 17px !important; margin: 40px 0 20px !important; }
  .single-post .toc { padding: 22px 20px !important; }
}
/* GB改修 記事ページ デザイン強化 [END] */

/* =====================================================================
   GB監修者ボックス スタイル [BEGIN]
   style.css の末尾に追記してください。
   ===================================================================== */

.gb-author-v2 {
  max-width: 760px;
  margin: 56px auto 8px;
  background: var(--gb-bg-soft, #f7f4ef);
  border: 1px solid var(--gb-line, #e8e2d8);
  border-top: 3px solid var(--gb-accent, #7a1f1f);
  border-radius: 4px;
  padding: 30px 32px 26px;
}

.gb-author-v2__top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.gb-author-v2__logo {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--gb-line, #e8e2d8);
}
.gb-author-v2__kicker {
  font-family: var(--gb-font-display, Georgia, serif);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gb-accent, #7a1f1f);
  margin-bottom: 6px;
}
.gb-author-v2__name {
  font-family: var(--gb-font-serif, 'Noto Serif JP', serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gb-ink, #1a1612);
  margin-bottom: 10px;
}
.gb-author-v2__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gb-accent, #7a1f1f);
  border: 1px solid var(--gb-accent, #7a1f1f);
  border-radius: 999px;
  padding: 3px 12px;
  margin-left: 8px;
  vertical-align: 2px;
  background: #fff;
}
.gb-author-v2__desc {
  font-size: 13px;
  line-height: 2;
  color: var(--gb-ink-soft, #6b6560);
  margin: 0;
}
.gb-author-v2__inlineLink {
  color: var(--gb-accent, #7a1f1f) !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--gb-accent, #7a1f1f);
}

.gb-author-v2__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gb-line, #e8e2d8);
}
.gb-author-v2__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gb-font-serif, serif);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--gb-ink, #1a1612) !important;
  background: #fff;
  border: 1px solid var(--gb-line, #e8e2d8);
  border-radius: 3px;
  padding: 10px 18px;
  text-decoration: none !important;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
}
.gb-author-v2__btn:hover {
  border-color: var(--gb-accent, #7a1f1f);
  color: var(--gb-accent, #7a1f1f) !important;
  transform: translateY(-2px);
}
.gb-author-v2__btn--primary {
  background: var(--gb-accent, #7a1f1f);
  border-color: var(--gb-accent, #7a1f1f);
  color: #fff !important;
}
.gb-author-v2__btn--primary:hover {
  background: var(--gb-accent-dark, #5a1414);
  color: #fff !important;
}
.gb-author-v2__ico {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .gb-author-v2 { padding: 24px 20px 20px; margin-top: 40px; }
  .gb-author-v2__top { gap: 14px; }
  .gb-author-v2__logo { width: 60px; height: 60px; }
  .gb-author-v2__name { font-size: 16px; }
  .gb-author-v2__tag { display: block; width: fit-content; margin: 8px 0 0; }
  .gb-author-v2__actions { gap: 8px; }
  .gb-author-v2__btn { padding: 9px 14px; font-size: 12px; }
}
/* GB監修者ボックス スタイル [END] */

/* =====================================================================
   GB改修 会員・規約系共通ページ スタイル [BEGIN]
   style.css の末尾に追記してください。
   対象: テンプレート「GB共通ページ（会員・規約系）」適用ページ
   ===================================================================== */

/* 全幅化＋Cocoon装飾を隠す */
body.page-template-page-member #content,
body.page-template-page-member #content-in,
body.page-template-page-member .content-in,
body.page-template-page-member #main,
body.page-template-page-member #main-content,
body.page-template-page-member .main-content,
body.page-template-page-member .article,
body.page-template-page-member .main {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  float: none !important;
}
body.page-template-page-member #sidebar { display: none !important; }
body.page-template-page-member .entry-title,
body.page-template-page-member .article-header,
body.page-template-page-member .date-tags,
body.page-template-page-member .sns-share,
body.page-template-page-member .sns-follow,
body.page-template-page-member .toc,
body.page-template-page-member .breadcrumb { display: none !important; }

/* ========== ヒーロー ========== */
.mb-hero { padding: 64px 0 44px; background: var(--gb-bg-soft, #f7f4ef); text-align: center; }
.mb-hero__eyebrow { font-family: var(--gb-font-display, Georgia, serif); font-size: 11px; letter-spacing: 0.35em; color: var(--gb-accent, #7a1f1f); margin-bottom: 14px; }
.mb-hero__title { font-family: var(--gb-font-serif, 'Noto Serif JP', serif); font-size: 28px; font-weight: 700; letter-spacing: 0.06em; color: var(--gb-ink, #1a1612); margin: 0; }

/* ========== 本文ボックス ========== */
.mb-content { padding: 52px 0 90px; background: #fff; }
.mb-content__box {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2.1;
  color: #2e2a26;
}

/* 見出し（本文内h2/h3） */
.gb-member .mb-content__box h2 {
  font-family: var(--gb-font-serif, serif) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  color: var(--gb-ink, #1a1612) !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--gb-line, #e8e2d8) !important;
  padding: 0 0 12px !important;
  margin: 52px 0 22px !important;
  position: relative;
}
.gb-member .mb-content__box h2::after {
  content: '';
  position: absolute; left: 0; bottom: -1px;
  width: 44px; height: 2px;
  background: var(--gb-accent, #7a1f1f);
}
.gb-member .mb-content__box h2:first-child { margin-top: 0 !important; }
.gb-member .mb-content__box h3 {
  font-family: var(--gb-font-serif, serif) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--gb-ink, #1a1612) !important;
  background: transparent !important;
  border: none !important;
  border-left: 3px solid var(--gb-accent, #7a1f1f) !important;
  padding: 3px 0 3px 14px !important;
  margin: 40px 0 18px !important;
}

/* リンク（マイページ内の各操作リンク等） */
.gb-member .mb-content__box a {
  color: var(--gb-accent, #7a1f1f) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(122,31,31,0.4);
  transition: border-color 0.2s;
}
.gb-member .mb-content__box a:hover { border-bottom-color: var(--gb-accent, #7a1f1f); }

/* 画像（名刺サンプル等） */
.gb-member .mb-content__box img {
  border-radius: 4px;
  border: 1px solid var(--gb-line, #e8e2d8);
  height: auto;
  max-width: 100%;
}

/* ========== フォーム統一（CF7・WP-Members共通） ========== */
.gb-member input[type="text"],
.gb-member input[type="email"],
.gb-member input[type="tel"],
.gb-member input[type="url"],
.gb-member input[type="password"],
.gb-member textarea,
.gb-member select {
  width: 100%;
  background: var(--gb-bg-soft, #f7f4ef);
  border: 1px solid var(--gb-line, #e8e2d8);
  border-radius: 3px;
  padding: 12px 15px;
  font-size: 15px;
  color: var(--gb-ink, #1a1612);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  box-sizing: border-box;
}
.gb-member input:focus,
.gb-member textarea:focus,
.gb-member select:focus {
  outline: none;
  background: #fff;
  border-color: var(--gb-accent, #7a1f1f);
  box-shadow: 0 0 0 3px rgba(122,31,31,0.08);
}
.gb-member textarea { min-height: 140px; resize: vertical; }

/* 送信・ログイン等のボタン（黄色ボタン→深紅） */
.gb-member input[type="submit"],
.gb-member button[type="submit"],
.gb-member .wpcf7-submit,
.gb-member #wpmem_login input[type="submit"],
.gb-member .buttons input[type="submit"] {
  display: block;
  width: 100%;
  background: var(--gb-accent, #7a1f1f) !important;
  color: #fff !important;
  font-family: var(--gb-font-serif, serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: none !important;
  border-radius: 3px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  box-shadow: none !important;
  text-shadow: none !important;
}
.gb-member input[type="submit"]:hover,
.gb-member .wpcf7-submit:hover {
  background: var(--gb-accent-dark, #5a1414) !important;
  transform: translateY(-2px);
}

/* CF7 エラー・応答 */
.gb-member .wpcf7-not-valid-tip { font-size: 12px; color: var(--gb-accent, #7a1f1f); margin-top: 6px; }
.gb-member .wpcf7 .wpcf7-response-output {
  border: 1px solid var(--gb-accent, #7a1f1f);
  border-radius: 3px;
  padding: 14px 18px;
  font-size: 13px;
  margin: 22px 0 0;
  background: var(--gb-bg-soft, #f7f4ef);
}

/* WP-Members のフォーム周辺 */
.gb-member #wpmem_login,
.gb-member #wpmem_reg {
  background: var(--gb-bg-soft, #f7f4ef);
  border: 1px solid var(--gb-line, #e8e2d8);
  border-radius: 4px;
  padding: 30px 28px;
}
.gb-member #wpmem_login label,
.gb-member #wpmem_reg label {
  font-family: var(--gb-font-serif, serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--gb-ink, #1a1612);
}
.gb-member .pwd_forgot, .gb-member .reg_link { font-size: 13px; margin-top: 12px; }

/* 特商法など定義リスト風の段落を読みやすく */
.gb-member .mb-content__box p { margin-bottom: 1.6em; }

/* ========== レスポンシブ ========== */
@media (max-width: 768px) {
  .mb-hero { padding: 44px 0 32px; }
  .mb-hero__title { font-size: 22px; }
  .mb-content { padding: 36px 0 60px; }
  .mb-content__box { padding: 0 4px; font-size: 14px; }
  .gb-member .mb-content__box h2 { font-size: 18px !important; margin: 40px 0 18px !important; }
}
/* GB改修 会員・規約系共通ページ スタイル [END] */

/* =====================================================================
   GB独自フッター スタイル [BEGIN]
   style.css の末尾に追記してください。
   ===================================================================== */

/* Cocoon純正フッターを非表示（独自フッターに置換） */
#footer,
.footer {
  display: none !important;
}

/* ========== 独自フッター本体 ========== */
.gbf {
  background: var(--gb-bg-deep, #1a1612);
  color: rgba(255,255,255,0.82);
}
.gbf a { text-decoration: none !important; }

.gbf__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 56px;
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 60px;
  align-items: start;
}

/* ---- ブランド ---- */
.gbf__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.gbf__logo img {
  height: 56px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}
.gbf__logo-text { display: flex; flex-direction: column; line-height: 1.4; }
.gbf__logo-sub {
  font-family: var(--gb-font-serif, 'Noto Serif JP', serif);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
}
.gbf__logo-main {
  font-family: var(--gb-font-serif, serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}
.gbf__tagline {
  font-family: var(--gb-font-serif, serif);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gb-gold-bright, #e0be6a);
  margin: 22px 0 0;
}

/* ---- ナビ4カラム ---- */
.gbf__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.gbf__col { display: flex; flex-direction: column; gap: 13px; }
.gbf__col-title {
  font-family: var(--gb-font-display, Georgia, serif);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gb-gold-bright, #e0be6a);
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,162,75,0.25);
}
.gbf__col a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72) !important;
  transition: color 0.25s, padding-left 0.25s;
}
.gbf__col a:hover {
  color: #fff !important;
  padding-left: 4px;
}

/* ---- ボトムバー ---- */
.gbf__bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
}
.gbf__bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.gbf__en {
  font-family: var(--gb-font-display, Georgia, serif);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
}
.gbf__copy {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

/* ========== レスポンシブ ========== */
@media (max-width: 900px) {
  .gbf__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 52px 20px 40px;
  }
  .gbf__nav { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}
@media (max-width: 480px) {
  .gbf__logo img { height: 48px; }
  .gbf__logo-main { font-size: 15px; }
  .gbf__bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; padding: 18px 20px; }
}
/* GB独自フッター スタイル [END] */