@charset "UTF-8";
/* ==========================================================
   good-h.jp front-page v1 — 全面リニューアル用CSS（gh2-*）
   ========================================================== */
:root {
  --gh2-accent: #e8762e;
  --gh2-accent-dk: #c95f1a;
  --gh2-ink: #2e2620;
  --gh2-ink-soft: #6b5d52;
  --gh2-bg: #fffdf8;
  --gh2-tint: #faf3ea;
  --gh2-radius: 16px;
  --gh2-shadow: 0 4px 20px rgba(60, 40, 20, 0.08);
  --gh2-shadow-hv: 0 12px 32px rgba(60, 40, 20, 0.16);
}

.gh2-inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.gh2-center { text-align: center; margin-top: 40px; }

/* ---------- HERO ---------- */
.gh2-hero {
  position: relative; overflow: hidden;
  background: #2b2019;
}
.gh2-hero::before {
  content: ""; position: absolute; right: -140px; top: -140px; width: 480px; height: 480px;
  border-radius: 50%; background: rgba(232, 118, 46, 0.14);
}
.gh2-hero::after {
  content: ""; position: absolute; left: 38%; bottom: -180px; width: 380px; height: 380px;
  border-radius: 50%; background: rgba(232, 118, 46, 0.07);
}
.gh2-hero__inner {
  position: relative; z-index: 2; max-width: 1120px; margin: 0 auto;
  padding: 96px 24px; width: 100%;
  display: flex; align-items: center; gap: 56px;
}
.gh2-hero__text { flex: 1.15; }
.gh2-hero__visual { flex: 1; position: relative; }
.gh2-hero__visual img {
  width: 100%; border-radius: 20px; display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.gh2-hero__visual-sub {
  position: absolute !important; right: -20px; bottom: -36px;
  width: 44% !important; height: 180px; object-fit: cover; background: #fff;
  border: 4px solid #2b2019;
}
.gh2-hero__eyebrow {
  display: inline-block; color: #fff; background: var(--gh2-accent);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.gh2-hero__title {
  color: #fff !important; font-size: 46px; line-height: 1.35; font-weight: 700;
  letter-spacing: 0.04em; margin: 0 0 18px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.gh2-hero__sub { color: rgba(255, 255, 255, 0.92) !important; font-size: 16px; line-height: 2; margin-bottom: 36px; }
.gh2-hero__cta { display: flex; gap: 18px; flex-wrap: wrap; align-items: stretch; }

.gh2-btn {
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
  border-radius: 12px; padding: 16px 32px; font-weight: 700; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.gh2-btn:hover { transform: translateY(-2px); box-shadow: var(--gh2-shadow-hv); }
.gh2-btn--primary { background: var(--gh2-accent); color: #fff !important; font-size: 17px; box-shadow: var(--gh2-shadow); }
.gh2-btn--primary:hover { background: var(--gh2-accent-dk); }
.gh2-btn--tel { background: #fff; color: var(--gh2-ink) !important; box-shadow: var(--gh2-shadow); }
.gh2-btn--tel__num { font-size: 24px; color: var(--gh2-accent); letter-spacing: 0.03em; }

.gh2-btn--tel__note { font-size: 11px; color: var(--gh2-ink-soft); font-weight: 500; }
.gh2-btn--outline {
  background: #fff; color: var(--gh2-accent) !important;
  border: 2px solid var(--gh2-accent); padding: 14px 44px; font-size: 15px;
}
.gh2-btn--outline:hover { background: var(--gh2-accent); color: #fff !important; }

/* ---------- STATS ---------- */
.gh2-stats { background: #fff; border-bottom: 1px solid #f0e7db; padding: 44px 0; }
.gh2-stats__grid { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.gh2-stat { text-align: center; }
.gh2-stat__num { display: block; font-size: 52px; font-weight: 700; color: var(--gh2-accent); line-height: 1.1; letter-spacing: 0.02em; }
.gh2-stat__num small { font-size: 22px; margin-left: 2px; color: var(--gh2-ink); }
.gh2-stat__label { display: block; margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--gh2-ink-soft); letter-spacing: 0.06em; }

/* ---------- SECTION 共通 ---------- */
.gh2-section { padding: 88px 0; background: var(--gh2-bg); }
.gh2-section--tint { background: var(--gh2-tint); }
.gh2-section__eyebrow {
  text-align: center; color: var(--gh2-accent); font-weight: 700;
  font-size: 13px; letter-spacing: 0.22em; margin: 0 0 10px;
}
.gh2-section__title {
  text-align: center; font-size: 34px; font-weight: 700; color: var(--gh2-ink);
  letter-spacing: 0.06em; margin: 0 0 14px; line-height: 1.4;
}
.gh2-section__lead { text-align: center; color: var(--gh2-ink-soft); font-size: 15px; margin: 0 0 48px; }
.gh2-section__title + .gh2-cards,
.gh2-section__title + .gh2-reasons,
.gh2-section__title + .gh2-banners { margin-top: 48px; }

/* ---------- カード ---------- */
.gh2-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gh2-card {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--gh2-radius);
  overflow: hidden; box-shadow: var(--gh2-shadow); text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gh2-card:hover { transform: translateY(-5px); box-shadow: var(--gh2-shadow-hv); }
.gh2-card__img { margin: 0; overflow: hidden; }
.gh2-card__img img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gh2-card:hover .gh2-card__img img { transform: scale(1.05); }
.gh2-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; text-align: left; }
.gh2-card__body h3 { font-size: 20px; color: var(--gh2-ink); margin: 0 0 6px; line-height: 1.4; }
.gh2-card__tag { color: var(--gh2-accent); font-size: 12px; font-weight: 700; margin: 0 0 12px; }
.gh2-card__desc { color: var(--gh2-ink-soft); font-size: 14px; line-height: 1.9; margin: 0 0 18px; flex: 1; }
.gh2-card__more {
  align-self: flex-start; color: var(--gh2-accent); font-size: 13px; font-weight: 700;
}
.gh2-card__more::after { content: " →"; transition: margin 0.2s ease; }
.gh2-card:hover .gh2-card__more::after { margin-left: 4px; }

/* ---------- 選ばれる理由 ---------- */
.gh2-reasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.gh2-reason {
  background: #fff; border-radius: var(--gh2-radius); padding: 32px 30px;
  box-shadow: var(--gh2-shadow); position: relative;
}
.gh2-reason__num {
  display: block; font-size: 15px; font-weight: 700; color: var(--gh2-accent);
  letter-spacing: 0.1em; margin-bottom: 10px;
}
.gh2-reason__num::after {
  content: ""; display: inline-block; width: 36px; height: 2px;
  background: var(--gh2-accent); vertical-align: middle; margin-left: 12px; opacity: 0.5;
}
.gh2-reason h3 { font-size: 19px; color: var(--gh2-ink); margin: 0 0 10px; }
.gh2-reason p { font-size: 14px; line-height: 1.9; color: var(--gh2-ink-soft); margin: 0; }

/* ---------- 特集バナー ---------- */
.gh2-banners { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gh2-banners a {
  display: block; border-radius: 12px; overflow: hidden; box-shadow: var(--gh2-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gh2-banners a:hover { transform: translateY(-3px); box-shadow: var(--gh2-shadow-hv); }
.gh2-banners img { width: 100%; display: block; }

/* ---------- 採用 ---------- */
.gh2-recruit { padding: 88px 0; background: var(--gh2-bg); }
.gh2-recruit__banner {
  position: relative; display: block; border-radius: 20px; overflow: hidden;
  box-shadow: var(--gh2-shadow-hv); text-decoration: none;
  background: linear-gradient(115deg, #35281d 0%, #4a3524 60%, #6b4526 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gh2-recruit__banner:hover { transform: translateY(-3px); }
.gh2-recruit__banner::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px;
  border-radius: 50%; background: rgba(232, 118, 46, 0.18);
}
.gh2-recruit__banner::after {
  content: ""; position: absolute; right: 120px; bottom: -120px; width: 260px; height: 260px;
  border-radius: 50%; background: rgba(232, 118, 46, 0.10);
}
.gh2-recruit__text { display: flex; flex-direction: column; justify-content: center; padding: 64px 56px; max-width: 640px; position: relative; z-index: 1; }
.gh2-recruit__eyebrow { color: var(--gh2-accent); font-weight: 700; font-size: 13px; letter-spacing: 0.22em; margin: 0 0 10px; }
.gh2-recruit__text h2 { color: #fff !important; font-size: 30px; margin: 0 0 10px; line-height: 1.5; }
.gh2-recruit__desc { color: rgba(255, 255, 255, 0.9); font-size: 14px; margin: 0 0 24px; }
.gh2-recruit__text .gh2-btn { align-self: flex-start; }

/* ---------- Instagram（既存フィードの整形） ---------- */
.gh2-section #sb_instagram { padding-top: 24px !important; }
.gh2-section #sb_instagram .sbi_item:nth-child(n+9) { display: none !important; }
.gh2-section #sb_instagram .sbi_photo,
.gh2-section #sb_instagram .sbi_item { border-radius: 12px; overflow: hidden; }

/* ---------- レスポンシブ ---------- */
.gh2-hero__title .sp { display: none; }
@media (max-width: 900px) {
  .gh2-hero__inner { flex-direction: column; gap: 40px; padding: 56px 24px 72px; }
  .gh2-hero__text { flex: none; width: 100%; }
  .gh2-hero__visual { flex: none; width: 100%; }
  .gh2-hero__title { font-size: 28px !important; line-height: 1.5; }
  .gh2-hero__sub { font-size: 14px; }
  .gh2-hero__eyebrow { font-size: 11px; line-height: 1.6; }
  .gh2-hero__cta { flex-direction: column; }
  .gh2-hero__cta .gh2-btn { width: 100%; }
  .gh2-hero__visual-sub { right: 0; bottom: -28px; height: 120px; }
  .gh2-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .gh2-reasons { grid-template-columns: 1fr; }
  .gh2-banners { grid-template-columns: 1fr; max-width: 570px; margin-left: auto; margin-right: auto; }
  .gh2-hero__title { font-size: 32px; }
  .gh2-hero__title .sp { display: inline; }
  .gh2-hero__sub .pc { display: none; }
  .gh2-stats__grid { gap: 32px; }
  .gh2-stat__num { font-size: 40px; }
  .gh2-section { padding: 64px 0; }
  .gh2-recruit__banner > img { height: 420px; }
  .gh2-recruit__text { padding: 0 28px; }
  .gh2-recruit__text h2 { font-size: 24px; }
}

/* ---------- NEWS ---------- */
.gh2-inner--narrow { max-width: 820px; }
.gh2-news { list-style: none; margin: 48px 0 0; padding: 0; }
.gh2-news__item a {
  display: flex; align-items: baseline; gap: 24px;
  padding: 20px 8px; text-decoration: none;
  border-bottom: 1px solid #f0e7db;
  transition: background 0.2s ease;
}
.gh2-news__item:first-child a { border-top: 1px solid #f0e7db; }
.gh2-news__item a:hover { background: #faf3ea; }
.gh2-news__item time {
  flex-shrink: 0; color: #e8762e; font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em;
}
.gh2-news__title { color: #2e2620; font-size: 15px; line-height: 1.7; }
@media (max-width: 900px) {
  .gh2-news__item a { flex-direction: column; gap: 6px; }
}
