@charset "UTF-8";
/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .ehara-header 系      - 2段組みヘッダー（上段:ロゴ+電話+CTA / 下段:中央ナビ）。共通headerは1段のため追加
 * .ehara-eyebrow        - 小さな英字ラベル（Montserrat・水色・letter-spacing大）。見出し上の目印
 * .ehara-heading        - セクション見出し（大EN濃紺 + 小JP水色 + 短い水色バー）。左寄せ/中央
 * .ehara-hero 系        - 下層ページヒーロー（濃紺+写真+濃紺overlay+装飾波+パンくず）
 * .ehara-mv 系          - TOPメインビュー（#slideshow内・静止画+左テキスト+濃紺グラデ）
 * .ehara-btn 系         - 角丸なし塗りボタン（水色→濃紺hover）。共通btnは角丸/枠線前提のため追加
 * .ehara-card 系        - 白+細ボーダーのカード（hover lift/shadow）。共通cardは影/角丸前提のため追加
 * .ehara-cta-box        - 淡いグラデ+水色枠のお問い合わせボックス（各ページ下部で共通利用）
 * .ehara-fcta 系        - フッター上CONTACT帯（淡いグラデ背景+装飾グロー）
 * .ehara-footer 系      - 濃紺フッター本体（会社情報 + ACCESS地図 + ナビ + コピーライト）
 * .ehara-dl 系          - 会社概要/募集要項の項目表（ラベル淡水色 + 内容白）
 * .ehara-lineup / .ehara-client / .ehara-access / .ehara-quote 等 - 各ページ固有ブロック
 * .ehara-field 系       - フォーム入力（角丸なし・細ボーダー）
 * .ehara-gradient-section - 淡いグラデ+装飾グロー/波のセクション背景（TOP事業内容ダイジェスト）
 * .ehara-textlink       - 下線付きテキストリンク（詳細を見る →）
 * .fade-in              - スクロールで静かにフェードイン（common.jsのIntersectionObserver連動）
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 * ・構造不足：2段組みヘッダー（ロゴ+電話行 / 中央ナビ行）が共通headerに無い
 * ・構造不足：大EN+小JP+短バー型のセクション見出し（heading系と縦横比が異なる）
 * ・装飾パターン不足：濃紺overlay+装飾波SVGのページヒーロー、淡いグラデ+グロー背景
 * ・値の粒度不足：角丸なし塗りボタン/角丸なし細ボーダーカード（共通は角丸前提）
 */

/* ==========================================================================
   共通トーン
   ========================================================================== */
/* デザイン基準の左右余白（32px）をコンテナに付与（design-output 準拠） */
.container,
.container-narrow { padding-left: 32px; padding-right: 32px; }
@media (max-width: 639px) {
  .container,
  .container-narrow { padding-left: 20px; padding-right: 20px; }
}

.ehara-textlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #007bc1;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid #cfe6f6;
  padding-bottom: 6px;
  transition: color .2s ease;
}
.ehara-textlink:hover { color: #00335c; opacity: 1; }

/* Montserrat 電話番号 */
.ehara-tel {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #00335c;
  line-height: 1.15;
  text-decoration: none;
}
.ehara-tel:hover { color: #00335c; opacity: .85; }

/* ボタン（角丸なし塗り） */
.ehara-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #007bc1;
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 15px 40px;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.ehara-btn:hover { background: #00335c; color: #fff; opacity: 1; }
.ehara-btn--outline {
  background: #fff;
  color: #00335c;
  border: 1px solid #007bc1;
}
.ehara-btn--outline:hover { background: #ebf6fc; color: #00335c; }
.ehara-btn--shadow {
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,123,193,.28);
}
.ehara-btn--shadow:hover { transform: translateY(-2px); background: #0069a8; }

/* ==========================================================================
   ヘッダー（透過オーバーレイ／MV・ヒーロー上に乗る・PC固定）
   MV上：透過＋白文字  →  スクロール後(.is-fixed)：白背景＋濃紺文字
   ========================================================================== */
.ehara-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
}
/* スクロール後：白背景＋影で追従表示 */
.ehara-header.is-fixed {
  position: fixed;
  background: #fff;
  box-shadow: 0 2px 14px rgba(14,58,95,.12);
  animation: ehara-hd-in .35s ease;
}
@keyframes ehara-hd-in {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
.ehara-header__inner {
  max-width: 100%;
  margin: 0;
  padding: 18px 5% 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .25s ease;
}
.ehara-header.is-fixed .ehara-header__inner { padding: 10px 5%; }

/* ロゴ（MV上：白 / スクロール後：濃紺） */
.ehara-logo {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
}
.ehara-logo__name { font-size: 2.3rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; text-shadow: 0 2px 14px rgba(0,18,38,.4); transition: color .25s ease, text-shadow .25s ease; }
.ehara-logo__en { font-family: "Montserrat", sans-serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.22em; color: #fff; opacity: .85; transition: color .25s ease, opacity .25s ease; }
.ehara-header.is-fixed .ehara-logo__name { color: #0E3A5F; text-shadow: none; }
.ehara-header.is-fixed .ehara-logo__en { color: #2B7DB8; opacity: 1; }

/* 右側：上段(電話+CTA) / 下段(ナビ) を縦積み・右寄せ */
.ehara-header__right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }

/* 上段：電話 + メールCTA */
.ehara-header__contact { display: flex; align-items: center; gap: 18px; }
.ehara-header__tel { text-align: right; line-height: 1.15; }
.ehara-header__tel-num {
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-shadow: 0 2px 12px rgba(0,18,38,.4);
  transition: color .25s ease, text-shadow .25s ease;
}
.ehara-header__tel-num::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f095";
  font-size: 0.78em;
  margin-right: 8px;
}
.ehara-header__tel-note { display: block; font-size: 1.1rem; color: #fff; opacity: .85; letter-spacing: 0.04em; transition: color .25s ease, opacity .25s ease; }
.ehara-header.is-fixed .ehara-header__tel-num { color: #0E3A5F; text-shadow: none; }
.ehara-header.is-fixed .ehara-header__tel-note { color: #6a7883; opacity: 1; }

/* メールCTAボタン（江原ブルー塗り） */
.ehara-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2B7DB8;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: background .2s ease;
}
.ehara-header__cta::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  font-size: 0.92em;
}
.ehara-header__cta:hover { background: #1F5E90; color: #fff; opacity: 1; }

/* 下段：グローバルナビ（右寄せ・英語(上)/日本語(下)2段） */
.ehara-header__nav { display: flex; align-items: stretch; justify-content: flex-end; gap: 4px; }
.ehara-nav__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 16px;
  text-decoration: none;
}
.ehara-nav__en {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  opacity: 1;
  text-shadow: 0 1px 3px rgba(0,18,38,.8), 0 2px 12px rgba(0,18,38,.5);
  transition: color .2s ease, opacity .2s ease;
}
.ehara-nav__ja {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  opacity: .95;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0,18,38,.8), 0 2px 10px rgba(0,18,38,.5);
  transition: color .2s ease, opacity .2s ease;
}
/* 下線バー（短い） */
.ehara-nav__item::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  width: 0;
  height: 3px;
  background: #4FB0DA;
  transition: width .2s ease-in;
}
/* ホバー／アクティブ：英語ラベルをアクセント色＋下線 */
.ehara-nav__item:hover .ehara-nav__en,
.ehara-nav__item.is-current .ehara-nav__en { color: #4FB0DA; opacity: 1; }
.ehara-nav__item:hover::after,
.ehara-nav__item.is-current::after { width: 22px; }

/* スクロール後(.is-fixed)のナビ配色（濃紺／グレー・アクセント青） */
.ehara-header.is-fixed .ehara-nav__en { color: #2B7DB8; opacity: 1; text-shadow: none; }
.ehara-header.is-fixed .ehara-nav__ja { color: #6a7883; opacity: 1; text-shadow: none; }
.ehara-header.is-fixed .ehara-nav__item::after { background: #2B7DB8; }
.ehara-header.is-fixed .ehara-nav__item:hover .ehara-nav__en,
.ehara-header.is-fixed .ehara-nav__item.is-current .ehara-nav__en { color: #0E3A5F; }

/* ==========================================================================
   セクション見出し
   ========================================================================== */
.ehara-eyebrow {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #007bc1;
}
.ehara-eyebrow--line { display: flex; align-items: center; gap: 12px; }
.ehara-eyebrow--line::before { content: ""; width: 40px; height: 2px; background: #007bc1; flex-shrink: 0; }
.ehara-eyebrow--light { color: #7fb8dd; }
.ehara-eyebrow--light.ehara-eyebrow--line::before { background: #7fb8dd; }

.ehara-heading__en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #00335c;
  line-height: 1;
}
.ehara-heading__ja {
  display: block;
  margin-top: 5px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #007bc1;
  letter-spacing: 0.12em;
}
.ehara-heading::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: #007bc1;
  margin: 12px 0 0;
}
.ehara-heading--center { text-align: center; }
.ehara-heading--center::after { margin-left: auto; margin-right: auto; }
.ehara-heading--white .ehara-heading__en { color: #fff; }
.ehara-heading--white .ehara-heading__ja { color: #7fb8dd; }

/* 大きめJP見出し（コンテンツ見出し用ユーティリティ補助） */
.ehara-headline { font-size: 3rem; font-weight: 700; color: #00335c; line-height: 1.5; letter-spacing: 0.02em; }
.ehara-headline--white { color: #fff; }
.ehara-text-pale { color: #cfe6f6; }
@media (max-width: 639px) { .ehara-headline { font-size: 2.2rem; } }

/* ==========================================================================
   メインビュー（#slideshow）
   ========================================================================== */
#slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #00335c;
}
/* 右下・斜めの三角アクセント（水色系／神山準拠） */
#slideshow::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -30%;
  width: 220px;
  height: 160%;
  background: #4FB0DA;
  transform: skew(-30deg);
  opacity: .35;
  mix-blend-mode: screen;
  z-index: 3;
  pointer-events: none;
}
#slideshow::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -30%;
  width: 170px;
  height: 160%;
  background: #2B7DB8;
  transform: skew(-30deg);
  opacity: .5;
  mix-blend-mode: screen;
  z-index: 3;
  pointer-events: none;
}
#slideshow .swiper-slide { position: absolute; inset: 0; }
#slideshow .swiper-slide img,
.ehara-mv__img { width: 100%; height: 100%; object-fit: cover; }
.ehara-mv__overlay {
  position: absolute; inset: 0;
  background:
    /* 上部を暗く（グロナビの可読性確保・幅全体） */
    linear-gradient(180deg, rgba(0,18,38,.60) 0%, rgba(0,18,38,0) 210px),
    /* 横方向の乗算オーバーレイ（もう少し濃く） */
    linear-gradient(90deg, rgba(0,18,38,.82) 0%, rgba(0,18,38,.54) 46%, rgba(0,18,38,.16) 82%);
  pointer-events: none;
}
.ehara-mv__content { position: absolute; inset: 0; pointer-events: none; z-index: 4; }
.ehara-mv__inner {
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 32px 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ehara-mv__eyebrow { display: flex; align-items: center; gap: 14px; }
.ehara-mv__eyebrow::before { content: ""; width: 48px; height: 2px; background: #fff; opacity: .85; }
.ehara-mv__eyebrow span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,18,38,.5);
}
.ehara-mv__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.32;
  margin-top: 18px;
  text-shadow: 0 2px 26px rgba(0,18,38,.45);
}
@media (max-width: 896px) {
  #slideshow { height: 440px; }
  .ehara-mv__title { font-size: 2.6rem; }
}
@media (max-width: 639px) {
  #slideshow { height: 360px; }
  .ehara-mv__title { font-size: 1.7rem; }
  .ehara-mv__eyebrow span { font-size: 1.2rem; letter-spacing: 0.2em; }
}

/* ==========================================================================
   ページヒーロー（下層）
   ========================================================================== */
.ehara-hero { position: relative; background: #00335c; overflow: hidden; }
.ehara-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ehara-hero__overlay { position: absolute; inset: 0; background: rgba(0,51,92,0.83); z-index: 1; }
.ehara-hero__deco { position: absolute; top: 0; right: 0; width: 640px; height: 100%; opacity: 0.5; mix-blend-mode: multiply; pointer-events: none; z-index: 1; }
.ehara-hero__inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 150px 32px 58px; }
.ehara-hero__crumb { font-family: "Montserrat", sans-serif; font-size: 1.3rem; letter-spacing: 0.1em; color: #7fb8dd; margin-bottom: 16px; }
.ehara-hero__crumb a { color: #7fb8dd; text-decoration: none; }
.ehara-hero__crumb a:hover { color: #fff; opacity: 1; }
.ehara-hero__en { display: block; font-family: "Montserrat", sans-serif; font-size: 5.2rem; font-weight: 700; letter-spacing: 0.06em; color: #fff; line-height: 1; }
.ehara-hero__ja { margin: 16px 0 0; font-size: 2.2rem; font-weight: 500; color: #cfe6f6; letter-spacing: 0.08em; }
@media (max-width: 639px) {
  .ehara-hero__inner { padding: 44px 20px 40px; }
  .ehara-hero__en { font-size: 3.6rem; }
  .ehara-hero__ja { font-size: 1.7rem; }
  .ehara-hero__deco { width: 60%; }
}

/* ==========================================================================
   カード
   ========================================================================== */
.ehara-card {
  display: block;
  background: #fff;
  border: 1px solid #e2e8ee;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ehara-card--lift:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(0,51,92,.12); }
.ehara-card--shadow:hover { box-shadow: 0 18px 36px rgba(0,51,92,.12); }
.ehara-card__media { position: relative; height: 200px; background: #ebf6fc; overflow: hidden; }
.ehara-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ehara-card__media--sm { height: 170px; }
.ehara-card__media--md { height: 190px; }
.ehara-card__media--lg { height: 220px; }
.ehara-card__body { padding: 26px 26px 30px; }
.ehara-card__no { font-family: "Montserrat", sans-serif; font-size: 1.2rem; font-weight: 600; letter-spacing: 0.14em; color: #7fb8dd; }
.ehara-card__title { margin: 8px 0 12px; font-size: 1.9rem; font-weight: 700; color: #00335c; line-height: 1.5; }
.ehara-card__text { margin: 0; font-size: 1.4rem; line-height: 1.9; color: #5a6870; }
.ehara-card__more { display: inline-block; margin-top: 14px; font-size: 1.3rem; font-weight: 600; color: #007bc1; letter-spacing: 0.06em; }

/* 番号バッジ（施工の流れ） */
.ehara-num-badge {
  position: absolute; top: 0; left: 0;
  width: 52px; height: 52px;
  background: #007bc1; color: #fff;
  font-family: "Montserrat", sans-serif; font-size: 2.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
/* 日付バッジ（施工実績） */
.ehara-date-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,51,92,.86); color: #fff;
  font-family: "Montserrat", sans-serif; font-size: 1.2rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 5px 12px;
}

/* ==========================================================================
   お問い合わせボックス（各ページ共通）
   ========================================================================== */
.ehara-cta-box {
  border: 1px solid #cfe6f6;
  background: linear-gradient(135deg, #ffffff 0%, #ebf6fc 100%);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.ehara-cta-box--lg { padding: 64px 56px; }
.ehara-cta-box__phone { text-align: center; flex-shrink: 0; }
.ehara-cta-box__note { font-size: 1.2rem; color: #6a7883; letter-spacing: 0.06em; }
.ehara-cta-box__num { font-size: 4.2rem; }
@media (max-width: 896px) {
  .ehara-cta-box { flex-direction: column; text-align: center; align-items: stretch; padding: 40px 28px; }
  .ehara-cta-box__num { font-size: 3.4rem; }
}

/* ==========================================================================
   淡いグラデ装飾セクション（TOP事業内容ダイジェスト）
   ========================================================================== */
.ehara-gradient-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(118deg, #f2fafe 0%, #d9effb 48%, #e9f7fe 100%);
}
.ehara-glow-1 { position: absolute; top: -160px; right: 6%; width: 440px; height: 440px; background: radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 70%); pointer-events: none; }
.ehara-glow-2 { position: absolute; bottom: -180px; left: -60px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(127,203,233,.35) 0%, rgba(127,203,233,0) 70%); pointer-events: none; }
.ehara-deco-wave { position: absolute; top: -80px; right: -120px; width: 760px; height: 760px; opacity: 0.4; pointer-events: none; }

/* ==========================================================================
   品質・信頼（濃紺セクション）
   ========================================================================== */
.ehara-dark-section { position: relative; background: #00335c; overflow: hidden; }
.ehara-dark-deco { position: absolute; bottom: 0; left: 0; width: 640px; height: 100%; opacity: 0.14; pointer-events: none; }

/* ==========================================================================
   会社概要 / 募集要項テーブル
   ========================================================================== */
.ehara-dl { background: #fff; border: 1px solid #e2e8ee; }
.ehara-dl__row { display: grid; grid-template-columns: 220px minmax(0,1fr); border-bottom: 1px solid #eef2f6; }
.ehara-dl__row:last-child { border-bottom: none; }
.ehara-dl__label { background: #ebf6fc; padding: 20px 28px; font-size: 1.4rem; font-weight: 700; color: #00335c; letter-spacing: 0.04em; }
.ehara-dl__value { padding: 20px 28px; font-size: 1.45rem; line-height: 1.9; color: #444f57; }
@media (max-width: 639px) {
  .ehara-dl__row { grid-template-columns: 1fr; }
  .ehara-dl__label { padding: 14px 18px; }
  .ehara-dl__value { padding: 14px 18px; }
}

/* ==========================================================================
   取扱品目 / 取引先 / アクセス / 先輩の声
   ========================================================================== */
.ehara-lineup { display: flex; align-items: flex-start; gap: 18px; background: #fff; border: 1px solid #e2e8ee; padding: 26px 28px; }
.ehara-lineup__mark { flex-shrink: 0; width: 10px; height: 10px; margin-top: 9px; background: #007bc1; transform: rotate(45deg); }
.ehara-lineup__title { font-size: 1.7rem; font-weight: 700; color: #00335c; line-height: 1.5; }
.ehara-lineup__sub { margin-top: 4px; font-size: 1.35rem; color: #6a7883; }

.ehara-client { border: 1px solid #e2e8ee; background: #fff; padding: 26px 22px; font-size: 1.5rem; font-weight: 500; color: #00335c; text-align: center; letter-spacing: 0.02em; }

.ehara-access { background: #fff; border: 1px solid #cfe6f6; }
.ehara-access__map { position: relative; height: 260px; overflow: hidden; background: #dbebf7; }
.ehara-access__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.ehara-access__body { padding: 26px 28px; }
.ehara-access__name { font-size: 1.7rem; font-weight: 700; color: #00335c; }
.ehara-access__addr { margin-top: 8px; font-size: 1.4rem; line-height: 1.9; color: #5a6870; }
.ehara-access__tel { margin-top: 10px; font-size: 1.4rem; color: #5a6870; }

.ehara-voice { background: #fff; border: 1px solid #cfe6f6; padding: 52px 56px; }
.ehara-quote { font-size: 2.6rem; font-weight: 700; color: #007bc1; line-height: 1.6; }
.ehara-divider { height: 1px; background: #e2e8ee; margin: 26px 0; }
@media (max-width: 639px) { .ehara-voice { padding: 32px 24px; } .ehara-quote { font-size: 1.9rem; } }

/* リード文の写真ブロック */
.ehara-photo-box { position: relative; height: 320px; box-shadow: 0 18px 40px rgba(0,51,92,.14); overflow: hidden; }
.ehara-photo-box img { width: 100%; height: 100%; object-fit: cover; }
.ehara-photo-box--tall { height: 400px; }
@media (max-width: 896px) { .ehara-photo-box, .ehara-photo-box--tall { height: 280px; } }

/* ==========================================================================
   フォーム
   ========================================================================== */
.ehara-field {
  width: 100%;
  font-family: inherit;
  font-size: 1.5rem;
  color: #333d44;
  background: #fff;
  border: 1px solid #cdd8e0;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease;
}
.ehara-field:focus { border-color: #007bc1; }
.ehara-field::placeholder { color: #a7b2ba; }
.ehara-form-label { display: block; font-size: 1.4rem; font-weight: 700; color: #00335c; margin-bottom: 10px; }
.ehara-required { color: #d33; font-size: 1.2rem; }
.ehara-note { font-size: 1.1rem; color: #9aa6ae; }
textarea.ehara-field { resize: vertical; line-height: 1.8; }
.ehara-form-submit { justify-content: center; padding: 17px 72px; font-size: 1.6rem; letter-spacing: 0.06em; }

/* --------------------------------------------------------------------------
   CMSお問い合わせフォーム（#cms-contact-1-1-area）を静的デザインに寄せる
   ※CMSが出力する要素にスタイルを当てて、ehara-field/フォームの見た目を再現
   -------------------------------------------------------------------------- */
#cms-contact-1-1-area { font-size: 1.5rem; color: #333d44; line-height: 1.8; }
/* テーブル型出力を1カラム縦積み（ラベル上・入力下）に */
#cms-contact-1-1-area table { width: 100%; border-collapse: collapse; }
#cms-contact-1-1-area tbody, #cms-contact-1-1-area tr { display: block; }
#cms-contact-1-1-area tr { margin-bottom: 26px; }
#cms-contact-1-1-area th,
#cms-contact-1-1-area td { display: block; width: 100%; padding: 0; border: none; text-align: left; vertical-align: top; }
#cms-contact-1-1-area th,
#cms-contact-1-1-area th * { font-size: 1.4rem; font-weight: 700; color: #00335c; margin-bottom: 10px; }
/* dl型出力にも対応 */
#cms-contact-1-1-area dl { margin: 0 0 26px; }
#cms-contact-1-1-area dt,
#cms-contact-1-1-area dt * { font-size: 1.4rem; font-weight: 700; color: #00335c; margin-bottom: 10px; }
#cms-contact-1-1-area dd { margin: 0; }
/* 入力欄 */
#cms-contact-1-1-area input[type="text"],
#cms-contact-1-1-area input[type="tel"],
#cms-contact-1-1-area input[type="email"],
#cms-contact-1-1-area input[type="number"],
#cms-contact-1-1-area input[type="url"],
#cms-contact-1-1-area input[type="date"],
#cms-contact-1-1-area select,
#cms-contact-1-1-area textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1.5rem;
  color: #333d44;
  background: #fff;
  border: 1px solid #cdd8e0;
  border-radius: 0;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
#cms-contact-1-1-area select { -webkit-appearance: menulist; appearance: menulist; }
#cms-contact-1-1-area textarea { resize: vertical; line-height: 1.8; min-height: 180px; }
#cms-contact-1-1-area input:focus,
#cms-contact-1-1-area select:focus,
#cms-contact-1-1-area textarea:focus { border-color: #007bc1; }
#cms-contact-1-1-area input::placeholder,
#cms-contact-1-1-area textarea::placeholder { color: #a7b2ba; }
/* ラジオ・チェックボックスは幅を戻す */
#cms-contact-1-1-area input[type="radio"],
#cms-contact-1-1-area input[type="checkbox"] { width: auto; margin-right: 6px; accent-color: #007bc1; -webkit-appearance: auto; appearance: auto; }
/* 必須マーク等（CMSの表記ゆれに対応）。赤ではなくネイビーに */
#cms-contact-1-1-area .required,
#cms-contact-1-1-area .req,
#cms-contact-1-1-area .must,
#cms-contact-1-1-area .hissu,
#cms-contact-1-1-area .ico_hissu,
#cms-contact-1-1-area .label_hissu,
#cms-contact-1-1-area em,
#cms-contact-1-1-area span.attention { color: #00335c; font-size: 1.2rem; font-weight: 700; }
/* 送信・確認ボタン */
#cms-contact-1-1-area input[type="submit"],
#cms-contact-1-1-area button[type="submit"],
#cms-contact-1-1-area .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #007bc1;
  color: #fff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 17px 72px;
  transition: background .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
#cms-contact-1-1-area input[type="submit"]:hover,
#cms-contact-1-1-area button[type="submit"]:hover,
#cms-contact-1-1-area .btn-submit:hover { background: #00335c; }
/* 戻る等の副ボタン */
#cms-contact-1-1-area input[type="button"],
#cms-contact-1-1-area button[type="button"] {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: #00335c; border: 1px solid #007bc1; border-radius: 0;
  cursor: pointer; font-family: inherit; font-size: 1.5rem; font-weight: 500;
  padding: 15px 40px; transition: background .2s ease; -webkit-appearance: none; appearance: none;
}
#cms-contact-1-1-area input[type="button"]:hover,
#cms-contact-1-1-area button[type="button"]:hover { background: #ebf6fc; }
/* ボタン行を中央寄せ（CMSの各種ラッパ想定） */
#cms-contact-1-1-area .submit,
#cms-contact-1-1-area .btn_area,
#cms-contact-1-1-area .button,
#cms-contact-1-1-area .send,
#cms-contact-1-1-area .form_btn { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 14px; }

/* ==========================================================================
   フッター上 CONTACT 帯
   ========================================================================== */
.ehara-fcta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(118deg, #f2fafe 0%, #d9effb 48%, #e9f7fe 100%);
  border-bottom: 1px solid #cfe6f6;
}
.ehara-fcta::before { content: ""; position: absolute; top: -140px; right: 10%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 70%); pointer-events: none; }
.ehara-fcta::after { content: ""; position: absolute; bottom: -160px; left: -40px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(127,203,233,.35) 0%, rgba(127,203,233,0) 70%); pointer-events: none; }
.ehara-fcta__inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 46px 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.ehara-fcta__title { font-size: 2.4rem; font-weight: 700; color: #00335c; margin-top: 6px; }
.ehara-fcta__right { display: flex; align-items: center; gap: 28px; }
.ehara-fcta__tel { text-align: right; line-height: 1.25; }
.ehara-fcta__tel-note { font-size: 1.2rem; color: #5f92b8; letter-spacing: 0.06em; }
.ehara-fcta__tel-num { display: block; font-size: 3rem; }
@media (max-width: 896px) {
  .ehara-fcta__inner { flex-direction: column; align-items: flex-start; }
  .ehara-fcta__right { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ehara-fcta__tel { text-align: left; }
}

/* ==========================================================================
   フッター本体（濃紺）
   ========================================================================== */
.ehara-footer { background: #00335c; color: #c9d8e6; }
.ehara-footer__body { max-width: 1200px; margin: 0 auto; padding: 56px 32px 40px; display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; }
.ehara-footer__brand { display: flex; align-items: baseline; gap: 12px; }
.ehara-footer__name { font-size: 2.2rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; }
.ehara-footer__en { font-family: "Montserrat", sans-serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.22em; color: #7fb8dd; }
.ehara-footer__info { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; font-size: 1.35rem; line-height: 1.7; }
.ehara-footer__label { font-size: 1.2rem; font-weight: 700; color: #7fb8dd; letter-spacing: 0.08em; margin-bottom: 2px; }
.ehara-footer__access-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.ehara-footer__access-name { font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: 0.04em; }
.ehara-footer__access-map { position: relative; height: 190px; border: 1px solid #1c4f7d; overflow: hidden; border-radius: 0; }
.ehara-footer__access-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.ehara-footer__nav { margin-top: 16px; display: flex; flex-wrap: wrap; }
.ehara-footer__nav a { color: #c9d8e6; text-decoration: none; font-size: 1.3rem; padding: 4px 14px; }
.ehara-footer__nav a:first-child { padding-left: 0; }
.ehara-footer__nav a:hover { color: #fff; opacity: 1; }
.ehara-footer__bottom { border-top: 1px solid #1c4f7d; }
.ehara-footer__copy { max-width: 1200px; margin: 0 auto; padding: 20px 32px; font-family: "Montserrat", sans-serif; font-size: 1.1rem; letter-spacing: 0.08em; color: #7fb8dd; }
@media (max-width: 896px) {
  .ehara-footer__body { grid-template-columns: 1fr; gap: 36px; padding: 44px 20px 32px; }
  .ehara-footer__copy { padding: 20px; }
}

/* ==========================================================================
   スクロールフェードイン
   ========================================================================== */
.js .fade-in { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.js .fade-in.is-visible { opacity: 1; transform: none; }
