@charset "utf-8";
/* CSS Document */

/* sub.css — 下層ページ専用カスタムスタイル */
.privacy-page-content {
  background-color: #fff;
  color: #333;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 10;
  position: relative;
}

@media screen and (max-width: 768px) {
  .privacy-page-content {
    margin: 1rem 1rem;
  }
}

.privacy-page-content h1,
.privacy-page-content h2 {
  font-weight: bold;
  margin-top: 1.5em;
}

.privacy-page-content ul {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.page-title {
  font-size: 20px;
  font-weight: bold;
  color: #007b43; /* 常盤色 */
  text-align: center;
  position: relative;
  margin: 0 auto 1.5em;
  display: block; /* ← ここが重要！ */
  width: fit-content; /* ← 横幅を中身に合わせて */
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background-color: #007b43;
  border-radius: 2px;
}

/* パンくずナビ ----------------------*/
.breadcrumb {
  font-size: 12px;
  color: #fff;
  margin-bottom: 1em;
  padding: 0.5em 1em;
  background: transparent;
  z-index: 10;
  position: relative;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  margin-right: 0.5em;
}

.breadcrumb li::after {
  content: ">";
  margin-left: 0.5em;
  color: #ccc;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  color: #fff;
  text-decoration: underline;
}


/*-------------- ▼▼▼▼ 企業ページ UI --------------*/

/* ▼ セレクトボックス（企業内ページ選択） */
.company-tab-select {
  width: 100%;
  padding: 0.6em 1em;
  font-size: 14px;
  border: 1px solid #007b43;
  border-radius: 9999px;
  background-color: #007b43;
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 1em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: border-color 0.3s, background-color 0.3s;
}

.company-tab-select:focus {
  outline: none;
  border-color: #004e2f;
  background-color: #00915e;
}

.company-tab-select option {
  color: #333;
  background-color: #f9f9f9;
}

/*本文アクセント装飾 */
.company-about-text .highlight {
  color: #007b43;
  font-weight: bold;
}

/* 背景付きハイライト（薄緑） */
.company-about-text .highlight-bg,
.highlight-bg {
  background-color: #e6f3ec;
  padding: 0.4em 0.6em;
  border-radius: 6px;
  display: inline-block;
  font-weight: bold;
  color: #003d29;
  margin: 0.5em 0;
}

/* 解決策エリア */

.solution-box {
  background: #f7fdfb;
  border-radius: 8px;
  padding: 1em 1.2em;
  margin-top: 1em;
  box-shadow: 0 2px 6px rgba(0, 123, 67, 0.05);
}

.solution-box ul {
  padding-left: 1.2em;
}

.solution-box li {
  list-style: none;
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.6em;
}

.solution-box li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #007b43;
  font-size: 14px;
}
.problems {
  padding: 2rem 1rem;
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 中央揃え */
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto; /* 中央に配置 */
  font-size: 13px;
}

.problem-item {
  background-color: #f2f2f2;
  padding: 0.6rem;
  border-radius: 8px;
  text-align: center;
  width: 45%; /* 2列になるように */
  box-sizing: border-box;

}

.solution-bo {
	background-color: #9BBC86;
}


/* ▼▼▼▼ 会社概要全体の基本設定 ▼▼▼▼ */
.company-profile-section {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.section-heading {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin-bottom: 1em;
  border-bottom: 2px solid #007b43;
  display: inline-block;
  padding-bottom: 0.2em;
}

/* ▼▼▼▼ テーブル形式（基礎情報） ▼▼▼▼ */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
}

.company-table th {
  background: #f6fdf9;
  color: #007b43;
  text-align: left;
  padding: 0.6em;
  vertical-align: top;
  width: 30%;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.company-table td {
  padding: 0.6em;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

/* ▼▼▼▼ リスト形式（事業内容・銀行・通販サイト等） ▼▼▼▼ */
.company-list {
  list-style: none;
  padding-left: 1em;
  margin-bottom: 2em;
}

.company-list li::before {
  content: '✔';
  color: #007b43;
  margin-right: 0.5em;
}

/* ▼▼▼▼ 所在地ブロック（画像付き） ▼▼▼▼ */
.address-box.with-image {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1.2em;
}

.address-img {
  width: 100px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.address-text {
  flex: 1;
}

@media screen and (max-width: 600px) {
  .address-box.with-image {
    flex-direction: column;
    align-items: flex-start;
  }

  .address-img {
    width: 100%;
    height: auto;
    margin-bottom: 0.6em;
  }
}

/* 所在地内のテキスト表示調整 */
.address-box h3 {
  font-size: 15px;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 0.3em;
}

.note,
.address-note {
  font-size: 13px;
  color: #555;
  margin-top: 0.5em;
}

address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-weight:400;
}

/* ▼▼▼▼ 認証情報（ISO） ▼▼▼▼ */
.cert-highlight-box {
  background: #f6fdf9;
  border-left: 4px solid #007b43;
  border-radius: 8px;
  padding: 1.2em 1em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  margin-top: 1em;
}

.cert-main-title {
  font-size: 16px;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 0.3em;
}

.cert-note {
  font-size: 12px;
  color: #888;
  margin-bottom: 0.8em;
}

.cert-description {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
}

.cert-description strong {
  color: #007b43;
  font-weight: bold;
}

.logo-section {
  text-align: center;
  margin: 3em 0 2em;
}

.logo-box {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 1em;
}

.logo-image {
  width: 160px;
  height: auto;
  margin-bottom: 1em;
}

.logo-description {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  text-align: left;
}
.section-heading-center {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  border-bottom: 2px solid #007b43;
  padding-bottom: 0.3em;
  margin: 2em auto 1em !important;  /* ← !importantで上書き確実に */
  width: fit-content;
  display: block;
  text-align: center;
}

.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.color-green {
  color: #027446;
  font-size: 12px;
}
.site-list {
  list-style: none;
  padding-left: 0;
  margin: 0.5em 0 1em;
}

.site-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.4em;
}

.site-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #027446; /* 大浜グリーン */
  font-size: 0.9em;
}



/* === 取締役・執行役員ページ === */
.executives-section {
  padding: 3em 1em;
  max-width: 960px;
  margin: 0 auto;
}

.executive-card {
  display: flex;
  gap: 1.5em;
  margin-bottom: 3em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2em;
  flex-wrap: wrap;
}

.executive-image {
  width: 180px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.executive-details {
  flex: 1;
}

.executive-name {
  font-size: 18px;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 0.2em;
}

.executive-role {
  font-size: 13px;
  color: #555;
  margin-bottom: 1em;
}

.executive-text h4 {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin: 1.2em 0 0.5em;
}

.executive-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1em;
}

/* 情報未定者用のスタイル */
.executive-card.unavailable {
  opacity: 0.6;
}

.executive-card.unavailable .executive-image {
  filter: grayscale(100%);
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .executive-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .executive-image {
    width: 100%;
    max-width: 100%;
  }

  .executive-name {
    font-size: 16px;
  }

  .executive-role {
    font-size: 12px;
  }
}

.executive-image {
  width: 80%;
  max-width: 200px;
  flex-shrink: 0;
}

.executive-image img {
  display: block;
  width: 80%;
	margin-left: auto;
	margin-right: auto;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}


  .executive-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .executive-text {
    text-align: left;
    width: 100%;
  }

.executive-card.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.executive-card.center .executive-image {
  max-width: 200px;
  margin-bottom: 1em;
}

.executive-card.center .executive-name {
  font-size: 18px;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 0.2em;
}

.executive-card.center .executive-role {
  font-size: 13px;
  color: #666;
  margin-bottom: 1.5em;
}

.executive-card.center .executive-text {
  max-width: 600px;
}

.executive-name {
  font-size: 20px;
  font-weight: 700;
  color: #007b43;
  margin-top: 0.5em;
  margin-bottom: 0.1em;
}

.executive-role {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.05em;
  margin-bottom: 1.5em;
}
.executive-text h4 {
  font-size: 15px;
  color: #005c30;
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  border-left: 4px solid #007b43;
  padding-left: 0.6em;
}

.section-title-green {
  font-size: 20px;
  font-weight: bold;
  color: #007b43; /* 常盤色 */
  text-align: center;
  position: relative;
  margin: 0 auto 1.5em;
  display: block;
  width: fit-content;
}

.section-title-green::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 5px;
  background-color: #007b43;
  border-radius: 4px;
}


/* ▼▼▼▼ アクセス ▼▼▼▼ -------------------------------*/

/* セクション全体 */
.access-section {
  padding: 1rem 1rem;
}

/* セクション見出し */
.section-heading-center {
  font-size: 1.4rem;
  font-weight: bold;
  color: #009966;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* 各拠点ブロック */
.access-block {
  background: #f9f9f9; /* 薄いグレーで上品に */
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  margin-bottom: 2.5rem;
 border: #828282 1px solid;
}

/* 各拠点の区切り線（下） */
.access-block::after {
  content: '';
  display: block;
  height: 1px;
  background: #ccc;
  margin-top: 2rem;
}
.access-block:last-child::after {
  display: none;
}

/* 拠点画像 */
.access-img-large2 {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 0;
  object-fit: cover;
  display: block;
}

/* 拠点名（h3） */
.access-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.3rem;
}

.access-detail {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #444;
  margin-top: 1rem;
}

.access-detail p {
  position: relative;
  padding-left: 1.6em;
  margin: 0.8rem 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #444;
}

.access-detail p::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1em;
  opacity: 0.8;
}

/* 絵文字をクラスごとに定義 */
.access-location::before {
  content: '📍';
}
.access-access::before {
  content: '🚶‍♂️';
}
.access-time::before {
  content: '🕒';
}
.access-holiday::before {
  content: '🚫';
}
.access-phone::before {
  content: '📞';
}
.access-parking::before {
  content: '🅿︎';
}



.access-detail strong {
  font-weight: 500;
  color: #666;
  display: inline-block;
  min-width: 4.5em;
}

/* 通常テキスト（不要なら削除可） */
.access-text p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0.2rem 0;
  color: #444;
text-align: left;
	margin-bottom: 1%;
}

/* 地図埋め込み */
.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 6px;
  margin-top: 1rem;
}

/* リンク装飾（リンク使わない場合は不要） */
.access-text a {
  color: #009966;
  text-decoration: underline;
}
.access-detail dl {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0.5rem;
  column-gap: 0.5rem;
  font-size: 0.9rem;
  color: #444;
}

.access-detail dt {
  font-weight: 500;
  color: #666;
  min-width: 5em;
}

.access-detail dd {
  margin: 0;
  line-height: 1.6;
}

.map-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* ← 高さUP（例：75%）で大きく見える */
  height: 0;
  overflow: hidden;
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 6px;
}

.access-info {
  display: flex;
  align-items: flex-start; /* ← これが大事！ */
  margin: 0.5rem 0;
  font-size: 0.92rem;
  color: #444;
}

.access-info strong {
  min-width: 6em;
  font-weight: 500;
  color: #666;
  flex-shrink: 0;
  line-height: 1.6;
}

.access-info span {
  line-height: 1.6;
}


/* ▼▼▼▼ 下部アイコン固定用スタイル ▼▼▼▼ */
.bottom-icon-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 94%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  box-sizing: border-box;
  margin: 0 auto;
}

/* 通常表示（高さが十分あるとき） */
@media (min-height: 641px) {
  .bottom-icon-box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 96%;
    margin: 0 auto;
    z-index: 1000;
  }

  .privacy-page-content {
    padding-bottom: 90px; /* ← アイコンと重ならないように */
  }
}

/* ▼ 高さが狭いとき（固定しないで通常表示に切り替え） */
@media (max-height: 640px) {
  .page-wrapper,
  .phone-frame {
    height: auto !important;
    overflow-y: auto !important;
    display: block !important;
  }

  .bottom-icon-box {
    position: static !important;
    margin: 16px 12px;
  }

  .privacy-page-content {
    padding-bottom: 0 !important;
  }
}

/* ▼ PC時の挙動調整（固定せず中央寄せ） */
@media screen and (min-width: 1025px) {
  html, body {
    height: auto !important;
    overflow-y: auto !important;
  }

  .page-wrapper {
    height: auto !important;
    min-height: 100vh;
    display: block !important;
    overflow: visible !important;
  }

  .phone-frame {
    height: auto !important;
    overflow: hidden;
  }

  .bottom-icon-box {
    position: static !important;
    margin: 24px auto;
    max-width: 375px;
  }

  .privacy-page-content {
    padding-bottom: 0 !important;
  }
}


/* 強調用：キーフレーズ強調（細い緑枠＋余白） */
.keyphrase-box {
  border-left: 4px solid #007b43;
  padding: 0.6em 1em;
  margin: 1.5em 0;
  background-color: #f6fdf9;
  font-weight: 500;
  color: #003d29;
  border-radius: 6px;
}

.message-box {
  background-color: #f9f9f9;
  padding: 1em 1.2em;
  margin-top: 2em;
  border-left: 6px solid #007b43;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  line-height: 1.8;
}


/* 小見出し風アクセント（段落の先頭に使える） */
.subsection-heading {
  font-size: 15px;
  color: #007b43;
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  border-left: 8px solid #007b43;
  padding-left: 0.6em;
}

/* グリーン強調 */
.text-green,
strong.text-green,
p .text-green,
p strong.text-green {
  color: #007b43 !important;
  font-weight: bold;
}

/* ブラック強調 */
.text-black,
strong.text-black,
p .text-black,
p strong.text-black {
  color: #000 !important;
  font-weight: bold;
}

.text-small {
  font-size: 15px;         /* 小さめに調整 */
  line-height: 1.5;        /* 行間もしっかり詰める */
  margin-bottom: 0.8em;    /* 余白も小さめに */
  letter-spacing: 0;       /* 文字間の追加なしでコンパクトに */
}



/* リード文の余白調整 */
.lead-phrase {
  margin-bottom: 1.5em;
  line-height: 1.8;
  font-size: 1.1em;
}

/* pタグ共通行間調整 */
.company-about-text p {
  line-height: 1.9;
  margin-bottom: 1.2em;
  font-size: 15px;
}

.top-message-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
  margin-bottom: 2em;
}

.top-message-text {
  flex: 1;
  min-width: 260px;
}

.top-message-text p {
  font-size: 20px;
  line-height: 1.9;
  margin-bottom: 1em;
}

.top-message-image {
  flex-shrink: 0;
  max-width: 300px;
}

.top-message-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

@media screen and (max-width: 768px) {
  .top-message-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-message-image {
    max-width: 100%;
  }
}

.representative-block {
  margin-top: 2em;
  line-height: 1.5; /* 行間をやや狭め */
}

.company-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.2em;
}

.position-title {
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 0.2em;
  letter-spacing: 0.01em;
}

.rep-name {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.03em;
}

/* 会社ロゴマーク　*/
.vision-image-block {
  margin: 1.5em 0;
  text-align: center;
}

.vision-image {
  max-width: 95px;
  width: 90%;
  height: auto;
  border-radius: 6px;
  margin: 0 auto;
}

.text-large {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: bold;
}



.vision-full-wrapper {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.vision-clip-box {
  width: 100%;
}

.vision-clip-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

 /* ==== 沿革タイムライン共通 ==== */
.history-list {
  margin: 2em 0;
  padding-left: 1em;
  border-left: 3px solid #007b43;
  position: relative;
}

.history-entry {
  position: relative;
  margin-bottom: 2em;
  padding-left: 1.5em;
}

.history-entry::before {
  content: "";
  position: absolute;
  left: -0.6em;
  top: 0.3em;
  width: 12px;
  height: 12px;
  background-color: #007b43;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #007b43;
}

.year-box {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  color: #007b43;
  background: #f2fdf7;
  padding: 0.3em 0.7em;
  border-radius: 999px;
  margin-bottom: 0.5em;
  border: 1px solid #007b43;
}

.history-entry dd {
  margin: 0.4em 0 0 0;
  line-height: 1.9;
  font-size: 14.5px;
  color: #333;
}

@media screen and (max-width: 600px) {
  .year-box {
    font-size: 14px;
    padding: 0.25em 0.6em;
  }

  .history-entry dd {
    font-size: 14px;
  }

  .history-entry {
    padding-left: 1em;
  }
}

/* 沿革セクション画像ブロック */
.history-image-block {
  margin: 2em 0 1.5em;
  text-align: center;
  padding: 0;
}

.history-image-block img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 8px; /* 角丸を付けたい場合 */
}

.history-intro-box {
  background-color: #f8f8f8;
  border-left: 4px solid #007b43;
  padding: 1em 1.2em;
  margin: 1em 0 2em;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.history-entry {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2em;
  gap: 1.5em;
}

.history-content {
  flex: 1 1 60%;
  order: 1;
}

.history-image {
  flex: 1 1 35%;
  max-width: 350px;
  order: 2;
  text-align: right;
}

.history-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* モバイル対応：縦並び */
@media screen and (max-width: 350px) {
  .history-entry {
    flex-direction: column;
  }

  .history-image {
    order: 2;
    max-width: 100%;
    text-align: center;
    margin-top: 1em;
  }
  }

  .history-image.image-large-only {
  max-width: none !important;
}

  .history-image.image-large-only img {
  max-width: 250px;
 width: 100%;
  height: auto;
  display: block;
  margin: 1em auto 0;
  border-radius: 8px;
}
/* =============================== */
/* 地域GDPの拡大推進ページ用 追加CSS */
/* =============================== */

/* 各セクションの余白と統一感 */
.section {
  margin-bottom: 3em;
  padding: 1em 0;
}

/* キャッチコピーの見出し装飾 */
.catch {
  font-size: 1.3rem;
  font-weight: bold;
  color: #007b43;
  line-height: 1.6;
  margin-bottom: 1em;
  text-align: center;
}

/* 各セクション内の段落スタイル */
.section p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 1.2em;
}

/* アクションリスト全体（中央揃えレイアウト） */
.action-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
  padding: 0;
  margin: 2em 0;
  list-style: none;
}

.action-list li {
  max-width: 360px;
   margin: 0 5% 0 auto;
  padding: 1em 1em;
  background-color: #e6f3ec;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 123, 67, 0.05);
  text-align: left;
}


/* 各項目内のテキスト（pタグ） */
.action-list li p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* 強調タイトル */
.action-list li strong {
  font-size: 16px;
  font-weight: bold;
  color: #003d29;
}



/* アクション画像のサイズ・角丸・中央配置 */
.action-image img {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 1em;
  border-radius: 6px;
  display: block;
}

/* 共通画像ブロックの整形 */
.image-block {
  text-align: center;
  margin: 2em auto;
}

.image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

/* モバイル時のアクションリスト調整 */
@media screen and (max-width: 600px) {
  .action-list li {
    flex: 1 1 100%;
  }
}

/* 各セクションの上下余白を詰める */
.section {
  margin-top: 2em;
  margin-bottom: 2em;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.6; /* ← デフォルト1.8くらいが多いので少し詰めた例 */
}
/* キャッチコピーの下余白を少しだけに */
.catch {
  margin-bottom: 0.8em;
}

/* 画像周囲の余白も調整 */
.image-block {
  margin: 1.5em 0;
}

/* 最下段パラグラフの行間もやや詰める */
.section p {
  margin-bottom: 0.8em;
  line-height: 1.6;
}

/* アクションリスト（5つの項目）も少し詰める */
.action-list {
  gap: 1.2em;
  margin: 1.5em 0;
}
.action-list li {
  padding: 0.8em 1.4em;
}

.section-line {
  border: none;
  border-top: 1px solid #ccc; /* 線の色は必要に応じて変更 */
  margin: 1.5em 0 1.5em;       /* 上下の間隔を少し調整 */
}

/* ▼ ビジョンページ専用スタイル */

.vision-image-block {
   margin: 0 5% 0 auto;
  text-align: center;
}

.vision-soul-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2em auto;
  border-radius: 8px; /* お好みで角丸を調整 */
}

.vision-image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.text-green {
  color: #007b43;
}

.text-black {
  color: #333;
}

.text-small {
  font-size: 0.95rem;
}

.text-large {
  font-size: 1.2rem;
  line-height: 1.6;
}

.subsection-heading {
  font-size: 1.15rem;
  font-weight: bold;
   margin: 0 7% 0 auto;
  color: #007b43;
}

.vision-nav {
  display: flex;
  flex-wrap: nowrap;              /* 折り返さない */
  justify-content: space-between; /* 横一列で等間隔 */
  list-style: none;
  padding: 0;
  margin: 1em auto;               /* 余白を詰める */
  max-width: 100%;
}

.vision-nav li {
  flex: 1;
  text-align: center;
}

.vision-nav li a {
  color: #007b43;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  font-size: 13px;
  padding: 0.5em 0;
  display: block;
  white-space: nowrap;
}

.vision-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #007b43;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.vision-nav li a:hover::after {
  transform: scaleX(1);
}


/* ▼ スマホ対応 */
@media screen and (max-width: 600px) {
  .vision-nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
  }

  .vision-nav li {
    flex: 1;
    text-align: center;
  }

  .vision-nav li a {
    font-size: 12px;
    padding: 0.6em 0;
    display: block;
    white-space: nowrap;
  }
}

/* =============================== */
/* グループ会社ページ 別案スタイル */
/* =============================== */

/* === 店舗紹介カード（MOZAIKストアー各店） === */

.access-block {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  position: relative;
}

/* ↓ 線（下の横ライン）を完全に非表示にします */
.access-block::after {
  display: none;
}

/* 店舗画像 */
.access-img-large {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  object-fit: cover;
}

/* 店舗タイトル（見出し） */
.access-text h3.text-green {
  font-size: 1.2rem;
  color: #007b43;
  font-weight: bold;
  margin-bottom: 1rem;
  white-space: nowrap; /* 改行防止 */
  border: none;
  padding: 0;
}

/* 店舗説明 */
.access-detail {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .access-block {
    padding: 1.5rem 1rem;
    border-radius: 10px;
  }

  .access-text h3.text-green {
    font-size: 1.05rem;
    white-space: normal; /* スマホでは改行OKにするならここで調整 */
  }

  .access-detail {
    font-size: 14px;
  }
}

.access-link-wrap {
  text-align: center;
  margin-top: 2em;
}

.access-button {
  display: inline-block;
  background-color: #007b43;
  color: #ffffff !important; /* ← 上書き防止で絶対に白くする */
  font-size: 14px;
  font-weight: bold;
  padding: 0.8em 2em;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.access-button:visited,
.access-button:hover,
.access-button:active {
  color: #ffffff !important; /* ← 状態変化しても白のままに */
  text-decoration: none;
}

.group-logo-block {
  text-align: center;
  margin: 3em auto 2em;
  padding: 0 1em;
}

.group-logo-image {
  max-width: 180px;
  height: auto;
  margin-bottom: 1em;
  display: inline-block;
}

.group-logo-description {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
