/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * .links-eyebrow         - 眉毛ライン付き英語サブ見出し（セリフ体イタリック+左ライン）
 * .links-script          - Alluraスクリプト体装飾テキスト
 * .links-wave-bottom     - SVGウェーブ下部区切り
 * .links-dot-bg          - マスキングテープ風ドット背景
 * .links-mv              - メインビジュアル（Swiper対応スライドショー外枠）
 * .links-mv-content      - MV内キャッチコピーエリア
 * .links-strength-grid   - 強みの訴求グリッド（4列＋縦ボーダー）
 * .links-gate-card       - ゲートカード（4列バナー）
 * .links-tape            - マスキングテープ風装飾
 * .links-signature       - 代表署名ブロック
 * .links-access-grid     - アクセスグリッド（地図＋情報）
 * .links-side-list       - サイドバーリスト（カテゴリ・月別アーカイブ）
 * .links-entry           - 記事詳細レイアウト
 * .links-story__*        - 創業エピソードセクション（2カラム: head sticky + body）
 * .links-profile-head__* - 会社情報セクションタイトル（Script + JA + EN）
 * .links-profile-en      - 会社情報テーブル th 内英語サブラベル
 * .links-access-info__*  - アクセスセクション見出し
 * .links-access-map      - アクセスマップ枠（iframe ラッパー）
 *
 * ======================================
 * 共通SCSSに不足していたもの
 * ======================================
 *
 * 構造不足: スクリプト体（Allura）を使う装飾テキストクラスがない
 * 構造不足: 眉毛ライン付き英語サブ見出し（eyebrow）が既存heading系にない
 * 装飾パターン不足: マスキングテープ風ドット背景がない
 * 値の粒度不足: MV専用の高さ・レイアウト（左テキスト＋右写真グリッド）が既存クラスでは組めない
 * 構造不足: 強みの訴求（4列ボーダー区切り）は card-numbers に近いが完全一致しない
 *
 */

/* ===========================================================
   Google Fonts（スクリプト体）
   =========================================================== */
/* Allura はhead.phpのGoogleFontsで既に読み込み済み */

/* ===========================================================
   LINKS サイト固有 基本調整
   =========================================================== */
body {
  font-feature-settings: "palt";
  overflow-x: hidden;
}

/* フッターCTA帯 */
.footer-cta {
  background: #1B2A39;
}

/* ヘッダーロゴ画像 */
.header-logo {
  gap: 14px;
}
.header-logo__img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* ヘッダーロゴテキスト調整 */
.header-logo__name {
  font-size: 2.0rem;
  letter-spacing: .18em;
  color: #1B2A39;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
}
.header-logo__sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #3A71A1;
  letter-spacing: .16em;
  margin-top: 4px;
  display: block;
}
.header-logo--dark .header-logo__name { color: #fff; }
.header-logo--dark .header-logo__sub  { color: #7EB3D6; }

/* header-sticky 透過→固定トランジション */
.header-sticky {
  background: rgba(247, 247, 245, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid #E3E0D8;
  transition: box-shadow 0.3s ease;
}
.header-sticky.is-fixed {
  box-shadow: 0 4px 20px rgba(58, 113, 161, 0.12);
}

/* ===========================================================
   ヘッダーナビゲーション デザイン再現
   =========================================================== */

/* 高さ・maxWidth */
.header__inner {
  height: 84px;
  max-width: 1320px;
}
.header-sticky.is-fixed .header__inner {
  height: 84px;
}

/* nav item: JA上 / EN下 に反転 */
.header__nav-item a {
  flex-direction: column-reverse;
  padding: 6px 18px;
}

/* nav EN: 細め・イタリック・ブルー（下のサブラベル） */
.header__nav-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 400;
  color: #3A71A1;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: capitalize;
  margin-top: 3px;
}

/* nav JA: 明朝体・ゆったり字間（上のメインラベル） */
.header__nav-ja {
  font-family: "Shippori Mincho", serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: #1B2A39;
  letter-spacing: .18em;
  line-height: 1.1;
  margin-top: 0;
}

/* nav ホバー下線: 1px 全幅 */
.header__nav-item a::after {
  height: 1px;
  background: #3A71A1;
}
.header__nav-item a:hover::after {
  width: 100%;
  left: 0;
}

/* 電話: 縦積み + Tel.ラベル + 右ボーダー区切り */
.header__tel {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: "Shippori Mincho", "游明朝 Medium", serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #1B2A39;
  letter-spacing: .06em;
  line-height: 1.1;
  padding-right: 20px;
  border-right: 1px solid #E3E0D8;
  white-space: nowrap;
}
.header__tel::before {
  font-family: "Allura", serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  content: "Tel.";
  color: #3A71A1;
  letter-spacing: .14em;
  margin-bottom: 4px;
  margin-right: 0;
}

/* CTAボタン: デザインアウトプットのbtnスタイルに準拠 */
.header__cta {
  height: auto;
  align-self: center;
  flex-direction: row;
  padding: 13px 26px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .2em;
  background: #3A71A1;
  border-radius: 0;
}
.header__cta:hover {
  background: #27567C;
  opacity: 1;
}

/* ===========================================================
   フッター（デザイン再現）
   =========================================================== */

/* メインエリア: パディング・配置 */
.footer-body--dark {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-body--dark .footer-body__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 70px clamp(20px, 4vw, 48px);
  align-items: flex-start;
  gap: 60px;
}
.footer-body--dark .footer-body__left {
  flex: 1.4;
  width: auto;
  min-width: 0;
}
.footer-body--dark .footer-body__right {
  flex: 3;
  width: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* 会社情報テキスト */
.footer-body--dark .footer-body__info {
  font-size: 1.4rem;
  color: #B5C2CE;
  line-height: 1.9;
}

/* 3カラムナビ */
.links-ftr-col {
  flex: 1;
  min-width: 0;
}
.links-ftr-col__head {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #7EB3D6;
  font-size: 1.3rem;
  letter-spacing: .18em;
  font-weight: 400;
  margin: 0 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 10px;
}

/* ナビリンク */
.footer-body__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-body__nav-item {
  font-size: 1.4rem;
  letter-spacing: .1em;
  color: #D5DEE6;
  text-decoration: none;
  display: block;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-body__nav-item:hover {
  color: #fff;
  padding-left: 4px;
}

/* コピーライト */
.footer-bottom--dark .footer-bottom__copyright {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,.5);
}

/* SP レイアウト */
@media (max-width: 896px) {
  .footer-body--dark .footer-body__inner {
    flex-direction: column;
    gap: 40px;
    padding: 50px 5%;
  }
  .footer-body--dark .footer-body__left {
    width: 100%;
    flex: none;
  }
  .footer-body--dark .footer-body__right {
    display: none;
  }
}
@media (max-width: 639px) {
  .footer-body--dark .footer-body__right {
    flex-wrap: wrap;
    gap: 32px;
  }
  .links-ftr-col {
    flex: 0 0 calc(50% - 16px);
  }
}

/* ===========================================================
   LINKS EYEBROW（眉毛ライン付き英語サブ見出し）
   =========================================================== */
.links-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: .12em;
  color: #3A71A1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.links-eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: #3A71A1;
  flex-shrink: 0;
}

/* ===========================================================
   LINKS SCRIPT（Alluraスクリプト体）
   =========================================================== */
.links-script {
  font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;
}

/* ===========================================================
   LINKS DOT BG（マスキングテープ風ドット装飾）
   =========================================================== */
.links-dot-bg {
  background-image: radial-gradient(circle, #3A71A1 1.4px, transparent 1.6px);
  background-size: 10px 10px;
}

/* ===========================================================
   LINKS TAPE（マスキングテープ風帯装飾）
   =========================================================== */
.links-tape {
  background-image: url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28165/tape01.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 200px;
  height: 94px;
  position: absolute;
  left: -55px;
  top: -45px;
  transform: rotate(-5deg);
  z-index: 2;
  opacity: 0.85;
  pointer-events: none;
}
@media (max-width: 896px) {
  .links-tape {
    display: none;
  }
}

/* ===========================================================
   MV セクション（links-mv: 2カラム写真コラージュ）
   =========================================================== */

.links-mv {
  position: relative;
  padding: 144px 0 60px; /* ヘッダー84px + 上余白60px / 下余白60px */
  overflow: hidden;
  background: #F7F7F5;
}

/* 2カラムグリッド: テキスト左 / 写真右 */
.links-mv__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.links-mv__copy {
  position: relative;
  padding-bottom: 60px;
}

/* スクリプト体 */
.links-mv__script {
  font-size: clamp(5.8rem, 7vw, 9.6rem);
  color: #3A71A1;
  line-height: .95;
  letter-spacing: -.005em;
  display: block;
  margin-bottom: 8px;
}

/* 日本語キャッチコピー */
.links-mv__catch {
  font-family: "Shippori Mincho B1", "Shippori Mincho", serif;
  font-size: clamp(2.2rem, 3vw, 3.8rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: .28em;
  color: #1B2A39;
  margin: 18px 0 30px;
}

/* 笑顔アクセント：ミスト色ハイライト */
.links-mv__accent {
  color: #3A71A1;
  position: relative;
  display: inline-block;
}
.links-mv__accent::before {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: 0;
  bottom: 0;
  background: #D7EFF2;
  z-index: -1;
  transform: translateY(8px);
}

/* リード文 */
.links-mv__lead {
  font-size: 1.5rem;
  color: #6A7888;
  line-height: 2.1;
  margin: 0 0 36px;
  max-width: 45ch;
}

/* チップ */
.links-mv__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.links-mv__chips span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  letter-spacing: .18em;
  color: #3A71A1;
  padding: 8px 14px;
  border: 1px solid #BFD7E2;
  background: rgba(255, 255, 255, .5);
  white-space: nowrap;
}
.links-mv__chips span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #3A71A1;
  border-radius: 50%;
  flex-shrink: 0;
}

/* アクションボタン */
.links-mv__actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* フォトコラージュ */
.links-mv__photos {
  position: relative;
  height: 640px;
  overflow: hidden;
}

.links-mv__ph {
  position: absolute;
  border: 8px solid #fff;
  box-shadow: 0 30px 60px -30px rgba(27, 42, 57, .25);
  overflow: hidden;
}
.links-mv__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 写真配置（デザインアウトプット準拠） */
.links-mv__ph--a { left: 0;   top: 0;    width: 62%; height: 54%; }
.links-mv__ph--b { right: 0;  top: 18%;  width: 42%; height: 46%; }
.links-mv__ph--c { left: 14%; bottom: 0; width: 56%; height: 40%; }
.links-mv__ph--d {
  right: 6%;
  bottom: 6%;
  width: 30%;
  height: 24%;
  background: #fff;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}

/* 写真キャプション */
.links-mv__ph-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(27, 42, 57, .6);
  letter-spacing: .08em;
  z-index: 2;
}

/* since カード */
.links-mv__since-script {
  font-size: 3.4rem;
  color: #3A71A1;
  line-height: 1;
  display: block;
}
.links-mv__since-year {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 3.0rem;
  color: #1B2A39;
  line-height: 1;
  margin-top: 4px;
}
.links-mv__since-sub {
  font-size: 1.1rem;
  letter-spacing: .2em;
  color: #6A7888;
  margin-top: 6px;
}

/* ドット装飾（右上） */
.links-mv__dots {
  position: absolute;
  width: 240px;
  height: 120px;
  right: 4%;
  top: 80px;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 896px) {
  .links-mv__dots {
    display: none;
  }
}

/* 下部ウェーブ */
.links-mv__wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  display: block;
  pointer-events: none;
  z-index: 1;
}

/* レスポンシブ */
@media (max-width: 960px) {
  .links-mv__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .links-mv__photos { height: 420px; }
}
@media (max-width: 639px) {
  .links-mv { padding: 104px 0 0; } /* ヘッダー84px + 20px */
  .links-mv__photos { height: 300px; margin-bottom: 100px; }
  .links-mv__lead { display: none; }
  .links-mv__ph--a { width: 58%; height: 52%; }
  .links-mv__ph--b { width: 44%; height: 44%; }
  .links-mv__ph--c { width: 54%; height: 38%; }
  .links-mv__ph--d { width: 32%; height: 26%; }
}
@media (max-width: 639px) {
  .links-mv__ph--d { height: 35%; }
  .links-mv__copy { padding-bottom: 0; }
}

/* ===========================================================
   ごあいさつセクション（TOP / 写真左＋テキスト右）
   =========================================================== */
#greeting {
  background: linear-gradient(180deg, #F7F7F5 0%, #EAF6F8 100%);
}
.links-greeting {
  background: #F7F7F5;
}
.links-philosophy {
  background: #EAF6F8;
}
.links-philosophy .links-script {
  font-size: 160px;
}
.links-philosophy p.links-script {
  font-size: 160px;
}
@media (max-width: 896px) {
  .links-philosophy .links-script {
    font-size: 90px;
  }
  .links-philosophy p.links-script {
    font-size: clamp(2.8rem, 14vw, 5.6rem);
  }
  .links-philosophy .text-center {
    text-align: left;
  }
  .links-philosophy .links-eyebrow {
    justify-content: flex-start !important;
  }
}
.links-philosophy .sentence {
  max-width: 45em;
}
.links-profile-section {
  background: #fff;
  border-top: 1px solid #E8E5DD;
}

/* 強みセクション: 白背景 + 上下ボーダー */
#strength {
  background: #fff;
  border-top: 1px solid #E3E0D8;
  border-bottom: 1px solid #E3E0D8;
}
.links-greeting .greeting-img {
  position: relative;
}
.links-greeting .greeting-img .tape-deco {
  position: absolute;
  left: -24px;
  top: -24px;
  width: 120px;
  height: 44px;
  transform: rotate(-5deg);
  z-index: 2;
}
.links-greeting .greeting-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 30px 70px -40px rgba(27,42,57,.35);
  display: block;
}
.links-greeting h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.6;
  margin: 18px 0 28px;
}
.links-greeting h2 .accent { color: #3A71A1; }
.links-greeting .sentence p {
  font-size: 1.55rem;
  line-height: 2.1;
  color: #3a4a5a;
  max-width: 80ch;
}

/* 署名 */
.links-signature {
  margin-top: 32px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
}
.links-signature .sig-role {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  font-size: 1.2rem;
  letter-spacing: .18em;
}
.links-signature .sig-name {
  font-size: 2rem;
  letter-spacing: .18em;
  margin-top: 6px;
}
.links-signature .sig-script {
  font-family: "Allura", cursive;
  font-size: 2.8rem;
  color: #3A71A1;
  line-height: 1;
  margin-left: auto;
}

/* ===========================================================
   強みの訴求（4列ボーダー区切り）
   =========================================================== */
.links-strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.links-strength-item {
  padding: 40px 30px;
  border-right: 1px solid #E3E0D8;
}
.links-strength-item:last-child {
  border-right: none;
}
.links-strength-num {
  font-family: "Allura", serif;
  font-style: italic;
  font-size: 5.4rem;
  color: #D7EFF2;
  line-height: 1;
  display: block;
}
.links-strength-label {
  font-size: 2rem;
  font-weight: 700;
  color: #1B2A39;
  letter-spacing: .1em;
  margin: 14px 0 8px;
  line-height: 1.4;
  display: block;
}
.links-strength-label .text-accent {
  color: #3A71A1;
}
.links-strength-text {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #6A7888;
}
@media (max-width: 896px) {
  .links-strength-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .links-strength-item {
    border-bottom: 1px solid #E3E0D8;
    border-right: none;
  }
  .links-strength-item:nth-child(odd) {
    border-right: 1px solid #E3E0D8;
  }
  .links-strength-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
@media (max-width: 639px) {
  .links-strength-grid {
    grid-template-columns: 1fr 1fr;
  }
  .links-strength-item { padding: 24px 16px; }
  .links-strength-num  { font-size: 3.6rem; }
  .links-strength-label { font-size: 1.6rem; }
}

/* ===========================================================
   事業案内バナー（ナンバーあしらい付き）
   =========================================================== */
.links-service-intro {
  background: #F7F7F5;
}

/* ===========================================================
   会社概要導入・採用情報導入（bg-photo-fade風）
   =========================================================== */
.links-company-bg {
  background: #EAF6F8;
}
.links-recruit-bg {
  background: linear-gradient(135deg, #1B2A39 0%, #27567C 100%);
}

/* ===========================================================
   アクセスグリッド
   =========================================================== */
.links-access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 896px) {
  .links-access-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===========================================================
   ページヒーロー（下層共通 links）
   =========================================================== */

/* 背景・文字色・ボーダー */
.page-hero--links {
  background: #F7F7F5;
  color: #1B2A39;
  border-bottom: 1px solid #E8E5DD;
  overflow: hidden;
  position: relative;
}

/* パディング: .page-hero--solid.page-hero--sm (0,2,0) より高い詳細度で上書き */
.page-hero--solid.page-hero--links {
  padding: 120px 5% 100px;
}
@media (max-width: 896px) {
  .page-hero--solid.page-hero--links { padding: 80px 5% 70px; }
}
@media (max-width: 639px) {
  .page-hero--solid.page-hero--links { padding: 60px 5% 50px; }
}

/* コンテンツエリア: 左寄せ + 高さ auto */
.page-hero--links .page-hero__content {
  max-width: 1320px;
  margin: 0 auto;
  height: auto;
  min-height: 0;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

/* utility 上書き（page-hero--links スコープ内のみ） */
.page-hero--links .h-250    { height: auto; }
.page-hero--links .text-white { color: #1B2A39; }
.page-hero--links .opacity-70 { opacity: 1; }

/* サブラベル（— Our Company — など） */
.page-hero--links .heading__en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.8rem;
  color: #3A71A1;
  opacity: 1;
  letter-spacing: .16em;
  margin-bottom: 18px;
  font-weight: 400;
}

/* h1: .page-hero--solid.page-hero--sm .heading__ja (0,3,0) を上回る詳細度 */
.page-hero--solid.page-hero--sm.page-hero--links .heading__ja,
.page-hero--links .heading__ja {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(4.0rem, 5.4vw, 7.2rem);
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.1;
  color: #1B2A39;
}

/* ドット装飾（右側） */
.page-hero--links::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 30%;
  width: 160px;
  height: 120px;
  background-image: radial-gradient(circle, #3A71A1 1.4px, transparent 1.6px);
  background-size: 10px 10px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

/* ===========================================================
   フッター CTA 帯（デザイン再現）
   =========================================================== */

/* ::before を非表示（波はimgタグで実装） */
.footer-cta::before {
  background: none;
  height: 0;
}

/* footer-cta 自体を前セクションより手前に */
.footer-cta {
  position: relative;
  z-index: 1;
  padding: 30px 0 55px;
}

/* 波SVG画像: footer-cta 上端から上向きに展開して前セクションに重ねる */
.footer-cta__wave {
  position: absolute;
  top: 10px;
  transform: translateY(-100%);
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  z-index: 1;
}

/* inner レイアウト: 縦積み・中央寄せ */
.footer-cta > .footer-cta__inner {
  flex-direction: column;
  align-items: center;
  padding: 90px 5% 70px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  gap: 0;
  z-index: 2;
}

/* heading-big の overlap 効果をリセット */
.footer-cta .heading-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* "CONTACT" → Allura script 風（lowercase 表示） */
.footer-cta .heading__en {
  font-family: "Allura", cursive;
  font-weight: 400;
  font-size: 4.8rem;
  color: #7EB3D6;
  opacity: 1;
  letter-spacing: 0;
  line-height: 1;
  position: static;
  margin-bottom: 0;
}

/* -mt-40 打ち消し + heading__ja スタイル */
.footer-cta .heading__ja,
.footer-cta .-mt-40 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2.8rem, 3vw, 4.0rem);
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.4;
  color: #fff;
  position: static;
  margin-top: 8px;
  z-index: auto;
}

/* 説明文 */
.footer-cta p {
  color: #B5C2CE;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: .06em;
}

/* 電話番号: 縦積み + "Tel." ラベル */
.footer-cta .btn-cta-tel--white {
  font-family: "Shippori Mincho", serif;
  font-size: 3.0rem;
  letter-spacing: .06em;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.footer-cta .btn-cta-tel--white::before {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  content: "Tel.";
  font-size: 1.3rem;
  color: #7EB3D6;
  letter-spacing: .16em;
  font-weight: 400;
  margin: 0 0 6px;
}

/* CTAボタン: 透明背景 + 白ボーダー */
.footer-cta .btn-cta-mail {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  letter-spacing: .2em;
  padding: 18px 40px;
  max-width: none;
  width: auto;
}
.footer-cta .btn-cta-mail::before {
  content: none;
}
.footer-cta .btn-cta-mail::after {
  content: "  →";
  font-style: normal;
  transition: transform 0.3s;
  display: inline-block;
}
.footer-cta .btn-cta-mail:hover {
  background: #fff;
  color: #1B2A39;
  border-color: #fff;
  opacity: 1;
}
.footer-cta .btn-cta-mail:hover::after {
  transform: translateX(4px);
}

/* 電話＋ボタン の横並び */
.footer-cta .footer-cta__right {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 639px) {
  .footer-cta .footer-cta__right {
    flex-direction: column;
    gap: 28px;
  }
  .footer-cta__wave {
    height: 80px;
  }
}
@media (max-width: 639px) {
  .footer-cta__wave {
    top: 30px;
  }
}

/* ===========================================================
   新着情報セクション レイアウト
   =========================================================== */
#news {
  padding-bottom: 200px;
}
.links-news__inner {
  align-items: flex-start;
}

/* ニュースリスト: 3カラムグリッド（日付 / カテゴリ / タイトル） */
.news-list {
  border-top: 1px solid #BFD7E2;
}

/* TOPページ: 3件を超えるとスクロール */
.links-news-scroll {
  max-height: calc((24px * 2 + 1.7em * 1.5rem + 1px) * 3);
  max-height: 228px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #BFD7E2 transparent;
}
.links-news-scroll::-webkit-scrollbar {
  width: 4px;
}
.links-news-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.links-news-scroll::-webkit-scrollbar-thumb {
  background: #BFD7E2;
  border-radius: 2px;
}
.news-list__item {
  background: none;
}
.news-list__link {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid #BFD7E2;
  color: #1B2A39;
  text-decoration: none;
  transition: background 0.25s, padding-left 0.25s;
}
.news-list__date {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  font-size: 1.8rem;
  letter-spacing: .1em;
}
.news-list__cat {
  display: inline-block;
  font-size: 1.1rem;
  letter-spacing: .18em;
  color: #1B2A39;
  border: 1px solid #BFD7E2;
  padding: 6px 12px;
  text-align: center;
  background: #fff;
}
.news-list__cat--accent {
  background: #fff;
  color: #1B2A39;
  border-color: #BFD7E2;
}
.news-list__title {
  font-size: 1.5rem;
  line-height: 1.7;
  letter-spacing: .06em;
  color: #1B2A39;
}
@media (max-width: 639px) {
  .news-list__link {
    grid-template-columns: 110px 1fr;
    gap: 14px;
  }
}

/* ===========================================================
   ブログ詳細本文
   =========================================================== */
.entry-body h2 { border-left: 4px solid #3A71A1; padding-left: 16px; margin: 40px 0 16px; }
.entry-body h3 { color: #3A71A1; border-bottom: 1px solid #D7EFF2; padding-bottom: 8px; margin: 32px 0 12px; }
.entry-body p   { margin-bottom: 1.6em; line-height: 2; }
.entry-body img { max-width: 100%; height: auto; border-radius: 10px; }
.entry-body ul  { list-style: disc; padding-left: 2em; margin-bottom: 1.6em; }
.entry-body ol  { list-style: decimal; padding-left: 2em; margin-bottom: 1.6em; }
.entry-body blockquote {
  border-left: 3px solid #D7EFF2;
  padding: 16px 20px;
  background: #EAF6F8;
  margin: 24px 0;
  border-radius: 0 10px 10px 0;
}

/* ===========================================================
   SP固定バー（電話・問い合わせ）
   =========================================================== */
.sp-fixed-bar {
  background: #3A71A1;
}

/* ===========================================================
   wave divider のデフォルト色
   =========================================================== */
.wave-divider--links-paper { color: #F7F7F5; }
.wave-divider--links-mist  { color: #EAF6F8; }


/* ===========================================================
   Gates セクション（サイトのご案内 4列カード）
   =========================================================== */
.links-gate {
  position: relative;
  display: block;
  text-decoration: none;
  color: #1B2A39;
  background: #fff;
  border: 1px solid #E8E5DD;
  padding: 36px 28px 32px;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.links-gate:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -30px rgba(58,113,161,.35);
  border-color: #3A71A1;
}
.links-gate__num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #3A71A1;
  letter-spacing: .2em;
}
.links-gate__ph {
  aspect-ratio: 5 / 4;
  margin: 18px 0 24px;
  overflow: hidden;
}
.links-gate__ph svg {
  width: 100%;
  height: 100%;
  display: block;
}
.links-gate__title {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .22em;
  margin: 0 0 4px;
  color: #1B2A39;
}
.links-gate__en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #6A7888;
  letter-spacing: .16em;
}
.links-gate__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #E8E5DD;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.8rem;
  letter-spacing: .2em;
  color: #3A71A1;
}
.links-gate__more::after {
  content: "→";
  font-style: normal;
  transition: transform 0.3s;
}
.links-gate:hover .links-gate__more::after {
  transform: translateX(4px);
}
@media (max-width: 639px) {
  .links-gate { padding: 24px 20px 22px; }
}

/* ===========================================================
   LINKS サイドバーリスト
   =========================================================== */
.links-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.links-side-list li + li {
  border-top: 1px solid #E3E3DD;
}
.links-side-list__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px;
  font-size: 1.4rem;
  color: #1B2A39;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.links-side-list__link:hover {
  color: #3A71A1;
  padding-left: 6px;
}
.links-side-list__count {
  font-size: 1.2rem;
  color: #6A7888;
  flex-shrink: 0;
}

/* ===========================================================
   ごあいさつ h2 見出し（トップ・会社概要 共通）
   =========================================================== */
.links-greeting h2,
#greeting h2 {
  font-size: clamp(2.4rem, 3.2vw, 3.8rem);
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.55;
  color: #1B2A39;
  font-family: "Shippori Mincho", serif;
  margin-top: 0;
}

/* ===========================================================
   company.php: 創業エピソード（Story）
   =========================================================== */
.links-story__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}
.links-story__head {
  position: sticky;
  top: 100px;
}
.links-story__script {
  font-size: 5.2rem;
  color: #3A71A1;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.links-story__title {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.45;
  color: #1B2A39;
  font-family: "Shippori Mincho", serif;
  margin: 0 0 16px;
}
.links-story__en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #6A7888;
  letter-spacing: .14em;
  display: block;
}
.links-story__body p {
  font-size: 1.55rem;
  line-height: 2.1;
  color: #3a4a5a;
  margin-bottom: 1.8em;
}
.links-story__quote {
  border-left: 3px solid #3A71A1;
  padding: 20px 28px;
  background: #EAF6F8;
  font-size: 1.5rem;
  line-height: 2;
  color: #1B2A39;
  letter-spacing: .08em;
  margin: 0;
}
@media (max-width: 896px) {
  .links-story__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .links-story__head {
    position: static;
  }
}

/* ===========================================================
   company.php: 会社情報（Profile）セクションタイトル
   =========================================================== */
.links-profile-head__script {
  font-size: 5.2rem;
  color: #3A71A1;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.links-profile-head__title {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: .18em;
  color: #1B2A39;
  font-family: "Shippori Mincho", serif;
  margin: 0 0 10px;
}
.links-profile-head__en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #6A7888;
  letter-spacing: .14em;
  display: block;
}

/* company.php: th 内英語サブラベル */
.links-profile-en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #6A7888;
  letter-spacing: .1em;
  font-weight: 400;
  margin-top: 4px;
}

/* ===========================================================
   company.php: アクセス
   =========================================================== */
.links-access-info__title {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: .18em;
  color: #1B2A39;
  font-family: "Shippori Mincho", serif;
  margin: 0 0 20px;
}
.links-access-map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px -20px rgba(27, 42, 57, .25);
}

/* ===========================================================
   LINKS 記事詳細（entry.php）
   =========================================================== */
.links-entry__title {
  font-family: "Shippori Mincho", serif;
  line-height: 1.6;
  color: #1B2A39;
}
.links-entry__body {
  line-height: 1.9;
}
.links-entry__eyecatch img {
  max-height: 480px;
  object-fit: cover;
  width: 100%;
}

/* ===========================================================
   recruit.php: ページヒーロー（2カラム: コピー + フォトコラージュ）
   =========================================================== */
.links-rec-hero {
  position: relative;
  padding: 90px 0 25px;
  overflow: hidden;
  background: linear-gradient(180deg, #F7F7F5 0%, #EAF6F8 100%);
}
.links-rec-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: end;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.links-rec-hero__copy {
  padding: 20px 0 100px;
  position: relative;
}
.links-rec-hero__breadcrumb {
  margin-top: 30px;
}
.links-rec-hero__dots {
  position: absolute;
  width: 200px;
  height: 80px;
  left: -30px;
  top: 60px;
  opacity: .6;
  pointer-events: none;
}
.links-rec-hero__en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  font-size: 1.8rem;
  letter-spacing: .16em;
  display: block;
  margin-bottom: 14px;
}
.links-rec-hero h1 {
  font-size: clamp(4.0rem, 5.4vw, 7.2rem);
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.1;
  margin: 0 0 36px;
  color: #1B2A39;
  font-family: "Shippori Mincho", serif;
}
.links-rec-hero__script {
  font-size: clamp(5.4rem, 7vw, 9.0rem);
  display: block;
  margin-bottom: 30px;
}
.links-rec-hero__catch {
  font-size: clamp(2.2rem, 2.4vw, 3.0rem);
  line-height: 1.7;
  letter-spacing: .14em;
  color: #1B2A39;
  margin: 0 0 24px;
  font-weight: 500;
}
.links-rec-hero__catch em {
  font-style: normal;
  color: #3A71A1;
  border-bottom: 2px solid #3A71A1;
  padding-bottom: 2px;
}
.links-rec-hero__lead {
  font-size: 1.55rem;
  line-height: 2.1;
  color: #3a4a5a;
  margin: 0;
  max-width: 47ch;
}

/* フォトコラージュ */
.links-rec-hero__photos {
  position: relative;
  height: 560px;
}
.links-rec-hero__tape {
  position: absolute;
  left: 30%;
  top: -20px;
  width: 140px;
  height: 36px;
  transform: rotate(8deg);
  background: repeating-linear-gradient(135deg, #D7EFF2 0 6px, transparent 6px 12px);
  opacity: .7;
  z-index: 1;
  pointer-events: none;
}
.links-rec-hero__photos .rph {
  position: absolute;
  border: 8px solid #fff;
  box-shadow: 0 30px 70px -40px rgba(27, 42, 57, .35);
  overflow: hidden;
}
.links-rec-hero__photos .rph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rph--a { left: 0; top: 0; width: 62%; height: 50%; transform: rotate(-2deg); }
.rph--b { right: 0; top: 14%; width: 42%; height: 38%; transform: rotate(2deg); }
.rph--c { left: 14%; bottom: 0; width: 50%; height: 42%; transform: rotate(-1.5deg); }
.rph--d {
  right: 8%;
  bottom: 6%;
  width: 36%;
  height: 30%;
  transform: rotate(3deg);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.links-rec-hero__num {
  font-size: 2.2rem;
  letter-spacing: .18em;
  margin-top: 8px;
  color: #1B2A39;
  display: block;
}
.rph--d small {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #6A7888;
  letter-spacing: .18em;
  margin-top: 6px;
  display: block;
}
@media (max-width: 960px) {
  .links-rec-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .links-rec-hero__photos { height: 380px; }
  .links-rec-hero__copy { padding-bottom: 40px; }
}

/* ===========================================================
   recruit.php: Numbers ストリップ
   =========================================================== */
.links-numbers {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid #E8E5DD;
}
.links-numbers__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.links-numbers__item {
  padding: 0 30px;
  border-right: 1px solid #E8E5DD;
  text-align: center;
}
.links-numbers__item:last-child {
  border-right: 0;
}
.links-numbers__label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #6A7888;
  font-size: 1.3rem;
  letter-spacing: .16em;
  display: block;
}
.links-numbers__big {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.links-numbers__big strong {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  font-size: 6.4rem;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 896px) {
  .links-numbers__big strong {
    font-size: 5rem;
  }
}
.links-numbers__big span {
  font-size: 1.4rem;
  color: #6A7888;
  letter-spacing: .1em;
}
.links-numbers__txt {
  font-size: 1.3rem;
  color: #6A7888;
  margin-top: 8px;
  letter-spacing: .06em;
}
@media (max-width: 960px) {
  .links-numbers__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
  }
  .links-numbers__item {
    border-right: 0;
    border-bottom: 1px solid #E8E5DD;
    padding: 20px 0;
  }
  .links-numbers__item:last-child { border-bottom: 0; }
}

/* ===========================================================
   recruit.php: 求める人材（Persona）
   =========================================================== */
.links-persona {
  padding: 100px 0 80px;
}
.links-persona__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.links-persona__script {
  font-size: 5.4rem;
  color: #3A71A1;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.links-persona__head h2 {
  font-size: clamp(2.8rem, 3vw, 4.0rem);
  font-weight: 400;
  letter-spacing: .2em;
  line-height: 1.5;
  margin: 8px 0 14px;
  color: #1B2A39;
  font-family: "Shippori Mincho", serif;
}
.links-persona__en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: .2em;
  color: #6A7888;
  margin-bottom: 24px;
}
.links-persona__head p {
  font-size: 1.5rem;
  line-height: 2;
  color: #3a4a5a;
  margin: 0;
}
.links-persona__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: persona;
}
.links-persona__list li {
  position: relative;
  padding: 24px 28px 24px 80px;
  background: #fff;
  border: 1px solid #E8E5DD;
  counter-increment: persona;
}
.links-persona__list li::before {
  content: counter(persona);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  font-size: 3.6rem;
  line-height: 1;
}
.links-persona__list strong {
  display: block;
  font-size: 1.8rem;
  letter-spacing: .14em;
  font-weight: 500;
  margin-bottom: 6px;
  color: #1B2A39;
}
.links-persona__list span {
  font-size: 1.4rem;
  color: #6A7888;
  line-height: 1.9;
}
@media (max-width: 960px) {
  .links-persona__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===========================================================
   recruit.php: 資格援助制度（Training）
   =========================================================== */
.links-training {
  background: #EAF6F8;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.links-training__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.links-training__ph {
  aspect-ratio: 4 / 5;
  border: 8px solid #fff;
  box-shadow: 0 30px 70px -40px rgba(27, 42, 57, .35);
  overflow: hidden;
}
.links-training__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.links-training__copy h2 {
  font-size: clamp(2.8rem, 3.2vw, 3.8rem);
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.5;
  margin: 0 0 24px;
  color: #1B2A39;
  font-family: "Shippori Mincho", serif;
}
.links-training__accent {
  color: #3A71A1;
  position: relative;
  display: inline-block;
}
.links-training__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: #3A71A1;
}
.links-training__copy p {
  font-size: 1.55rem;
  line-height: 2.1;
  color: #3a4a5a;
  margin: 0 0 1.5em;
}
.links-training__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.links-training__list li {
  padding: 14px 18px 14px 38px;
  background: #fff;
  border-left: 2px solid #3A71A1;
  font-size: 1.45rem;
  letter-spacing: .02em;
  color: #1B2A39;
  position: relative;
}
.links-training__list li::before {
  content: "✓";
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 1.4rem;
}
@media (max-width: 960px) {
  .links-training__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===========================================================
   recruit.php: 募集要項テーブル
   =========================================================== */
.links-recruit-table {
  padding: 100px 0 80px;
  background: #fff;
}
.links-recruit-table__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.links-recruit-table table {
  width: 100%;
  border-collapse: collapse;
}
.links-recruit-table th,
.links-recruit-table td {
  padding: 28px 12px;
  border-bottom: 1px solid #E8E5DD;
  text-align: left;
  vertical-align: top;
  line-height: 1.95;
}
.links-recruit-table th {
  width: 230px;
  font-weight: 500;
  color: #1B2A39;
  font-size: 1.4rem;
  letter-spacing: .16em;
  padding-top: 32px;
}
.links-recruit-en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #6A7888;
  letter-spacing: .16em;
  margin-top: 4px;
  font-weight: 400;
}
.links-recruit-table td {
  color: #3a4a5a;
  font-size: 1.5rem;
}
.links-recruit-table td ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.links-recruit-table td ul li {
  padding-left: 14px;
  position: relative;
}
.links-recruit-table td ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 1px;
  background: #3A71A1;
}
.links-recruit-table td small {
  font-size: 1.3rem;
  color: #6A7888;
  display: block;
  margin-top: 4px;
}
.links-recruit-table__subhead {
  font-weight: 500;
  color: #1B2A39;
  font-size: 1.35rem;
  letter-spacing: .14em;
  display: block;
}
.links-recruit-table__salary {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  font-size: 2.4rem;
  letter-spacing: .06em;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.links-salary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  max-width: 520px;
  margin: 8px 0;
}
.links-salary-grid div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #E8E5DD;
  padding: 4px 0;
  font-size: 1.4rem;
}
.links-salary-grid div span:first-child {
  color: #6A7888;
}
@media (max-width: 960px) {
  .links-recruit-table th { width: 120px; font-size: 1.2rem; }
  .links-salary-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   recruit.php: CTA
   =========================================================== */
.links-rec-cta {
  padding: 100px 0 200px;
  text-align: center;
  background: #EAF6F8;
  position: relative;
}
.links-rec-cta__script {
  font-size: clamp(6.0rem, 8vw, 11.0rem);
  display: block;
}
.links-rec-cta h2 {
  font-size: clamp(2.4rem, 2.8vw, 3.6rem);
  font-weight: 400;
  letter-spacing: .22em;
  margin: 8px 0 20px;
  color: #1B2A39;
  font-family: "Shippori Mincho", serif;
}
.links-rec-cta p {
  max-width: 80ch;
  margin: 0 auto 30px;
  font-size: 1.5rem;
  line-height: 2;
  color: #3a4a5a;
  padding: 0 clamp(20px, 4vw, 48px);
}
.links-rec-cta__actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 896px) {
  .links-rec-cta {
    text-align: left;
  }
  .links-rec-cta__script,
  .links-rec-cta h2 {
    text-align: center;
  }
  .links-rec-cta p {
    margin-left: 0;
    margin-right: 0;
  }
  .links-rec-cta__actions {
    justify-content: center;
    align-items: center;
  }
  .links-rec-cta__actions .btn {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.3rem;
  }
}

/* ===========================================================
   thanks.php: 送信完了
   =========================================================== */
.links-thanks__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0 0;
}
.links-thanks__script {
  display: block;
  font-size: 8rem;
  color: #3A71A1;
  line-height: 1;
  margin-bottom: 16px;
}
.links-thanks__title {
  font-size: clamp(2.6rem, 3vw, 3.6rem);
  font-weight: 400;
  letter-spacing: .2em;
  line-height: 1.6;
  margin-bottom: 40px;
}
.links-thanks__body {
  margin-bottom: 50px;
}
.links-thanks__tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #F7F7F5;
  border: 1px solid #E8E5DD;
  border-radius: 4px;
  padding: 28px 48px;
  margin-bottom: 50px;
}
.links-thanks__tel-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6rem;
  font-weight: 500;
  color: #1B2A39;
  letter-spacing: .1em;
  text-decoration: none;
}
.links-thanks__tel-num:hover {
  color: #3A71A1;
}
.links-thanks__btn {
  min-width: 240px;
}

/* ===========================================================
   contact.php: イントロ（say hello.）
   =========================================================== */
.links-cnt-intro {
  padding: 80px 0 40px;
  text-align: center;
}
.links-cnt-intro__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.links-cnt-intro__script {
  font-size: clamp(5.6rem, 8vw, 7.2rem);
  color: #3A71A1;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.links-cnt-intro h2 {
  font-size: clamp(2.8rem, 3vw, 4.0rem);
  font-weight: 400;
  letter-spacing: .18em;
  margin: 0 0 24px;
  color: #1B2A39;
  font-family: "Shippori Mincho", serif;
}
.links-cnt-intro p {
  font-size: 1.6rem;
  line-height: 2.1;
  color: #3a4a5a;
  margin: 0;
}

@media (max-width: 896px) {
  .links-cnt-intro {
    text-align: left;
  }
}

/* ===========================================================
   contact.php: クイックコンタクト（Tel / Mail カード）
   =========================================================== */
.links-quick {
  padding: 40px 0 80px;
}
.links-quick__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.links-quick__card {
  background: #fff;
  border: 1px solid #E8E5DD;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.links-quick__card h3 {
  font-size: 2.0rem;
  letter-spacing: .18em;
  font-weight: 500;
  margin: 0;
  color: #1B2A39;
}
.links-quick__card p {
  font-size: 1.4rem;
  color: #6A7888;
  line-height: 1.9;
  margin: 0;
}
.links-quick__big {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  font-size: 3.8rem;
  letter-spacing: .04em;
  line-height: 1;
  margin: 6px 0 4px;
}
.links-quick__big a {
  color: inherit;
}
.links-quick__big--sm {
  font-size: 2.4rem;
}
.links-quick__sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #6A7888;
  letter-spacing: .16em;
}
.links-quick__card .btn {
  white-space: nowrap;
  align-self: stretch;
  justify-content: center;
  padding-left: 28px;
  padding-right: 28px;
  max-width: 260px;
}
@media (max-width: 960px) {
  .links-quick__inner {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   contact.php: フォームセクション
   =========================================================== */
.links-form-section {
  padding: 60px 0 100px;
  background: linear-gradient(180deg, #F7F7F5 0%, #EAF6F8 100%);
}
.links-form-section__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.links-form__intro {
  font-size: 1.45rem;
  color: #6A7888;
  line-height: 1.9;
  text-align: center;
  margin: 0 auto 50px;
  max-width: 48ch;
}
.links-form-section form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.links-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.links-field > label {
  font-size: 1.4rem;
  letter-spacing: .16em;
  color: #1B2A39;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.links-label__en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  font-size: 1.2rem;
  letter-spacing: .18em;
  font-weight: 400;
}
.links-req {
  background: #3A71A1;
  color: #fff;
  font-size: 1.0rem;
  letter-spacing: .16em;
  padding: 3px 8px;
  margin-left: auto;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 400;
  flex-shrink: 0;
}
.links-input,
.links-textarea {
  font-family: "Shippori Mincho", serif;
  color: #1B2A39;
  border: 1px solid #E8E5DD;
  background: #fff;
  padding: 16px 18px;
  font-size: 1.5rem;
  letter-spacing: .04em;
  line-height: 1.7;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  border-radius: 0;
  box-sizing: border-box;
}
.links-input:focus,
.links-textarea:focus {
  outline: none;
  border-color: #3A71A1;
  box-shadow: 0 0 0 3px rgba(58, 113, 161, .12);
}
.links-textarea {
  min-height: 180px;
  resize: vertical;
}
.links-radios {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.links-radio {
  flex: 1;
  min-width: 200px;
  position: relative;
  cursor: pointer;
  border: 1px solid #E8E5DD;
  background: #fff;
  padding: 18px 22px 18px 56px;
  font-size: 1.5rem;
  transition: border-color .2s, background .2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.links-radio:hover {
  border-color: #3A71A1;
}
.links-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.links-radio::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #BFD7E2;
  border-radius: 50%;
  background: #fff;
  transition: border-color .2s, background .2s;
}
.links-radio:has(input:checked) {
  border-color: #3A71A1;
  background: rgba(58, 113, 161, .04);
}
.links-radio:has(input:checked)::before {
  border-color: #3A71A1;
  background: radial-gradient(#3A71A1 40%, transparent 45%);
}
.links-radio strong {
  font-weight: 500;
  letter-spacing: .12em;
  color: #1B2A39;
}
.links-radio span {
  font-size: 1.2rem;
  color: #6A7888;
  letter-spacing: .08em;
}
.links-form__privacy {
  font-size: 1.3rem;
  color: #6A7888;
  line-height: 1.9;
  padding: 18px;
  border: 1px solid #E8E5DD;
  background: #fff;
}
.links-form__privacy a {
  color: #3A71A1;
  border-bottom: 1px solid #3A71A1;
}
.links-form__submit {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.links-btn--reset {
  padding: 18px 36px;
  background: transparent;
  color: #6A7888;
  border: 1px solid #E8E5DD;
  font-size: 1.4rem;
  letter-spacing: .24em;
  cursor: pointer;
  font-family: inherit;
  transition: color .2s, border-color .2s;
}
.links-btn--reset:hover {
  color: #1B2A39;
  border-color: #6A7888;
}
.links-btn--submit {
  padding: 18px 48px !important;
  font-size: 1.4rem !important;
  letter-spacing: .24em;
}

/* CMSフォーム 必須ラベル色上書き */
.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  background: #3A71A1 !important;
}

/* ===========================================================
   contact.php: FAQ アコーディオン
   =========================================================== */
.links-faq {
  padding: 100px 0 200px;
  background: #fff;
  border-top: 1px solid #E8E5DD;
}
.links-faq__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.links-faq__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E8E5DD;
}
.links-faq__list details {
  border-bottom: 1px solid #E8E5DD;
  padding: 24px 0;
}
.links-faq__list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 1.6rem;
  letter-spacing: .06em;
  line-height: 1.7;
  padding-right: 40px;
  position: relative;
}
.links-faq__list summary::-webkit-details-marker {
  display: none;
}
.links-faq__list summary::before {
  content: "Q";
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  font-size: 2.4rem;
  line-height: 1;
  flex: none;
}
.links-faq__list summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-right: 1px solid #3A71A1;
  border-bottom: 1px solid #3A71A1;
  transform: rotate(45deg);
  transition: transform .3s, top .3s;
}
.links-faq__list details[open] summary::after {
  transform: rotate(-135deg);
  top: 18px;
}
.links-faq__ans {
  display: flex;
  gap: 20px;
  padding: 18px 30px 4px 0;
  color: #3a4a5a;
  font-size: 1.45rem;
  line-height: 2;
}
.links-faq__ans::before {
  content: "A";
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  font-size: 2.4rem;
  line-height: 1;
  flex: none;
}

/* ===========================================================
   service.php: サービス画像 比率 5:6（525×630）
   =========================================================== */
#juho img, #kyotaku img, #kaiho img {
  aspect-ratio: 5 / 6;
}
@media (max-width: 896px) {
  .column2--5-5 > .column2__child {
    width: 100%;
  }
}

/* ===========================================================
   service.php: イントロ スマホ左寄せ
   =========================================================== */
@media (max-width: 896px) {
  .section--half .text-center {
    text-align: left;
  }
  .section--half .links-eyebrow {
    justify-content: flex-start !important;
  }
  .section--half .sentence {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ===========================================================
   service.php: サービス番号オーバーレイ
   =========================================================== */
.links-svc__num {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(10rem, 14vw, 16rem);
  line-height: .9;
  color: #D7EFF2;
  z-index: 2;
  top: -20px;
  left: -20px;
  pointer-events: none;
  letter-spacing: -.02em;
}

/* ===========================================================
   service.php: サービス h2 内 EN サブタイトル
   =========================================================== */
.links-svc__en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  font-size: 1.5rem;
  letter-spacing: .18em;
  margin-bottom: 10px;
  font-weight: 400;
}

/* ===========================================================
   service.php: For ターゲットボックス
   =========================================================== */
.links-svc__target {
  border: 1px solid #BFD7E2;
  background: #EAF6F8;
  padding: 22px 26px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 8px;
}
.links-svc__target-label {
  flex: none;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #3A71A1;
  font-size: 1.3rem;
  letter-spacing: .18em;
  padding-top: 2px;
}
.links-svc__target-label::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: #3A71A1;
  margin-top: 8px;
}
.links-svc__target ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #3a4a5a;
}
.links-svc__target ul li {
  padding-left: 14px;
  position: relative;
}
.links-svc__target ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 1px;
  background: #3A71A1;
}

@media (max-width: 639px) {
  .links-svc__target {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===========================================================
   service.php: 点線区切り
   =========================================================== */
.dot-leader-line--dashed {
  border: none;
  border-top: 1px dashed #BFD7E2;
  height: 0;
}

/* ===========================================================
   service.php: Linksの強み帯（ダーク背景）
   =========================================================== */
.links-strengths-band {
  background: #1B2A39;
}
.links-strengths-band .links-script {
  color: #7EB3D6;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.links-strengths-item {
  padding: 50px 36px;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.links-strengths-item:last-child {
  border-right: 0;
}
.links-strengths-num {
  position: absolute;
  right: 36px;
  top: 50px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(255,255,255,.15);
  font-size: 4.2rem;
  line-height: 1;
}
.links-strengths-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #7EB3D6;
}
.links-strengths-title {
  font-size: 1.8rem;
  letter-spacing: .16em;
  font-weight: 500;
  margin: 0 0 14px;
  color: #fff;
}
.links-strengths-text {
  font-size: 1.4rem;
  line-height: 1.95;
  color: rgba(255,255,255,.6);
  margin: 0;
}
@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .links-strengths-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 36px 0;
  }
  .links-strengths-item:last-child {
    border-bottom: 0;
  }
}

/* ===========================================================
   service.php: Coverage（暮らしの真ん中に）
   =========================================================== */
.links-coverage {
  background: #EAF6F8;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-bottom: 200px;
}
.links-coverage__script {
  font-size: clamp(5.6rem, 8vw, 10rem);
  color: #3A71A1;
  line-height: 1;
  letter-spacing: -.005em;
  display: block;
  margin-bottom: 12px;
}
.links-coverage__title {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 400;
  letter-spacing: .22em;
  color: #1B2A39;
  font-family: "Shippori Mincho", serif;
  margin: 0 0 20px;
}
.links-coverage__pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.links-coverage__pills span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid #BFD7E2;
  background: #fff;
  font-size: 1.3rem;
  letter-spacing: .18em;
  color: #1B2A39;
}
.links-coverage__pills span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #3A71A1;
  border-radius: 50%;
  flex-shrink: 0;
}
