/*
Theme Name: OHAMA SHINICHIRO Official
Theme URI: https://tairahipo.com/
Description: 大濵進一郎 公式サイト用オリジナルブロックテーマ。白基調×ティファニーブルー(#00AACF)、余白と細い罫線を活かした清潔感のあるデザイン。見出しはNoto Serif JP、本文はNoto Sans JP+Inter。
Author: OHAMA SHINICHIRO
Version: 1.4.2
Requires at least: 6.5
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ohama-shinichiro
*/

/* =========================================================
   0. Design tokens - 白基調のクリーンスタイル
   ========================================================= */
:root {
  --c-accent: #00AACF;      /* ティファニーブルー(ボタン・ライン・アイコン) */
  --c-accent-dark: #007D99; /* テキストリンク・小さな文字用の濃色 */
  --c-accent-soft: #E8F7FB; /* ごく薄いアクセント背景 */
  --c-ink: #1C1C1C;
  --c-text: #2A2A2A;
  --c-muted: #8A8F94;
  --c-line: #E9E9E9;
  --c-bg: #FFFFFF;
  --c-bg-gray: #F7F7F5;

  --font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-en: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 12px;
  --radius-btn: 999px;
  --shadow: 0 1px 2px rgba(28, 28, 28, .04);
  --shadow-hover: 0 10px 30px rgba(28, 28, 28, .08);

  --header-h: 76px;
  --container: 1160px;
  --narrow: 720px;
  --sec-pad: clamp(88px, 13vw, 160px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (max-width: 782px) {
  :root { --header-h: 62px; }
}

/* =========================================================
   1. Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: .04em;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  word-break: normal;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
ul, ol { padding-left: 1.4em; }

a { color: var(--c-accent-dark); text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
a:hover { opacity: .7; }

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: rgba(20, 128, 140, .16); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--c-ink);
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 .6em;
  letter-spacing: .06em;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: 8px; top: -60px;
  z-index: 10000;
  background: var(--c-ink); color: #fff;
  padding: 10px 18px; border-radius: 6px;
  transition: top .2s;
}
.skip-link:focus { top: 8px; color: #fff; }

/* =========================================================
   2. Layout helpers
   ========================================================= */
.ohs-container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(24px, 5vw, 48px); }
.ohs-narrow { max-width: var(--narrow); margin-inline: auto; padding-inline: clamp(24px, 5vw, 48px); }
.ohs-section { padding-block: var(--sec-pad); }
.ohs-section--gray { background: var(--c-bg-gray); }
.ohs-section--tint { background: var(--c-bg-gray); }
.ohs-section--ink { background: var(--c-bg-gray); }

/* セクションヘッダー */
.ohs-sec-head { margin-bottom: clamp(44px, 7vw, 80px); }
.ohs-sec-head--center { text-align: center; }
.ohs-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 18px;
}
.ohs-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-accent);
}
.ohs-sec-head--center .ohs-label::before { display: none; }
.ohs-sec-head--center .ohs-label::after {
  content: "";
  display: block;
  width: 28px; height: 1px;
  background: var(--c-accent);
  margin: 14px auto 0;
}
.ohs-sec-head--center .ohs-label { display: block; }
.ohs-sec-title {
  font-size: clamp(25px, 4.2vw, 36px);
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: .6em;
}
.ohs-sec-lead { color: var(--c-muted); font-size: 14px; max-width: 620px; margin: 0; }
.ohs-sec-head--center .ohs-sec-lead { margin-inline: auto; }

/* =========================================================
   3. Buttons
   ========================================================= */
.ohs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 40px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--c-accent);
  background: var(--c-accent);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.4;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease), opacity .3s var(--ease);
}
.ohs-btn:hover { background: var(--c-accent-dark); border-color: var(--c-accent-dark); color: #fff; opacity: 1; transform: translateY(-1px); }
.ohs-btn .ohs-btn-arrow { font-family: var(--font-en); font-weight: 400; transition: transform .3s var(--ease); }
.ohs-btn:hover .ohs-btn-arrow { transform: translateX(5px); }

.ohs-btn--outline,
.ohs-btn--ghost-white {
  background: transparent;
  border-color: rgba(0, 170, 207, .55);
  color: var(--c-accent-dark);
}
.ohs-btn--outline:hover,
.ohs-btn--ghost-white:hover { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }

.ohs-btn--white { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.ohs-btn--white:hover { background: var(--c-accent-dark); border-color: var(--c-accent-dark); color: #fff; }

.ohs-btn--sm { min-height: 42px; padding: 8px 26px; font-size: 12px; letter-spacing: .14em; }

.ohs-textlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--c-ink);
  letter-spacing: .12em;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(28, 28, 28, .3);
  transition: border-color .3s, color .3s, opacity .3s;
}
.ohs-textlink::after {
  content: "→";
  font-family: var(--font-en);
  font-weight: 400;
  color: var(--c-accent);
  transition: transform .3s var(--ease);
}
.ohs-textlink:hover { opacity: 1; color: var(--c-accent-dark); border-color: var(--c-accent); }
.ohs-textlink:hover::after { transform: translateX(5px); }

/* =========================================================
   4. Header
   ========================================================= */
.ohs-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.ohs-header.is-scrolled { background: rgba(255, 255, 255, .96); border-bottom-color: var(--c-line); }

.ohs-header-inner {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 3.4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ohs-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  color: var(--c-ink);
}
.ohs-brand:hover { opacity: .6; }
.ohs-brand-en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: .22em;
  white-space: nowrap;
}
.ohs-brand-ja {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .42em;
  color: var(--c-muted);
  margin-top: 2px;
}
@media (max-width: 599px) {
  .ohs-brand-en { font-size: 13px; letter-spacing: .16em; }
  .ohs-brand-ja { font-size: 9px; letter-spacing: .3em; }
}

.ohs-gnav { display: flex; align-items: center; gap: 4px; }
.ohs-gnav ul { list-style: none; display: flex; margin: 0; padding: 0; gap: 0; }
.ohs-gnav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--c-ink);
  position: relative;
}
.ohs-gnav a::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 4px;
  height: 1px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.ohs-gnav a:hover { opacity: 1; color: var(--c-accent-dark); }
.ohs-gnav a:hover::after, .ohs-gnav a[aria-current="page"]::after { transform: scaleX(1); }

.ohs-header-cta { display: inline-flex; }
.ohs-header .ohs-btn--sm { min-height: 40px; padding: 6px 24px; }

/* ハンバーガー */
.ohs-menu-btn {
  display: none;
  width: 46px; height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.ohs-menu-btn span {
  display: block;
  width: 26px; height: 1px;
  background: var(--c-ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.ohs-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.ohs-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ohs-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* モバイルメニュー */
.ohs-mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 999;
  background: rgba(255, 255, 255, .98);
  padding: 30px clamp(24px, 6vw, 40px) 48px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.ohs-mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.ohs-mobile-nav ul { list-style: none; margin: 0 0 32px; padding: 0; }
.ohs-mobile-nav li { border-bottom: 1px solid var(--c-line); }
.ohs-mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 4px;
  color: var(--c-ink);
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .18em;
}
.ohs-mobile-nav a small { font-family: var(--font-jp); font-size: 11px; font-weight: 400; color: var(--c-muted); letter-spacing: .16em; }
.ohs-mobile-nav .ohs-btn { width: 100%; }

@media (max-width: 1023px) {
  .ohs-gnav { display: none; }
  .ohs-menu-btn { display: flex; }
}
@media (min-width: 1024px) {
  .ohs-mobile-nav { display: none; }
}
@media (max-width: 479px) {
  .ohs-header .ohs-btn--sm { min-height: 36px; padding: 5px 16px; font-size: 11px; }
}

/* =========================================================
   5. Hero(ファーストビュー)
   ========================================================= */
.ohs-hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-bg);
}
.ohs-hero-media { position: absolute; inset: 0; }
.ohs-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus-sp, center 20%);
}
@media (min-width: 783px) {
  .ohs-hero-media img { object-position: var(--hero-focus, center 25%); }
}

/* 写真未設定時: 白のタイポグラフィックヒーロー */
.ohs-hero-art {
  position: absolute; inset: 0;
  background:
    radial-gradient(52% 60% at 86% 8%, var(--c-accent-soft), transparent 65%),
    linear-gradient(180deg, #FDFDFC 0%, #F7F7F5 100%);
}
.ohs-hero-art::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: 1px; height: 22vh;
  background: linear-gradient(to bottom, transparent, var(--c-line));
}
.ohs-hero-art-name {
  position: absolute;
  right: -.05em;
  bottom: -2vh;
  margin: 0;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(60px, 12vw, 180px);
  line-height: .95;
  letter-spacing: .02em;
  text-align: right;
  color: #EFEFEC;
  user-select: none;
  pointer-events: none;
}

/* 写真あり: 下部を白にフェードさせて文字は墨色のまま */
.ohs-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #FFFFFF 4%, rgba(255, 255, 255, .82) 26%, rgba(255, 255, 255, 0) 62%);
}

.ohs-hero-inner {
  position: relative;
  width: 100%;
  padding-bottom: clamp(64px, 10vh, 110px);
  padding-top: calc(var(--header-h) + 48px);
}
.ohs-hero-titles { max-width: 900px; }
.ohs-hero-copy {
  font-family: var(--font-serif);
  color: var(--c-ink);
  font-size: clamp(28px, 5.4vw, 52px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .08em;
  margin: 0 0 .7em;
  text-wrap: balance;
}
.ohs-hero-sub {
  color: var(--c-muted);
  font-size: clamp(13.5px, 1.8vw, 15.5px);
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 2.3;
  margin: 0 0 2em;
}
.ohs-hero-meta {
  display: inline-block;
  padding: 0 0 0 22px;
  border-left: 1px solid var(--c-accent);
  margin-bottom: 36px;
}
.ohs-hero-name {
  color: var(--c-ink);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .2em;
  display: block;
  margin-bottom: 4px;
}
.ohs-hero-name small { font-family: var(--font-en); font-weight: 500; font-size: 10px; letter-spacing: .3em; color: var(--c-muted); margin-left: 12px; }
.ohs-hero-titles-list {
  color: var(--c-muted);
  font-size: 12px;
  letter-spacing: .1em;
  line-height: 2;
  display: block;
}
.ohs-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.ohs-scroll-cue {
  position: absolute;
  right: clamp(22px, 4vw, 44px);
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--c-muted);
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .34em;
  writing-mode: vertical-rl;
  padding-bottom: 88px;
}
.ohs-scroll-cue::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 1px; height: 76px;
  background: rgba(28, 28, 28, .28);
  overflow: hidden;
  animation: ohs-scrolline 2.4s var(--ease) infinite;
}
@keyframes ohs-scrolline {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 782px) {
  .ohs-hero { min-height: 88svh; }
  .ohs-hero-actions .ohs-btn { flex: 1 1 100%; }
  .ohs-scroll-cue { display: none; }
}

/* =========================================================
   6. カード・グリッド類
   ========================================================= */
.ohs-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  display: flex;
  flex-direction: column;
}
a.ohs-card { color: inherit; }
.ohs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: #DDDDD9; opacity: 1; }

.ohs-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--c-bg-gray); }
.ohs-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ohs-card:hover .ohs-card-media img { transform: scale(1.04); }
.ohs-card-media--ph {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #FAFAF8, #F0F1EF);
}
.ohs-card-media--ph .ohs-ph-initial {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: .08em;
  color: #D4D6D2;
}
.ohs-card-body { padding: 26px 28px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ohs-card-title { font-size: 17px; margin: 0; line-height: 1.6; letter-spacing: .05em; }
.ohs-card-text { color: var(--c-muted); font-size: 13px; line-height: 2; margin: 0; }
.ohs-card-foot { margin-top: auto; padding-top: 10px; }

.ohs-grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.ohs-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ohs-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1023px) { .ohs-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .ohs-grid--2, .ohs-grid--3 { grid-template-columns: 1fr; } }

/* バッジ・タグ */
.ohs-badge {
  display: inline-block;
  padding: 3px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  background: var(--c-bg-gray);
  border: 1px solid var(--c-line);
  color: var(--c-text);
}
.ohs-badge--green, .ohs-badge--ink { background: var(--c-accent-dark); border-color: var(--c-accent-dark); color: #fff; }

/* =========================================================
   7. HOME 各セクション
   ========================================================= */
/* Introduction */
.ohs-intro-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}
.ohs-intro-figure { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--c-bg-gray); }
.ohs-intro-figure img { width: 100%; height: 100%; object-fit: cover; }
.ohs-portrait-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(165deg, #FAFAF8, #EFF0EE);
}
.ohs-portrait-ph svg { width: 42%; height: auto; opacity: .45; }
.ohs-intro-name { font-size: clamp(23px, 3vw, 29px); letter-spacing: .16em; margin-bottom: 6px; }
.ohs-intro-name small { display: block; font-family: var(--font-en); font-size: 10.5px; font-weight: 500; letter-spacing: .34em; color: var(--c-accent); margin-top: 10px; }
.ohs-intro-titles { color: var(--c-muted); font-size: 12.5px; letter-spacing: .08em; line-height: 2.1; margin: 0 0 24px; }
@media (max-width: 860px) {
  .ohs-intro-grid { grid-template-columns: 1fr; }
  .ohs-intro-figure { max-width: 380px; }
}

/* Mission */
.ohs-mission-state {
  font-family: var(--font-serif);
  font-size: clamp(23px, 4vw, 34px);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: .08em;
  margin: 0 0 .8em;
}
.ohs-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.ohs-value {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.ohs-value-num { font-family: var(--font-en); font-weight: 500; font-size: 11px; letter-spacing: .26em; color: var(--c-accent-dark); display: block; margin-bottom: 14px; }
.ohs-value h3 { font-size: 15.5px; margin-bottom: 10px; letter-spacing: .06em; }
.ohs-value p { font-size: 12.5px; color: var(--c-muted); margin: 0; line-height: 2; }
@media (max-width: 1023px) { .ohs-values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .ohs-values { grid-template-columns: 1fr; } }

/* Activities 4分野 */
.ohs-fields {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.ohs-field {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  color: var(--c-text);
  background: #fff;
  border: 1px solid var(--c-line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.ohs-field:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: #DDDDD9; opacity: 1; }
.ohs-field:nth-child(1) { grid-column: span 7; min-height: 340px; }
.ohs-field:nth-child(2) { grid-column: span 5; min-height: 340px; }
.ohs-field:nth-child(3) { grid-column: span 5; }
.ohs-field:nth-child(4) { grid-column: span 7; }
.ohs-field-bg { position: absolute; inset: 0; }
.ohs-field-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ohs-field:hover .ohs-field-bg img { transform: scale(1.03); }
.ohs-field-bg--g1, .ohs-field-bg--g2, .ohs-field-bg--g3, .ohs-field-bg--g4 { background: transparent; }
.ohs-field-bg--g1 { background: radial-gradient(70% 90% at 90% 0%, var(--c-accent-soft), transparent 60%); }
.ohs-field-bg--g2 { background: radial-gradient(70% 90% at 8% 0%, #F3F4F1, transparent 62%); }
.ohs-field-bg--g3 { background: radial-gradient(70% 90% at 90% 100%, #F3F4F1, transparent 62%); }
.ohs-field-bg--g4 { background: radial-gradient(70% 90% at 10% 100%, var(--c-accent-soft), transparent 60%); }
.ohs-field-bg::after { content: none; }
.ohs-field-en {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .32em;
  color: #C9CCC8;
}
.ohs-field-body { position: relative; padding: 30px 32px; }
.ohs-field h3 { color: var(--c-ink); font-size: clamp(19px, 2.2vw, 24px); margin-bottom: 10px; letter-spacing: .1em; }
.ohs-field p { margin: 0 0 16px; font-size: 13px; color: var(--c-muted); line-height: 2; max-width: 440px; }
.ohs-field .ohs-textlink { font-size: 12.5px; }
@media (max-width: 860px) {
  .ohs-field:nth-child(n) { grid-column: 1 / -1; min-height: 220px; }
}

/* 数字カウンター */
.ohs-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(16px, 2vw, 28px);
  text-align: center;
}
.ohs-counter { padding: 32px 12px; border-radius: var(--radius); background: #fff; border: 1px solid var(--c-line); box-shadow: var(--shadow); }
.ohs-counter-value {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  color: var(--c-ink);
  display: inline-block;
}
.ohs-counter-suffix { font-size: .45em; margin-left: 4px; font-weight: 600; color: var(--c-muted); }
.ohs-counter-label { display: block; margin-top: 12px; font-size: 12px; font-weight: 500; color: var(--c-muted); letter-spacing: .14em; }

/* 実績リスト */
.ohs-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 4vw, 44px); }
.ohs-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 22px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-text);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .1em;
}
.ohs-filter a.is-active, .ohs-filter a:hover { background: var(--c-accent-dark); border-color: var(--c-accent-dark); color: #fff; opacity: 1; }

.ohs-meta-line { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; font-size: 12px; color: var(--c-muted); letter-spacing: .06em; }
.ohs-meta-line time { font-family: var(--font-en); font-weight: 500; letter-spacing: .12em; }

/* 記事カード */
.ohs-post-card .ohs-card-media { aspect-ratio: 16 / 9; }
.ohs-post-card .ohs-card-title { font-size: 15.5px; }
.ohs-empty {
  padding: 56px 24px;
  border: 1px dashed var(--c-line);
  border-radius: var(--radius);
  text-align: center;
  color: var(--c-muted);
  font-size: 13.5px;
  background: #fff;
}

/* YouTube */
.ohs-video { position: relative; }
.ohs-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-bg-gray);
  border: 1px solid var(--c-line);
}
.ohs-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ohs-yt-facade {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; padding: 0;
  cursor: pointer;
  background: var(--c-bg-gray);
  display: block;
}
.ohs-yt-facade img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s, transform .6s var(--ease); }
.ohs-yt-facade:hover img { transform: scale(1.03); }
.ohs-yt-facade::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 60px; height: 60px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, .92) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231C1C1C'%3E%3Cpath d='M8 5.5v13l11-6.5z'/%3E%3C/svg%3E") center / 20px no-repeat;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(28, 28, 28, .18);
  transition: background-color .3s;
}
.ohs-yt-facade:hover::after { background-color: #fff; }
.ohs-video-title { font-family: var(--font-jp); font-size: 14px; font-weight: 500; margin: 16px 0 4px; line-height: 1.7; color: var(--c-ink); letter-spacing: .04em; }
.ohs-video-desc { font-size: 12.5px; color: var(--c-muted); margin: 0; }

/* Message セクション */
.ohs-message { position: relative; overflow: hidden; }
.ohs-message-inner { position: relative; max-width: 780px; margin-inline: auto; text-align: center; }
.ohs-message blockquote {
  margin: 0 0 1.4em;
  font-family: var(--font-serif);
  font-size: clamp(21px, 3.2vw, 30px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: .1em;
  color: var(--c-ink);
}
.ohs-message p { color: var(--c-muted); font-size: 14px; text-align: left; }
.ohs-message .ohs-label { justify-content: center; display: block; }
.ohs-message .ohs-label::before { display: none; }
.ohs-message .ohs-hero-actions { justify-content: center; }
.ohs-message-deco { display: none; }

/* SNS */
.ohs-sns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; list-style: none; margin: 0; padding: 0; }
.ohs-sns a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-ink);
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .14em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.ohs-sns a:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); border-color: #DDDDD9; opacity: 1; }
.ohs-sns svg { width: 17px; height: 17px; fill: currentColor; }

/* Contact CTA バンド */
.ohs-cta {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--c-line);
}
.ohs-cta-card {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
  padding: 0 clamp(24px, 5vw, 64px);
  background: transparent;
  border: 0;
}
.ohs-cta .ohs-label { justify-content: center; }
.ohs-cta .ohs-label::before { display: none; }
.ohs-cta .ohs-label::after {
  content: "";
  display: block;
  width: 28px; height: 1px;
  background: var(--c-accent);
  margin: 14px auto 0;
}
.ohs-cta .ohs-label { display: block; }
.ohs-cta h2 { font-size: clamp(23px, 3.8vw, 34px); letter-spacing: .1em; }
.ohs-cta p { color: var(--c-muted); margin: 0 auto 2.6em; max-width: 560px; font-size: 13.5px; }
.ohs-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
@media (max-width: 639px) {
  .ohs-cta-actions .ohs-btn { flex: 1 1 100%; }
}

/* =========================================================
   8. 下層ページ共通
   ========================================================= */
.ohs-page-hero {
  padding: calc(var(--header-h) + clamp(56px, 10vw, 110px)) 0 clamp(44px, 7vw, 80px);
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}
.ohs-page-hero .ohs-label { margin-bottom: 14px; }
.ohs-page-title { font-size: clamp(29px, 5vw, 44px); letter-spacing: .08em; margin: 0 0 14px; }
.ohs-page-lead { color: var(--c-muted); max-width: 660px; margin: 0; font-size: 13.5px; }

.ohs-breadcrumb { font-size: 11px; color: var(--c-muted); margin-bottom: 22px; letter-spacing: .08em; }
.ohs-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.ohs-breadcrumb li { display: flex; align-items: center; gap: 8px; }
.ohs-breadcrumb li + li::before { content: "/"; color: #D5D5D2; }
.ohs-breadcrumb a { color: var(--c-muted); }
.ohs-breadcrumb a:hover { color: var(--c-accent-dark); }

/* 記事本文(entry content) */
.ohs-entry { font-size: 15.5px; }
.ohs-entry > * + * { margin-top: 1.7em; }
.ohs-entry h2 {
  font-size: clamp(20px, 3vw, 25px);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-line);
  position: relative;
  margin-top: 2.6em;
}
.ohs-entry h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 56px; height: 1px;
  background: var(--c-accent);
}
.ohs-entry h3 {
  font-size: clamp(17px, 2.4vw, 20px);
  padding-left: 16px;
  border-left: 2px solid var(--c-accent);
  margin-top: 2.2em;
}
.ohs-entry h4 { font-size: 16px; margin-top: 1.8em; }
.ohs-entry a { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.ohs-entry img { border-radius: var(--radius); }
.ohs-entry blockquote {
  margin: 1.8em 0;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--c-bg-gray);
  border-left: 2px solid var(--c-accent);
  color: var(--c-text);
  font-family: var(--font-serif);
}
.ohs-entry blockquote p { margin: 0; }
.ohs-entry .wp-block-table table { border-collapse: collapse; width: 100%; }
.ohs-entry .wp-block-table td, .ohs-entry .wp-block-table th { border: 1px solid var(--c-line); padding: 10px 14px; }

/* 目次 */
.ohs-toc {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-bg-gray);
  padding: 26px 30px;
  margin: 2em 0;
}
.ohs-toc[hidden] { display: none; }
.ohs-toc-title { font-family: var(--font-en); font-weight: 500; font-size: 11px; letter-spacing: .3em; color: var(--c-muted); display: flex; align-items: center; gap: 10px; margin: 0 0 12px; text-transform: uppercase; }
.ohs-toc-title::before { content: ""; width: 20px; height: 1px; background: var(--c-accent); }
.ohs-toc ol { margin: 0; padding-left: 1.3em; font-size: 13.5px; }
.ohs-toc li { margin: .5em 0; }
.ohs-toc a { color: var(--c-text); }
.ohs-toc a:hover { color: var(--c-accent-dark); }
.ohs-toc .ohs-toc-h3 { list-style: none; font-size: 12.5px; }

/* シェア・著者・前後記事 */
.ohs-share { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 2.6em 0; }
.ohs-share-label { font-family: var(--font-en); font-size: 10.5px; font-weight: 500; letter-spacing: .3em; color: var(--c-muted); }
.ohs-share a, .ohs-share button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-ink);
  cursor: pointer;
  transition: transform .3s var(--ease), border-color .3s;
}
.ohs-share a:hover, .ohs-share button:hover { transform: translateY(-2px); border-color: var(--c-accent); color: var(--c-accent-dark); opacity: 1; }
.ohs-share svg { width: 17px; height: 17px; fill: currentColor; }

.ohs-author {
  display: flex; gap: 22px; align-items: center;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 30px;
  background: #fff;
  margin: 2.6em 0;
}
.ohs-author-avatar { flex: 0 0 72px; }
.ohs-author-avatar img, .ohs-author-avatar .ohs-portrait-ph { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; }
.ohs-author-name { font-family: var(--font-serif); font-weight: 600; color: var(--c-ink); letter-spacing: .1em; }
.ohs-author-name small { font-family: var(--font-en); color: var(--c-muted); font-weight: 500; letter-spacing: .22em; margin-left: 10px; font-size: 9.5px; }
.ohs-author p { font-size: 12.5px; color: var(--c-muted); margin: 6px 0 0; line-height: 1.9; }

.ohs-prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 2.6em 0; }
.ohs-prevnext a {
  display: block;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 20px 24px;
  background: #fff;
  color: var(--c-text);
  font-size: 13px;
  line-height: 1.8;
}
.ohs-prevnext a:hover { border-color: var(--c-accent); opacity: 1; }
.ohs-prevnext .dir { display: block; font-family: var(--font-en); font-size: 9.5px; font-weight: 500; letter-spacing: .26em; color: var(--c-accent-dark); margin-bottom: 8px; }
.ohs-prevnext .is-next { text-align: right; }
@media (max-width: 599px) { .ohs-prevnext { grid-template-columns: 1fr; } }

/* ページネーション */
.ohs-pagination { display: flex; justify-content: center; margin-top: clamp(44px, 6vw, 72px); }
.ohs-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px;
  padding: 0 10px;
  margin: 0 4px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-ink);
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 13px;
}
.ohs-pagination .page-numbers.current { background: var(--c-accent-dark); border-color: var(--c-accent-dark); color: #fff; }
.ohs-pagination .page-numbers:hover { border-color: var(--c-accent); color: var(--c-accent-dark); opacity: 1; }

/* =========================================================
   9. タイムライン(経歴)
   ========================================================= */
.ohs-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.ohs-timeline::before {
  content: "";
  position: absolute;
  left: 5px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--c-line);
}
.ohs-timeline li { position: relative; padding: 0 0 38px 36px; }
.ohs-timeline li:last-child { padding-bottom: 0; }
.ohs-timeline li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-accent);
}
.ohs-timeline .tl-era {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--c-accent-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ohs-timeline h3 { font-size: 16.5px; margin-bottom: 8px; letter-spacing: .06em; }
.ohs-timeline p { margin: 0; font-size: 13px; color: var(--c-muted); line-height: 2; }

/* =========================================================
   10. フォーム
   ========================================================= */
.ohs-form { display: grid; gap: 24px; }
.ohs-form-row { display: grid; gap: 8px; }
.ohs-form-row--2 { grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 639px) { .ohs-form-row--2 { grid-template-columns: 1fr; } }
.ohs-form label { font-weight: 500; font-size: 13.5px; color: var(--c-ink); display: flex; align-items: center; gap: 10px; letter-spacing: .06em; }
.ohs-req, .ohs-opt {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: .12em;
}
.ohs-req { background: #fff; color: #B3402F; border: 1px solid #DBAA9F; }
.ohs-opt { background: var(--c-bg-gray); color: var(--c-muted); border: 1px solid var(--c-line); }
.ohs-form input[type="text"],
.ohs-form input[type="email"],
.ohs-form input[type="tel"],
.ohs-form input[type="date"],
.ohs-form select,
.ohs-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid #D9D9D6;
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-jp);
  font-size: 16px;
  color: var(--c-text);
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
  -webkit-appearance: none;
}
.ohs-form select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238A8F94'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}
.ohs-form textarea { min-height: 180px; resize: vertical; }
.ohs-form input:focus, .ohs-form select:focus, .ohs-form textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(20, 128, 140, .12);
}
.ohs-form .ohs-hint { font-size: 12px; color: var(--c-muted); }
.ohs-form-consent { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; }
.ohs-form-consent input { width: 20px; height: 20px; margin-top: 5px; accent-color: var(--c-accent); flex: none; }
.ohs-form-submit { text-align: center; margin-top: 8px; }
.ohs-form-submit .ohs-btn { min-width: 300px; }
.ohs-hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.ohs-form-notice {
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
}
.ohs-form-notice--success { background: var(--c-accent-soft); color: #00647E; border: 1px solid #BEE2EE; }
.ohs-form-notice--error { background: #FBF1EF; color: #A03A2A; border: 1px solid #E5C4BC; }

/* =========================================================
   11. フッター
   ========================================================= */
.ohs-footer { background: #fff; border-top: 1px solid var(--c-line); color: var(--c-muted); padding: clamp(64px, 9vw, 100px) 0 0; font-size: 13px; }
.ohs-footer a { color: var(--c-muted); }
.ohs-footer a:hover { color: var(--c-accent-dark); opacity: 1; }
.ohs-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.ohs-footer-brand-en { font-family: var(--font-en); font-weight: 600; font-size: 18px; letter-spacing: .24em; color: var(--c-ink); display: block; }
.ohs-footer-brand-ja { font-size: 11px; letter-spacing: .4em; color: var(--c-muted); display: block; margin-top: 6px; }
.ohs-footer-msg { margin: 22px 0 26px; font-size: 12.5px; line-height: 2.2; color: var(--c-muted); max-width: 340px; }
.ohs-footer .ohs-sns { justify-content: flex-start; }
.ohs-footer .ohs-sns a {
  background: #fff;
  border-color: var(--c-line);
  color: var(--c-ink);
  box-shadow: none;
  min-height: 44px;
  padding: 8px 20px;
  font-size: 12px;
}
.ohs-footer-title { font-family: var(--font-en); font-weight: 500; font-size: 10.5px; letter-spacing: .32em; color: #B9BCB8; margin-bottom: 20px; text-transform: uppercase; }
.ohs-footer-nav ul { list-style: none; margin: 0; padding: 0; }
.ohs-footer-nav li { margin-bottom: 12px; }
.ohs-footer-nav a { font-size: 12.5px; letter-spacing: .08em; }
.ohs-footer-bottom {
  border-top: 1px solid var(--c-line);
  padding: 26px 0;
}
.ohs-footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}
.ohs-footer-legal { display: flex; flex-wrap: wrap; gap: 6px 22px; list-style: none; margin: 0; padding: 0; font-size: 11.5px; }
.ohs-copyright { font-family: var(--font-en); font-size: 10.5px; letter-spacing: .14em; color: #B9BCB8; }
@media (max-width: 860px) { .ohs-footer-grid { grid-template-columns: 1fr; } }

/* =========================================================
   12. アニメーション
   ========================================================= */
.ohs-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.ohs-reveal.is-visible { opacity: 1; transform: none; }

.ohs-hero-copy, .ohs-hero-sub, .ohs-hero-meta, .ohs-hero-actions {
  animation: ohs-heroin 1.2s var(--ease) both;
}
.ohs-hero-sub { animation-delay: .15s; }
.ohs-hero-meta { animation-delay: .3s; }
.ohs-hero-actions { animation-delay: .45s; }
@keyframes ohs-heroin {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .ohs-reveal { opacity: 1; transform: none; }
}

/* =========================================================
   13. WPコア調整・その他
   ========================================================= */
.wp-block-image img { border-radius: var(--radius); }
.wp-site-blocks { padding: 0; }
body .is-layout-constrained > .alignwide { max-width: var(--container); }

.ohs-page-body { padding-block: clamp(56px, 9vw, 110px); }

/* 固定ページ本文: テキストは読みやすい幅に、ワイド要素はコンテナ幅に */
.ohs-container.ohs-entry > * {
  max-width: var(--narrow);
  margin-left: auto;
  margin-right: auto;
}
.ohs-container.ohs-entry > .ohs-intro-grid,
.ohs-container.ohs-entry > .ohs-service-block,
.ohs-container.ohs-entry > .ohs-grid,
.ohs-container.ohs-entry > .ohs-values,
.ohs-container.ohs-entry > .ohs-counters,
.ohs-container.ohs-entry > .ohs-filter,
.ohs-container.ohs-entry > .alignwide {
  max-width: none;
}
.ohs-container.ohs-entry > .ohs-timeline { max-width: var(--narrow); }

/* 検索フォーム */
.ohs-search-form { display: flex; gap: 10px; max-width: 560px; }
.ohs-search-form input[type="search"] {
  flex: 1;
  min-height: 50px;
  padding: 10px 20px;
  border: 1px solid #D9D9D6;
  border-radius: 999px;
  font-size: 16px;
  font-family: var(--font-jp);
  background: #fff;
}
.ohs-search-form input[type="search"]:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(20, 128, 140, .12); }

/* 404 */
.ohs-404 { text-align: center; padding-block: clamp(72px, 11vw, 140px); }
.ohs-404-code {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(72px, 14vw, 130px);
  line-height: 1;
  color: #EDEDEA;
}

/* 定義リスト(実績・活動の詳細情報) */
.ohs-dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-top: 1px solid var(--c-line);
  margin: 0;
}
.ohs-dl dt {
  padding: 18px 12px;
  font-weight: 500;
  font-size: 13px;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
  letter-spacing: .08em;
}
.ohs-dl dd {
  margin: 0;
  padding: 18px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--c-line);
}
@media (max-width: 599px) {
  .ohs-dl { grid-template-columns: 1fr; }
  .ohs-dl dt { border-bottom: 0; padding-bottom: 4px; }
  .ohs-dl dd { padding-top: 0; }
}

/* サービスページのセクション */
.ohs-service-block {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(30px, 4.4vw, 56px);
  margin-bottom: clamp(28px, 4vw, 48px);
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.ohs-service-block h2 { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; font-size: clamp(20px, 3vw, 26px); letter-spacing: .08em; }
.ohs-service-block h2 .ohs-label { margin: 0; font-size: 10px; }
.ohs-service-price {
  background: var(--c-bg-gray);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 400;
  color: var(--c-text);
  display: inline-block;
  margin: 14px 0 22px;
  letter-spacing: .06em;
}
.ohs-chiplist { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 12px 0 22px; padding: 0; }
.ohs-chiplist li {
  padding: 7px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-line);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--c-text);
}
