/*
Theme Name: Analyze11 Theme
Theme URI: https://analyze11.example.com/
Author: Analyze11
Author URI: https://analyze11.example.com/
Description: フレンチ・テック風（白背景＋1pxボーダー＋赤アクセント＋明朝体見出し）のAnalyze11オリジナルテーマ。自治体DX・医療連携・中小企業AI導入のコンサルティングサイト向け。
Version: 1.5.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: analyze11
Tags: one-column, custom-menu, editor-style, translation-ready
*/

/* ==========================================================================
   ベース設定：白基調
   ========================================================================== */
body {
  margin: 0;
  background-color: #FFFFFF;
  color: #1A1A1A;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* タイポグラフィ設定 */
h1, h2, h3 {
  font-family: 'Noto Serif JP', serif; /* 見出しに明朝体を採用し格式を演出 */
  font-weight: 600;
  color: #111827;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* アクセント：ピンポイントの赤 */
.accent-red {
  color: #D90429;
}
.red-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #D90429;
  margin-right: 12px;
  border-radius: 1px; /* シャープな四角形 */
  flex: 0 0 auto;     /* section-title 内で潰れないように固定 */
}

/* ==========================================================================
   サイトヘッダー（画像ロゴ）
   罫線は入れず、白背景のまま余白だけでロゴを浮かせる（フレンチ・テックの軽さを維持）。
   ロゴは .container を共有するため、ヒーローの見出しと左端が揃う。
   ========================================================================== */
header.site-header {
  padding: 28px 0 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  line-height: 1; /* インライン要素の行間による img 下の余白を消す */
}
.site-logo a {
  display: inline-block;
  text-decoration: none;
}
.site-logo img {
  display: block;
  max-width: 180px; /* SVG は 300 × 200（3:2）なので実高さは 120px */
  height: auto;     /* 縦横比を維持（width / height 属性から算出） */
  transition: opacity 0.3s ease;
}
.site-logo a:hover img {
  opacity: 0.7; /* 他の要素と同じ 0.3s ease で控えめに反応させる */
}

/* グローバルナビゲーション
   下線や背景は持たせず、文字とホバー時の赤だけで構成する。
   現在表示中のページ（.current-menu-item）だけ赤ドット相当の下線で示す。 */
.site-nav {
  flex: 0 1 auto; /* ロゴを潰さず、必要なときだけナビ側が縮む */
}
.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.site-nav__list a {
  font-size: 14px;
  font-weight: 500;
  color: #4B5563;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.site-nav__list a:hover {
  color: #D90429;
  border-bottom-color: #D90429;
}
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
  color: #111827;
  border-bottom-color: #D90429;
}

/* ==========================================================================
   ヒーローエリア（アシンメトリーレイアウト）
   ========================================================================== */
/* ヘッダー（padding 28px ＋ ロゴ 120px ≒ 148px）が上に入った分、
   旧値 140px から詰めてロゴとキャッチコピーの間隔を適正化する。 */
.hero {
  padding: 80px 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.hero-text {
  width: 60%;
}
.hero h1 {
  font-size: 52px;
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 18px;
  color: #4B5563;
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: #4B5563;
}

/* ヒーローの導線（主ボタン ＋ About への副導線テキストリンク） */
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 28px;
}

/* 罫線もボタン枠も持たない控えめなテキストリンク。矢印だけで前進感を出す。 */
.text-link {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.text-link::after {
  content: '→';
  margin-left: 8px;
}
.text-link:hover {
  color: #D90429;
  border-bottom-color: #D90429;
}

/* ヒーロー右側の装飾ブロック（抽象的なインフラ・ネットワークを表現） */
.hero-visual {
  width: 35%;
  height: 300px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
  position: relative;
  flex: 0 0 auto;
}
.hero-visual__mark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: 'Noto Serif JP', serif;
  font-size: 80px;
  color: #F3F4F6;
  line-height: 1;
}

/* ==========================================================================
   フレンチ・テック流カード（極細の線）
   ========================================================================== */
.section-title {
  font-size: 32px;
  margin: 80px 0 40px;
  display: flex;
  align-items: center;
}

/* PC表示では明示的に2列。カードが4枚のときに 2列×2行 で美しく整列する。
   ※旧 repeat(auto-fit, minmax(320px, 1fr)) では内寸1052pxに3列（320*3+32*2=1024px）が
     収まってしまい、4枚目だけが2行目に取り残されるため固定2列に変更。 */
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 100px;
  align-items: stretch; /* 文量が違っても各行のカード高さを揃える */
}
.french-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB; /* 極薄の境界線 */
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s ease;
}
.french-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
  border-color: #D1D5DB;
}
.french-card h3 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 16px;
}
.french-card p {
  font-size: 15px;
  color: #4B5563;
  margin: 0;
}

/* ==========================================================================
   資料スライドショー（CSS @keyframes のみ・外部ライブラリ不使用）
   カード内の説明文の直下に置き、8枚の資料を自動でクロスフェード再生する。
   1周の長さは inline style の --a11-slide-cycle（枚数 × 4秒）で受け取る。
   ========================================================================== */
.a11-slideshow {
  position: relative;
  margin-top: 24px;
  /* 画像の実寸 2867 × 1600 と同じ比率を先に確保し、読み込み時のガタつきを防ぐ */
  aspect-ratio: 2867 / 1600;
  overflow: hidden;
  border: 1px solid #E5E7EB; /* 極細の枠線でカード本体とトーンを揃える */
  border-radius: 8px;
  background-color: #FFFFFF;
}
.a11-slideshow__item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 元画像と同比率のため実質トリミングは発生しない */
  display: block;
  opacity: 0;
  animation-name: a11-slide-fade;
  animation-duration: var(--a11-slide-cycle, 32s);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; /* 自動ループ */
  animation-fill-mode: both;
  will-change: opacity;
}

/* 1周を枚数（8枚）で割った 12.5% を1枚の持ち時間とし、
   その前後をフェードに充てることでクロスフェードになる。 */
@keyframes a11-slide-fade {
  0% {
    opacity: 0;
  }
  1.5% {
    opacity: 1;
  }
  11% {
    opacity: 1;
  }
  12.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* アニメーションを望まないユーザーには1枚目のみを静止表示する */
@media (prefers-reduced-motion: reduce) {
  .a11-slideshow__item {
    animation: none;
    opacity: 0;
  }
  .a11-slideshow__item:first-child {
    opacity: 1;
  }
}

/* ==========================================================================
   スタック・ビジュアル（2枚の画像を少しズラして重ね、ゆっくり浮遊させる）
   カード内の説明文の直下に置く。外部ライブラリ・JS は不使用。

   ・背面画像（--base）はフロー内に残し、親要素の高さの基準にする。
   ・前面画像（--front）は右下へ absolute でオフセット配置する。
     はみ出す分は親の padding-right / padding-bottom で先に確保しているため、
     カードから溢れたり横スクロールが発生することはない。
   ・ズラし量（--a11-stack-offset）と前面画像の幅は clamp / % 指定なので、
     スマートフォンでも比率を保ったまま縮小する。
   ========================================================================== */
.a11-stack {
  --a11-stack-offset: clamp(14px, 3.2vw, 32px); /* 右下へのズラし量 */
  --a11-stack-front-width: 58%;                 /* 前面画像の幅（親基準） */
  position: relative;
  width: 100%;
  max-width: 480px; /* カード内寸（約430px）に収まるサイズ。中央寄せで余白を均す */
  margin: 24px auto 0;
  padding: 0 var(--a11-stack-offset) var(--a11-stack-offset) 0;
  box-sizing: border-box;
}
.a11-stack__img {
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box; /* border を含めた幅で計算し、はみ出しを防ぐ */
  /* 画像の実寸 2816 × 1536 と同比率を先に確保し、読み込み時のガタつきを防ぐ */
  aspect-ratio: 2816 / 1536;
  object-fit: cover;
  border-radius: 12px;
  background-color: #FFFFFF;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; /* ゆっくり浮遊し続ける */
  will-change: transform;
}
/* 背面（1枚目）：4秒周期 */
.a11-stack__img--base {
  position: relative;
  z-index: 1;
  border: 1px solid #E5E7EB; /* 極細の枠線でカード本体とトーンを揃える */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  animation-name: a11-stack-float-base;
  animation-duration: 4s;
}
/* 前面（2枚目）：5秒周期＋開始タイミングをズラして奥行きを強調 */
.a11-stack__img--front {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: var(--a11-stack-front-width);
  border: 3px solid #FFFFFF; /* 白フチで背面画像から浮かせる */
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16); /* 影を強めて手前に見せる */
  animation-name: a11-stack-float-front;
  animation-duration: 5s;
  animation-delay: -1.6s; /* 負の遅延で、読み込み直後から位相をズラした状態にする */
}

@keyframes a11-stack-float-base {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}
@keyframes a11-stack-float-front {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(-0.4deg);
  }
}

/* スマートフォン：ズラし量を控えめにし、前面画像を少し大きく見せる */
@media screen and (max-width: 600px) {
  .a11-stack {
    --a11-stack-offset: 12px;
    --a11-stack-front-width: 64%;
    max-width: 100%;
    margin-top: 20px;
  }
}

/* アニメーションを望まないユーザーには静止した重ね表示のみを見せる */
@media (prefers-reduced-motion: reduce) {
  .a11-stack__img {
    animation: none;
  }
}

/* 独自システム紹介エリア（少し背景色を変えてメリハリを） */
.system-showcase {
  background-color: #FAFAFA;
  padding: 80px 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}
/* showcase 内は上下の余白を padding 側で持つため見出しの上マージンを打ち消す */
.system-showcase .section-title {
  margin-top: 0;
}
.system-showcase .grid {
  margin-bottom: 0;
}

/* ==========================================================================
   自治体標準化（Local Government Standardization）
   Apple の製品紹介ページのような縦スクロール体験を CSS だけで構成する。

   ・PC：左カラム（見出し・リード文・資料スライドショー）を position: sticky で
     画面左に留め、右カラムのステップカードだけがスクロールしていく。
   ・900px 未満：sticky と2カラムを解除し、タイトル → 各カードの縦一列に戻す。
   ・JavaScript は使わない（テーマ全体がスクリプト非依存のため）。
   ========================================================================== */
.a11-gov {
  /* 直前の .grid が margin-bottom: 100px を持つため、上余白は持たせない */
  padding: 0 0 100px;
  scroll-margin-top: 40px; /* #local-government-standardization へのジャンプ時の余白 */
}
.a11-gov__inner {
  display: grid;
  /* 左：見出し／右：ステップ。右をやや広く取り、本文の1行が長くなりすぎないようにする */
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start; /* カラムを引き伸ばさない（sticky を効かせるための前提） */
}

/* 左カラム（固定）
   このテーマのヘッダーは position: fixed ではないが、
   画面上端に張り付かせず余裕を持たせるため top: 120px で留める。 */
.a11-gov__aside {
  position: sticky;
  top: 120px;
  align-self: start;
}
/* .section-title の上下マージン（80px / 40px）はここでは不要なので打ち消す */
.a11-gov__title {
  margin: 0;
  font-size: 34px;
}
.a11-gov__en {
  margin: 12px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #9CA3AF;
  text-transform: uppercase;
}
.a11-gov__lead {
  margin: 24px 0 0;
  font-size: 15px;
  color: #4B5563;
}
.a11-gov__lead strong {
  font-weight: 700;
  color: #111827;
}
/* 左カラム内の資料スライドショー（.a11-slideshow は既存の共通パーツ） */
.a11-gov__aside .a11-slideshow {
  margin-top: 32px;
}
.a11-gov__link {
  display: inline-block;
  margin-top: 28px;
}

/* 右カラム（スクロール）：カードを縦一列に並べる */
.a11-gov__card {
  background-color: #FFFFFF;
  border: 1px solid #e5e7eb; /* 極細のボーダー */
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px; /* カード間の余白。スクロール時に窮屈にならない間隔 */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.a11-gov__card:last-child {
  margin-bottom: 0;
}

/* 上品な浮き上がり。タッチ端末ではホバー状態が残るため、
   マウス等のホバー可能なポインタにのみ適用する。 */
@media (hover: hover) {
  .a11-gov__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    border-color: #D1D5DB;
  }
}

/* ステップ番号（赤の小さなラベル ＋ 明朝体の数字） */
.a11-gov__step {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 16px;
}
.a11-gov__step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #D90429;
}
.a11-gov__step-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: #111827;
}
.a11-gov__card-title {
  font-size: 22px;
  margin: 0 0 16px;
}
.a11-gov__card-text {
  font-size: 15px;
  color: #4B5563;
  margin: 0;
}
/* 各ステップの要点。細い罫線で本文と区切る */
.a11-gov__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #F3F4F6;
}
.a11-gov__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #4B5563;
}
.a11-gov__list li + li {
  margin-top: 8px;
}
.a11-gov__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background-color: #D90429;
  border-radius: 1px; /* .red-dot と同じシャープな四角形 */
}

/* アニメーションを望まないユーザーには移動を伴う演出を行わない */
@media (prefers-reduced-motion: reduce) {
  .a11-gov__card {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .a11-gov__card:hover {
    transform: none;
  }
}

/* ==========================================================================
   ボタン
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #FFFFFF;
  color: #111827;
  border: 1px solid #111827;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #D90429;
  border-color: #D90429;
  color: #FFFFFF;
}

/* ==========================================================================
   About Us への導線（トップページ下部のバンド）
   .grid の margin-bottom: 100px を受けるため上余白は持たせない。
   ========================================================================== */
.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px;
  margin-bottom: 100px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: linear-gradient(145deg, #FAFAFA, #FFFFFF);
}
.about-cta__body {
  flex: 1 1 420px;
  min-width: 0;
}
.about-cta__title {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 12px;
}
.about-cta__text {
  font-size: 15px;
  color: #4B5563;
  margin: 0;
}
.about-cta .btn {
  flex: 0 0 auto;
}

/* ==========================================================================
   代表プロフィール＋会社概要（page-about.php / Company Profile）
   PC：左に顔写真（180px 固定）／右に概要テーブル（可変）の2カラム。
   901px 未満では下部のメディアクエリで「写真が上・テーブルが下」に縦積みする。
   ========================================================================== */
.a11-profile {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  margin-bottom: 120px;
}
.a11-profile__figure {
  flex: 0 0 180px;
  margin: 0;
}
/* 極細ボーダー＋控えめな角丸のみ。影やリングなどの過度な装飾は入れない。 */
.a11-profile__img {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  background-color: #FFFFFF;
}
.a11-profile__caption {
  margin-top: 16px;
}
.a11-profile__role {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #D90429;
}
.a11-profile__name {
  display: block;
  margin-top: 8px;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}
/* 概要テーブル：<table> ではなく <dl> の Flexbox で組み、
   狭い画面では見出し（dt）と内容（dd）が自然に上下へ折り返る。 */
.a11-profile__table {
  flex: 1 1 auto;
  min-width: 0;
  border-top: 1px solid #E5E7EB;
}
.a11-profile__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid #E5E7EB;
}
.a11-profile__row dt {
  flex: 0 0 160px;
  font-weight: 700;
  color: #111827;
}
.a11-profile__row dd {
  flex: 1 1 220px;
  margin: 0;
  color: #4B5563;
}

/* ==========================================================================
   投稿・固定ページ本文（管理画面から編集した文章の受け皿）
   ========================================================================== */
.entry {
  padding: 80px 0 100px; /* ヘッダー追加に合わせて上余白を調整（旧 120px） */
}
.entry-title {
  font-size: 40px;
  line-height: 1.4;
  margin: 0 0 32px;
}
.entry-content p {
  font-size: 16px;
  color: #374151;
}
.entry-content a {
  color: #D90429;
}
.entry-content h2 {
  font-size: 28px;
  margin: 64px 0 24px;
}
.entry-content h3 {
  font-size: 22px;
  margin: 40px 0 16px;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-list {
  padding: 80px 0 60px; /* ヘッダー追加に合わせて上余白を調整（旧 120px） */
}

/* ==========================================================================
   フッター
   ========================================================================== */
footer.site-footer {
  padding: 60px 0;
  border-top: 1px solid #E5E7EB;
  font-size: 14px;
  color: #6B7280;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.site-footer a {
  color: #6B7280;
  text-decoration: none;
}
.site-footer a:hover {
  color: #D90429;
}
.site-footer__tagline {
  display: block;
  margin-top: 12px;
  color: #6B7280;
}
.site-nav__list--footer {
  gap: 24px;
}
.site-nav__list--footer a {
  font-size: 13px;
  color: #6B7280;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media screen and (max-width: 900px) {
  /* スマホではロゴを一段小さくし（140px → 実高さ約93px）、
     画面上部をロゴだけで占有しないようにする */
  header.site-header {
    padding: 20px 0 0;
  }
  .site-logo img {
    max-width: 140px;
  }
  .hero {
    flex-direction: column;
    padding: 48px 0 72px;
  }
  .entry,
  .entry-list {
    padding-top: 48px;
  }
  .hero-text,
  .hero-visual {
    width: 100%;
  }
  .hero h1 {
    font-size: 36px;
  }
  .grid {
    grid-template-columns: 1fr; /* タブレット・スマホは1列 */
    gap: 24px;
  }
  .section-title {
    font-size: 26px;
    margin: 56px 0 32px;
  }
  .french-card {
    padding: 32px 24px;
  }
  .entry-title {
    font-size: 30px;
  }
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* ヘッダーはロゴとナビを縦積みにせず、ロゴ左・ナビ右のまま詰める。
     項目が増えた場合は .site-nav__list の flex-wrap で自然に折り返る。 */
  .site-header__inner {
    gap: 16px;
  }
  .site-nav__list {
    gap: 20px;
    justify-content: flex-end;
  }
  .site-nav__list a {
    font-size: 13px;
  }

  .about-cta {
    padding: 32px 24px;
    gap: 24px;
  }
  .about-cta__title {
    font-size: 20px;
  }

  /* 自治体標準化：2カラムと sticky 固定を解除し、
     「タイトル・リード文 → 各ステップカード」の素直な縦一列に戻す。 */
  .a11-gov {
    padding-bottom: 72px;
  }
  .a11-gov__inner {
    grid-template-columns: 1fr; /* 1カラムへフォールバック */
    gap: 32px;
  }
  .a11-gov__aside {
    position: static; /* sticky 解除。以降は通常のフローで一緒にスクロールする */
    top: auto;
  }
  .a11-gov__title {
    font-size: 26px;
  }
  .a11-gov__aside .a11-slideshow {
    margin-top: 24px;
  }
  .a11-gov__link {
    margin-top: 20px;
  }
  .a11-gov__card {
    padding: 32px 24px;
    margin-bottom: 24px;
  }
  .a11-gov__step-num {
    font-size: 22px;
  }
  .a11-gov__card-title {
    font-size: 20px;
  }

  /* Company Profile：写真が上・テーブルが下の縦積みに切り替える */
  .a11-profile {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
  }
  .a11-profile__figure {
    flex: 0 0 auto;
  }
  .a11-profile__table {
    width: 100%;
  }
  .a11-profile__row {
    padding: 20px 0;
  }
  .a11-profile__row dt {
    flex: 0 0 100%;
    margin-bottom: 6px;
  }
  .a11-profile__row dd {
    flex: 0 0 100%;
  }
}

/* WordPress 標準の必須クラス（管理画面から画像を挿入した際の見た目崩れ防止） */
.alignleft {
  float: left;
  margin: 0 24px 16px 0;
}
.alignright {
  float: right;
  margin: 0 0 16px 24px;
}
.aligncenter {
  display: block;
  margin: 0 auto 16px;
}
.wp-caption-text {
  font-size: 13px;
  color: #6B7280;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
