@charset "UTF-8";
/* 1. ボックスモデルの定義：paddingやborderを幅に含める */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. デフォルトの余白をリセット */
* {
  margin: 0;
  padding: 0;
}

/* 3. 本文のセットアップ：スクロールを滑らかにし、ベースの行間を整える */
html {
  color-scheme: light dark; /* ダークモード対応 */
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* フォントを綺麗に見せる（mac/iOS用） */
  text-rendering: optimizeSpeed;
}

/* 4. 画像やメディア要素の扱い：親要素からはみ出さないようにする */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 5. フォーム要素のフォント継承：inputやbuttonが独自のフォントにならないように */
input, button, textarea, select {
  font: inherit;
}

/* 6. テキストエリアのサイズ調整を縦方向のみに制限 */
textarea {
  resize: vertical;
}

/* 7. リストの記号を消す（必要に応じて） */
ul, ol {
  list-style: none;
}

/* 8. アニメーションを好まないユーザーへの配慮（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  /* ウェイトの定義 */
  --weight-normal: 400;
  --weight-bold: 700;
  --font-main: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --header-height-pc: 110px;
  --header-height-sticky: 80px;
  --header-height-sp: 60px;
  --transition: 0.3s ease;
  /* color */
  --primary-blue: #4fa9d6;
  --primary-dark: #358bb5;
  --primary-yellow:#F8E169;
  --text-main: #000000;
  --text-sub: #666;
  --bg-top: #f4f4f4;
  /* Fluid Typography: 16px */
  --fz-base: 1rem;
  --inner-width: 1200px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  font-family: var(--font-family-base);
  color: var(--color-text);
  font-size: var(--fz-base);
  font-size-adjust: 0.51;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.is-block {
  display: block !important;
}

.is-inline {
  display: inline !important;
}

.is-inline-block {
  display: inline-block !important;
}

.is-none {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .is-mobile-block {
    display: block !important;
  }
  .is-mobile-inline {
    display: inline !important;
  }
  .is-mobile-inline-block {
    display: inline-block !important;
  }
  .is-mobile-none {
    display: none !important;
  }
}
@media screen and (min-width: 576px) {
  .is-fablet-block {
    display: block !important;
  }
  .is-fablet-inline {
    display: inline !important;
  }
  .is-fablet-inline-block {
    display: inline-block !important;
  }
  .is-fablet-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-tablet-block {
    display: block !important;
  }
  .is-tablet-inline {
    display: inline !important;
  }
  .is-tablet-inline-block {
    display: inline-block !important;
  }
  .is-tablet-none {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-desktop-block {
    display: block !important;
  }
  .is-desktop-inline {
    display: inline !important;
  }
  .is-desktop-inline-block {
    display: inline-block !important;
  }
  .is-desktop-none {
    display: none !important;
  }
}
@media screen and (min-width: 1400px) {
  .is-wide-block {
    display: block !important;
  }
  .is-wide-inline {
    display: inline !important;
  }
  .is-wide-inline-block {
    display: inline-block !important;
  }
  .is-wide-none {
    display: none !important;
  }
}
/* ==========================================================================
  Variables (CSS変数)
========================================================================== */
:root {
  --header-height: 108px;
  --top-bar-height: 40px;
  --main-bar-height: calc(var(--header-height) - var(--top-bar-height));
}

/* --- Base (全体調整) --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* --- Layout Structure --- */
.l-header {
  width: 100%;
  height: var(--header-height);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.l-header__inner {
  width: 100%;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

/* --- Header Top (スローガン・検索・サブナビ) --- */
.l-header__top {
  height: var(--top-bar-height);
  background-color: var(--bg-top);
  font-size: 12px;
  color: var(--text-sub);
}

.header-slogan {
  font-weight: 600;
}

.header-sub-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-sub-links a {
  font-size: 1.2em;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
  color: var(--text-main);
}

.header-sub-links a i {
  color: var(--text-main);
  font-size: 2.5em;
}

.header-sub-links a:hover {
  color: var(--primary-blue);
}

.search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 4px 30px 4px 10px;
  margin-left: 0;
  position: relative;
}

.search-form input {
  border: none;
  outline: none;
  padding: 2px;
  width: 180px;
  font-size: 11px;
}

.search-form button {
  background: var(--primary-blue);
  border: none;
  width: 32px;
  height: 28px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
  position: absolute;
  right: 0;
}

.search-form button i {
  color: #fff;
  font-size: 16px;
}

.search-form button:hover {
  background-color: var(--primary-dark);
}

/* --- Header Main (ロゴ・ナビ) --- */
.l-header__main {
  height: var(--main-bar-height);
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 48px;
  width: auto;
  vertical-align: middle;
}

.header-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

/* --- ドロップダウンメニューの追加設定 --- */
/* 親となるli要素 */
.nav-item {
  position: relative; /* 子メニューの基準点 */
  height: var(--main-bar-height); /* 親要素の高さいっぱいに広げてhover判定を安定させる */
  display: flex;
  align-items: center;
}

/* 子メニュー（ul）の初期状態 */
.nav-item ul {
  position: absolute;
  top: 100%; /* 親の直下に配置 */
  left: 50%;
  transform: translateX(-50%) translateY(10px); /* 中央揃え & 少し下にずらす */
  width: 200px; /* メニューの横幅 */
  background-color: #fff;
  list-style: none;
  padding: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  border-top: solid 3px var(--primary-blue);
}

/* hover時の表示 */
.nav-item:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 1023px) {
  .nav-item:hover > ul {
    transform: translateX(0) translateY(0);
  }
}

/* 子メニュー内のliとa */
.nav-item ul li {
  width: 100%;
}

.nav-item ul li a {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  display: block;
  transition: background-color 0.3s, color 0.3s;
  gap: 0; /* アイコンがないのでリセット */
}

/* 子メニューのホバー時 */
.nav-item ul li a:hover {
  background-color: #f9f9f1; /* テーブル等で使った淡いベージュをアクセントに */
  color: var(--primary-blue);
}

/* 親メニューの矢印アニメーション調整 */
.nav-item.has-child:hover > a i {
  transform: rotate(180deg); /* 180度回転させて「開いている」感を出す */
}

.nav-item a {
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.nav-item a i {
  font-size: 16x;
  margin-top: 2px;
  transition: transform 0.3s;
}

.nav-item a:hover {
  color: var(--primary-dark);
}

.nav-item a:hover i {
  transform: translateY(2px);
}

/* --- Contact Button (ここを修正: 高さ40px) --- */
.header-contact {
  margin-left: 32px;
}

.btn-tel {
  background-color: var(--primary-blue);
  color: #fff;
  text-decoration: none;
  padding: 0 20px; /* 高さに合わせて左右パディングを微調整 */
  height: 40px; /* ご指定の高さ */
  border-radius: 20px; /* カプセル型を維持 */
  font-weight: 700;
  font-size: 16px; /* 18pxから16pxへ落として視認性を確保 */
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 3px 8px rgba(79, 169, 214, 0.2);
}

.btn-tel i {
  font-size: 1em;
}

.btn-tel:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px); /* 高さが低いので、浮き幅も少し抑えると上品です */
  box-shadow: 0 5px 12px rgba(79, 169, 214, 0.3);
}

/* ==========================================================================
Mobile Styles (max-width: 1023px)
   ========================================================================== */
@media screen and (max-width: 1023px) {
  :root {
    --header-height: 70px; /* スマホ用に高さをコンパクトに */
  }
  /* --- Layout Adjustments --- */
  .l-header__top {
    display: none; /* スマホではサブ情報を隠すのが一般的 */
  }
  .l-header__inner {
    padding: 0 20px;
    justify-content: space-between;
  }
  .l-header__main {
    height: var(--header-height);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-logo img {
    height: 36px; /* ロゴを少し小さく */
  }
  /* 電話ボタンをロゴの横に残す場合（任意） */
  .header-contact {
    margin-left: auto;
    margin-right: 15px;
  }
  .btn-tel span {
    display: none; /* テキストを消してアイコンのみにする等 */
  }
  /* --- Hamburger Button --- */
  .menu-trigger {
    position: relative;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
  }
  .menu-trigger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-blue);
    transition: all 0.4s;
  }
  .menu-trigger span:nth-child(1) {
    top: 0;
  }
  .menu-trigger span:nth-child(2) {
    top: 11px;
  }
  .menu-trigger span:nth-child(3) {
    bottom: 0;
  }
  /* Open state for Hamburger */
  .menu-trigger.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
  }
  .menu-trigger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .menu-trigger.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(45deg);
  }
  /* --- Mobile Navigation --- */
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    padding: 100px 40px;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 150;
    overflow-y: auto;
  }
  .header-nav.is-active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: 0;
  }
  .nav-item {
    height: auto;
    border-bottom: 1px solid #eee;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-item a {
    padding: 20px 0;
    width: 100%;
    justify-content: space-between;
  }
  /* スマホではドロップダウンを最初からバラす、もしくはアコーディオンにする */
  .nav-item ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    width: 100%;
    border-top: none;
    padding-left: 20px;
    background-color: #f9f9f9;
    display: none;
    overflow: hidden;
  }
  .nav-item.is-open ul {
    display: block;
  }
  .nav-item.is-open > a i {
    transform: rotate(180deg);
  }
  .nav-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .header-contact {
    margin-left: 0;
    margin-right: 0;
    position: absolute;
    right: 80px;
  }
  .btn-tel {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .btn-tel span {
    display: none;
  }
  .btn-tel i {
    font-size: 20px;
    margin: 0;
  }
}
/* ==========================================================================
  ページビジュアル
   ========================================================================== */
.page-mv-common {
  padding: 210px 0 100px;
}
@media screen and (max-width: 767px) {
  .page-mv-common {
    padding: 100px 25px 25px;
  }
}
.page-mv-common h1 {
  text-align: right;
  font-size: 88px;
  color: var(--color-primary);
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .page-mv-common h1 {
    font-size: 32px;
  }
}
.page-mv-common .page-icon {
  width: 169px;
  height: 169px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .page-mv-common .page-icon {
    width: 50px;
    height: 50px;
  }
}

/* レイアウトのベースとなるセクション */
.l-page-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background-color: #f7e06a;
  min-height: 250px;
  text-align: center;
}

/* ページタイトル */
.page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .page-title {
    font-size: 28px;
  }
}

/* Font Awesome アイコン部分 */
.page-title i {
  font-size: 55px;
  color: #404040;
}

/* ==========================================================================
パンくず
========================================================================== */
.pankuzu-list {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.pankuzu-list li {
  color: #606060;
}

.pankuzu-list li:not(:last-child)::after {
  /* Font Awesomeの指定 */
  font-family: "Font Awesome 6 Free";
  content: "\f054";
  font-weight: 900;
  margin: 0 10px;
  font-size: 12px;
  color: var(--color-text);
  display: inline-block;
  vertical-align: middle;
}

.pankuzu-list li a {
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.3s;
}
.pankuzu-list li a i {
  font-size: 20px;
}

.pankuzu-list li a:hover {
  opacity: 0.7;
}

/* ==========================================================================
ヘッドライン
========================================================================== */
.headline2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .headline2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.headline2::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background-color: #539dcc; /* デザイン画像に基づいたブルー */
  border-radius: 50%; /* 正方形を丸くする */
}

.headline2 span {
  font-size: 16px;
  position: relative;
  top: 4px;
}

.headline3 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #539dcc; /* デザインに基づいたブルー */
  padding-bottom: 15px; /* 線とテキストの間隔 */
  margin-bottom: 30px; /* 下のコンテンツとの余白 */
  border-bottom: 1px solid #e0e0e0; /* 全幅に広がる薄いグレーの線 */
}
.headline3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px; /* 親要素の border-bottom と重ねる */
  width: 100px; /* アクセント線の長さ（デザインに合わせて調整） */
  height: 2px; /* アクセント線の太さ */
  background-color: #539dcc; /* テキストと同色のブルー */
}
@media screen and (max-width: 1023px) {
  .headline3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/* ==========================================================================
コンテンツ
   ========================================================================== */
.inner {
  width: 100%;
  max-width: var(--inner-width);
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: auto;
  }
}

/* ==========================================================================
全体レイアウト
========================================================================== */
.l-container {
  display: flex;
  gap: 70px;
  max-width: var(--inner-width);
  margin: 40px auto 0;
  padding: 0 20px 40px;
  justify-content: space-around;
}
@media screen and (max-width: 1023px) {
  .l-container {
    display: block;
  }
}

/* メインコンテンツエリア */
.l-main {
  flex-grow: 1;
  order: 2;
  padding: 30px 0;
}

/* 50-50コンテナ */
.image-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .image-container {
    display: block;
  }
}

.image-container-content {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .image-container-content {
    width: 100%;
    margin-bottom: 20px;
  }
}

.image-container-image {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .image-container-image {
    width: 100%;
  }
}

/* 70-30コンテナ */
.grid {
  display: flex;
}

.is-space-between {
  justify-content: space-between;
}

/* ベースのグリッド設定 */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  width: 100%;
}
.grid h2 {
  margin-bottom: 20px;
}
.grid h3 {
  margin-bottom: 20px;
}

.column {
  grid-column: span 12; /* デフォルトは全幅 */
}

/* PC用：12スパンまでのループ */
.is-1 {
  grid-column: span 1;
}

.is-2 {
  grid-column: span 2;
}

.is-3 {
  grid-column: span 3;
}

.is-4 {
  grid-column: span 4;
}

.is-5 {
  grid-column: span 5;
}

.is-6 {
  grid-column: span 6;
}

.is-7 {
  grid-column: span 7;
}

.is-8 {
  grid-column: span 8;
}

.is-9 {
  grid-column: span 9;
}

.is-10 {
  grid-column: span 10;
}

.is-11 {
  grid-column: span 11;
}

.is-12 {
  grid-column: span 12;
}

/* モバイル専用クラス */
@media screen and (max-width: 767px) {
  /* PCで.is-6等をつけていても、モバイルでは全幅を基本にするためのリセット */
  .column {
    grid-column: span 12;
  }
  /* 明示的に指定された場合のみ上書き */
  .is-mobile-6 {
    grid-column: span 6 !important; /* 強制的に半分に */
  }
  .is-mobile-12 {
    grid-column: span 12 !important; /* 強制的に全幅に */
  }
}
.is-color-blue {
  color: var(--primary-blue);
}

/* ==========================================================================
テーブル
========================================================================== */
.table-container {
  width: 100%;
  overflow-x: auto; /* モバイルで表がはみ出すのを防ぐ */
  margin: 40px 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse; /* 境界線を重ねる */
  border: 1px solid #ddd;
  font-size: 1rem;
  background-color: #fff;
}
.data-table th, .data-table td {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}
.data-table {
  /* ヘッダーおよび1列目の背景色 */
}
.data-table thead th,
.data-table tbody th {
  background-color: #fcf9ee; /* 共通のクリーム色 */
  font-weight: bold;
  color: #000;
}
.data-table {
  /* 本文のデータセル */
}
.data-table tbody td {
  color: #333;
}
@media screen and (max-width: 767px) {
  .data-table {
    font-size: 0.9rem;
  }
  .data-table th, .data-table td {
    padding: 12px 8px; /* モバイルでは余白をタイトに */
  }
}

/* ==========================================================================
サイドメニューエリア
========================================================================== */
.l-sidebar {
  width: 200px;
  flex-shrink: 0;
  order: 1;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .l-sidebar {
    width: 100%;
  }
}

.side-menu {
  position: relative;
  padding: 40px 20px 40px 0;
  border-top: 2px solid #f7e06a;
  border-right: 2px solid #f7e06a;
  border-top-right-radius: 60px;
  /* Stickyの実装 */
  position: -webkit-sticky; /* Safari対応 */
  position: sticky;
  /* 上端からの位置指定 */
  /* ヘッダーの高さ(108px) + 余白(20px) = 128px */
  top: calc(var(--header-height) + 20px);
}

.side-menu__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.side-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu__list li {
  margin-bottom: 15px;
}

.side-menu__list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
  color: #333;
  transition: color 0.3s;
}

/* 矢印アイコンを擬似要素で追加 */
.side-menu__list li a::before {
  content: "\f105"; /* Angle Right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 12px;
  color: #ccc;
}

/* アクティブ（現在地）のスタイル */
.side-menu__list li a:hover,
.side-menu__list li.is-active a {
  color: #539dcc;
  font-weight: bold;
}

.side-menu__list li.is-active a::before {
  color: #539dcc;
}

/* ==========================================================================
リスト
   ========================================================================== */
.disc-list {
  list-style: none; /* デフォルトの黒丸を非表示 */
  padding: 0;
  margin: 30px 0;
}

.disc-list li {
  position: relative;
  padding-left: 25px; /* ドットのスペースを確保 */
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* 青いドット（●）の再現 */
.disc-list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.7em;
  width: 7px;
  height: 7px;
  background-color: #539dcc; /* デザインに基づいたブルー */
  border-radius: 50%;
}

.disc-list li:last-child {
  margin-bottom: 0;
}

.disc-list.is-small li {
  padding-left: 25px;
  margin-bottom: 5px;
  font-size: 16px;
}

.disc-list.is-small li::before {
  width: 7px;
  height: 7px;
}

/* スマホ表示 */
@media (max-width: 768px) {
  .disc-list li {
    font-size: 15px;
    padding-left: 40px;
  }
}
/* リストカラム */
.report-list {
  display: flex;
  flex-wrap: wrap;
}
.report-list li {
  padding: 0 5px;
  margin-bottom: 20px;
  border-bottom: #ddd solid 1px;
}
.report-list li a {
  display: block;
  color: var(--color-text);
  padding: 10px 0;
  text-decoration: underline;
}

.report-list li a:hover {
  text-decoration: none;
}

.report-list li a i {
  font-size: 24px;
}

.report-list li span {
  display: inline-block;
  border: #4fa9d6 solid 1px;
  color: #4fa9d6;
  padding: 1px 3px 0;
  margin: 0 0 0 10px;
  font-size: 13px;
  list-style: 1;
  position: relative;
  top: -1px;
}

.report-list.is-column-4 {
  gap: 5%;
}
.report-list.is-column-4 li {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .report-list.is-column-4 li {
    width: 45%;
  }
}

.report-list.is-column-3 {
  gap: 5%;
}
.report-list.is-column-3 li {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .report-list.is-column-3 li {
    width: 100%;
  }
}

.report-list.is-column-2 {
  gap: 5%;
}
.report-list.is-column-2 li {
  width: 45%;
}

/* ==========================================================================
マージン
   ========================================================================== */
.is-end-block {
  margin-bottom: 100px !important;
}

@media screen and (max-width: 767px) {
  .is-end-block {
    margin-bottom: 50px !important;
  }
}
.is-mb-10 {
  margin-bottom: 10px !important;
}

.is-mb-20 {
  margin-bottom: 20px !important;
}

.is-mb-40 {
  margin-bottom: 40px !important;
}

.is-mb-60 {
  margin-bottom: 60px !important;
}

.is-align-left {
  text-align: left !important;
}

.is-align-center {
  text-align: center !important;
}

/* ==========================================================================
バナー
   ========================================================================== */
.banner-wrap {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .banner-wrap {
    padding: 30px 0;
  }
}

.banner-cta {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--primary-yellow);
  border-radius: 20px;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.banner-cta:hover {
  opacity: 0.9;
}

.banner-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px 0 20px;
  height: 160px; /* イラストの高さに合わせて調整 */
}

/* 左側：イラストエリア */
.banner-cta__illust {
  height: 100%;
  display: flex;
  align-items: flex-end; /* イラストを下に沈める */
}

.banner-cta__illust img {
  height: 90%; /* 少し余裕を持たせる */
  width: auto;
  vertical-align: bottom;
}

/* 右側：テキストとアイコン */
.banner-cta__content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-cta__text {
  font-size: 24px;
  font-weight: bold;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}

/* 円形の矢印アイコン */
.banner-cta__icon {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* ホバー時に矢印を少し右に動かす */
.banner-cta:hover .banner-cta__icon {
  transform: translateX(8px);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .banner-cta__inner {
    flex-direction: column;
    height: auto;
    padding: 30px 20px;
    text-align: center;
  }
  .banner-cta__illust {
    margin-bottom: 20px;
  }
  .banner-cta__text {
    font-size: 24px;
  }
  .banner-cta__content {
    gap: 15px;
  }
}
/* ==========================================================================
ボタン
========================================================================== */
/* 外部リンク */
.survey-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #59a9d4;
  font-weight: bold;
}
.survey-link span {
  text-decoration: underline;
}
.survey-link i {
  display: inline-block;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-style: normal;
  text-decoration: none !important;
  transform: rotate(45deg);
}

.survey-link:hover span {
  text-decoration: none;
}

/* 一覧へ / もっと見る */
.btn-more {
  display: inline-block;
  background: var(--primary-blue);
  color: #fff;
  padding: 7px 60px 7px 50px;
  border-radius: 30px;
  position: relative;
  top: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-more i {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-more:hover {
  background: var(--primary-dark);
  top: -5px;
}

.btn-more.is-back i {
  right: 85%;
  top: 50%;
}

.btn-more-wrap {
  width: 100%;
  margin: 60px auto 0;
}

.btn-more-wrap.is-center {
  text-align: center;
}

/* ==========================================================================
//検索結果
========================================================================== */
.search-container {
  padding: 40px 0;
  background-color: #FBFBEF;
}

.search-list li a {
  display: block;
  border-bottom: #ddd solid 1px;
  margin-bottom: 30px;
  padding: 10px 0;
}

.search-result-count {
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .search-result-count {
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 16px;
  }
}

.search-no-result {
  text-align: center;
  padding: 50px 0;
}

/* ページネーション全体のコンテナ */
ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  gap: 15px; /* 数字同士の間隔 */
  font-family: sans-serif;
}

ul.page-numbers li {
  margin: 0;
}

/* ==========================================================================
//ページネーション
========================================================================== */
/* --- PC/スマホ共通のベース --- */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding-bottom: 60px;
}

/* PC用の数字リスト（前回のスタイルを継承） */
ul.page-numbers {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  gap: 10px;
}

/* スマホ用の「1 / 5」テキスト（デフォルトは非表示） */
.pagination-sp {
  display: none;
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
}

/* --- スマートフォン用設定 (767px以下) --- */
@media screen and (max-width: 767px) {
  /* 通常の数字ボタンと点々を隠す */
  ul.page-numbers li:not(:first-child):not(:last-child) {
    display: none;
  }
  /* 「1 / 5」を表示 */
  .pagination-sp {
    display: block;
  }
  /* 前後ボタンはそのまま表示 */
  ul.page-numbers a.prev,
  ul.page-numbers a.next {
    width: 40px;
    height: 40px;
  }
}
/* --- 前回のスタイル（再掲・微調整） --- */
ul.page-numbers a,
ul.page-numbers span {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: 0.3s;
  color: #333;
}

/* 矢印（通常：黄 / ホバー：水色） */
ul.page-numbers a.prev,
ul.page-numbers a.next {
  background-color: #f7d46f;
}

ul.page-numbers a.prev:hover,
ul.page-numbers a.next:hover {
  background-color: #58a9d3;
  color: #fff;
}

/* 数字（ホバー・カレント：水色） */
ul.page-numbers a.page-numbers:hover,
ul.page-numbers span.current {
  background-color: #58a9d3;
  color: #fff;
}

/* --- Banner Section Layout --- */
.l-banner-section {
  background-color: #f9f9f5; /* 画像の背景色に近い薄いベージュ */
  padding: 60px 0;
}

.l-banner-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 40px; /* ヘッダーの余白と統一 */
}

/* CSS Gridを使用して5列（または4列）のグリッドを作成 */
.banner-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 基本5列 */
  gap: 20px;
  list-style: none;
}

/* 最初のバナー（cmap）を大きく扱う場合（2行×1列など） */
.banner-item--large {
  grid-row: span 2;
  grid-column: span 1;
}

.banner-item a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像の比率を保ちつつ枠を埋める */
  display: block;
}

/* --- Motion Graphics (ホバーエフェクト) --- */
.banner-item a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* スマホ・タブレット対応の予兆（レスポンシブ） */
@media (max-width: 1024px) {
  .banner-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .banner-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* --- Footer Variables --- */
:root {
  --footer-bg: #fff;
  --footer-border: #e0e0e0;
  --accent-yellow: #f8e16c; /* PageTopボタン用 */
}

.l-footer {
  background-color: var(--footer-bg);
  padding: 80px 0 40px;
  border-top: 1px solid var(--footer-border);
  position: relative;
  color: var(--text-main);
}

.l-footer__inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 60px; /* 少し広めに余白をとると美しくなります */
  display: flex;
  justify-content: flex-start;
  gap: 80px;
}

/* --- Left Side: Info --- */
.footer-info {
  width: 380px;
  flex-shrink: 0;
}

.footer-logo-group {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-slogan {
  font-size: 13px;
  color: var(--text-sub);
}

.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.contact-numbers {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  align-items: first baseline;
}
.contact-numbers .tel {
  line-height: 1;
}
.contact-numbers .fax {
  line-height: 1;
  font-weight: 500;
}

.contact-numbers .num {
  font-size: 24px;
  font-weight: 700;
}

.footer-line {
  margin-bottom: 50px;
}

.footer-line img {
  max-width: 240px;
  height: auto;
  transition: opacity 0.3s;
}

.footer-line img:hover {
  opacity: 0.8;
}

.copyright {
  font-size: 12px;
  color: var(--text-main);
}

/* --- Right Side: Navigation --- */
.footer-nav {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  border-left: 1px solid var(--footer-border);
  padding-left: 80px;
}

.nav-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.nav-links {
  list-style: none;
}

.nav-links li {
  margin-bottom: 12px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

/* リンク前の「>」記号 */
.nav-links a::before {
  content: "\f105"; /* Font Awesome Chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  margin-right: 8px;
  color: #ccc;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

/* --- Page Top Button --- */
.btn-pagetop {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 70px;
  height: 70px;
  background-color: var(--accent-yellow);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 24px;
  transition: transform 0.3s, background-color 0.3s;
}

.btn-pagetop:hover {
  transform: translateY(-5px);
  background-color: #f7d54d;
}

/* ==========================================================================
Mobile & Tablet Styles (max-width: 1023px)
========================================================================== */
@media screen and (max-width: 1023px) {
  .l-banner-section {
    padding: 40px 0;
  }
  .l-banner-inner {
    padding: 0 20px;
  }
  /* 1024px/600pxの指定がすでにあるため、ここではGridの間隔のみ微調整 */
  .banner-list {
    gap: 15px;
  }
  /* 特大バナーの解除（スマホでは1列、もしくは他と同じ扱いにするとスッキリします） */
  .banner-item--large {
    grid-row: span 1;
    grid-column: span 1;
  }
  /* --- Footer Layout --- */
  .l-footer {
    padding: 60px 0 30px;
  }
  .l-footer__inner {
    flex-direction: column; /* 縦並びの核 */
    gap: 50px; /* セクション間の余白 */
    padding: 0 20px;
  }
  /* --- Footer Info (Left Side) --- */
  .footer-info {
    width: 100%; /* 横幅いっぱい */
    text-align: center; /* アートディレクション：スマホではセンター寄せが美しいです */
  }
  .footer-logo-group {
    justify-content: center;
    flex-direction: column; /* ロゴとスローガンも縦に */
    align-items: center;
    gap: 10px;
  }
  .contact-numbers {
    flex-direction: column; /* 電話とFAXを縦に */
    align-items: center;
    gap: 15px;
  }
  .contact-numbers .num {
    font-size: 28px; /* スマホではタップしやすく数字を強調 */
  }
  .footer-line {
    margin-bottom: 30px;
  }
  .footer-line a {
    display: inline-block;
    margin: 0 auto;
  }
  /* --- Footer Nav (Right Side) --- */
  .footer-nav {
    border-left: none; /* PC用の境界線を消す */
    border-top: 1px solid var(--footer-border); /* 上に境界線を移動 */
    padding-left: 0;
    padding-top: 40px;
    flex-direction: column; /* ナビを縦並びに */
    gap: 40px;
  }
  .nav-title {
    margin-bottom: 15px;
  }
  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    list-style: none;
    padding: 0;
  }
  .nav-links li {
    margin-bottom: 0;
    border-bottom: 1px dashed #eee;
  }
  .nav-links a {
    padding: 12px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  .copyright {
    text-align: center;
    margin-top: 20px;
  }
  /* --- Page Top Button --- */
  .btn-pagetop {
    top: -35px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}
/* 最小デバイス用の微調整 */
@media screen and (max-width: 480px) {
  .contact-numbers .num {
    font-size: 22px; /* 小さい画面で数字が溢れないように */
  }
}
/* --- 検索オーバーレイのスタイル --- */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(247, 224, 107, 0.98); /* メインイエローを透過させて使用 */
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 表示状態 */
.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-overlay__inner {
  width: 100%;
  max-width: 800px;
  padding: 40px;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.search-overlay.is-open .search-overlay__inner {
  transform: translateY(0);
}

/* 閉じるボタン */
.search-overlay__close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 40px;
  color: #333;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.search-overlay__close:hover {
  transform: rotate(90deg);
}

/* フォームデザイン */
.search-overlay__label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.search-overlay__form {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .search-overlay__form {
    display: block;
  }
}

.search-overlay__input {
  flex: 1;
  padding: 20px 30px;
  border: 2px solid #333;
  border-radius: 50px;
  font-size: 20px;
  outline: none;
}
@media screen and (max-width: 767px) {
  .search-overlay__input {
    padding: 10px 15px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 20px;
  }
}

.search-overlay__btn {
  padding: 0 40px;
  background-color: #4fa9d6;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .search-overlay__btn {
    padding: 15px 20px;
    font-size: 16px;
    display: block;
    width: 200px;
    margin: 0 auto;
  }
}

.search-overlay__btn:hover {
  background-color: #358bb5;
}

/* --- Main Visual Layout
--------------------------------------------- */
/* --- 1. Section Base --- */
.l-main-visual {
  width: 100%;
  height: 640px;
  background-color: var(--primary-yellow);
  position: relative;
  overflow: hidden;
  /* 縦横中央揃えの指定 */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- 2. Inner Container --- */
.mv-container {
  width: 100%;
  max-width: var(--inner-width);
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  /* コンテナ内でも中央に寄せる */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- 3. Text & Search Content --- */
.mv-content {
  position: relative;
  z-index: 5; /* イラストより上に配置 */
  text-align: center;
  padding-top: 0;
  margin-bottom: 80px;
  animation: mvFadeUp 1.2s ease-out both; /* 読み込み時のふわっとした動き */
}
@media screen and (max-width: 1023px) {
  .mv-content {
    margin-bottom: 120px;
  }
}

.mv-copy {
  font-size: 56px; /* 視認性を重視した特大サイズ */
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.mv-sub-copy {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 40px;
}

/* --- 4. Search Form --- */
.mv-search {
  max-width: 640px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .mv-search {
    position: relative;
    top: 100px;
  }
}

.mv-search-form {
  display: flex;
  background: #fff;
  border-radius: 12px; /* 少し丸みを持たせて親しみやすく */
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* 浮遊感を出す影 */
}

.mv-search-input {
  flex: 1;
  border: none;
  padding: 20px 25px;
  font-size: 16px;
  color: #333;
  outline: none;
}

.mv-search-input::placeholder {
  color: #aaa;
}

.mv-search-btn {
  width: 80px;
  background-color: #4fa9d6; /* ヘッダーと共通のプライマリーブルー */
  border: none;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, transform 0.2s;
}

.mv-search-btn:hover {
  background-color: #358bb5; /* ホバー時は少し濃く */
}

.mv-search-btn:active {
  transform: scale(0.95);
}

/* --- 5. Illustrations (Positioning) --- */
.mv-illustrations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.illust-item {
  position: absolute;
  height: auto;
  display: block;
}

/* 下部3名のグループ画像 */
.illust-item.is-main-people {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 732px;
  z-index: 1;
}

/* 右上の虫眼鏡キャラクター */
.illust-item.is-sub-person {
  position: fixed; /* ブラウザの外枠を基準にするためfixed */
  z-index: 9999;
  pointer-events: none;
  width: 160px; /* サイズ調整 */
  display: none; /* 初期は非表示 */
  cursor: pointer;
}

.illust-item.is-sub-person.is-active {
  display: block;
}

/* パターン1：上から (180度回転してIN) */
/* パターン2：右から (-90度回転してIN) */
@keyframes peek-right {
  0% {
    right: -160px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
  }
  15% {
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
  }
  85% {
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
  }
  100% {
    right: -160px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
  }
}
/* パターン3：左から (90度回転してIN) */
@keyframes peek-left {
  0% {
    left: -160px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
  }
  15% {
    left: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
  }
  85% {
    left: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
  }
  100% {
    left: -160px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
  }
}
/* アニメーション用クラス（JSで切り替え） */
.is-peek-right {
  animation: peek-right 3.5s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
}

.is-peek-left {
  animation: peek-left 3.5s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
}

/* --- 6. Animations --- */
@keyframes mvFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatAnim {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* --- 7. Responsive --- */
@media (max-width: 1024px) {
  .mv-copy {
    font-size: 40px;
  }
  .l-main-visual {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .l-main-visual {
    height: auto;
    padding: 40px 20px 0;
  }
  .mv-copy {
    font-size: 28px;
  }
  .mv-sub-copy {
    font-size: 14px;
  }
  .illust-item.is-main-people {
    margin-top: 40px;
  }
  .illust-item.is-sub-person {
    width: 100px;
  }
}
/* --- 重なり順の最終調整 --- */
/* 1. コンテナ自体はマウスイベントを「透過」させる */
.l-main-visual,
.mv-container,
.mv-content,
.mv-illustrations {
  pointer-events: none !important;
}

/* 2. 実際にクリックさせたい要素だけを「有効」に戻す */
.mv-search-form,
.is-sub-person,
.is-main-people { /* 必要ならメインイラストも */
  pointer-events: auto !important;
}

/* 3. ひょっこりキャラの重なり順を最前面に固定 */
.illust-item.is-sub-person {
  position: fixed !important;
  z-index: 999999 !important; /* 全ての要素（ヘッダー含む）より上 */
  cursor: pointer !important;
}

/* ------------------------------------------
NEWS Section Layout 
--------------------------------------------- */
/* --- News Section Layout --- */
.section-title-area {
  margin-bottom: 20px;
}

.news-side .section-title-area {
  text-align: center;
}

.section-en i {
  font-size: 24px;
}

.l-news-section {
  padding: 80px 0;
  background-color: #f9f9f5;
}
@media screen and (max-width: 1023px) {
  .l-news-section {
    padding: 40px 0;
  }
}

.l-news-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1023px) {
  .l-news-inner {
    flex-direction: column;
    padding: 0 20px;
  }
}

/* 左側メイン */
.news-main {
  flex: 1;
}

/* カテゴリタブの装飾 */
.news-tabs {
  display: flex;
  gap: 10px;
  list-style: none;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.news-tabs li a {
  display: inline-block;
  padding: 8px 20px 5px;
  background: #fff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: all 0.3s;
  color: var(--text-main);
}

.news-tabs li a:hover,
.news-tabs li a.is-active {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

/* お知らせアイテム */
.news-list {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.news-item {
  display: block;
  padding: 25px 30px;
  border-bottom: 1px solid #f0f0f0;
}

.news-item.is-important {
  border-left: 4px solid #d3381c; /* 重要ライン */
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.news-category {
  min-width: 110px;
  padding: 4px 12px;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  font-weight: 700;
}

.category-red {
  background: #d3381c;
}

.category-gray {
  background: #999;
}

.category-purple {
  background: #8e8ecc;
}

.category-green {
  background: #4caf7d;
}

.news-link {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s;
}

.news-item:hover .news-link {
  color: var(--primary-blue);
}

.news-more {
  padding-top: 30px;
  text-align: center;
}

/* 右側サイド */
.news-side {
  width: 340px;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .news-side {
    margin: 0 auto;
  }
}

.side-block {
  margin-bottom: 50px;
}

.is-recommend {
  border-bottom: #ddd solid 1px;
  padding-bottom: 50px;
}

/* スライダー・動画共通パーツ */
/* スライダー外枠 */
/* 1. 全体を包むラッパーを基準にする */
.side-slider-wrapper {
  position: relative;
  overflow: visible;
}

/* 2. Swiper本体の設定 */
.side-slider.side-slider-js {
  overflow: hidden;
  border-radius: 15px; /* スライドの角丸 */
}

/* 3. ボタンの配置（基準を .side-slider-wrapper にする） */
.side-slider-wrapper .swiper-button-prev,
.side-slider-wrapper .swiper-button-next {
  width: 36px;
  height: 36px;
  background-color: #f7e06b;
  border-radius: 50%;
  color: #333;
  position: absolute; /* 親の .side-slider-wrapper を基準に動く */
  top: 50%;
  z-index: 10;
  display: flex !important;
  cursor: pointer;
}

/* 矢印を外側へ半分出す */
.side-slider-wrapper .swiper-button-prev {
  left: -18px;
}

.side-slider-wrapper .swiper-button-next {
  right: -18px;
}

/* 矢印の形を整える（Swiperデフォルトの疑似要素） */
.side-slider-wrapper .swiper-button-prev::after,
.side-slider-wrapper .swiper-button-next::after {
  font-size: 14px !important;
  font-weight: 900;
}

.swiper-pagination {
  bottom: -20px !important;
}

/* --------------------------------------------
サービスセクション
--------------------------------------------- */
/* --- Service Section Layout --- */
.l-service-section {
  padding: 100px 0;
  position: relative;
  background-image: url("../images/top/service-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* 背景を少し暗くして文字とカードを立たせる */
.l-service-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* 画像に合わせて調整 */
  z-index: 1;
}

.l-service-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1023px) {
  .l-service-inner {
    padding: 0 20px;
  }
}

/* 白文字用のタイトル設定 */
.section-title-area.is-white {
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

/* グリッド配置（4列 + 下段3列を中央寄せ） */
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 最後の行も中央に寄る */
  gap: 24px;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .service-list {
    gap: 10px;
  }
}

.service-item {
  width: calc((100% - 72px) / 4); /* 基本4列 */
  aspect-ratio: 1/0.8; /* カードの比率を固定 */
}

.service-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* アイコンスタイル */
.service-icon {
  font-size: 64px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .service-icon {
    margin-bottom: 0px;
    text-align: center;
  }
}

.service-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .service-name {
    font-size: 15px;
    text-align: center;
    padding: 0 5px;
  }
}

/* --- Interaction (動きの演出) --- */
.service-item a:hover {
  transform: translateY(-8px);
  background-color: #f9f9f9;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-item a:hover .service-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .service-item {
    width: calc((100% - 24px) / 2); /* タブレットでは2列 */
  }
}
/* --------------------------------------------
「統計情報」と「広報誌」の複合セクション
--------------------------------------------- */
/* --- Info & Newsletter Section --- */
.l-info-magazine-section {
  display: flex;
  width: 100%;
  min-height: 500px;
  color: #fff;
}

.l-info-magazine-inner {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .l-info-magazine-inner {
    display: block;
  }
}

/* 共通エリア設定 */
.info-statistics, .info-newsletter {
  flex: 1;
  padding: 80px 5%;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* 左：統計情報背景 */
.info-statistics {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/top/stats-bg.jpg");
}

/* 右：広報誌背景 */
.info-newsletter {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/top/newsletter-bg.jpg");
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/* 共通タイトルエリア */
.is-white .section-title {
  font-size: 28px;
  margin-bottom: 0;
}

.is-white .section-en {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* 統計情報のテキスト・ボタン */
.info-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.info-btn-group {
  display: flex;
  gap: 20px;
}

.btn-outline {
  flex: 1;
  padding: 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  position: relative;
}
.btn-outline i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* 広報誌のレイアウト */
.newsletter-content {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}
.newsletter-content .section-title-area {
  text-align: left;
  margin-bottom: 10px;
}
@media screen and (max-width: 1023px) {
  .newsletter-content {
    gap: 25px;
  }
}

.newsletter-cover img {
  width: 160px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.badge-latest {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #fff;
  font-size: 12px;
  margin-bottom: 15px;
}

.magazine-name {
  font-size: 14px;
  margin-bottom: 20px;
}

.link-pdf {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
}
.link-pdf i {
  font-size: 24px;
}

/* バックナンバーボタン */
.newsletter-more {
  text-align: center;
}

.btn-backnumber {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 40px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  margin: 0 auto;
}

.btn-backnumber:hover {
  background: #fff;
  color: #333;
}

/* --------------------------------------------
Feed Section Layout 
--------------------------------------------- */
.l-feed-section {
  background-color: var(--primary-yellow);
  padding: 170px 0 100px;
}
@media screen and (max-width: 1023px) {
  .l-feed-section {
    padding: 75px 0 15px;
  }
}

.l-feed-inner {
  width: 100%;
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 1023px) {
  .l-feed-inner {
    display: block;
    gap: 30px;
  }
}

.feed-content {
  max-width: 580px;
  width: 100%;
  padding: 80px 2.5% 2.5%;
  height: 730px;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .feed-content {
    width: 80%;
    margin: 0 auto 50px;
    height: auto;
  }
}
.feed-content h2 {
  text-align: center;
  margin-bottom: 30px;
}
.feed-content .feed-ill {
  width: 204px;
  position: absolute;
  left: 50%;
  top: -115px;
  margin-left: -102px;
}

/* --------------------------------------------
About Section Layout 
--------------------------------------------- */
.l-about-section {
  padding: 100px 0;
  background-color: #fff;
}

.l-about-inner {
  width: 100%;
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 1023px) {
  .l-about-inner {
    text-align: center;
  }
}

.about-content {
  flex: 1;
  max-width: 665px;
}
@media screen and (max-width: 1023px) {
  .about-content {
    text-align: left;
  }
}

/* 見出し */
.about-header {
  margin-bottom: 40px;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-en {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-en i {
  font-size: 30px;
}

/* 本文 */
.about-body {
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

.about-body p:last-child {
  margin-bottom: 10px;
}

/* 4つのリンクボタン（Gridレイアウト） */
.about-nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 0 40px; /* 縦は0、横に40px */
  list-style: none;
}

.about-nav-item {
  border-bottom: 1px solid #e0e0e0;
}

.about-nav-item:first-child,
.about-nav-item:nth-child(2) {
  border-top: 1px solid #e0e0e0;
}

.about-nav-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-decoration: none;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
  transition: color 0.3s;
}

.about-nav-item a i {
  color: var(--primary-blue);
  font-size: 14px;
  transition: transform 0.3s;
}

/* --- Interaction --- */
.about-nav-item a:hover {
  color: var(--primary-blue);
}

.about-nav-item a:hover i {
  transform: translateX(8px); /* 矢印が右に動く */
}

/* イラスト */
.about-image {
  flex: 1;
  text-align: right;
  max-width: 340px;
}

.about-image img {
  width: 100%;
  height: auto;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .l-about-inner {
    flex-direction: column-reverse; /* スマホでは画像が上、テキストが下 */
    text-align: center;
  }
  .about-nav-list {
    grid-template-columns: 1fr;
  }
  .about-image {
    margin-bottom: 40px;
    width: 80%;
    margin: 0 auto;
  }
}
/* --------------------------------------------
Recruit Section Layout
--------------------------------------------- */
.l-recruit-section {
  padding: 60px 0;
  background-color: #fff; /* 背景は白 */
}
@media screen and (max-width: 1023px) {
  .l-recruit-section {
    padding: 0;
  }
}

.l-recruit-inner {
  width: 100%;
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 40px; /* ヘッダー・フッターと共通 */
}

.recruit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 320px; /* 画像の比率に合わせて調整 */
  padding: 60px 80px 0;
  text-decoration: none;
  border-radius: 20px; /* 画像の角丸 */
  overflow: hidden;
  background-image: url("../images/top/recruit-bg.jpg"); /* 実際の画像パス */
  background-size: cover;
  background-position: center;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media screen and (max-width: 1023px) {
  .recruit-card {
    padding: 20px;
  }
}

/* 背景を少し暗くして文字を読みやすくする（オーバーレイ） */
.recruit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* 紺色系の透過レイヤー */
  z-index: 1;
  transition: background 0.3s;
}

.recruit-content,
.recruit-btn {
  position: relative;
  z-index: 2;
}

/* タイトルエリア */
.recruit-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .recruit-title {
    font-size: 28px;
  }
}

.recruit-en {
  display: block;
  font-size: 18px;
  font-weight: 500;
}

.recruit-en i {
  margin-right: 0;
  font-size: 26px;
  position: relative;
  top: -2px;
}

/* リード文 */
.recruit-text {
  font-size: 16px;
  line-height: 1.5;
  max-width: 600px;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .recruit-text {
    font-size: 14px;
  }
}

/* 右側の丸い矢印ボタン */
.recruit-btn {
  flex-shrink: 0;
}

.btn-arrow {
  width: 80px;
  height: 80px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  margin-top: 60px;
}

/* --- Interaction (動きの演出) --- */
.recruit-card:hover::before {
  background: rgba(0, 30, 60, 0); /* ホバー時に少し暗く */
}

.recruit-card:hover .btn-arrow {
  transform: translateX(10px); /* 矢印ボタンが右にスライド */
  background-color: var(--primary-yellow); /* ヘッダーの青を再利用 */
}

.description-text {
  margin-bottom: 105px;
}
@media screen and (max-width: 767px) {
  .description-text {
    margin-bottom: 60px;
  }
}

/* グリッドコンテナ */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

/* 各カードアイテム（3カラム計算） */
.card-item {
  width: calc((100% - 60px) / 3); /* (100% - gap合計) / 3枚 */
  display: flex;
  flex-direction: column;
}

/* 画像エリア：角丸と比率の保持 */
.card-image {
  width: 100%;
  aspect-ratio: 3/3; /* 添付画像に近い3:2の比率 */
  overflow: hidden;
  border-radius: 20px; /* デザインを象徴する大きめの角丸 */
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* ホバー演出 */
.card-item:hover .card-image img {
  transform: scale(1.08);
}

/* テキストエリア */
.card-body {
  padding-top: 20px;
}

.card-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 15px 0;
  color: #1a1a1a;
}
@media screen and (max-width: 1023px) {
  .card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

.card-text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* レスポンシブ：タブレット・スマホ */
@media (max-width: 960px) {
  .card-item {
    width: calc((100% - 30px) / 2); /* 2カラム */
  }
}
@media (max-width: 560px) {
  .card-item {
    width: 100%; /* 1カラム */
  }
}
.dl-table-list {
  border-top: 1px solid #e0e0e0;
  margin-top: 25px;
}

/* 行としての振る舞い */
.dl-row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}

/* 見出し（左側） */
.dl-table-list dt {
  flex: 0 0 25%; /* 幅を25%で固定 */
  background-color: #f9f9f1; /* 淡いベージュ */
  padding: 25px 30px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center; /* テキストの上下中央揃え */
}

/* 説明（右側） */
.dl-table-list dd {
  flex: 1; /* 残りの幅をすべて使う */
  padding: 25px 30px;
  margin: 0; /* ブラウザ標準のインデントをリセット */
  background-color: #fff;
  line-height: 1.8;
  color: #333;
}

/* 注釈テキスト */
.note {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}

/* スマホ表示対応 */
@media (max-width: 768px) {
  .dl-row {
    flex-direction: column; /* 縦並びに */
  }
  .dl-table-list dt {
    width: 100%;
    padding: 15px 20px;
  }
  .dl-table-list dd {
    padding: 15px 20px 25px;
  }
}
.merit-list {
  list-style: none;
  padding: 0;
}

.merit-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}

/* アイコン部分（黄色の円） */
.merit-icon {
  flex-shrink: 0;
  width: 250px; /* デザインに合わせたサイズ */
  height: 250px;
  background-color: #f7e06a; /* 商工会カラーのイエロー */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .merit-icon {
    width: 180px;
    height: 180px;
  }
}

.merit-icon img {
  width: 70%; /* 円に対してアイコンを少し小さめに配置 */
  height: auto;
}

/* テキストコンテンツエリア */
.merit-content {
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 40px;
}

/* Merit.01 などの数字部分 */
.merit-number {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #539dcc; /* アクセントのブルー */
  border-bottom: 2px solid #539dcc;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.merit-title {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 15px 0;
  color: #333;
}
@media (max-width: 768px) {
  .merit-title {
    font-size: 18px;
  }
}

.merit-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}
@media (max-width: 768px) {
  .merit-text {
    font-size: 14px;
  }
}

/* スマホ表示対応 */
@media (max-width: 768px) {
  .merit-item {
    align-items: center;
    text-align: left;
    gap: 20px;
  }
  .merit-icon {
    width: 120px;
    height: 120px;
  }
  .merit-number {
    margin-bottom: 8px;
  }
}
.image-wrap {
  display: block;
  width: 100%;
}
.image-wrap img {
  border-radius: 20px;
  width: 100%;
}

.number-list {
  /* 標準のナンバリングを使用 */
  list-style-type: decimal;
  /* 数字をテキストの左側に配置 */
  list-style-position: outside;
  /* 数字が表示されるための左余白 */
  padding-left: 1.5em;
  margin: 30px 0;
}

.number-list li {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.7;
}

/* 最後の項目の余白リセット */
.number-list li:last-child {
  margin-bottom: 0;
}

/* スマホ表示 */
@media (max-width: 768px) {
  .number-list {
    padding-left: 1.2em;
  }
  .number-list li {
    font-size: 15px;
  }
}
.access-container {
  display: flex;
  gap: 40px;
  padding: 80px 0;
  align-items: flex-start;
  border-top: solid 1px #ddd;
}

/* 所在地情報 */
.access-info {
  flex: 1;
}

.access-name {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.access-representative {
  font-size: 16px;
  margin-bottom: 30px;
}

.access-details {
  margin: 0;
}

.access-row {
  display: flex;
  margin-bottom: 10px;
  line-height: 1.6;
}

.access-row dt {
  width: 80px;
  flex-shrink: 0;
  font-weight: bold;
}

.access-row dd {
  margin: 0;
}

.access-row dd a {
  color: inherit;
  text-decoration: none;
}

/* Googleマップ部分 */
.access-map {
  flex: 1;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  /* 右上を大きな角丸にする（サイドメニューの意匠と対比） */
  border-radius: 40px;
  background-color: #eee;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.2);
}

/* スマホ表示対応 */
@media (max-width: 768px) {
  .access-container {
    flex-direction: column;
  }
  .access-map {
    aspect-ratio: 4/3;
    border-radius: 20px;
  }
}
.index-section {
  background-color: #f7e06a; /* 鮮やかなイエロー背景 */
  padding: 80px 20px;
  text-align: center;
}

.index-heading {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  text-transform: capitalize;
}

.index-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: var(--inner-width);
  margin: 0 auto;
}

/* カード本体 */
.index-card {
  flex: 1;
  background-color: #fff;
  border-radius: 30px; /* デザイン通りの大きな角丸 */
  padding: 20px 20px 30px;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 200px;
}

/* ホバー時の演出（少し浮き上がる） */
.index-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* メインアイコン */
.index-card__icon {
  font-size: 70px;
  color: var(--primary-blue);
}

.index-card__title {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

/* 下部の矢印アイコン */
.index-card__arrow {
  font-size: 20px;
  color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .index-grid {
    flex-direction: column;
    align-items: center;
  }
  .index-card {
    width: 100%;
    max-width: 350px;
    min-height: 200px;
    padding: 30px 20px;
  }
}
/* ==========================================================================
商工会一覧
========================================================================== */
.location-section {
  position: relative;
  z-index: 0;
  padding: 60px 0;
}
@media (max-width: 1023px) {
  .location-section {
    width: 100%;
    padding: 40px 30px;
  }
}

.location-section.is-bg-yellow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 200vw;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FBFBEF;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .location-section.is-bg-yellow::before {
    width: 100%;
    height: 100%;
    left: 0;
    transform: translateX(0);
  }
}

.location-map {
  margin-top: 40px;
}
.location-map iframe {
  width: 100% !important;
  height: 500px;
  border: none;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2カラム */
  gap: 30px 40px; /* 上下30px, 左右40px */
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}
.location-list li {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0; /* 下部の区切り線 */
}
@media screen and (max-width: 767px) {
  .location-list li {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .location-list {
    grid-template-columns: 1fr; /* スマホは1カラム */
    gap: 40px;
  }
}

.location-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.location-address,
.location-tel {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 5px;
  color: #333;
}
.location-address a,
.location-tel a {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .location-address a,
  .location-tel a {
    text-decoration: underline; /* スマホでは電話をかけやすく */
  }
}

/* ==========================================================================
青年部
========================================================================== */
.fa-user-youth {
  display: block;
  width: 45px;
  height: 45px;
  content: url(../../../images/common/icon_youth.svg);
}

.fa-user-women {
  display: block;
  width: 45px;
  height: 45px;
  content: url(../../../images/common/icon_women.svg);
}

.fa-user-senior {
  display: block;
  width: 45px;
  height: 45px;
  content: url(../../../images/common/icon_senior.svg);
}

/* 商工会青年部の歌 */
.lyrics-container {
  background-color: #fcf9ee;
  padding: 60px 40px;
  text-align: center;
  border-radius: 40px;
  /* モバイル・フェブレット向け調整 */
}
@media screen and (max-width: 767px) {
  .lyrics-container {
    padding: 40px 20px; /* 全体の余白を少し詰める */
    border-radius: 20px; /* 角丸を画面サイズに合わせて少し抑える */
  }
}

.lyrics-header {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .lyrics-header {
    margin-bottom: 40px;
  }
}

.lyrics-credits {
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .lyrics-credits {
    font-size: 0.8rem; /* 小さな画面でも1行に収まりやすく調整 */
  }
}

.lyrics-title {
  font-size: 2rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .lyrics-title {
    font-size: 1.5rem; /* タイトルの主張を画面幅に合わせる */
    line-height: 1.4;
  }
}

.lyrics-body {
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lyrics-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    width: fit-content;
    margin: 0 auto;
  }
}

.lyrics-column {
  line-height: 2.5;
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .lyrics-column {
    font-size: 1rem;
  }
}

.column-number {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}

.lyrics-footer {
  margin-top: 20px;
}

.members-container {
  background-color: #fcf9ee;
  padding: 60px 40px;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .members-container {
    padding: 20px 40px;
    border-radius: 20px;
  }
}

.members-body {
  display: flex;
  justify-content: center;
  gap: 60px; /* PC時のカラム間隔 */
}
@media screen and (max-width: 767px) {
  .members-body {
    flex-direction: column;
    gap: 0;
  }
}

.banner-container {
  padding: 40px 20px;
}

.banner-btn-list {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .banner-btn-list {
    flex-direction: column;
    align-items: center;
  }
}

.banner-btn-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 80px;
  padding: 10px;
  border-radius: 20px;
  border: #4da0cc solid 1px;
  color: #4da0cc;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.2s;
}
.banner-btn-item:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.banner-btn-item {
  /* 青色グラデーション */
}
.banner-btn-item.is-blue {
  background: linear-gradient(135deg, #59a9d4 0%, #4da0cc 100%);
  color: #fff;
}
.banner-btn-item {
  /* Instagramグラデーション */
}
.banner-btn-item.is-instagram {
  background: linear-gradient(45deg, #f9ce52 0%, #fb6e3b 30%, #ec2b4b 60%, #b429b9 100%);
  color: #fff;
  border: #b429b9 solid 1px;
}
@media screen and (max-width: 767px) {
  .banner-btn-item {
    min-height: 80px;
  }
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 20px;
}

.banner-text {
  text-align: center;
  line-height: 1.1;
  font-weight: 500;
}
.banner-text small {
  font-size: 0.75rem;
  font-weight: normal;
}
.banner-text strong {
  font-size: 18px;
  letter-spacing: 0.05em;
}

/* 右上の別タブアイコン（疑似要素での実装例） */
.icon-external {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #4da0cc;
  border-right: 1px solid #4da0cc;
  margin-top: -4px;
}
.icon-external::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background: #4da0cc;
  transform: rotate(-45deg);
  top: 3px;
  right: -2px;
}

.banner-btn-item.is-instagram .icon-external,
.banner-btn-item.is-blue .icon-external {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.banner-btn-item.is-instagram .icon-external::after,
.banner-btn-item.is-blue .icon-external::after {
  background: #fff;
}

/* Instagramアイコン（簡易的な再現） */
.fa-instagram:before {
  font-size: 60px;
}

.action-section {
  background-color: #FBFBEF;
  padding: 60px 0;
}

.action-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.action-section ul li {
  width: 30%;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .action-section ul li {
    width: 45%;
    gap: 20px;
  }
}

.action-section ul li img {
  width: 100%;
  margin-bottom: 15px;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #333;
}

.policy-main-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.policy-meta {
  text-align: right;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.policy-title {
  position: relative;
  margin: 0;
  padding: 30px 0 15px;
  margin-bottom: 25px;
  font-size: 1.05rem;
  font-weight: bold;
  border-bottom: #DBDBDB solid 1px;
}
.policy-title::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 1px;
  background: #4EA5D3;
}

.policy-content {
  margin-bottom: 45px;
  font-size: 16px;
  line-height: 1.75;
}
.policy-content p {
  margin-bottom: 1.2em;
}
.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  margin-left: 20px;
}

.policy-content li {
  list-style: decimal outside;
  margin: 7px 0 15px;
}
.policy-content li ul {
  margin-bottom: 20px;
}
.policy-content li li {
  counter-increment: cnt;
  list-style: none;
  padding-left: 25px;
  position: relative;
}
.policy-content li li:before {
  display: marker;
  content: "(" counter(cnt) ") ";
  position: absolute;
  left: 0;
  top: 0;
}

.magazine-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.magazine-main {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .magazine-main {
    flex-direction: column;
    align-items: center;
  }
}

.magazine-info {
  flex: 1;
}

.magazine-lead {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.magazine-vol-date {
  color: #59a9d4; /* サンプル画像に基づいた水色 */
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.magazine-title-group {
  margin-bottom: 30px;
}
.magazine-title-group a {
  font-size: 14px;
  color: var(--text-main);
  text-decoration: underline;
}
.magazine-title-group a i {
  font-size: 20px;
}

.magazine-label {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.magazine-name {
  font-size: 1.6rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 1023px) {
  .magazine-name {
    font-size: 1rem;
  }
}

/* アンケートエリア */
.magazine-survey-box {
  background-color: #fcf9ee; /* 共通のクリーム色 */
  padding: 30px;
  border-radius: 12px;
  line-height: 1.6;
}
.magazine-survey-box p {
  margin-bottom: 20px;
}

/* サムネイル画像 */
.magazine-thumbnail {
  flex-shrink: 0;
  width: 320px;
}
.magazine-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .magazine-thumbnail {
    width: 100%;
    max-width: 300px;
    order: -1; /* モバイル時は画像を先に表示する場合 */
    margin-bottom: 30px;
  }
}

.insurance-section {
  background-color: #fcf9ee;
  padding: 60px 40px 30px;
  border-radius: 40px;
  text-align: center;
}
.insurance-section .disc-list {
  text-align: left;
}

.insurance-main-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
}

/* カード全体のスタイル */
.insurance-card {
  padding: 30px;
  border-radius: 40px;
  height: 100%;
  color: #fff;
}
.insurance-card.is-worker {
  background-color: #4db584;
}
.insurance-card { /* 緑 */ }
.insurance-card.is-employment {
  background-color: #59a9d4;
}
.insurance-card { /* 青 */ }

.insurance-header {
  margin-bottom: 20px;
  min-height: 100px; /* 左右のヘッダー高さを揃える */
}

.insurance-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.insurance-target {
  font-size: 0.9rem;
  font-weight: bold;
}
.insurance-target.is-small {
  display: flex;
  justify-content: center;
  gap: 15px;
  text-align: left;
  font-size: 0.75rem;
}
.insurance-target.is-small ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 白いコンテンツエリア */
.insurance-body {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  position: relative;
}

.content-item {
  background-color: #edf7f2; /* 労災側の薄緑 */
  color: #4db584;
  padding: 15px;
  border-radius: 15px;
  margin-top: 5px;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.is-employment .content-item {
  background-color: #eef7fc; /* 雇用側の薄青 */
  color: #59a9d4;
}
.content-item.is-large {
  min-height: 80px;
}

/* 小さい給付項目用のグリッド */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 5px;
}
.content-grid .content-item {
  margin-top: 0;
}

.insurance-note {
  text-align: right;
  color: #333;
  font-size: 0.9rem;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .insurance-section {
    padding: 40px 15px;
  }
  .insurance-title {
    font-size: 1.8rem;
  }
  .insurance-target.is-small {
    flex-direction: column;
    gap: 5px;
  }
}
.post-page {
  background-color: #FBFBEF;
}
.post-page .side-menu {
  position: relative;
  padding: 0 20px 40px 0;
  border-top: none !important;
  border-right: none !important;
  border-top-right-radius: 0;
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.post-page .news-tabs {
  flex-direction: column; /* これを追加：縦並びにする */
}

.entry-section {
  background-color: #fff;
  padding: 25px 30px;
}

.entry-title {
  font-size: 24px;
  margin-bottom: 30px;
}

.entry-body h1 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}
.entry-body h2 {
  font-size: 18px;
  margin-bottom: 15px;
}
.entry-body h3 {
  font-size: 16px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}
.entry-body h4 {
  font-size: 14px;
  margin-bottom: 10px;
}
.entry-body h5 {
  font-size: 13px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}
.entry-body h6 {
  font-size: 13px;
  margin-bottom: 10px;
}
.entry-body p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.entry-body ul {
  list-style: none; /* デフォルトの黒丸を非表示 */
  padding: 0;
  margin: 30px 0;
}
.entry-body li {
  position: relative;
  padding-left: 25px; /* ドットのスペースを確保 */
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.entry-body img {
  max-width: 100%;
  margin: 20px auto;
  width: 100%;
}

.l-page-visual.is-recruit {
  background-image: url(../images/recruit/bg.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  min-height: 700px;
  background-color: #fff;
}

.recruit-pv-heading {
  text-align: center;
}
.recruit-pv-heading h1 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.recruit-main-copy {
  font-size: 42px;
  font-weight: 200;
  margin-bottom: 40px;
}

.recruit-sub-copy {
  line-height: 2;
}

.recruit-section {
  padding: 5%;
}

.try-job-bnr {
  position: relative;
  border: #ddd solid 1px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 7px 20px;
  max-width: 480px;
}
.try-job-bnr img {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

.recruit-list {
  margin-top: 40px;
}
.recruit-list li i {
  font-size: 30px;
  margin-right: 7px;
}
.recruit-list li a {
  display: block;
  text-decoration: underline;
}
.recruit-list li a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */