/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .heiwa-sec-head          - 横並び英日見出し＋二色斜め下線（デザイン特有）
 * .heiwa-header-logo-*     - ヘッダーロゴ内テキスト（構造不足）
 * .heiwa-footer-*          - フッター内情報・ナビ（値の粒度不足）
 * .heiwa-contact-cta       - お問い合わせCTAバンド（値の粒度不足）
 * .heiwa-mv-*              - MV slope-cut・scroll-cue・Ken Burns（装飾パターン不足）
 * .heiwa-about-intro       - TOPページ導入2カラム＋バッジ（構造不足）
 * .heiwa-biz-card          - 事業内容カード（値の粒度不足）
 * .heiwa-strength-*        - 私たちの強み4列グリッド（値の粒度不足）
 * .heiwa-ach-*             - 施工実績グリッド（構造不足）
 * .heiwa-recruit-banner    - 採用バナー（構造不足）
 * .heiwa-appeal-*          - 採用魅力4列グリッド（値の粒度不足）
 * .heiwa-page-mv           - 下層ページMVセクション（値の粒度不足）
 *
 * ======================================
 * 共通SCSSに不足していたもの
 * ======================================
 *
 * 値の粒度不足: フッター内dl・footer-nav の細かい配色指定
 * 構造不足: heiwa-sec-head の横並び2カラムgrid + 斜め下線
 * 装飾パターン不足: MV slope-cut (polygon), scroll-cue line animation, Ken Burns
 *
 */

/* ======================================
   Root / Font override
   ====================================== */
:root {
  --heiwa-green:      #00B050;
  --heiwa-green-deep: #007a38;
  --heiwa-green-mute: #e6f4ea;
  --heiwa-cream:      #FFFDD0;
  --heiwa-ink:        #141414;
  --heiwa-ink-2:      #3a3a3a;
  --heiwa-ink-3:      #777777;
  --heiwa-line:       rgba(20,20,20,0.1);
}

body {
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

/* ======================================
   Section Heading — heiwa-sec-head
   Big EN (Jost) left + small JP right (baseline) + two-tone diagonal divider
   ====================================== */
.heiwa-sec-head {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: center;
  align-items: baseline;
  column-gap: 22px;
}
.heiwa-sec-head::after {
  content: "";
  grid-column: 1 / -1;
  grid-row: 2;
  width: 200px;
  height: 8px;
  justify-self: center;
  margin-top: 24px;
  background: linear-gradient(
    115deg,
    var(--heiwa-green) 0%, var(--heiwa-green) 30%,
    transparent 30%, transparent 36%,
    #9aa0a6 36%, #9aa0a6 100%
  );
}
.heiwa-sec-head__en {
  grid-column: 1;
  grid-row: 1;
  font-family: "Jost", sans-serif;
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--heiwa-ink);
  line-height: 1;
  margin: 0;
}
.heiwa-sec-head__ja {
  grid-column: 2;
  grid-row: 1;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--heiwa-ink-2);
  margin: 0;
  line-height: 1.6;
}

/* Left-aligned modifier */
.heiwa-sec-head--left {
  justify-content: flex-start;
}
.heiwa-sec-head--left::after {
  justify-self: start;
}

/* Dark section variant */
.heiwa-sec-head--dark .heiwa-sec-head__en {
  color: #fff;
}
.heiwa-sec-head--dark .heiwa-sec-head__ja {
  color: rgba(255,255,255,.78);
}
.heiwa-sec-head--dark::after {
  background: linear-gradient(
    115deg,
    var(--heiwa-green) 0%, var(--heiwa-green) 30%,
    transparent 30%, transparent 36%,
    rgba(255,255,255,.55) 36%, rgba(255,255,255,.55) 100%
  );
}

/* Mobile: stack EN over JP */
@media (max-width: 639px) {
  .heiwa-sec-head {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }
  .heiwa-sec-head__en { grid-column: 1; }
  .heiwa-sec-head__ja { grid-column: 1; grid-row: 2; margin-top: 6px; }
  .heiwa-sec-head::after { grid-row: 3; }
  .heiwa-sec-head--left {
    justify-content: flex-start;
    justify-items: flex-start;
  }
}

/* ======================================
   Header overrides
   ====================================== */

/* 背景：クリームベージュ */
.header-bar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--heiwa-line);
  box-shadow: none;
}

/* 高さをパディングベースに変更（80px固定解除） */
.header-bar .header__inner {
  height: auto;
  padding: 14px 32px;
  max-width: 1320px;
  gap: 32px;
}
@media (max-width: 1100px) {
  .header-bar .header__inner {
    padding: 12px 20px;
    height: auto;
  }
}

/* ロゴ */
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.heiwa-header-logo-img {
  width: 40px;
  height: auto;
  display: block;
}
.heiwa-header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.heiwa-header-logo-ja {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--heiwa-ink);
}
.heiwa-header-logo-en {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  color: var(--heiwa-green);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.15em;
}

/* ナビ：アイテム間隔 */
.header__nav {
  gap: 0;
  margin-left: auto;
  margin-right: 0;
}

/* ナビアイテム：JA上・EN下に視覚的に並べ替え（CSSのorderで制御） */
.header__nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px;
  gap: 4px;
  transition: opacity 0.2s ease;
  position: relative;
}

/* アンダーライン：ホバー・アクティブで全幅表示 */
.header__nav-item a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 0;
  height: 2px;
  background: var(--heiwa-green);
  transition: width 0.3s ease;
  transform: none;
}
.header__nav-item a:hover {
  opacity: 1;
}
.header__nav-item a:hover::after {
  width: calc(100% - 32px);
}
.header__nav-item--current a::after {
  width: calc(100% - 32px);
  left: 16px;
  transform: none;
}

/* JA：メインラベル（上に表示） */
.header__nav-ja {
  order: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--heiwa-ink);
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s ease;
}

/* EN：サブラベル（下に表示） */
.header__nav-en {
  order: 2;
  font-family: "Jost", sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: var(--heiwa-ink-3);
  letter-spacing: 0.15em;
  line-height: 1;
  transition: color 0.2s ease;
}

/* ホバー・アクティブ時の文字色 */
.header__nav-item a:hover .header__nav-ja,
.header__nav-item--current a .header__nav-ja {
  color: var(--heiwa-green);
}

/* 右エリア：高さ auto・アイテム間隔 */
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  height: auto;
}
@media (max-width: 1100px) {
  .header__right { display: none; }
}

/* TEL："TEL"ラベルを::beforeで表示、番号スタイル */
.header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--heiwa-ink);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.header__tel::before {
  content: "TEL";
  font-family: "Jost", sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--heiwa-ink-3);
  line-height: 1;
  margin-bottom: 3px;
  margin-right: 0;
}
.header__tel:hover {
  opacity: 0.7;
}

/* CTAボタン：コンパクト・角丸2px */
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  height: auto;
  padding: 12px 20px;
  background: var(--heiwa-green);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.header__cta:hover {
  background: var(--heiwa-green-deep);
  opacity: 1;
}
.header__cta__sub {
  display: none;
}

/* ======================================
   MV – Hero wrapper
   ====================================== */
.heiwa-mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #1b4d27;
}
@media (max-width: 896px) { .heiwa-mv { height: 80vh; } }
@media (max-width: 639px) { .heiwa-mv { height: 70vh; } }

.heiwa-mv-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,30,15,.5) 0%, rgba(10,30,15,.15) 40%, rgba(10,30,15,.6) 100%),
    linear-gradient(90deg, rgba(10,30,15,.5) 0%, rgba(10,30,15,0) 55%);
}

.heiwa-mv-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 100px;
}

@media (max-width: 896px) {
  .heiwa-mv-content { padding: 0 0 80px; }
}
@media (max-width: 639px) {
  .heiwa-mv-eyebrow { font-size: 0.9rem; }
}
.heiwa-mv-content .heiwa-mv-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
@media (max-width: 639px) {
  .heiwa-mv-content .heiwa-mv-inner { padding: 0 20px; }
}

/* ======================================
   MV – Hero
   ====================================== */


/* Scroll cue */
.heiwa-scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 90px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
}
.heiwa-scroll-cue::after {
  content: "";
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, #fff 50%, transparent 50%);
  animation: heiwaScrollLine 2s linear infinite;
}
@keyframes heiwaScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Slider bullet indicators */
.heiwa-slider-bullets {
  position: absolute;
  left: 32px;
  bottom: 36px;
  z-index: 4;
  display: flex;
  gap: 14px;
  align-items: center;
}
.heiwa-slider-bullets .heiwa-bul {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  transition: background 0.2s;
}
.heiwa-slider-bullets .heiwa-bul.is-active {
  background: #fff;
}
.heiwa-slider-bullets .heiwa-bul-count {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.2em;
  margin-left: 8px;
}

/* MV en-eyebrow */
.heiwa-mv-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.heiwa-mv-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
  flex-shrink: 0;
}

/* MV Video */
.heiwa-mv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* MV catch text */
.heiwa-mv-catch {
  font-size: clamp(32px, 5.4vw, 72px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
  margin-bottom: 24px;
  color: #fff;
}
.heiwa-mv-catch .accent {
  color: var(--heiwa-green);
}
.heiwa-mv-sub {
  max-width: 640px;
  font-size: 1.5rem;
  line-height: 2;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
  margin-bottom: 40px;
  color: #fff;
}
.heiwa-mv-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* MV buttons */
.heiwa-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: var(--heiwa-green);
  border: 1px solid var(--heiwa-green);
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.heiwa-btn-green:hover {
  background: var(--heiwa-green-deep);
  border-color: var(--heiwa-green-deep);
}
.heiwa-btn-ondark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  text-decoration: none;
}
.heiwa-btn-ondark:hover {
  background: #fff;
  color: var(--heiwa-ink);
}
.heiwa-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: transparent;
  border: 1px solid var(--heiwa-ink);
  color: var(--heiwa-ink);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  text-decoration: none;
}
.heiwa-btn-outline:hover {
  background: var(--heiwa-ink);
  color: #fff;
}

/* Arrow in buttons */
.heiwa-btn-arrow {
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  display: inline-block;
  transition: width 0.25s ease;
  flex-shrink: 0;
}
.heiwa-btn-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
a:hover .heiwa-btn-arrow,
.heiwa-btn-green:hover .heiwa-btn-arrow,
.heiwa-btn-ondark:hover .heiwa-btn-arrow,
.heiwa-btn-outline:hover .heiwa-btn-arrow {
  width: 28px;
}

/* ======================================
   About Intro section
   ====================================== */
.heiwa-about-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.heiwa-about-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.heiwa-about-visual .heiwa-ph {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.heiwa-about-visual .heiwa-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heiwa-about-badge {
  position: absolute;
  right: -20px;
  bottom: 40px;
  background: var(--heiwa-green);
  color: #fff;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
  z-index: 2;
}
.heiwa-about-badge__num {
  font-family: "Jost", sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.heiwa-about-badge__label {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-top: 4px;
}
.heiwa-about-badge__en {
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  margin-top: 8px;
  opacity: 0.8;
}

.heiwa-about-copy .heiwa-label-en {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: var(--heiwa-green);
  font-weight: 500;
  margin-bottom: 14px;
}
.heiwa-about-copy .heiwa-lead-copy {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.45;
  margin: 0 0 28px;
  color: var(--heiwa-ink);
}
.heiwa-about-copy .heiwa-lead-copy .accent {
  color: var(--heiwa-green);
}
.heiwa-about-copy p {
  font-size: 1.4rem;
  line-height: 2.1;
  color: var(--heiwa-ink-2);
  margin-bottom: 24px;
}
.heiwa-about-meta {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--heiwa-line);
  padding-top: 24px;
  margin-bottom: 32px;
  font-size: 1.2rem;
}
.heiwa-about-meta dt {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--heiwa-ink-3);
  margin-bottom: 4px;
}
.heiwa-about-meta dd {
  margin: 0;
  font-weight: 500;
  font-size: 1.3rem;
}

@media (max-width: 896px) {
  .heiwa-about-intro {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .heiwa-about-visual {
    aspect-ratio: 4/3;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .heiwa-about-badge {
    right: 0;
    bottom: -20px;
    width: 130px;
    height: 130px;
  }
  .heiwa-about-badge__num { font-size: 3.6rem; }
}

/* ======================================
   Business Cards — heiwa-biz
   ====================================== */
.heiwa-biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.heiwa-biz-card {
  background: #fff;
  border: 1px solid var(--heiwa-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: var(--heiwa-ink);
}
.heiwa-biz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0,0,0,.08);
}
.heiwa-biz-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.heiwa-biz-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.heiwa-biz-card:hover .heiwa-biz-card__img img {
  transform: scale(1.05);
}
.heiwa-biz-card__body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.heiwa-biz-card__no {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--heiwa-green);
  font-weight: 500;
  margin-bottom: 8px;
}
.heiwa-biz-card__title {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.5;
}
.heiwa-biz-card__desc {
  font-size: 1.3rem;
  color: var(--heiwa-ink-2);
  line-height: 1.9;
  flex: 1;
}
.heiwa-biz-card__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--heiwa-ink);
  font-weight: 500;
  transition: color 0.2s;
}
.heiwa-biz-card:hover .heiwa-biz-card__more {
  color: var(--heiwa-green);
}

@media (max-width: 896px) {
  .heiwa-biz-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ======================================
   Strengths — heiwa-strengths
   ====================================== */
.heiwa-strengths-lead {
  max-width: 720px;
  margin: -20px auto 50px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--heiwa-ink-2);
}
.heiwa-strengths-lead strong {
  display: block;
  color: var(--heiwa-ink);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.heiwa-strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--heiwa-line);
  border: 1px solid var(--heiwa-line);
}
.heiwa-strength-cell {
  background: #fff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}
.heiwa-strength-cell__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heiwa-green);
}
.heiwa-strength-cell__no {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--heiwa-ink-3);
  margin-bottom: -2px;
}
.heiwa-strength-cell__title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.heiwa-strength-cell__text {
  font-size: 1.3rem;
  color: var(--heiwa-ink-2);
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 896px) {
  .heiwa-strengths-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .heiwa-strengths-grid { grid-template-columns: 1fr; }
}

/* ======================================
   Achievement Grid — heiwa-ach
   ====================================== */
.heiwa-ach-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.heiwa-ach-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
}
.heiwa-ach-card:hover {
  transform: translateY(-3px);
}
.heiwa-ach-card:first-child {
  grid-row: span 2;
}
.heiwa-ach-card__img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}
.heiwa-ach-card:first-child .heiwa-ach-card__img {
  min-height: 100%;
  position: absolute;
  inset: 0;
}
.heiwa-ach-card:first-child {
  min-height: 400px;
}
.heiwa-ach-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7) 100%);
  color: #fff;
}
.heiwa-ach-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 9px;
  background: var(--heiwa-green);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.heiwa-ach-card__title {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.heiwa-ach-card__meta {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
}

/* Placeholder image fallback for achievement */
.heiwa-ach-ph {
  position: absolute;
  inset: 0;
}
.heiwa-ach-ph--green {
  background: linear-gradient(135deg, #1b4d27 0%, #2d7a3f 50%, #5cb874 100%);
}
.heiwa-ach-ph--mountain {
  background: linear-gradient(180deg, #d4ecd0 0%, #a4d3a5 40%, #4d9c5d 100%);
}
.heiwa-ach-ph--construction {
  background: linear-gradient(135deg, #4a6b3a 0%, #8b9b6b 50%, #c4b78c 100%);
}

@media (max-width: 896px) {
  .heiwa-ach-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
  .heiwa-ach-card:first-child {
    grid-row: span 1;
    grid-column: span 2;
  }
  .heiwa-ach-card:first-child .heiwa-ach-card__img {
    position: relative;
    min-height: 280px;
  }
}
@media (max-width: 639px) {
  .heiwa-ach-grid { grid-template-columns: 1fr; }
  .heiwa-ach-card:first-child { grid-column: span 1; }
}

/* 施工実績ピックアップ：4カラム・コンパクト（先頭カードの大型化を解除） */
.heiwa-ach-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
}
.heiwa-ach-grid--4 .heiwa-ach-card:first-child {
  grid-row: auto;
  grid-column: auto;
  min-height: 0;
}
.heiwa-ach-grid--4 .heiwa-ach-card__img {
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 3;
}
.heiwa-ach-grid--4 .heiwa-ach-card:first-child .heiwa-ach-card__img {
  position: relative;
  inset: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
}
.heiwa-ach-grid--4 .heiwa-ach-card__title {
  font-size: 1.2rem;
}
.heiwa-ach-grid--4 .heiwa-ach-card__overlay {
  padding: 14px;
}
@media (max-width: 896px) {
  .heiwa-ach-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .heiwa-ach-grid--4 .heiwa-ach-card:first-child { grid-column: auto; }
}
@media (max-width: 639px) {
  .heiwa-ach-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================
   Recruit Banner — heiwa-recruit-banner
   ====================================== */
.heiwa-recruit-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.heiwa-recruit-banner__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(20,20,20,.85) 0%, rgba(20,20,20,.5) 50%, rgba(0,176,80,.4) 100%),
    linear-gradient(135deg, #1b4d27 0%, #4ea15c 100%);
}
.heiwa-recruit-banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.heiwa-recruit-banner__copy .heiwa-sec-head {
  margin-bottom: 24px;
}
.heiwa-recruit-banner__headline {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.heiwa-recruit-banner__text {
  font-size: 1.4rem;
  line-height: 2;
  color: rgba(255,255,255,.85);
}
.heiwa-recruit-banner__cta {
  text-align: right;
}

@media (max-width: 896px) {
  .heiwa-recruit-banner__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }
  .heiwa-recruit-banner__cta { text-align: left; }
}

/* ======================================
   Contact CTA — heiwa-contact-cta
   ====================================== */
.heiwa-contact-cta {
  background: #141414;
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.heiwa-contact-cta .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.heiwa-contact-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── 見出し：sec-head スタイル（大EN + 小JA inline + 二色下線） ── */
.heiwa-contact-cta__en {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  font-family: "Jost", sans-serif;
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
  margin: 0 0 26px;
}
/* JA サブラベル "お問い合わせ" を ::after で注入 */
.heiwa-contact-cta__en::after {
  content: "お問い合わせ";
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* 二色斜め下線を title::before で表現 */
.heiwa-contact-cta__title::before {
  content: "";
  display: block;
  width: 200px;
  height: 8px;
  margin-bottom: 28px;
  background: linear-gradient(
    115deg,
    var(--heiwa-green) 0%, var(--heiwa-green) 30%,
    transparent 30%, transparent 36%,
    #555 36%, #555 100%
  );
}
.heiwa-contact-cta__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0 0 14px;
  color: #fff;
}
.heiwa-contact-cta__text {
  font-size: 1.4rem;
  color: rgba(255,255,255,.7);
  line-height: 2;
  margin: 0;
}

/* ── 右側ボックス ── */
.heiwa-contact-cta__box {
  background: #222;
  border-radius: 4px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.heiwa-contact-cta__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.heiwa-contact-cta__row--last {
  border-bottom: none;
  margin-bottom: 20px;
}
.heiwa-contact-cta__label {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.5);
}
.heiwa-contact-cta__tel {
  font-family: "Jost", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.heiwa-contact-cta__tel:hover {
  color: var(--heiwa-green);
}
.heiwa-contact-cta__fax {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

/* ボタン：全幅・中央揃え */
.heiwa-contact-cta__box .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 896px) {
  .heiwa-contact-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .heiwa-contact-cta { padding: 60px 0; }
}

/* ======================================
   Footer overrides
   ====================================== */

.footer-body--dark {
  background: var(--heiwa-ink);
  color: #fff;
}

/* 3カラムグリッド（brand | info | nav）+ 全幅マップ行
   display:contents で footer-body__left / footer-body__right を透過展開 */
.footer-body--dark .footer-body__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 40px 0;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 1fr 1.5fr;
  grid-template-rows: auto auto;
  column-gap: 60px;
  row-gap: 0;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-body__left,
.footer-body__right {
  display: contents;
}

/* mt-30 / mt-40 ユーティリティを grid gap で上書き */
.footer-body__info {
  margin-top: 0;
}
.footer-body__map {
  margin-top: 0;
}

/* ロゴ：縦積みレイアウト（画像上・テキスト下） */
.footer-body__logo .header-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

/* ロゴ画像 */
.footer-body--dark .footer-body__logo img {
  filter: none;
}
.heiwa-footer-logo-img {
  width: 50px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

/* ロゴテキスト（header-logo--dark） */
.header-logo--dark .header-logo__name {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0;
  display: block;
}
.header-logo--dark .header-logo__sub {
  color: var(--heiwa-green);
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-top: 4px;
  display: block;
}

/* タグライン（情報カラム上部に配置） */
.heiwa-footer-tagline {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #bbb;
  margin-top: 14px;
  margin-bottom: 0;
}

/* 会社情報 dl */
.heiwa-footer-info {
  font-size: 1.3rem;
  line-height: 2;
  color: #ddd;
  margin-top: 0;
}
.heiwa-footer-info dt {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--heiwa-green);
  margin-top: 16px;
}
.heiwa-footer-info dt:first-child { margin-top: 0; }
.heiwa-footer-info dd {
  margin: 0;
  color: #fff;
}
.heiwa-footer-info a {
  color: #fff;
  text-decoration: none;
}
.heiwa-footer-info a:hover {
  color: var(--heiwa-green);
}

/* ナビ：2列グリッド */
.heiwa-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.heiwa-footer-nav li a {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  transition: color 0.2s;
}
.heiwa-footer-nav li a:hover {
  color: var(--heiwa-green);
  opacity: 1;
}
.heiwa-footer-nav-ja {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.2s;
}
.heiwa-footer-nav li a:hover .heiwa-footer-nav-ja {
  color: var(--heiwa-green);
}
.heiwa-footer-nav-en {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--heiwa-green);
  margin-top: 3px;
}

/* 地図ブロック：3カラム全幅（row 2） */
.footer-body__map {
  grid-column: 1 / -1;
  grid-row: 2;
  padding: 60px 0 30px;
  border-bottom: none;
}
.footer-body__map .embed {
  background: #222;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
}
.footer-body__map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  filter: none;
}

/* コピーライト行 */
.footer-bottom--dark {
  background: #0a0a0a;
  padding: 0 40px;
}
.footer-bottom--dark .footer-bottom__copyright {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: #777;
}
.footer-bottom--dark .footer-bottom__copyright::after {
  content: "SINCE 1970 \00B7 TOKUSHIMA, JAPAN";
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: #777;
}

@media (max-width: 896px) {
  .footer-body--dark .footer-body__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 20px 0;
  }
  .footer-body__map {
    grid-column: 1;
    grid-row: auto;
    padding: 0 0 30px;
  }
  .heiwa-footer-nav { grid-template-columns: 1fr; }
  .footer-body__nav { display: none; }
  .footer-bottom--dark { padding: 0 20px; }
  .footer-bottom--dark .footer-bottom__copyright {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 20px 0;
  }
}

/* ======================================
   Business page — 専用スタイル
   ====================================== */

/* ページMV ラベル（両脇ライン） */
.heiwa-label-en--flanked {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.heiwa-label-en--flanked::before,
.heiwa-label-en--flanked::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--heiwa-green);
  flex-shrink: 0;
}

/* ページMV h2 */
.heiwa-page-mv-center h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--heiwa-ink);
}
.heiwa-page-mv-center p {
  font-size: 1.5rem;
  line-height: 2.1;
  color: var(--heiwa-ink-2);
  max-width: 680px;
  margin: 0 auto;
}

/* 事業ブロック */
.heiwa-biz-block {
  padding: 120px 0;
}
.heiwa-biz-block--alt {
  background: var(--heiwa-cream);
}
.heiwa-biz-block .container-wide {
  padding-left: 40px;
  padding-right: 40px;
}
.heiwa-biz-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.heiwa-biz-block--reverse .heiwa-biz-block__inner {
  direction: rtl;
}
.heiwa-biz-block--reverse .heiwa-biz-block__inner > * {
  direction: ltr;
}

/* 画像ビジュアル：背後にグレーオフセット矩形 */
.heiwa-biz-block__visual {
  position: relative;
  padding-bottom: 14px;
  padding-right: 14px;
}
.heiwa-biz-block__visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  background: #c8c8c8;
  z-index: 0;
}

/* 逆配置（画像が右カラム）はオフセットを左に */
.heiwa-biz-block--reverse .heiwa-biz-block__visual {
  padding-right: 0;
  padding-left: 14px;
}
.heiwa-biz-block--reverse .heiwa-biz-block__visual::after {
  right: auto;
  left: 0;
}

/* 画像ギャラリー */
.heiwa-biz-block__gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.heiwa-biz-block__gallery-main {
  grid-column: 1 / 3;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.heiwa-biz-block__gallery-sub {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.heiwa-biz-block__gallery-main img,
.heiwa-biz-block__gallery-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキストブロック */
.heiwa-biz-block__num {
  font-family: "Jost", sans-serif;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--heiwa-green);
  line-height: 1;
  margin-bottom: 8px;
}
.heiwa-biz-block__label {
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.35em;
  color: var(--heiwa-ink-3);
  margin-bottom: 28px;
}
.heiwa-biz-block__title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--heiwa-ink);
}
.heiwa-biz-block__catch {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--heiwa-green);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.heiwa-biz-block__catch::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--heiwa-green);
  flex-shrink: 0;
}
.heiwa-biz-block__copy .sentence p {
  font-size: 1.45rem;
  line-height: 2.1;
  color: var(--heiwa-ink-2);
  margin-bottom: 14px;
}

/* CERTIFIEDバッジ（緑化工事） */
.heiwa-biz-block__cert {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  background: var(--heiwa-green-mute);
  border-left: 3px solid var(--heiwa-green);
}
.heiwa-biz-block__cert-label {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--heiwa-green);
  flex-shrink: 0;
}
.heiwa-biz-block__cert-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--heiwa-ink);
}

/* 強み：2カラム（テキスト左 + グリッド右） */
.heiwa-biz-strengths {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.heiwa-biz-strengths__lead .heiwa-sec-head {
  margin-bottom: 28px;
}
.heiwa-biz-strengths__text strong {
  display: block;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  color: var(--heiwa-ink);
}
.heiwa-biz-strengths__text p {
  font-size: 1.4rem;
  line-height: 2;
  color: var(--heiwa-ink-2);
}
/* 強みグリッドを business ページでは 2×2 に */
.heiwa-biz-strengths .heiwa-strengths-grid {
  grid-template-columns: 1fr 1fr;
}

/* 施工実績CTAバンド */
.heiwa-cta-band {
  background: var(--heiwa-ink);
  color: #fff;
  padding: 80px 0;
}
.heiwa-cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.heiwa-cta-band__en {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  color: var(--heiwa-green);
  margin-bottom: 8px;
}
.heiwa-cta-band__title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 12px;
}
.heiwa-cta-band__text {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
}

@media (max-width: 896px) {
  .heiwa-biz-block { padding: 70px 0; }
  .heiwa-biz-block .container-wide { padding-left: 20px; padding-right: 20px; }
  .heiwa-biz-block__inner { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .heiwa-biz-block--reverse .heiwa-biz-block__inner { direction: ltr; }
  .heiwa-biz-strengths { grid-template-columns: 1fr; gap: 40px; }
  .heiwa-biz-strengths .heiwa-strengths-grid { grid-template-columns: 1fr 1fr; }
  .heiwa-cta-band .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 639px) {
  .heiwa-biz-block__num { font-size: 56px; }
  .heiwa-biz-strengths .heiwa-strengths-grid { grid-template-columns: 1fr; }
}

/* ======================================
   About page — 専用スタイル
   ====================================== */

/* ページMV ビジュアルのSVG */
.about-page-mv-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 代表挨拶 署名 */
.heiwa-message__sig {
  margin-top: 36px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-top: 1px solid var(--heiwa-line);
  padding-top: 24px;
}
.heiwa-message__sig-role {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--heiwa-ink-3);
  flex-shrink: 0;
}
.heiwa-message__sig-name {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--heiwa-ink);
}

/* 代表挨拶 h2 */
.heiwa-message__body h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 32px;
  color: var(--heiwa-ink);
}

/* 会社概要テーブル */
.about-profile-table {
  width: 100%;
  border-top: 1px solid var(--heiwa-ink);
}
.about-profile-table dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  margin: 0;
  border-bottom: 1px solid var(--heiwa-line);
}
.about-profile-table dt {
  padding: 22px 0;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--heiwa-ink);
}
.about-profile-table dt .en {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--heiwa-green);
  margin-top: 4px;
  font-weight: 500;
}
.about-profile-table dd {
  padding: 22px 0;
  font-size: 1.4rem;
  line-height: 1.9;
  margin: 0;
  color: var(--heiwa-ink-2);
}

/* 許可登録 */
.about-licenses {
  background: var(--heiwa-cream);
  padding: 40px;
}
.about-licenses h4 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  color: var(--heiwa-green);
}
.about-licenses__types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.about-licenses__types span {
  background: #fff;
  padding: 6px 12px;
  font-size: 1.2rem;
  border: 1px solid var(--heiwa-line);
  color: var(--heiwa-ink-2);
}
.about-licenses__no {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 8px;
  color: var(--heiwa-ink);
}
.about-licenses__no .en {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--heiwa-ink-3);
  display: block;
  margin-bottom: 4px;
}

/* アクセス（会社概要内） */
.about-access-heading {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--heiwa-green);
  margin-bottom: 20px;
}
.about-access-map-full {
  width: 100%;
  height: 420px;
  background: #eee;
}
.about-access-map-full iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 639px) {
  .about-access-map-full { height: 280px; }
}

/* 沿革タイムライン */
.about-history-list {
  position: relative;
  padding-left: 40px;
}
.about-history-list::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--heiwa-line);
}
.about-history-list__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid var(--heiwa-line);
  position: relative;
}
.about-history-list__item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 30px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--heiwa-green);
  border: 2px solid #FFFDD0;
  box-shadow: 0 0 0 1px var(--heiwa-green);
}
.about-history-list__item--major::before {
  background: var(--heiwa-ink);
  box-shadow: 0 0 0 1px var(--heiwa-ink);
}
.about-history-list__yr {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  color: var(--heiwa-ink);
}
.about-history-list__yr .en {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  color: var(--heiwa-ink-3);
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.about-history-list__ev {
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--heiwa-ink-2);
  padding-top: 2px;
}

/* アクセス 2カラム */
.about-access-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}
.about-access-grid__info {
  background: #fff;
  padding: 36px;
  border: 1px solid var(--heiwa-line);
}
.about-access-grid__ttl {
  font-family: "Jost", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.4em;
  color: var(--heiwa-green);
  margin-bottom: 18px;
}
.about-access-grid__dl {
  margin: 0;
  display: grid;
  gap: 16px;
}
.about-access-grid__dl dt {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--heiwa-ink-3);
}
.about-access-grid__dl dd {
  margin: 4px 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--heiwa-ink);
}
.about-access-grid__dl dd.font-en {
  font-family: "Jost", sans-serif;
  font-size: 1.8rem;
}
.about-access-grid__dl dd a {
  color: inherit;
  text-decoration: none;
}
.about-access-grid__dl dd a:hover {
  color: var(--heiwa-green);
}
.about-access-grid__map {
  min-height: 380px;
  background: #eee;
}
.about-access-grid__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

@media (max-width: 896px) {
  .about-profile-table dl { grid-template-columns: 120px 1fr; }
  .about-history-list__item { grid-template-columns: 110px 1fr; gap: 20px; }
  .about-access-grid { grid-template-columns: 1fr; }
  .about-access-grid__map { min-height: 280px; }
  .about-access-grid__map iframe { min-height: 280px; }
}

/* ======================================
   Page Top button
   ====================================== */
.page-top__link::before {
  content: "\f077";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}
.page-top__link:hover::before {
  color: #00B050;
}

/* ======================================
   Achievement Examples — 代表実績紹介
   ====================================== */
.heiwa-ach-examples {
  padding: 100px 0;
  background: var(--heiwa-cream);
}
.heiwa-ach-examples .container {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.heiwa-ach-example__head {
  border-left: 4px solid var(--heiwa-green);
  padding-left: 16px;
  margin-bottom: 16px;
}
.heiwa-ach-example__num {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heiwa-green);
  letter-spacing: 0.1em;
  margin: 0 0 4px;
}
.heiwa-ach-example__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heiwa-ink);
  letter-spacing: 0.04em;
  margin: 0;
}
.heiwa-ach-example__desc {
  font-size: 1.4rem;
  color: var(--heiwa-ink-2);
  line-height: 2;
  margin: 0 0 28px;
  padding-left: 20px;
}
.heiwa-ach-example__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.heiwa-ach-example__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.heiwa-ach-example__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 639px) {
  .heiwa-ach-examples { padding: 60px 0; }
  .heiwa-ach-examples .container { gap: 56px; }
  .heiwa-ach-example__photos { grid-template-columns: 1fr; }
}

/* ======================================
   Page Hero — subpage
   ====================================== */
.heiwa-page-hero {
  position: relative;
  height: 320px;
  margin-top: 68px;
  display: flex;
  align-items: center;
  background: var(--heiwa-ink);
  color: #fff;
  overflow: hidden;
}
.heiwa-page-hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28201/page_hiro.jpg') center center / cover no-repeat;
}
.heiwa-page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.heiwa-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.heiwa-page-hero__en {
  font-family: "Jost", sans-serif;
  font-size: clamp(44px, 8vw, 90px);
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1;
  color: rgba(255,255,255,.95);
}
.heiwa-page-hero__ja {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--heiwa-green);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.heiwa-page-hero__ja::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--heiwa-green);
}
@media (max-width: 639px) {
  .heiwa-page-hero { height: 240px; }
  .heiwa-page-hero__content { padding: 0 20px; }
}

/* ======================================
   Page MV — subpage catch section
   ====================================== */
.heiwa-page-mv {
  padding: 80px 40px;
  background: #fff;
}
.heiwa-page-mv .container {
  max-width: 1200px;
  margin: 0 auto;
}
.heiwa-page-mv-center {
  text-align: center;
}
.heiwa-page-mv-center .heiwa-label-en {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  color: var(--heiwa-green);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.heiwa-page-mv-center .heiwa-label-en::before,
.heiwa-page-mv-center .heiwa-label-en::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--heiwa-green);
}
.heiwa-page-mv-center h2 {
  font-size: clamp(24px, 3.8vw, 48px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--heiwa-ink);
}
.heiwa-page-mv-center p {
  font-size: 1.5rem;
  line-height: 2.1;
  color: var(--heiwa-ink-2);
  max-width: 680px;
  margin: 0 auto;
}

/* 2-column page MV */
.heiwa-page-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.heiwa-page-mv__copy .heiwa-label-en {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: var(--heiwa-green);
  margin-bottom: 14px;
}
.heiwa-page-mv__copy h2 {
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--heiwa-ink);
}
.heiwa-page-mv__copy p {
  font-size: 1.5rem;
  line-height: 2.1;
  color: var(--heiwa-ink-2);
}
.heiwa-page-mv__visual {
  aspect-ratio: 5/4;
  position: relative;
  overflow: hidden;
}
.heiwa-page-mv__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 896px) {
  .heiwa-page-mv { padding: 60px 20px; }
  .heiwa-page-mv__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ======================================
   Message section — about page
   ====================================== */
.heiwa-message {
  background: var(--heiwa-cream);
  padding: 100px 40px;
}
.heiwa-message .container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
}
.heiwa-message__portrait {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.heiwa-message__portrait-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #d4ecd0 0%, #88b893 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.heiwa-message__portrait-bg svg {
  width: 70%;
  height: 70%;
  opacity: 0.4;
  color: #2d7a3f;
}
.heiwa-message__name-plate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--heiwa-ink);
  color: #fff;
  padding: 12px 16px;
}
.heiwa-message__name-plate .role {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--heiwa-green);
}
.heiwa-message__name-plate .name {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.heiwa-message__body .heiwa-label-en {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  color: var(--heiwa-green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.heiwa-message__body .heiwa-label-en::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--heiwa-green);
}
.heiwa-message__body h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 32px;
  color: var(--heiwa-ink);
}
.heiwa-message__body p {
  font-size: 1.5rem;
  line-height: 2.2;
  color: var(--heiwa-ink-2);
  margin-bottom: 20px;
}
.heiwa-message__sig {
  margin-top: 32px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--heiwa-ink);
}

@media (max-width: 896px) {
  .heiwa-message { padding: 60px 20px; }
  .heiwa-message .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .heiwa-message__portrait {
    aspect-ratio: 4/3;
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ======================================
   Business page — each business section
   ====================================== */
.heiwa-biz-section {
  padding: 80px 40px;
}
.heiwa-biz-section:nth-child(even) {
  background: #f5f5f5;
}
.heiwa-biz-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.heiwa-biz-section:nth-child(even) .container {
  direction: rtl;
}
.heiwa-biz-section:nth-child(even) .container > * {
  direction: ltr;
}
.heiwa-biz-section__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.heiwa-biz-section__photos-single {
  grid-column: span 2;
}
.heiwa-biz-section__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.heiwa-biz-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.heiwa-biz-section__copy .heiwa-label-en {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: var(--heiwa-green);
  margin-bottom: 10px;
  font-weight: 500;
}
.heiwa-biz-section__copy h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--heiwa-ink);
  line-height: 1.5;
}
.heiwa-biz-section__copy .heiwa-catch {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  color: var(--heiwa-green);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  line-height: 1.6;
}
.heiwa-biz-section__copy p {
  font-size: 1.5rem;
  line-height: 2.1;
  color: var(--heiwa-ink-2);
  margin-bottom: 16px;
}

@media (max-width: 896px) {
  .heiwa-biz-section { padding: 60px 20px; }
  .heiwa-biz-section .container { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .heiwa-biz-section:nth-child(even) .container { direction: ltr; }
}

/* ======================================
   Achievement grid — achievement page
   ====================================== */
.heiwa-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.heiwa-works-card {
  background: #fff;
  border: 1px solid var(--heiwa-line);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
  text-decoration: none;
  color: var(--heiwa-ink);
}
.heiwa-works-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.07);
}
.heiwa-works-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.heiwa-works-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.heiwa-works-card:hover .heiwa-works-card__img img {
  transform: scale(1.05);
}
.heiwa-works-card__body {
  padding: 18px 18px 20px;
}
.heiwa-works-card__tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--heiwa-green-mute);
  color: var(--heiwa-green);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  border-radius: 2px;
}
.heiwa-works-card__title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  line-height: 1.5;
}
.heiwa-works-card__meta {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--heiwa-ink-3);
}

/* Filter tabs */
.heiwa-filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.heiwa-filter-tab {
  padding: 8px 20px;
  border: 1px solid var(--heiwa-line);
  background: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.heiwa-filter-tab.is-active,
.heiwa-filter-tab:hover {
  background: var(--heiwa-green);
  color: #fff;
  border-color: var(--heiwa-green);
}

@media (max-width: 896px) {
  .heiwa-works-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  .heiwa-works-grid { grid-template-columns: 1fr; }
}

/* ======================================
   Achievement page — 新デザイン専用スタイル
   ====================================== */

/* フィルターセクション */
.heiwa-ach-filter {
  padding: 30px 0 60px;
}
.heiwa-ach-filter .container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.heiwa-ach-filter__btn {
  background: #fff;
  border: 1px solid var(--heiwa-line);
  padding: 10px 20px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.heiwa-ach-filter__en {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--heiwa-ink-3);
  transition: color 0.2s;
}
.heiwa-ach-filter__btn:hover {
  border-color: var(--heiwa-green);
  color: var(--heiwa-green);
}
.heiwa-ach-filter__btn:hover .heiwa-ach-filter__en {
  color: var(--heiwa-green);
}
.heiwa-ach-filter__btn.is-active {
  background: var(--heiwa-ink);
  color: #fff;
  border-color: var(--heiwa-ink);
}
.heiwa-ach-filter__btn.is-active .heiwa-ach-filter__en {
  color: var(--heiwa-green);
}

/* 実績一覧セクション */
.heiwa-ach-list {
  padding: 0 0 120px;
}
.heiwa-ach-list .container-wide {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

/* 実績カード */
.heiwa-ach-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: var(--heiwa-ink);
}
.heiwa-ach-item:hover {
  transform: translateY(-4px);
}
.heiwa-ach-item__thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.heiwa-ach-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.heiwa-ach-item:hover .heiwa-ach-item__thumb img {
  transform: scale(1.05);
}
.heiwa-ach-item__yr {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  padding: 5px 10px;
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--heiwa-ink);
}
.heiwa-ach-item__tags {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.heiwa-ach-item__tag {
  font-size: 1.1rem;
  padding: 3px 10px;
  background: var(--heiwa-green-mute);
  color: var(--heiwa-green-deep, #007a38);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.heiwa-ach-item__title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 10px 0 6px;
  color: var(--heiwa-ink);
}
.heiwa-ach-item__loc {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--heiwa-ink-3);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.heiwa-ach-item__loc::before {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--heiwa-ink-3);
  flex-shrink: 0;
}

/* 施工実績 箇条書きリスト（写真準備中の暫定表示） */
.heiwa-ach-group {
  max-width: 980px;
  margin: 0 auto;
}
.heiwa-ach-group + .heiwa-ach-group {
  margin-top: 56px;
}
.heiwa-ach-group__year {
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--heiwa-green, #007a38);
  padding-bottom: 12px;
  margin-bottom: 0;
  border-bottom: 2px solid var(--heiwa-green, #007a38);
}
.heiwa-ach-listing {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 980px;
  border-top: 1px solid var(--heiwa-line);
}
.heiwa-ach-group .heiwa-ach-listing {
  border-top: none;
}
.heiwa-ach-listing__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--heiwa-line);
  flex-wrap: wrap;
}
.heiwa-ach-listing__tags {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.heiwa-ach-listing__tag {
  font-size: 1.1rem;
  padding: 3px 10px;
  background: var(--heiwa-green-mute);
  color: var(--heiwa-green-deep, #007a38);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.heiwa-ach-listing__title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--heiwa-ink);
  flex: 1 1 auto;
}
.heiwa-ach-listing__meta {
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--heiwa-ink-3);
  flex-shrink: 0;
}
@media (max-width: 639px) {
  .heiwa-ach-listing__title { flex-basis: 100%; order: -1; }
  .heiwa-ach-listing__item { gap: 8px 12px; }
}

/* ページネーション */
.heiwa-ach-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.heiwa-ach-pagination__item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 1.3rem;
  border: 1px solid var(--heiwa-line);
  background: #fff;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--heiwa-ink);
  cursor: pointer;
}
.heiwa-ach-pagination__item:hover {
  border-color: var(--heiwa-green);
  color: var(--heiwa-green);
}
.heiwa-ach-pagination__item--current {
  background: var(--heiwa-ink);
  color: #fff;
  border-color: var(--heiwa-ink);
}

@media (max-width: 896px) {
  .heiwa-ach-list .container-wide {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
  }
}
@media (max-width: 639px) {
  .heiwa-ach-list .container-wide { grid-template-columns: 1fr; }
  .heiwa-ach-filter .container { gap: 8px; flex-direction: column; }
  .heiwa-ach-filter__btn { width: 100%; justify-content: center; }
}

/* ======================================
   Recruit — appeal cells
   ====================================== */
.heiwa-appeal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.heiwa-appeal-cell {
  background: #fff;
  padding: 36px 22px;
  border: 1px solid var(--heiwa-line);
  text-align: left;
  position: relative;
}
.heiwa-appeal-cell__no {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Jost", sans-serif;
  font-size: 3.2rem;
  color: var(--heiwa-green);
  line-height: 1;
  font-weight: 400;
  opacity: 0.35;
}
.heiwa-appeal-cell__icon {
  width: 48px;
  height: 48px;
  color: var(--heiwa-green);
  margin-bottom: 20px;
}
.heiwa-appeal-cell h4 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--heiwa-ink);
}
.heiwa-appeal-cell p {
  font-size: 1.3rem;
  color: var(--heiwa-ink-2);
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 896px) {
  .heiwa-appeal-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  .heiwa-appeal-grid { grid-template-columns: 1fr; }
}

/* ======================================
   Recruit page — 新デザイン専用スタイル
   ====================================== */

/* 魅力グリッド */
.heiwa-recruit-appeal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.heiwa-recruit-appeal-cell {
  background: #fff;
  padding: 40px 28px;
  border: 1px solid var(--heiwa-line);
  text-align: left;
  position: relative;
}
.heiwa-recruit-appeal-cell__no {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "Jost", sans-serif;
  font-size: 3.6rem;
  color: var(--heiwa-green);
  line-height: 1;
  font-weight: 400;
}
.heiwa-recruit-appeal-cell__icon {
  width: 56px;
  height: 56px;
  color: var(--heiwa-green);
  margin-bottom: 24px;
}
.heiwa-recruit-appeal-cell h4 {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 14px;
  color: var(--heiwa-ink);
}
.heiwa-recruit-appeal-cell p {
  font-size: 1.3rem;
  color: var(--heiwa-ink-2);
  line-height: 1.9;
  margin: 0;
}

/* インタビューグリッド */
.heiwa-recruit-interview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.heiwa-recruit-interview-card {
  background: #fff;
  border: 1px solid var(--heiwa-line);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}
.heiwa-recruit-interview-card__portrait {
  position: relative;
  background: linear-gradient(180deg, #d4ecd0 0%, #88b893 100%);
}
.heiwa-recruit-interview-card--green .heiwa-recruit-interview-card__portrait {
  background: linear-gradient(180deg, #a4d3a5 0%, #5cb874 100%);
}
.heiwa-recruit-interview-card__portrait svg {
  width: 100%;
  height: 100%;
  padding: 30%;
  fill: #1b4d27;
  opacity: 0.4;
}
.heiwa-recruit-interview-card__body {
  padding: 28px;
}
.heiwa-recruit-interview-card__meta {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--heiwa-green);
  margin-bottom: 14px;
}
.heiwa-recruit-interview-card__quote {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--heiwa-ink);
}
.heiwa-recruit-interview-card__name {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--heiwa-ink);
}
.heiwa-recruit-interview-card__role {
  font-size: 1.2rem;
  color: var(--heiwa-ink-3);
  margin-bottom: 0;
}
.heiwa-recruit-interview-card__note {
  font-size: 1.2rem;
  color: var(--heiwa-ink-3);
  margin-top: 14px;
  border-top: 1px dashed var(--heiwa-line);
  padding-top: 14px;
}

/* 募集要項 ジョブカード */
.heiwa-recruit-job-card {
  background: #fff;
  border: 1px solid var(--heiwa-line);
  margin-bottom: 40px;
}
.heiwa-recruit-job-card__head {
  background: var(--heiwa-ink);
  color: #fff;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.heiwa-recruit-job-card__pos-en {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--heiwa-green);
  margin-bottom: 4px;
}
.heiwa-recruit-job-card__pos {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
.heiwa-recruit-job-card__type {
  margin-left: auto;
  background: var(--heiwa-green);
  color: #fff;
  padding: 6px 14px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.heiwa-recruit-job-card__table {
  width: 100%;
  border-collapse: collapse;
}
.heiwa-recruit-job-card__table th,
.heiwa-recruit-job-card__table td {
  text-align: left;
  padding: 18px 32px;
  border-bottom: 1px solid var(--heiwa-line);
  font-size: 1.4rem;
  line-height: 1.9;
  vertical-align: top;
}
.heiwa-recruit-job-card__table tr:last-child th,
.heiwa-recruit-job-card__table tr:last-child td {
  border-bottom: 0;
}
.heiwa-recruit-job-card__table th {
  width: 200px;
  font-weight: 500;
  background: #fafafa;
  color: var(--heiwa-ink);
  white-space: nowrap;
}
.heiwa-recruit-job-card__table th .en {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--heiwa-green);
  margin-top: 4px;
  font-weight: 500;
}
.heiwa-recruit-job-card__table td {
  color: var(--heiwa-ink-2);
}

/* 要確認タグ */
.heiwa-confirm-tag {
  display: inline-block;
  background: var(--heiwa-cream);
  color: var(--heiwa-ink-2);
  font-size: 1.1rem;
  padding: 3px 8px;
  letter-spacing: 0.05em;
  margin-left: 8px;
  border: 1px dashed var(--heiwa-ink-3);
}

/* 応募 ダークバンド */
.heiwa-recruit-apply {
  background: var(--heiwa-ink);
  color: #fff;
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.heiwa-recruit-apply__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.heiwa-recruit-apply__headline {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.heiwa-recruit-apply__text {
  font-size: 1.4rem;
  line-height: 2;
  opacity: 0.85;
  color: #fff;
}
.heiwa-recruit-apply__box {
  background: #1f1f1f;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.08);
}
.heiwa-recruit-apply__box-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.heiwa-recruit-apply__box-label {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: #aaa;
}
.heiwa-recruit-apply__box-tel {
  font-family: "Jost", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.heiwa-recruit-apply__box-tel:hover {
  color: var(--heiwa-green);
}
.heiwa-recruit-apply .heiwa-btn-green {
  display: flex;
}
/* mb-28 utility for recruit apply heading */
.mb-28 { margin-bottom: 28px; }

@media (max-width: 896px) {
  .heiwa-recruit-appeal-grid { grid-template-columns: 1fr 1fr; }
  .heiwa-recruit-interview-grid { grid-template-columns: 1fr; }
  .heiwa-recruit-interview-card { grid-template-columns: 1fr; }
  .heiwa-recruit-interview-card__portrait { aspect-ratio: 3/2; }
  .heiwa-recruit-job-card__table th,
  .heiwa-recruit-job-card__table td { padding: 14px 20px; }
  .heiwa-recruit-job-card__table th { width: 130px; }
  .heiwa-recruit-apply__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 639px) {
  .heiwa-recruit-appeal-grid { grid-template-columns: 1fr; }
}

/* ======================================
   Contact page — 新デザイン専用スタイル
   ====================================== */

/* 直接連絡先カード */
/* ======================================
   Contact Intro (Saitho style) — heiwa-contact-intro
   ====================================== */
.heiwa-contact-intro {
  background: #fff;
  padding: 80px 0 72px;
}
.heiwa-contact-intro .container {
  max-width: 860px;
  text-align: center;
}

/* 見出し */
.heiwa-contact-intro__head {
  margin-bottom: 36px;
}
.heiwa-contact-intro__head .heiwa-sec-head {
  justify-content: center;
  margin-bottom: 0;
}
.heiwa-contact-intro__head .heiwa-sec-head::after {
  justify-self: center;
}

/* 説明文 */
.heiwa-contact-intro__text {
  font-size: 1.4rem;
  color: var(--heiwa-ink-2);
  line-height: 2.2;
  margin: 0 0 48px;
}

/* グリーンボックス */
.heiwa-contact-intro__box {
  background: #E6F4EA;
  border-radius: 4px;
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ロゴ + 社名 */
.heiwa-contact-intro__brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
.heiwa-contact-intro__brand img {
  width: 64px;
  height: auto;
  display: block;
}
.heiwa-contact-intro__brand-text {
  text-align: left;
}
.heiwa-contact-intro__brand-ja {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--heiwa-ink);
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 0 0 4px;
}
.heiwa-contact-intro__brand-en {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  color: var(--heiwa-ink-3);
  letter-spacing: 0.12em;
  margin: 0;
}

/* セパレーター */
.heiwa-contact-intro__rule {
  border: none;
  border-top: 1px solid rgba(20, 20, 20, 0.15);
  width: 100%;
  margin: 36px 0 32px;
}

/* 電話・FAXブロック */
.heiwa-contact-intro__tel-label {
  font-size: 1.3rem;
  color: var(--heiwa-ink-3);
  margin: 0 0 18px;
}
.heiwa-contact-intro__tel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.heiwa-contact-intro__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Jost", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--heiwa-ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.heiwa-contact-intro__tel svg { flex-shrink: 0; }
.heiwa-contact-intro__tel:hover { color: var(--heiwa-green); }
.heiwa-contact-intro__fax {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Jost", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--heiwa-ink);
  letter-spacing: 0.02em;
}
.heiwa-contact-intro__fax svg { flex-shrink: 0; }

@media (max-width: 639px) {
  .heiwa-contact-intro { padding: 60px 0 56px; }
  .heiwa-contact-intro__brand { flex-direction: column; text-align: center; }
  .heiwa-contact-intro__brand-text { text-align: center; }
  .heiwa-contact-intro__tel,
  .heiwa-contact-intro__fax { font-size: 2.8rem; }
  .heiwa-contact-intro__tel-row { gap: 24px; flex-direction: column; }
}

.heiwa-direct-contact {
  padding: 60px 0;
}
.heiwa-direct-contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.heiwa-direct-card {
  background: var(--heiwa-cream);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.heiwa-direct-card__icon {
  width: 48px;
  height: 48px;
  color: var(--heiwa-green);
}
.heiwa-direct-card__label {
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--heiwa-ink-3);
  margin: 0;
}
.heiwa-direct-card__heading {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
  color: var(--heiwa-ink);
}
.heiwa-direct-card__big {
  font-family: "Jost", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--heiwa-ink);
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s;
}
.heiwa-direct-card__big:hover {
  color: var(--heiwa-green);
}
.heiwa-direct-card__big--sm {
  font-size: 2.2rem;
  word-break: break-all;
}
.heiwa-direct-card__small {
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--heiwa-ink-2);
  margin: 0;
}
.heiwa-direct-card__note {
  margin-top: 14px;
  font-size: 1.2rem;
  color: var(--heiwa-ink-3);
  line-height: 1.8;
}

/* フォームセクション */
.heiwa-contact-form-section {
  padding: 100px 0;
  background: #fff;
}
.heiwa-contact-form-section__container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
}

.heiwa-contact-form-box {
  background: transparent;
  border: 1px solid var(--heiwa-line);
  border-radius: 4px;
  padding: 48px 56px 56px;
}
@media (max-width: 639px) {
  .heiwa-contact-form-box { padding: 36px 20px 40px; }
}

.heiwa-form-intro {
  font-size: 1.4rem;
  color: var(--heiwa-ink-2);
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
}
.heiwa-form-intro__req {
  color: var(--heiwa-green);
}

.heiwa-form-grid {
  display: grid;
  gap: 0;
}
.heiwa-form-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--heiwa-line);
}
.heiwa-form-row--last {
  border-bottom: 0;
}
.heiwa-form-row__label {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--heiwa-ink);
}
.heiwa-form-row__en {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--heiwa-green);
  font-weight: 500;
}
.heiwa-form-row__req {
  display: inline-block;
  background: var(--heiwa-green);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  margin-top: 6px;
  align-self: flex-start;
}
.heiwa-form-row__opt {
  display: inline-block;
  background: #f0f0f0;
  color: var(--heiwa-ink-2);
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  margin-top: 6px;
  align-self: flex-start;
}
.heiwa-form-row__input,
.heiwa-form-row__textarea {
  width: 100%;
  background: #fafafa;
  border: 1px solid var(--heiwa-line);
  padding: 14px 16px;
  font-size: 1.4rem;
  font-family: inherit;
  color: var(--heiwa-ink);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.heiwa-form-row__input:focus,
.heiwa-form-row__textarea:focus {
  border-color: var(--heiwa-green);
  background: #fff;
}
.heiwa-form-row__textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.8;
}

/* ラジオボタン */
.heiwa-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}
.heiwa-radio-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fafafa;
  border: 1px solid var(--heiwa-line);
  font-size: 1.3rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.heiwa-radio-row label:has(input:checked) {
  background: var(--heiwa-green-mute);
  border-color: var(--heiwa-green);
  color: var(--heiwa-green-deep, #007a38);
}

/* プライバシー */
.heiwa-form-privacy {
  padding-top: 8px;
}
.heiwa-form-privacy label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  cursor: pointer;
}
.heiwa-form-privacy a {
  color: var(--heiwa-green);
  text-decoration: underline;
}

/* 送信ボタン */
.heiwa-form-submit {
  margin-top: 50px;
  text-align: center;
}
.heiwa-contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 60px;
  background: var(--heiwa-green);
  border: 1px solid var(--heiwa-green);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.heiwa-contact-submit-btn:hover {
  background: var(--heiwa-green-deep);
  border-color: var(--heiwa-green-deep);
}

/* アクセスセクション */
.heiwa-contact-access {
  background: var(--heiwa-cream);
  padding: 100px 0;
}
.heiwa-contact-access .container-wide {
  padding: 0 40px;
}
.heiwa-contact-access__body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}
.heiwa-contact-access__info {
  background: #fff;
  padding: 36px;
}
.heiwa-contact-access__ttl {
  font-family: "Jost", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.4em;
  color: var(--heiwa-green);
  margin-bottom: 18px;
}
.heiwa-contact-access__dl {
  margin: 0;
  display: grid;
  gap: 16px;
}
.heiwa-contact-access__dl dt {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--heiwa-ink-3);
}
.heiwa-contact-access__dl dd {
  margin: 4px 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--heiwa-ink);
}
.heiwa-contact-access__dl dd.font-en {
  font-family: "Jost", sans-serif;
  font-size: 1.8rem;
}
.heiwa-contact-access__dl dd a {
  color: inherit;
  text-decoration: none;
}
.heiwa-contact-access__dl dd a:hover {
  color: var(--heiwa-green);
}
.heiwa-contact-access__map {
  background: #eee;
  min-height: 420px;
}
.heiwa-contact-access__map--full {
  width: 100%;
  min-height: 480px;
}
.heiwa-contact-access__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 896px) {
  .heiwa-direct-contact .container { grid-template-columns: 1fr; gap: 20px; }
  .heiwa-direct-card { padding: 36px 28px; }
  .heiwa-direct-card__big { font-size: 2.8rem; }
  .heiwa-contact-form-section__container { padding: 0 20px; }
  .heiwa-form-row { grid-template-columns: 1fr; gap: 8px; padding-bottom: 18px; }
  .heiwa-form-row__label { padding-top: 0; }
  .heiwa-contact-access__body { grid-template-columns: 1fr; }
  .heiwa-contact-access__map { min-height: 280px; }
  .heiwa-contact-access__map iframe { min-height: 280px; }
  .heiwa-contact-access .container-wide { padding: 0 20px; }
}

/* ======================================
   Contact form page (旧スタイル・互換用)
   ====================================== */
.heiwa-contact-method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.heiwa-contact-method__box {
  background: #f5f5f5;
  padding: 36px;
  border-left: 4px solid var(--heiwa-green);
}
.heiwa-contact-method__type {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--heiwa-green);
  margin-bottom: 12px;
}
.heiwa-contact-method__num {
  font-family: "Jost", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--heiwa-ink);
  margin-bottom: 6px;
  display: block;
  text-decoration: none;
}
.heiwa-contact-method__num:hover {
  color: var(--heiwa-green);
}
.heiwa-contact-method__note {
  font-size: 1.2rem;
  color: var(--heiwa-ink-3);
}

@media (max-width: 639px) {
  .heiwa-contact-method { grid-template-columns: 1fr; }
}

/* ======================================
   Thanks page
   ====================================== */
.heiwa-thanks {
  padding: 100px 0;
  background: #fff;
}
.heiwa-thanks .container-narrow {
  text-align: center;
}
.heiwa-thanks__icon {
  color: var(--heiwa-green);
  margin-bottom: 32px;
}
.heiwa-thanks__icon svg {
  width: 64px;
  height: 64px;
}
.heiwa-thanks__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--heiwa-ink);
  margin-bottom: 28px;
  line-height: 1.5;
}
.heiwa-thanks__text {
  font-size: 1.5rem;
  line-height: 2.2;
  color: var(--heiwa-ink-2);
  margin-bottom: 28px;
}
.heiwa-thanks__note {
  font-size: 1.3rem;
  line-height: 2;
  color: var(--heiwa-ink-3);
  margin-bottom: 50px;
  padding: 24px 32px;
  background: #f5f5f5;
  border-left: 3px solid var(--heiwa-green);
  text-align: left;
  display: inline-block;
}
.heiwa-thanks__note a {
  color: var(--heiwa-green);
  text-decoration: none;
  font-weight: 500;
}
.heiwa-thanks__note a:hover {
  text-decoration: underline;
}
.heiwa-thanks__btn {
  margin-top: 50px;
}

@media (max-width: 639px) {
  .heiwa-thanks { padding: 70px 0; }
  .heiwa-thanks__note { padding: 20px; text-align: left; }
}

/* ======================================
   Access section
   ====================================== */
.heiwa-access {
  padding: 80px 40px;
}
.heiwa-access .container {
  max-width: 1200px;
  margin: 0 auto;
}
.heiwa-access .embed {
  border-radius: 0;
  height: 400px;
}
.heiwa-access .embed iframe {
  height: 100%;
}
.heiwa-access__info {
  margin-top: 24px;
  font-size: 1.4rem;
  color: var(--heiwa-ink-2);
  line-height: 2;
}

@media (max-width: 639px) {
  .heiwa-access { padding: 60px 20px; }
  .heiwa-access .embed { height: 280px; }
}

/* ======================================
   Utility overrides for this site
   ====================================== */
/* Section background cream */
.section.bg-cream {
  background: var(--heiwa-cream);
}

/* center util */
.heiwa-center {
  text-align: center;
}
.heiwa-mt-60 {
  margin-top: 60px;
}

/* CMSフォーム 必須マーク色 */
.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  background: #00B050!important;
}
