/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .ok-header-sns        - ヘッダーSNSアイコン
 * .ok-cta-*             - フッターCTAセクション専用
 * .ok-footer-*          - フッター本体専用
 * .ok-mv-*              - メインビジュアル専用
 * .ok-news-*            - お知らせセクション
 * .ok-greeting-*        - ご挨拶セクション
 * .ok-feature-*         - こだわりセクション
 * .ok-business-*        - 事業案内セクション
 * .ok-works-*           - 施工実績セクション
 * .ok-access-*          - アクセスセクション
 * .ok-page-hero-*       - 下層ページヒーロー
 * .ok-sp-*              - SP専用パーツ
 *
 * ======================================
 * 共通SCSSに不足していたもの
 * ======================================
 *
 * - ヘッダーSNSアイコンエリア（構造不足）
 * - フッターGoogleマップ中央配置（値の粒度不足）
 * - MV offset slideshow スタイル（構造不足：参考サイト特有の95%幅レイアウト）
 * - ご挨拶セクション：greet_area（写真55%+テキストbox のオフセット重なり）
 * - こだわりセクション：bg-base（外枠暗+内白 calc(100%-80px)）+ top-strength-list
 * - 共通CSSの$base_colorは#55DD4C、$sub_colorは#8F4B1A に上書き
 *
 */

/* ==============================
   カラー・フォント変数上書き
============================== */
:root {
  --ok-green:    #55DD4C;
  --ok-brown:    #8F4B1A;
  --ok-white:    #ffffff;
  --ok-dark:     #2A2520;
  --ok-gray-bg:  #FBF8F2;
  --ok-border:   #E5E0D8;
  --ok-text:     #2A2520;

  /* design tokens */
  --green-deep:  #2FA127;
  --green-soft:  #E9F9E5;
  --brown-soft:  #F1E6DA;
  --ink-soft:    #5B544D;
  --cream:       #FBF8F2;
  --shadow-sm:   0 2px 8px rgba(42, 37, 32, .06);
  --shadow-md:   0 12px 32px rgba(42, 37, 32, .08);
  --radius:      14px;
  --radius-lg:   24px;
}

/* main.cssの変数上書き（scssがコンパイル済みのため、CSSカスタムプロパティで対応） */

/* ==============================
   共通ベース
============================== */
body {
  font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, sans-serif;
  color: var(--ok-dark);
  background: var(--ok-white);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

/* ==============================
   ヘッダー上書き
============================== */
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid var(--ok-border);
  transition: border-color 0.3s;
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: block;
  width: 170px;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.header__logo:hover { opacity: 0.75; }
.header__logo img { width: 100%; height: auto; }

/* PCナビ */
.header__nav {
  display: flex;
  gap: 0;
  align-items: center;
}
@media (max-width: 1100px) {
  .header__nav { display: none; }
}

.header__nav-item a {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding: 6px 16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
}
.header__nav-item a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ok-green);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header__nav-item a:hover::after { opacity: 1; }
.header__nav-item.is-current a::after { opacity: 1; }

.header__nav-en {
  font-family: "Suravaram", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--green-deep);
  line-height: 1.2;
  transition: color 0.3s ease;
}
.header__nav-item a:hover .header__nav-en { color: var(--green-deep); }

.header__nav-ja {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ok-dark);
  line-height: 1.3;
}

/* ヘッダー右 */
.header__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 1100px) {
  .header__right { display: none; }
}

/* SNSアイコン（ヘッダー） */
.ok-header-sns {
  display: flex;
  gap: 10px;
  align-items: center;
}
.ok-header-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--ok-border);
  font-size: 1.6rem;
  color: #666;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.ok-header-sns a:hover {
  color: var(--ok-green);
  border-color: var(--ok-green);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--ok-green);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(85, 221, 76, .25);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.header__cta:hover { background: var(--green-deep); transform: translateY(-1px); }

/* SPナビオーバーレイ */
.sp-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 300;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 80px 0 30px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.sp-nav.is-open { right: 0; }

.sp-nav__list { list-style: none; margin: 0; padding: 0; }
.sp-nav__item { border-bottom: 1px solid var(--ok-border); }
.sp-nav__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  text-decoration: none;
  color: var(--ok-text);
  transition: background 0.2s;
}
.sp-nav__link:hover { background: #f5f5f0; }
.sp-nav__en {
  font-family: "Suravaram", serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--ok-green);
  line-height: 1;
  width: 100%;
  margin-bottom: 2px;
  padding-left: 0;
  text-align: left;
}

.sp-nav__bottom {
  padding: 20px 24px;
  border-top: 2px solid var(--ok-green);
  margin-top: 10px;
}
.ok-sp-tel {
  display: block;
  font-family: "Suravaram", serif;
  font-size: 1.8rem;
  color: var(--ok-text);
  text-decoration: none;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.ok-sp-sns {
  display: flex;
  gap: 16px;
}
.ok-sp-sns a {
  font-size: 2rem;
  color: #555;
  text-decoration: none;
}

/* ハンバーガー */
.nav-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 400;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
}
@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
}
.nav-toggle__line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--ok-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-active .nav-toggle__line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-active .nav-toggle__line:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .nav-toggle__line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* SPナビオーバーレイ背景 */
.ok-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 250;
}
.ok-nav-overlay.is-show { display: block; }

/* body padding for fixed header */
body { padding-top: 40px; }

/* ==============================
   会社理念セクション
============================== */
.ok-philosophy-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.ok-philosophy-section::before {
  content: '';
  position: absolute;
  top: -140px;
  left: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--green-soft);
  pointer-events: none;
  z-index: 0;
}
.ok-philosophy-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--brown-soft);
  pointer-events: none;
  z-index: 0;
}
.ok-philosophy-section .ok-container { position: relative; z-index: 1; }
.ok-philosophy-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  border: 1px solid var(--ok-border);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 896px) { .ok-philosophy-card { padding: 32px 24px; } }
.ok-philosophy-card__label {
  font-family: "Suravaram", serif;
  font-size: 1.2rem;
  letter-spacing: .2em;
  color: var(--green-deep);
  display: block;
  margin-bottom: 16px;
}
.ok-philosophy-card__text {
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  font-weight: 900;
  line-height: 1.9;
  margin: 0;
  color: var(--ok-dark);
}
.ok-philosophy-card__text em {
  font-style: normal;
  color: var(--green-deep);
}

/* ==============================
   Ticker
============================== */
.ticker {
  background: var(--ok-green);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Suravaram", serif;
  letter-spacing: .2em;
  font-size: 1.4rem;
}
.ticker__track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 32s linear infinite;
}
.ticker span::before {
  content: "✦";
  margin-right: 24px;
  color: rgba(255,255,255,.6);
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ==============================
   メインビジュアル（2カラム：左テキスト / 右画像）
============================== */
.ok-mv-section {
  display: flex;
  align-items: center;
  height: 100vh;
  box-sizing: border-box;
  margin-top: -40px;
  padding-top: calc(68px + 5px);
  background: var(--cream);
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

/* テキスト側（左） */
.ok-mv-catch {
  order: 1;
  flex: 0 0 50%;
  padding: 0 4% 0 9%;
  position: relative;
  color: var(--ok-dark);
  max-width: none;
  bottom: auto;
  left: auto;
  z-index: 1;
  opacity: 1;
  transition: opacity 1.8s ease 0.6s;
}
.ok-mv-catch.is-visible { opacity: 1; }

/* 画像側（右） */
#slideshow {
  order: 2;
  flex: 0 0 33%;
  height: 700px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #cac6bc;
  margin-right: 11%;
  margin-bottom: 40px;
  flex-shrink: 0;
  align-self: flex-end;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.main_slider__inner {
  width: 100%;
  height: 100%;
}
.main_slider__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ok-slide-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.ok-slide-img::before { content: none; }
.ok-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ok-kenburns 11s linear forwards;
}
@keyframes ok-kenburns {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* 装飾イラスト */
.ok-mv-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.ok-mv-deco--rainbow {
  width: 300px;
  height: 200px;
  top: 8%;
  right: 1%;
}
.ok-mv-deco--tree {
  width: 200px;
  height: 300px;
  bottom: 0;
  left: 2%;
}

/* 装飾ラベル */
.ok-mv-catch__en {
  font-family: "Suravaram", serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--ok-brown);
  line-height: 1.4;
  display: block;
  margin-bottom: 24px;
  text-shadow: none;
}

/* メイン見出し */
.ok-mv-catch__ja {
  font-size: 5.6rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--ok-dark);
  display: block;
  margin-bottom: 28px;
  text-shadow: none;
}
.ok-mv-accent {
  color: #2FA127;
  background: linear-gradient(transparent 55%, rgba(47, 161, 39, 0.22) 55%);
}

/* サブテキスト */
.ok-mv-catch__sub {
  font-size: 1.45rem;
  color: var(--ink-soft);
  line-height: 1.95;
  letter-spacing: 0.04em;
  text-shadow: none;
  display: block;
  margin-bottom: 36px;
  background: none;
  padding: 0;
  border-radius: 0;
}

/* ボタン群 */
.ok-mv-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.ok-mv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.ok-mv-btn--primary {
  background: var(--ok-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(85, 221, 76, .3);
}
.ok-mv-btn--primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  opacity: 1;
}
.ok-mv-btn--outline {
  background: transparent;
  color: var(--ok-dark);
  border: 1.5px solid rgba(42, 37, 32, 0.45);
}
.ok-mv-btn--outline:hover {
  border-color: var(--ok-dark);
  background: rgba(42, 37, 32, 0.04);
  opacity: 1;
}

/* 創業バッジ */
.ok-mv-badge {
  position: absolute;
  bottom: 25px;
  right: -10px;
  z-index: 20;
  background: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(42, 37, 32, .14);
  line-height: 1.4;
}
.ok-mv-badge__num {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ok-green);
  margin-bottom: 6px;
  white-space: nowrap;
}
.ok-mv-badge__num span {
  font-size: 2.4rem;
  color: var(--ok-dark);
}
.ok-mv-badge__sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* レスポンシブ */
@media (max-width: 1200px) {
  .ok-mv-catch__ja { font-size: 4.2rem; }
  .ok-mv-catch { padding: 50px 4% 50px 6%; }
}
@media (max-width: 896px) {
  .ok-mv-section {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
  .ok-mv-catch {
    order: 1;
    flex: none;
    width: 100%;
    padding: 32px 6% 24px;
  }
  #slideshow {
    order: 2;
    flex: none;
    width: 92%;
    height: 72vw;
    margin: 0 auto 40px;
    border-radius: 16px;
    align-self: auto;
    margin-right: auto;
  }
  .ok-mv-catch__ja { font-size: 3rem; }
  .ok-mv-deco--rainbow { width: 140px; height: 93px; top: 195px; right: 4px; }
  .ok-mv-deco--tree { display: none; }
}
@media (max-width: 639px) {
  .ok-mv-catch__ja { font-size: 2.4rem; }
  .ok-mv-catch { padding: 30px 5% 20px; }
  .ok-mv-catch__en { margin-top: 0; margin-bottom: 16px; }
  .ok-mv-btns { gap: 12px; }
  .ok-mv-btn { padding: 12px 24px; font-size: 1.3rem; }
}

/* ==============================
   お知らせセクション
   参考値: news-box max-width 1150px, flex
============================== */
.ok-news-section {
  padding: 80px 0;
}
.ok-news-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 896px) {
  .ok-news-inner { flex-direction: column; gap: 20px; }
}

.ok-news-heading {
  flex-shrink: 0;
  min-width: 120px;
}
.ok-news-heading__en {
  display: block;
  font-family: "Suravaram", serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: var(--ok-dark);
  line-height: 1.2;
  text-transform: uppercase;
}
.ok-news-heading__ja {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: #666;
  margin-top: 4px;
}
@media (max-width: 896px) {
  .ok-news-heading { display: flex; align-items: center; gap: 12px; }
  .ok-news-heading__en { font-size: 1.6rem; }
}

.ok-news-right {
  flex: 1;
  padding: 0 0 0 10px;
  border-left: 1px solid var(--ok-border);
}
@media (max-width: 896px) { .ok-news-right { border-left: none; border-top: 1px solid var(--ok-border); padding: 16px 0 0; } }

.ok-news-more {
  margin-top: 20px;
  text-align: right;
}
.ok-news-more a {
  font-size: 1.3rem;
  color: var(--ok-dark);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}
.ok-news-more a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.ok-news-more a:hover { color: var(--ok-green); }
.ok-news-more a:hover::after { transform: translateX(4px); }

/* ==============================
   ご挨拶セクション
   参考値: greet_area - 55%テキストbox + 42%写真(absolute), padding 60px 40px
============================== */
.ok-greeting-section {
  background: #fff;
  position: relative;
  padding-bottom: 80px;
}
.ok-greeting-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 300px;
  height: 200px;
  background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28164/rainbow.png") center / contain no-repeat;
  pointer-events: none;
}
.ok-greeting-section::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 98px;
  background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28164/shiba.png") center bottom / cover no-repeat;
  pointer-events: none;
}

@media (max-width: 896px) {
  .ok-greeting-section::before {
    width: 140px;
    height: 93px;
    top: 12px;
    right: 10px;
  }
}

/* グリッドレイアウト */
.ok-greet {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 896px) {
  .ok-greet { grid-template-columns: 1fr; gap: 28px; }
}

/* 左カラム：肖像写真 */
.ok-greet__portrait {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28164/profile.png) no-repeat center/cover;
}
@media (max-width: 896px) {
  .ok-greet__portrait { aspect-ratio: 4 / 3; }
}

/* 右カラム：本文 */
.ok-greet__title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.6;
  margin: 0 0 24px;
  color: var(--ok-dark);
}
.ok-greet__title em {
  font-style: normal;
  color: var(--green-deep);
}
.ok-greet__body p {
  font-size: 1.5rem;
  line-height: 2.1;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.ok-greet__sign {
  margin-top: 28px;
  font-family: "Suravaram", serif;
  font-size: 1.6rem;
  color: var(--ok-brown);
  letter-spacing: .1em;
  line-height: 1.6;
}
.ok-greet__sign b {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  color: var(--ok-dark);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* ==============================
   こだわりセクション
   参考値: bg-base rgba(26,26,26,0.1)外枠 + 白内枠 calc(100%-80px)
   top-strength-list: 60%幅, right-aligned
   カード: padding 20px, bg rgba(255,255,255,0.8), border-radius 20px 0 20px 0
   番号サークル: 40x40px dark, Suravaram 2rem
============================== */
.ok-feature-section {
  position: relative;
  background: rgba(26, 26, 26, 0.08);
  padding: 80px 0;
}
.ok-feature-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 0;
}
@media (max-width: 1367px) {
  .ok-feature-section::before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.ok-feature-inner {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 1;
}

/* 見出しとリストのレイアウト */
.ok-feature-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.ok-feature-heading-col {
  min-width: 260px;
  max-width: 360px;
  flex-shrink: 0;
}
.ok-feature-heading-col .ok-section-heading { text-align: left; }

.ok-feature-list-col {
  flex: 1;
  min-width: 0;
}

/* こだわり装飾画像（deco01相当） */
.ok-feature-deco {
  position: absolute;
  left: -2%;
  bottom: 0;
  width: 40%;
  max-width: 300px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 896px) {
  .ok-feature-deco {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: 70%;
  }
  .ok-feature-layout { flex-direction: column; }
  .ok-feature-heading-col { max-width: 100%; }
}

/* こだわりカードリスト */
.ok-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  width: 100%;
}
@media (min-width: 897px) {
  .ok-feature-list { grid-template-columns: 1fr 1fr; }
}

.ok-feature-list__item {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--ok-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.ok-feature-list__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ok-green); }
.ok-feature-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, #f6f4f0, rgba(246,244,240,0.4));
  clip-path: polygon(0 0, 100% 0, 81% 100%, 0% 100%);
  opacity: 0.4;
}

.ok-feature-list__title {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  margin-bottom: 8px;
}
.ok-feature-list__num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--ok-green);
  border-radius: 50%;
  font-family: "Suravaram", serif;
  font-size: 1.8rem;
  color: #fff;
  flex-shrink: 0;
  font-weight: 400;
}
.ok-feature-list__num::after {
  position: absolute;
  content: '';
  left: 90%;
  top: 50%;
  margin-top: -6px;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--ok-green);
  z-index: -1;
}
.ok-feature-list__name {
  flex: 1;
  margin-left: 14px;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ok-dark);
}
@media (max-width: 639px) {
  .ok-feature-list__num { font-size: 1.5rem; width: 34px; height: 34px; }
  .ok-feature-list__name { font-size: 1.5rem; }
}
.ok-feature-list__text {
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #555;
  padding-left: 4px;
}

/* ==============================
   こだわりセクション (新デザイン)
============================== */
.ok-feature-section {
  background: var(--cream);
}
.ok-feature-section::before {
  display: none;
}

.ok-kodawari-motto {
  text-align: center;
  font-size: clamp(2.2rem, 2.4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .06em;
  margin: 0 auto 56px;
}
.ok-kodawari-motto span {
  position: relative;
  display: inline-block;
}
.ok-kodawari-motto span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: var(--ok-green);
  border-radius: 2px;
  opacity: .55;
}

.ok-kodawari-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 896px) {
  .ok-kodawari-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .ok-kodawari-grid {
    grid-template-columns: 1fr;
  }
}

.ok-kodawari-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ok-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ok-kodawari-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ok-green);
}

.ok-kodawari-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.8rem;
  color: var(--ok-brown);
  opacity: .65;
}

.ok-kodawari-num {
  font-family: "Suravaram", serif;
  font-size: 4.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ok-green);
  margin-bottom: 16px;
}

.ok-kodawari-card h4 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .04em;
  color: var(--ok-dark);
  margin: 0 0 10px;
}

.ok-kodawari-card p {
  font-size: 1.4rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 599px) {
  .ok-kodawari-motto {
    text-align: left;
  }
  .ok-kodawari-card {
    padding: 28px 22px 22px;
  }
  .ok-kodawari-num {
    font-size: 3.6rem;
  }
  .ok-kodawari-card h4 {
    font-size: 1.8rem;
  }
}

/* ==============================
   共通セクション見出し
============================== */
.ok-section-heading {
  margin-bottom: 50px;
  text-align: center;
}
.ok-section-heading__en {
  display: block;
  font-family: "Suravaram", serif;
  font-size: 5.2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--ok-green);
}
.ok-section-heading__ja {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ok-brown);
}
@media (max-width: 896px) {
  .ok-section-heading { margin-bottom: 40px; }
  .ok-section-heading__en { font-size: 4rem; }
}
@media (max-width: 639px) {
  .ok-section-heading__en { font-size: 3rem; }
  .ok-section-heading__ja { font-size: 1.8rem; }
}

.ok-section-heading--left { text-align: left; }

/* セクション汎用ラッパー */
.ok-section {
  padding: 96px 0;
}
@media (max-width: 896px) { .ok-section { padding: 64px 0; } }

.ok-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==============================
   事業案内（導入）セクション
   参考: top-menuimg スタイル踏襲、写真(70%)+テキストラベル(30%)
============================== */
/* ==============================
   事業案内セクション
============================== */
.ok-business-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #fff 0%, var(--green-soft) 100%);
  position: relative;
  overflow: hidden;
}
.ok-business-section::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 420px;
  height: 438px;
  background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28164/logo_mark.png") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 896px) { .ok-business-section { padding: 64px 0; } }

.ok-biz-head {
  margin-bottom: 12px;
}

.ok-biz-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.ok-biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 896px) {
  .ok-biz-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 599px) {
  .ok-biz-grid { grid-template-columns: 1fr; }
}

.ok-biz-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ok-border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  z-index: 1;
}
.ok-biz-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--ok-green);
}

.ok-biz-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.ok-biz-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.ok-biz-card:hover .ok-biz-card__img img {
  transform: scale(1.06);
}

.ok-biz-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ok-biz-card__en {
  font-family: "Suravaram", serif;
  font-size: 1.2rem;
  letter-spacing: .12em;
  color: var(--ok-green);
  font-weight: 400;
}

.ok-biz-card__title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--ok-dark);
  margin: 0;
}

.ok-biz-card__desc {
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

.ok-biz-more {
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ghost ボタン (事業案内・汎用) */
.ok-btn--ghost {
  display: inline-block;
  padding: 14px 36px;
  border: 1.5px solid var(--ok-dark);
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ok-dark);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.ok-btn--ghost:hover {
  background: var(--ok-dark);
  color: #fff;
}

/* ==============================
   施工実績（導入）セクション
============================== */
.ok-works-section {
  padding: 96px 0;
  background: var(--cream);
}
@media (max-width: 896px) { .ok-works-section { padding: 64px 0; } }

.ok-works-lead {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #555;
}

.ok-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 896px) { .ok-works-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 639px) { .ok-works-grid { grid-template-columns: 1fr; } }

.ok-works-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--ok-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--ok-dark);
  display: block;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ok-works-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.ok-works-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ok-works-card:hover .ok-works-card__img { transform: scale(1.05); }

.ok-works-card__body { padding: 14px; }
.ok-works-card__category {
  display: inline-block;
  font-size: 1.1rem;
  padding: 3px 10px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 6px;
}
.ok-works-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.ok-works-btn {
  text-align: center;
  margin-top: 48px;
}

/* ==============================
   アクセスセクション
============================== */
.ok-access-section {
  padding: 100px 0;
  background: #fff;
}
@media (max-width: 896px) { .ok-access-section { padding: 60px 0; } }

.ok-access-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.ok-access-map {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.ok-access-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 639px) { .ok-access-map { height: 280px; } }

.ok-access-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 639px) { .ok-access-info { grid-template-columns: 1fr; } }

.ok-access-info__item { }
.ok-access-info__label {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--ok-green);
  font-weight: 700;
  margin-bottom: 4px;
}
.ok-access-info__value {
  font-size: 1.4rem;
  color: #444;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* ==============================
   フッターCTA
   参考値: footer-contact padding 120px、footer-contact .inner-box max-width 900px
   bg-fc: 暗背景, ::before 背景画像 y:150px offset
============================== */
.footer-cta {
  position: relative;
  background: var(--ok-dark);
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28164/f_contact.jpg) no-repeat 50% 75% / cover;
  z-index: 0;
  opacity: 0.35;
}

.footer-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
}
@media (max-width: 1200px) { .footer-cta__inner { padding: 80px 20px; } }
@media (max-width: 896px)  { .footer-cta__inner { padding: 60px 15px; } }
@media (max-width: 639px)  { .footer-cta__inner { padding: 48px 15px; } }

.ok-cta-heading .heading__en {
  color: #fff;
  display: block;
  font-family: "Suravaram", serif;
  font-size: 4rem;
  letter-spacing: 0.2em;
  line-height: 1.2;
}
.ok-cta-heading .heading__ja {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-top: 4px;
}

.ok-cta-hours {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}

/* CTA電話ボタン */
.btn-cta-tel--bordered {
  display: inline-block;
  font-family: "Suravaram", serif;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}
.btn-cta-tel--bordered::before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 2.4rem;
  margin-right: 8px;
  font-family: "Font Awesome 5 Free";
}
.btn-cta-tel--bordered:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

@media (max-width: 896px) { .btn-cta-tel--bordered { font-size: 2.4rem; } }
@media (max-width: 639px) { .btn-cta-tel--bordered { font-size: 2rem; } }

/* CTA メール・LINEボタン */
.btn-cta-mail, .btn-cta-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  min-width: 220px;
  justify-content: center;
}
.btn-cta-mail {
  background: #fff;
  color: var(--ok-dark);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-cta-mail:hover { opacity: 0.85; }

.btn-cta-line {
  background: #06C755;
  color: #fff;
}
.btn-cta-line:hover { opacity: 0.85; }

@media (max-width: 639px) {
  .btn-cta-mail, .btn-cta-line { min-width: 160px; padding: 14px 20px; font-size: 1.4rem; }
}

/* ==============================
   フッター本体
============================== */
.ok-footer-body {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}
.footer-body__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.ok-footer-logo img {
  max-width: 220px;
  width: 60%;
  height: auto;
}
.ok-footer-address, .ok-footer-tel, .ok-footer-hours {
  font-size: 1.2rem;
  color: #555;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin: 0;
}

.ok-footer-map {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.ok-footer-map iframe { width: 100%; height: 200px; border: 0; display: block; }

.ok-sns-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  color: #444;
  text-decoration: none;
  transition: color 0.3s;
  padding: 6px 12px;
  border: 1px solid var(--ok-border);
  border-radius: 4px;
}
.ok-sns-link:hover { color: var(--ok-green); border-color: var(--ok-green); }

.ok-footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ok-footer-nav__list li a {
  font-size: 1.2rem;
  color: #555;
  text-decoration: none;
  padding: 4px 14px;
  position: relative;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.ok-footer-nav__list li + li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  width: 1px;
  background: var(--ok-border);
}
.ok-footer-nav__list li a:hover { color: var(--ok-green); }

/* コピーライト */
.footer-bottom--dark {
  background: var(--ok-dark);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom__copyright {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  margin: 0;
}
@media (max-width: 896px) { .footer-bottom--dark { padding: 16px 0 60px; } }

/* ==============================
   ページトップボタン
============================== */
.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.page-top.is-visible, .page-top.is-show { opacity: 1; pointer-events: auto; }
.page-top__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--ok-green);
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  transition: background 0.3s, transform 0.3s;
}
.page-top__link:hover { background: var(--ok-brown); transform: translateY(-2px); }
@media (max-width: 896px) { .page-top { bottom: 70px; } }

/* ==============================
   SP固定バー
============================== */
.sp-fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 150;
  background: var(--ok-dark);
  height: 54px;
}
@media (max-width: 1100px) { .sp-fixed-bar { display: flex; } }

.sp-fixed-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  gap: 2px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}
.sp-fixed-bar__item:last-child { border-right: none; }
.sp-fixed-bar__item:hover { background: rgba(255,255,255,0.1); }
.sp-fixed-bar__item i { font-size: 1.6rem; }
.sp-fixed-bar__item span { font-size: 1rem; letter-spacing: 0.05em; }

/* ==============================
   下層ページヒーロー
   参考値: page-hero--solid, padding 70px 5%
============================== */
.ok-page-hero {
  background: var(--cream);
  padding: 64px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ok-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(85,221,76,.07) 0 200px, transparent 201px),
    radial-gradient(circle at 85% 50%, rgba(143,75,26,.06) 0 200px, transparent 201px);
  pointer-events: none;
}
.ok-page-hero__inner { position: relative; z-index: 1; }
.ok-page-hero__en {
  display: block;
  font-family: "Suravaram", serif;
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ok-green);
  line-height: 1;
  margin: 0;
}
.ok-page-hero__ja {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ok-brown);
  margin-top: 12px;
}
@media (max-width: 896px) {
  .ok-page-hero { padding: 48px 5% 60px; }
  .ok-page-hero__en { font-size: 3.6rem; }
  .ok-page-hero__ja { font-size: 1.4rem; }
}
@media (max-width: 639px) {
  .ok-page-hero { padding: 40px 5% 48px; }
  .ok-page-hero__en { font-size: 2.8rem; }
}

/* ==============================
   共通ボタン上書き（green/brown配色）
============================== */
.btn--solid {
  background: var(--ok-green);
  border-color: var(--ok-green);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(85, 221, 76, .3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn--solid:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-1px); }

.btn--outline {
  border-color: var(--ok-green);
  color: var(--ok-green);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.btn--outline:hover { background: var(--ok-green); color: #fff; }

/* ==============================
   TOPページ 中央リード文
============================== */
.ok-lead-text {
  font-size: 1.5rem;
  line-height: 2;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  letter-spacing: 0.06em;
}

/* ==============================
   ブログカード（既存card-blog上書き）
============================== */
.card-blog__date { background: var(--ok-green); }
.pagination .is-current { background: var(--ok-green); border-color: var(--ok-green); color: #fff; }

/* ==============================
   テーブル（会社概要等）
============================== */
.table-basic th { background: rgba(85,221,76,0.1); }
.table-border th { background: var(--ok-green); }

/* ==============================
   フォーム（contact）
============================== */
.form-input:focus { border-color: var(--ok-green); }
.btn-submit { background: var(--ok-brown); }

/* ==============================
   スタッフカード
============================== */
/* スタッフ — イントロ・ノート */
.ok-staff__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  font-size: 1.5rem;
  line-height: 2.1;
  color: var(--ink-soft);
}
.ok-staff__note {
  background: var(--cream);
  border: 1px dashed var(--ok-brown);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 64px;
  font-size: 1.3rem;
  color: var(--ok-brown);
  line-height: 1.8;
}

/* スタッフ — グリッド */
.ok-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) { .ok-staff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ok-staff-grid { grid-template-columns: 1fr; } }

/* スタッフ — カード */
.ok-staff-card {
  background: #fff;
  border: 1px solid var(--ok-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.ok-staff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.ok-staff-card__ph {
  aspect-ratio: 4/5;
  background: repeating-linear-gradient(45deg, #d8d2c5 0 8px, #cdc6b6 8px 16px);
  background-size: cover;
  background-position: center;
  position: relative;
}
.ok-staff-card__ph::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(42,37,32,.55);
  font-size: 1.2rem;
  letter-spacing: .12em;
  font-weight: 700;
}

.ok-staff-card__body { padding: 28px; }

.ok-staff-card__role {
  font-family: "Suravaram", serif;
  font-size: 1.2rem;
  color: var(--green-deep);
  letter-spacing: .15em;
  margin: 0 0 6px;
}
.ok-staff-card__name {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 4px;
  color: var(--ok-dark);
}
.ok-staff-card__furigana {
  font-size: 1.2rem;
  color: var(--ink-soft);
  letter-spacing: .08em;
  margin: 0 0 16px;
}

.ok-staff-card__qa {
  border-top: 1px dashed var(--ok-border);
  padding: 14px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  font-size: 1.3rem;
  line-height: 1.7;
  margin: 0;
}
.ok-staff-card__qa dt {
  font-family: "Suravaram", serif;
  color: var(--ok-brown);
  letter-spacing: .1em;
  font-size: 1.5rem;
  padding-top: 3px;
}
.ok-staff-card__qa dd {
  margin: 0;
  color: var(--ink-soft);
}

.ok-staff-card__quote {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--green-soft);
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.7;
  position: relative;
}
.ok-staff-card__quote::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 8px;
  font-family: "Suravaram", serif;
  font-size: 3.6rem;
  color: var(--ok-green);
  line-height: 1;
  opacity: .5;
}

/* ==============================
   施工実績ページ
============================== */
.ok-works-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.ok-works-filter__btn {
  padding: 8px 20px;
  border: 1px solid var(--ok-border);
  border-radius: 999px;
  font-size: 1.3rem;
  cursor: pointer;
  background: #fff;
  color: #555;
  transition: all 0.3s;
  letter-spacing: 0.06em;
}
.ok-works-filter__btn.is-active,
.ok-works-filter__btn:hover {
  background: var(--ok-green);
  border-color: var(--ok-green);
  color: #fff;
}
@media (max-width: 639px) {
  .ok-works-filter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .ok-works-filter__btn {
    padding: 8px 4px;
    font-size: 1.2rem;
    text-align: center;
  }
}

.ok-works-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 896px) { .ok-works-grid-full { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 639px) { .ok-works-grid-full { grid-template-columns: 1fr; } }

/* ==============================
   パンくず
============================== */
.breadcrumb { padding: 10px 20px; }

/* ==============================
   事業案内ページ サービス一覧
============================== */
.ok-service-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
}
.ok-service-item:nth-child(even) { flex-direction: row-reverse; }
@media (max-width: 896px) {
  .ok-service-item,
  .ok-service-item:nth-child(even) { flex-direction: column; gap: 24px; }
}
.ok-service-item__img {
  width: 45%;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.ok-service-item__img img { width: 100%; height: 280px; object-fit: cover; display: block; }
@media (max-width: 896px) { .ok-service-item__img { width: 100%; } }

.ok-service-item__body { flex: 1; padding-top: 10px; }
.ok-service-item__num {
  font-family: "Suravaram", serif;
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ok-green);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: -10px;
}
.ok-service-item__title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ok-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ok-green);
  display: inline-block;
}
.ok-service-item__text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #555;
}

/* 会社概要 ごあいさつ（下層ページ版） */
.ok-company-greeting {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 896px) { .ok-company-greeting { grid-template-columns: 1fr; gap: 30px; } }

.ok-company-greeting__photo { position: relative; }
.ok-company-greeting__photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
@media (max-width: 639px) { .ok-company-greeting__photo img { height: 260px; } }

/* 沿革タイムライン */
.ok-history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.ok-history-list::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ok-green);
  opacity: 0.3;
}
.ok-history-list__item {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--ok-border);
  position: relative;
}
.ok-history-list__year {
  width: 90px;
  flex-shrink: 0;
  font-family: "Suravaram", serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--ok-green);
  font-weight: 400;
}
.ok-history-list__dot {
  position: absolute;
  left: 95px;
  top: 22px;
  width: 10px;
  height: 10px;
  background: var(--ok-green);
  border-radius: 50%;
  border: 2px solid #fff;
  outline: 2px solid var(--ok-green);
}
.ok-history-list__text {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #444;
  padding-left: 18px;
}

/* 会社理念セクション */
.ok-philosophy-box {
  background: linear-gradient(135deg, rgba(85,221,76,0.06) 0%, rgba(143,75,26,0.04) 100%);
  border-left: 4px solid var(--ok-green);
  padding: 32px 36px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 32px;
}
.ok-philosophy-quote {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--ok-dark);
  margin: 0;
}
@media (max-width: 639px) { .ok-philosophy-quote { font-size: 1.5rem; } }

.ok-creed-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ok-creed-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--ok-border);
  font-size: 1.5rem;
  color: #555;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ok-creed-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--ok-brown);
  border-radius: 50%;
  flex-shrink: 0;
}

/* お知らせブログ詳細 */
.ok-entry-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.ok-entry-body img { max-width: 100%; height: auto; }
.ok-entry-back { text-align: center; margin-top: 48px; }

/* お問い合わせ方法 */
.ok-contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 896px) { .ok-contact-methods { grid-template-columns: 1fr; } }

.ok-contact-method {
  background: var(--ok-gray-bg);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}
.ok-contact-method__icon {
  font-size: 3rem;
  color: var(--ok-green);
  margin-bottom: 12px;
}
.ok-contact-method__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.ok-contact-method__value {
  font-family: "Suravaram", serif;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--ok-dark);
}
.ok-contact-method__sub {
  font-size: 1.2rem;
  color: #666;
  margin-top: 4px;
}

/* 対応エリア */
.ok-area-text {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* ページヒーロー（brown variant） */
.ok-page-hero--brown { background: var(--brown-soft); }
.ok-page-hero--brown .ok-page-hero__en { color: var(--ok-brown); }
.ok-page-hero--brown .ok-page-hero__ja { color: var(--ok-brown); }

/* ==============================
   MV スライドショー
============================== */
.ok-slideshow {
  position: relative;
  width: 95%;
  max-width: calc(100% - 120px);
  margin: 80px auto 0;
}
@media (max-width: 896px) {
  .ok-slideshow {
    width: 100%;
    max-width: 100%;
    margin-top: 80px;
  }
}

.ok-slideshow__inner {
  position: relative;
  overflow: hidden;
}

.ok-slide-img {
  width: 100%;
  height: 80vh;
  min-height: 400px;
  overflow: hidden;
}
.ok-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ok-kenburns 11s ease-out infinite alternate;
  transform-origin: center center;
}
@keyframes ok-kenburns {
  0%   { transform: scale(1.1); }
  100% { transform: scale(1); }
}
@media (max-width: 639px) {
  .ok-slide-img { height: 60vw; min-height: 260px; }
}

/* MV キャッチコピー（重複定義 — 上部の2カラム定義が有効） */

/* ==============================
   お知らせセクション
============================== */
.ok-news-section {
  padding: 80px 0;
  background: #fff;
}
.ok-news-section__inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 896px) {
  .ok-news-section__inner { flex-direction: column; gap: 24px; }
  .ok-news-heading,
  .ok-news-content { width: 100%; }
}

.ok-news-heading {
  flex-shrink: 0;
  min-width: 140px;
  padding-top: 4px;
}
.ok-news-heading__en {
  display: block;
  font-family: "Suravaram", serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--ok-dark);
}
.ok-news-heading__ja {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: #888;
  margin-top: 4px;
}

.ok-news-content { flex: 1; min-width: 0; }

.ok-news-more {
  text-align: right;
  margin-top: 16px;
}
.ok-news-more a {
  font-size: 1.3rem;
  color: var(--ok-green);
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--ok-green);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.ok-news-more a:hover { opacity: 0.7; }

.ok-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ok-news-item {
  border-bottom: 1px solid var(--ok-border);
}
.ok-news-item:first-child {
  border-top: 1px solid var(--ok-border);
}
.ok-news-item__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 8px;
  color: var(--ok-dark);
  text-decoration: none;
  transition: background 0.2s, padding-left 0.2s;
  border-radius: 8px;
}
.ok-news-item__link:hover { background: var(--cream); padding-left: 16px; }
.ok-news-item__thumb {
  width: 140px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
}
.ok-news-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ok-news-item__body {
  flex: 1;
  min-width: 0;
}
.ok-news-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.ok-news-item__date {
  font-size: 1.8rem;
  font-family: "Suravaram", serif;
  color: var(--ok-brown);
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}
.ok-news-item__cat {
  font-size: 1.1rem;
  padding: 3px 10px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}
.ok-news-item__title {
  font-size: 1.4rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 480px) {
  .ok-news-item__thumb { width: 90px; height: 68px; }
  .ok-news-item__title { font-size: 1.3rem; }
}

/* ==============================
   ご挨拶セクション (ページ内再定義)
============================== */
.ok-greeting-vertical {
  writing-mode: vertical-lr;
  font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, sans-serif;
  font-size: 3rem;
  opacity: 0.45;
  letter-spacing: 0.2em;
  line-height: 1;
  position: relative;
  padding-top: 36px;
  color: var(--ok-dark);
  font-weight: 700;
  margin-bottom: 24px;
}
.ok-greeting-vertical::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 28px;
  background: var(--ok-dark);
}
@media (max-width: 639px) { .ok-greeting-vertical { display: none; } }

/* ==============================
   こだわりセクション inner (feature)
============================== */
.ok-feature-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.ok-feature-lead {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.5rem;
  line-height: 2;
  color: #555;
  text-align: center;
}
.ok-feature-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.ok-feature-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ok-green);
  font-family: "Suravaram", serif;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 400;
  flex-shrink: 0;
}
.ok-feature-txt {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ok-dark);
}

/* ==============================
   事業案内カード body
============================== */
.ok-business-card__body {
  background: var(--ok-dark);
  color: #fff;
  padding: 14px 16px;
}
.ok-business-card__title {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.ok-business-card__en {
  display: block;
  font-family: "Suravaram", serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
}
.ok-business-card a {
  text-decoration: none;
  display: block;
}
.ok-business-card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ok-business-card:hover .ok-business-card__img img { transform: scale(1.06); }
.ok-business-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==============================
   施工実績カード (ビフォーアフター)
============================== */
.ok-works-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.ok-works-grid--large {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 639px) { .ok-works-grid--large { grid-template-columns: 1fr; } }

.ok-works-card__ba {
  display: flex;
  gap: 2px;
}
.ok-works-card__before,
.ok-works-card__after {
  flex: 1;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.ok-works-card__before a,
.ok-works-card__after a {
  display: block;
  overflow: hidden;
}
.ok-works-card__before img,
.ok-works-card__after img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ok-works-card__before a:hover img,
.ok-works-card__after a:hover img { transform: scale(1.05); }

/* lightbox ズームアイコン */
.ok-works-card__before a::after,
.ok-works-card__after a::after {
  content: "\f00e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  color: #fff;
  font-size: 2.4rem;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  z-index: 2;
}
.ok-works-card__before a:hover::after,
.ok-works-card__after a:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.ok-works-card__before a:hover,
.ok-works-card__after a:hover {
  cursor: zoom-in;
}

.ok-works-card__label {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: "Suravaram", serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 2px 8px;
  border-radius: 2px;
}
.ok-works-card__after .ok-works-card__label {
  background: var(--ok-green);
}
.ok-works-card__cat {
  display: inline-block;
  font-size: 1.6rem;
  padding: 2px 10px;
  background: var(--ok-green);
  color: #fff;
  border-radius: 3px;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  margin-top: 10px;
  display: block;
}
.ok-works-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 0 14px 14px;
}
.ok-works-card__body {
  padding: 10px 14px 0;
}
.ok-works-card__title a {
  text-decoration: none;
  color: var(--ok-text);
  transition: color .2s;
}
.ok-works-card__title a:hover { color: var(--ok-green); }

.ok-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.ok-pagination__current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--ok-green);
  color: #fff;
  border-radius: 4px;
  font-size: 1.4rem;
}

/* ==============================
   アクセスセクション body
============================== */
.ok-access-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.ok-access-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 896px) {
  .ok-access-body { grid-template-columns: 1fr; }
}
.ok-access-map iframe { width: 100%; height: 400px; border: 0; display: block; border-radius: 8px; }
@media (max-width: 639px) { .ok-access-map iframe { height: 260px; } }

.ok-access-dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  font-size: 1.4rem;
}
.ok-access-dl dt {
  padding: 12px 0;
  font-weight: 700;
  color: var(--ok-green);
  border-bottom: 1px solid var(--ok-border);
}
.ok-access-dl dd {
  padding: 12px 0 12px 12px;
  color: #444;
  border-bottom: 1px solid var(--ok-border);
  margin: 0;
}
.ok-access-dl a { color: var(--ok-green); text-decoration: none; }

/* ==============================
   会社概要 ごあいさつ（company.php）
============================== */
.ok-company-greeting-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 896px) { .ok-company-greeting-body { grid-template-columns: 1fr; gap: 30px; } }

.ok-company-greeting-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: block;
}
@media (max-width: 896px) { .ok-company-greeting-photo { order: -1; } }
@media (max-width: 639px) { .ok-company-greeting-photo img { height: 260px; } }

.ok-company-greeting-text p { line-height: 1.9; margin-bottom: 16px; }

/* ==============================
   会社概要テーブル
============================== */
.ok-company-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.ok-company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}
.ok-company-table th,
.ok-company-table td {
  padding: 14px 20px;
  border: 1px solid var(--ok-border);
  line-height: 1.7;
  vertical-align: top;
}
.ok-company-table th {
  width: 160px;
  background: rgba(85,221,76,0.08);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ok-dark);
  white-space: nowrap;
}
.ok-company-table td { color: #444; }
.ok-company-table td a { color: var(--ok-green); }
@media (max-width: 639px) {
  .ok-company-table th { width: 100px; padding: 10px 12px; }
  .ok-company-table td { padding: 10px 12px; }
}

/* ==============================
   沿革タイムライン（company.php）
============================== */
.ok-history-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.ok-history-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ok-history-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--ok-border);
  align-items: baseline;
}
.ok-history-year {
  font-family: "Suravaram", serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--ok-green);
  font-weight: 400;
  white-space: nowrap;
}
.ok-history-text {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.7;
}
@media (max-width: 639px) {
  .ok-history-item { grid-template-columns: 1fr; gap: 4px; }
}

/* ==============================
   会社理念（company.php）
============================== */
.ok-philosophy-section { background: var(--ok-gray-bg); }

.ok-philosophy-box {
  max-width: 800px;
  margin: 0 auto 40px;
  background: #fff;
  border-left: 5px solid var(--ok-green);
  padding: 36px 40px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.ok-philosophy-main {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: var(--ok-dark);
  margin: 0;
}
@media (max-width: 639px) { .ok-philosophy-main { font-size: 1.6rem; } }

.ok-shakuze-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.ok-shakuze-label {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 12px;
}
.ok-shakuze-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ok-shakuze-list li {
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.06em;
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--ok-border);
  position: relative;
}
.ok-shakuze-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok-brown);
  transform: translateY(-50%);
}

/* ==============================
   スタッフカード info dl
============================== */

/* ==============================
   事業案内 サービスリスト
============================== */
.ok-service-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.ok-service-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
}
.ok-service-item--reverse { flex-direction: row-reverse; }
@media (max-width: 896px) {
  .ok-service-item,
  .ok-service-item--reverse { flex-direction: column; gap: 24px; }
}
.ok-service-item__img {
  width: 45%;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.ok-service-item__img img { width: 100%; height: 280px; object-fit: cover; display: block; }
@media (max-width: 896px) { .ok-service-item__img { width: 100%; } }

.ok-service-item__body { flex: 1; padding-top: 10px; }
.ok-service-item__title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ok-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ok-green);
  display: block;
}
.ok-service-item__en {
  display: block;
  font-family: "Suravaram", serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #888;
  font-weight: 400;
  margin-bottom: 4px;
}

/* ==============================
   お問い合わせ方法カード
============================== */
.ok-contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto 60px;
  max-width: 1100px;
  padding: 0 20px;
}
@media (max-width: 896px) { .ok-contact-methods { grid-template-columns: 1fr; max-width: 500px; } }

.ok-contact-method-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.ok-contact-method-card__icon {
  font-size: 3rem;
  color: var(--ok-green);
  margin-bottom: 16px;
}
.ok-contact-method-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--ok-dark);
}
.ok-contact-tel {
  font-family: "Suravaram", serif;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--ok-dark);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
}
.ok-contact-method-card__hours {
  font-size: 1.2rem;
  color: #888;
  margin-top: 4px;
}

/* ==============================
   アコーディオン（プライバシーポリシー）
============================== */
.ok-accordion {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.ok-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ok-gray-bg);
  border: 1px solid var(--ok-border);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--ok-dark);
  transition: background 0.3s;
}
.ok-accordion__trigger:hover { background: #eee; }
.ok-accordion__icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.ok-accordion__trigger.is-open .ok-accordion__icon { transform: rotate(180deg); }

.ok-accordion__body {
  border: 1px solid var(--ok-border);
  border-top: none;
  border-radius: 0 0 6px 6px;
  padding: 24px 20px;
  background: #fff;
}

.ok-privacy-content { font-size: 1.3rem; line-height: 1.9; color: #444; }
.ok-privacy-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ok-dark);
  margin: 20px 0 8px;
  letter-spacing: 0.06em;
}
.ok-privacy-list {
  list-style: disc;
  padding-left: 20px;
  color: #555;
}
.ok-privacy-list li { margin-bottom: 4px; }

/* ==============================
   ブログレイアウト
============================== */
.ok-blog-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 896px) { .ok-blog-layout { grid-template-columns: 1fr; } }

.ok-blog-side__block {
  background: var(--ok-gray-bg);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}
.ok-blog-side__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ok-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ok-green);
}

/* ==============================
   お知らせ詳細
============================== */
.ok-entry-detail { max-width: 100%; }
.ok-entry-header { margin-bottom: 32px; padding-bottom: 20px; border-bottom: 2px solid var(--ok-green); }
.ok-entry-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--ok-dark);
  margin-bottom: 10px;
}
.ok-entry-meta { display: flex; align-items: center; gap: 12px; }
.ok-entry-date { font-size: 1.3rem; color: #888; font-family: "Suravaram", serif; letter-spacing: 0.06em; }
.ok-entry-pager { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--ok-border); }

/* ==============================
   グレーセクション
============================== */
.ok-section--gray { background: var(--ok-gray-bg); }

/* ==============================
   ユーティリティ
============================== */
.mt-15 { margin-top: 15px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.text-center { text-align: center; }

/* ==============================
   フッター（新構造 ok-footer__*）
============================== */
.ok-footer {
  background: var(--ok-brown);
  color: #fff;
}
.ok-footer a { color: #fff; text-decoration: none; }

.ok-footer__body {
  padding: 72px 0 0;
}
.ok-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1024px) {
  .ok-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ok-footer__map { grid-column: span 2; }
}
@media (max-width: 640px) {
  .ok-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .ok-footer__map { grid-column: span 1; }
}

/* ブランド */
.ok-footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.ok-footer__logo img {
  width: 170px;
  height: 55px;
  object-fit: contain;
  display: block;
}
.ok-footer__logo-en {
  font-family: "Suravaram", serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
}
.ok-footer__logo-jp {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 4px;
}
.ok-footer__desc {
  font-size: 1.3rem;
  line-height: 1.9;
  opacity: 0.88;
  margin: 0 0 16px;
}

/* CTAボタン */
.ok-footer__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.ok-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, background 0.2s;
  white-space: nowrap;
}
.ok-footer__cta-btn--primary {
  background: var(--ok-green);
  color: #fff;
}
.ok-footer__cta-btn--primary:hover { background: var(--green-deep); opacity: 1; }
.ok-footer__cta-btn--line {
  background: #06C755;
  color: #fff;
}
.ok-footer__cta-btn--line:hover { opacity: 0.85; }

/* 会社情報 */
.ok-footer__info { font-size: 1.3rem; }
.ok-footer__dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px 16px;
  margin: 0;
}
.ok-footer__dl dt {
  font-family: "Suravaram", serif;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0.7;
}
.ok-footer__dl dd {
  margin: 0;
  color: #fff;
}
.ok-footer__dl a { color: #fff; }

/* マップ */
.ok-footer__map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 10px;
  display: block;
}

/* ナビ */
.ok-footer__nav {
  border-top: 1px solid rgba(255,255,255,.18);
}
.ok-footer__nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.ok-footer__nav-inner a {
  font-size: 1.3rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.ok-footer__nav-inner a:hover { opacity: 1; }
@media (max-width: 639px) {
  .ok-footer__nav { display: none; }
}

/* ボトムバー */
.ok-footer__bottom {
  background: #8F4B1A;
  padding: 18px 28px;
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,.75);
}

/* ==============================
   ページヒーロー装飾SVG
============================== */
.ok-page-hero__deco {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .9;
  pointer-events: none;
}
@media (max-width: 896px) { .ok-page-hero__deco { display: none; } }

/* ==============================
   セクション汎用
============================== */
.ok-section--cream { background: var(--cream); }

.ok-section-lead {
  text-align: center;
  max-width: 640px;
  margin: -32px auto 56px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* ==============================
   会社概要 — Profile テーブル
============================== */
.ok-company-profile {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.ok-company-profile__photo {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(45deg, #d8d2c5 0 8px, #cdc6b6 8px 16px);
  overflow: hidden;
}
.ok-company-profile-table {
  width: 100%;
  border-collapse: collapse;
}
.ok-company-profile-table th,
.ok-company-profile-table td {
  text-align: left;
  padding: 22px 4px;
  border-bottom: 1px solid var(--ok-border);
  font-size: 1.5rem;
  line-height: 1.7;
  vertical-align: top;
}
.ok-company-profile-table th {
  font-weight: 700;
  color: var(--ok-brown);
  width: 140px;
  letter-spacing: .08em;
}
.ok-company-profile-table__en {
  display: block;
  font-family: "Suravaram", serif;
  font-size: 1.1rem;
  color: var(--green-deep);
  letter-spacing: .12em;
  font-weight: 400;
  margin-bottom: 2px;
}
.ok-company-profile-table td a:hover { color: var(--green-deep); text-decoration: underline; }
.ok-company-note {
  font-size: 1.2rem;
  color: var(--ink-soft);
}
@media (max-width: 880px) {
  .ok-company-profile { grid-template-columns: 1fr; gap: 32px; }
  .ok-company-profile__photo { position: static; aspect-ratio: 16/10; }
  .ok-company-profile-table th { width: 110px; }
}

/* ==============================
   会社概要 — タイムライン
============================== */
.ok-timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 0;
}
.ok-timeline::before {
  content: "";
  position: absolute;
  left: 132px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--ok-green) 0%, var(--ok-brown) 100%);
}
.ok-timeline__item {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 32px;
  padding: 28px 0;
  position: relative;
}
.ok-timeline__item::before {
  content: "";
  position: absolute;
  left: 124px;
  top: 38px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ok-green);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--ok-green);
}
.ok-timeline__year {
  font-family: "Suravaram", serif;
  font-size: 2.8rem;
  color: var(--ok-brown);
  line-height: 1.2;
  letter-spacing: .04em;
  font-weight: 400;
}
.ok-timeline__year small {
  display: block;
  font-size: 1.2rem;
  color: var(--ink-soft);
  letter-spacing: .1em;
  margin-top: 4px;
}
.ok-timeline__body {
  padding-left: 28px;
}
.ok-timeline__body h4 {
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--ok-dark);
}
.ok-timeline__body p {
  font-size: 1.4rem;
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 880px) {
  .ok-timeline::before { left: 14px; }
  .ok-timeline__item { grid-template-columns: 1fr; gap: 8px; padding-left: 40px; }
  .ok-timeline__item::before { left: 6px; top: 12px; }
  .ok-timeline__body { padding-left: 0; }
  .ok-timeline__year { font-size: 2.2rem; }
}

/* ==============================
   会社概要 — 社是カード
============================== */
.ok-credo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ok-credo-card {
  background: #fff;
  border: 1px solid var(--ok-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ok-credo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ok-green);
}
.ok-credo-card__num {
  font-family: "Suravaram", serif;
  font-size: 3.2rem;
  color: var(--ok-green);
  line-height: 1;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.ok-credo-card__jp {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 12px;
  color: var(--ok-dark);
  padding-bottom: 18px;
  position: relative;
}
.ok-credo-card__jp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--ok-green);
}
.ok-credo-card__en {
  font-family: "Suravaram", serif;
  font-size: 1.3rem;
  color: var(--ok-brown);
  letter-spacing: .1em;
  margin: 0 0 18px;
}
.ok-credo-card__note {
  font-size: 1.3rem;
  line-height: 1.9;
  color: var(--ink-soft);
  margin: 0;
  text-align: left;
}
@media (max-width: 1024px) {
  .ok-credo-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}

/* ==============================
   事業案内 — エリアバナー
============================== */
.ok-biz-area {
  background: var(--green-soft);
  padding: 48px 0;
  border-bottom: 1px solid var(--ok-border);
}
.ok-biz-area__inner {
  text-align: center;
}
.ok-biz-area__label {
  font-family: "Suravaram", serif;
  letter-spacing: .2em;
  color: var(--green-deep);
  font-size: 1.2rem;
  margin: 0 0 4px;
}
.ok-biz-area__main {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ok-dark);
  margin: 0 0 6px;
}
.ok-biz-area__note {
  font-size: 1.4rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ==============================
   事業案内 — サービスブロック
============================== */
.ok-svc {
  padding: 96px 0;
  border-bottom: 1px solid var(--ok-border);
}
.ok-svc--alt { background: var(--cream); }

.ok-svc__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ok-svc__layout--reverse .ok-svc__visual { order: 2; }

.ok-svc__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ok-gray-bg);
}
.ok-svc__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ok-svc__ribbon {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--ok-brown);
  color: #fff;
  padding: 10px 18px;
  font-family: "Suravaram", serif;
  font-size: 1.4rem;
  letter-spacing: .15em;
  border-radius: 0 0 var(--radius) 0;
  box-shadow: var(--shadow-md);
}

.ok-svc__num {
  font-family: "Suravaram", serif;
  font-size: 2.2rem;
  color: var(--ok-brown);
  letter-spacing: .15em;
  margin: 0 0 8px;
}
.ok-svc__num span { color: var(--green-deep); }

.ok-svc__en {
  font-family: "Suravaram", serif;
  font-size: clamp(3.6rem, 4.5vw, 5.6rem);
  color: var(--ok-green);
  line-height: 1;
  margin: 0 0 12px;
  font-weight: 400;
  letter-spacing: .02em;
}

.ok-svc__jp {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--ok-dark);
  margin: 0 0 24px;
  letter-spacing: .04em;
}

.ok-svc__body > p {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.ok-svc__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.ok-svc__list li {
  font-size: 1.4rem;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px dashed var(--ok-border);
  color: var(--ok-dark);
}
.ok-svc__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ok-green);
}

@media (max-width: 880px) {
  .ok-svc { padding: 56px 0; }
  .ok-svc__layout { grid-template-columns: 1fr; gap: 28px; }
  .ok-svc__layout--reverse .ok-svc__visual { order: -1; }
  .ok-svc__layout--reverse .ok-svc__body { order: 1; }
  .ok-svc__en { font-size: 3.6rem; }
  .ok-svc__jp { font-size: 2.4rem; }
  .ok-svc__list { grid-template-columns: 1fr; }
}
@media (max-width: 599px) {
  .ok-biz-area__main { font-size: 2rem; }
}

/* ==============================
   お問い合わせページ
============================== */
.ok-contact-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  font-size: 1.5rem;
  line-height: 2.1;
  color: var(--ink-soft);
}

.ok-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.ok-contact-grid__form {
  min-width: 0;
}
.ok-contact-grid__aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* アコーディオン調整 */
.ok-accordion--contact {
  margin-top: 32px;
}

/* LINE カード */
.ok-line-card {
  background: linear-gradient(135deg, #06C755 0%, #04a047 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.ok-line-card__en {
  font-family: "Suravaram", serif;
  font-size: 3.6rem;
  letter-spacing: .04em;
  line-height: 1;
}
.ok-line-card__title {
  font-size: 2rem;
  font-weight: 900;
  margin: 8px 0 12px;
}
.ok-line-card__text {
  font-size: 1.3rem;
  line-height: 1.9;
  opacity: .92;
  margin: 0 0 20px;
}
.ok-line-card__qr {
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: rgba(42,37,32,.4);
  font-size: 1.1rem;
  letter-spacing: .12em;
  font-weight: 700;
}
.ok-line-card__qr::before {
  content: "";
  position: absolute;
  inset: 16px;
  background:
    repeating-linear-gradient(0deg, #222 0 4px, transparent 4px 8px),
    repeating-linear-gradient(90deg, #222 0 4px, transparent 4px 8px);
  opacity: .15;
  border-radius: 4px;
}
.ok-line-card__btn {
  display: inline-block;
  background: #fff;
  color: #06C755;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity .2s;
}
.ok-line-card__btn:hover { opacity: .85; }

/* インフォカード */
.ok-info-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.ok-info-card__title {
  font-family: "Suravaram", serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ok-brown);
  letter-spacing: .12em;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ok-info-card__title::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--ok-brown);
  flex-shrink: 0;
}
.ok-info-card__dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px 16px;
  margin: 0;
  font-size: 1.3rem;
}
.ok-info-card__dl dt { color: var(--ink-soft); }
.ok-info-card__dl dd { margin: 0; font-weight: 700; color: var(--ok-dark); }
.ok-info-card__dl a { color: var(--ok-dark); }
.ok-info-card__dl a:hover { color: var(--green-deep); text-decoration: underline; }

@media (max-width: 880px) {
  .ok-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .ok-contact-grid__aside { position: static; }
}

/* ==============================
   Contact CTA — 緑グラデ背景上書き
============================== */
.ok-contact-cta {
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.18) 0 200px, transparent 201px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.12) 0 240px, transparent 241px),
    linear-gradient(135deg, var(--ok-green) 0%, var(--green-deep) 100%) !important;
  color: #fff;
}
.ok-contact-cta::before {
  display: none !important;
}
.ok-contact-cta__btn {
  border-radius: 50px;
}

.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
    background: #55DD4C!important;
}

.ok-sp-br { display: none; }
@media (max-width: 639px) {
  .ok-sp-br { display: inline; }
}

/* ==============================
   送信完了ページ
============================== */
.ok-thanks {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.ok-thanks__icon {
  font-size: 6rem;
  color: var(--ok-green);
  margin-bottom: 32px;
  display: block;
}
.ok-thanks__title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ok-dark);
  margin-bottom: 24px;
}
.ok-thanks__text {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 48px;
}
.ok-thanks__btn {
  display: inline-block;
}

