@charset "utf-8";
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  /* 🎨 カラー（必要に応じて追加） */
  --primary-color: #34736C;
  --secondary-color: #ECF8E5;
  --accent-color: #9AEBA3;
  --text-color: #333;
  --background-color: #fff;

  /* ✍️ フォント */
  --font-family-base: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* フォントサイズ（基本 + 見出し用） */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 24px;
  --font-size-xl: 32px;
  --font-size-xxl: 48px;
  --font-size-xxll: 52px;

  /* フォントウェイト */
  --font-weight-normal: 400;
  --font-weight-bold: 700;

  /* 行間（line-height） */
  --line-height-tight: 1.2;
  --line-height-base: 1.6;
  --line-height-loose: 2;

  /* 📱 ブレイクポイント（レスポンシブ対応） */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;

  /* その他（必要に応じて） */
  --radius: 10px;
  --spacing: 20px;
}

/* 全体共通設定 */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-base, 'Arial', sans-serif);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.6);
  background: #fff;
  color: var(--text-color, #333);
}

/* 中央寄せ＋最大幅制限 */
.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  box-sizing: border-box;
}


h1 {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}

h2 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
}

p {
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
}

/* 共通ボタンデザイン */
.btn {
  display: inline-block;
  width: 280px; /* **ボタンをさらに長く** */
  padding: 14px 0; /* **高さをスリムに** */
  background: #01b973;
  color: white;
  text-decoration: none;
  border-radius: 30px; /* **丸みをつけてスマートに** */
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* ホバー時 */
.btn:hover {
  background: #5EC57E;
  transform: translateY(-2px); /* **少し浮かせるアニメーション** */
}

/* ===== ヘッダーのベーススタイル ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  z-index: 10;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50vw;
  width: 200vw;
  height: 100%;
  background-color: #ECF8E5;
  z-index: -1;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

/* ===== ロゴ ===== */
.header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header__logo img {
  height: 40px;
  margin-right: 10px;
}

.header__logo span {
  font-size: 18px;
  font-weight: bold;
  color: #34736C;
  white-space: nowrap;
}

/* ===== メニューアイコン ===== */
.header__menu-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 40px; /* 少し高さを持たせる */
  cursor: pointer;
  z-index: 11000;
}

.header__menu-icon span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #34736C;
  transition: transform 0.5s ease, background 0.3s ease;
}

/* 通常時（ハンバーガー2本） */
.header__menu-icon span:first-child {
  transform: translateY(-6px);
}

.header__menu-icon span:nth-child(2) {
  transform: translateY(6px);
}

/* メニュー展開時（バツ印） */
.header__menu-icon.active span:first-child {
  transform: rotate(45deg);
  background: #fff;
}

.header__menu-icon.active span:nth-child(2) {
  transform: rotate(-45deg);
  background: #fff;
}



/* ✅ メニュー展開時 */
.header__nav.active {
  clip-path: circle(150% at 50vw 50vh); /* **画面中央から均等に展開** */
}

/* ✅ メニューエリア (中央基準で展開) */
.header__nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background:  rgba(52, 115, 108, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;
  clip-path: circle(0% at 50vw 50vh);
  transition: clip-path 0.5s ease-in-out;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 40px; /* デフォルトの余白 */
}

/* ✅ 本体のスクロールを無効化 */
body.no-scroll {
  overflow: hidden;
}

/* ✅ ロゴの配置 (中央上部) */
.nav__logo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  max-width: 90%; /* ✅ 画面幅が狭くなっても切れないように制限 */
  box-sizing: border-box;
}

.nav__logo a {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap; /* ✅ 折り返し許可で狭い画面に対応 */
  text-decoration: none;
}

.nav__logo img {
  height: 60px;
  margin-right: 10px;
  max-width: 100%; /* ✅ ロゴ画像も拡大しすぎないように */
}

.nav__logo span {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  white-space: nowrap; /* ✅ 改行を防ぐ */
}


/* ✅ 全体のレイアウト */
.nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* ✅ 中央揃え */
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 40px 20px 20px 20px; /* モバイル対策の余白を確保 */
}

/* ✅ メニューリスト */
.nav-menu {
  width: 100%;
  padding: 10px 0;
  text-align: left;
}

.nav-menu,
.nav-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}


.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-list li {
  width: 100%;
  padding: 12px 0; /* ✅ 左右の余白を統一 */
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between; /* ✅ 矢印アイコンの位置調整 */
}

.nav-list li:last-child {
  border-bottom: none;
}

/* ✅ メニューリンク */
.nav-list li a {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: block;
  flex-grow: 1; /* ✅ クリック範囲を確保 */
}

.nav-list li::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M10 17l5-5-5-5v10z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: auto; /* ✅ 右端に配置 */
}


/* ✅ メニューと会社情報・Google Mapの配置 */
.nav-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* ✅ 会社情報 */
.nav-company-info {
  text-align: left;
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  max-width: 400px;
  line-height: 1.6;
}

/* ✅ リストのスタイル */
.nav-company-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-company-info li {
  margin-bottom: 8px;
}

.nav-company-info li:last-child {
  margin-bottom: 0;
}

/* ✅ Google Map */
.nav-map {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
}

.nav-map iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

/* XL: 1200px 以下 */
@media (max-width: 1200px) {
  .header {
    max-width: 100%;
    left: 0;
    transform: none;
    padding: 12px 20px;

  }

  .header .container {
    padding: 0;
  }
}

/* LG: 992px 以下 */
@media (max-width: 992px) {
  .header {
    padding: 20px 0; /* 上下に余裕を追加 */
  }

  .header .container {
    padding: 0 20px; /* 左右の余白はキープ */
  }

  .header__logo img {
    height: 32px;
  }

  .header__logo span {
    font-size: 16px;
  }

  .header__menu-icon {
    width: 50px;
    height: 18px;
  }

  .header__menu-icon span {
    height: 1.5px;
  }
}


/* MD: 768px 以下 */
@media (max-width: 768px) {
  .header__logo img {
    height: 28px;
  }

  .header__logo span {
    font-size: 15px;
  }
  .header__menu-icon {
    width: 45px;
    height: 18px;
  }

  .header__menu-icon span {
    height: 1.5px;
  }
}

/* SM: 576px 以下 */
@media (max-width: 576px) {
  .header__logo img {
    height: 26px;
  }

  .header__logo span {
    font-size: 14px;
  }

  .header__menu-icon {
    width: 50px;
  }
}

@media (max-width: 1200px) {
  .header__nav {
    padding: 30px 20px;
  }

  .nav__logo {
    position: static;
    transform: none;
    margin-bottom: 20px;
  }

  .nav-wrapper {
    padding-top: 0;
  }

  .nav__logo span {
    font-size: 40px;
  }

  .nav-list li a {
    font-size: 30px;
  }

  .nav-company-info {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .header__nav {
    padding: 20px;
  }

  .nav__logo img {
    height: 50px;
  }
  .nav__logo span {
    font-size: 36px;
  }
  .nav-list li a {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .nav__logo {
    margin-top: 70px;
    margin-bottom: 10px;
  }

  .nav__logo span {
    font-size: 28px;
  }

  .nav__logo img {
    height: 40px;
  }

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

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .nav-map {
    width: 100%;
    max-width: none;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    background: rgba(52, 115, 108, 0.95);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    padding: 40px 20px 100px;
    box-sizing: border-box;
    z-index: 9999;
  }
	
  .nav-wrapper {
    display: block;
    overflow: visible;
  }
	
  .nav__logo {
    position: static;
    transform: none;
    margin-top: 60px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
  }
  .nav__logo span {
    font-size: 26px;
  }

  .nav__logo img {
    height: 30px;
  }

  .nav-list li a {
    font-size: 20px;
  }
  .nav-container {
    padding: 10px;
  }
  .nav-company-info {
    font-size: 15px;
  }
}


/* ヒーローエリア */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  background: #ECF8E5;
  padding: 80px 0;
  position: relative;
  border-bottom-left-radius: 50% 10%;
  border-bottom-right-radius: 50% 10%;
}


.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px; /* 余白を追加 */
}

/* 左側テキスト */
.hero__content {
  width: 50%;
  max-width: 450px; /* コンパクトに */
}

.hero__content h1 {
  color: var(--primary-color);
  margin-bottom: 30px; /* **h1とpの間に適切な余白を確保** */
}

/* デフォルト（992px以上）では改行させる */
.br-lg {
  display: inline;
}

/* 992px以下では改行を無効にする */
@media (max-width: 992px) {
  .br-lg {
    display: none;
  }
}

/* `.hero__content p` のフォントをボールドに */
.hero__content p {
  color: #34736C;
  font-weight: bold;
  line-height: 1.6; /* 行間を広げて読みやすく */
  max-width: 100%; /* テキストの横幅を制限しすぎず、自然な配置に */
  margin-bottom: 30px; /* **ボタンとの間の余白を調整** */
}

/* `.hero__button` も `.btn` のデザインを適用 */
.hero__button {
  flex: 1;
  width: 100%;
  max-width: 280px;
  margin-top: 20px; /* **ボタンの位置を調整** */
}

.hero__illustration {
  margin-bottom: 10px;
  max-width: 50px;
  width: 100%;
  height: auto;
}

/* 画像エリア (正方形に変更) */
.hero__images {
  flex: 1;
  width: 100%;
  height: 500px;
  max-width: 400px;
  position: relative;
  overflow: hidden;
  background:  rgba(52, 115, 108, 0.95);

}

/* 画像のフェードアニメーション設定 */
.hero__images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* 最初の画像を表示 */
.hero__images img:first-child {
  opacity: 1;
}

/* スクロールインジケーター */
.scroll-indicator {
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: 1em;
  height: 4em;
  border: 2px solid #34736C;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 中のアニメーション要素 */
.scroll-indicator::before {
  content: "";
  position: absolute;
  width: 0.2em;
  height: 1em;
  background: #34736C;
  border-radius: 2px;
  animation: scrollAnimation 1.5s infinite ease-in-out;
}

/* スクロールアニメーション */
@keyframes scrollAnimation {
  0% {
    transform: translateY(-20%);
    opacity: 1;
  }
  100% {
    transform: translateY(80%);
    opacity: 0;
  }
}
@media (max-width: 1200px) {
  .hero .container {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding: 60px 0 80px; /* ✅ 下部に余裕を追加 */
  }

  .hero .container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .hero__images {
    flex: none;
    order: -1;
    width: 100%;
    max-width: 1000px;
    height: 400px;
    margin: 0 auto;
    text-align: initial;
  }

  .hero__content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .hero__content h1 {
    font-size: 32px;
    margin-bottom: 20px; /* ✅ h1とpの間 */
  }

  .hero__content p {
    font-size: var(--fs__md);
    margin-bottom: 30px; /* ✅ pとボタンの間 */
  }

  .hero__button {
    margin: 0 auto 40px; /* ✅ ボタン下にも空白 */
  }

  .scroll-indicator {
    position: absolute;
    bottom: -25px; /* ✅ heroエリアからはみ出す */
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hero__content h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .hero__content p {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .hero__images {
    width: 100%;
    height: 340px;
  }

  .hero__button {
    margin-bottom: 32px;
  }

  .scroll-indicator {
    bottom: -20px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 40px 0 70px; /* ✅ スクロールインジケーターの分を空ける */
  }

  .hero__content h1 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .hero__content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero__images {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
  }

  .hero__button {
    margin-bottom: 28px;
  }

  .scroll-indicator {
    bottom: -15px;
  }
}


/* 会社概要セクション */
.company-overview {
  background: #fff;
  padding: 100px 0;
}

.company-overview .container {
  display: flex;
  align-items: center;
  justify-content: center; /* ✅ 左右のバランスを中央寄せ */
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* 左側の画像 */
.company-overview__image {
  flex: 1; /* ✅ 幅を均等に分配 */
  display: flex;
  justify-content: center; /* ✅ 画像を中央揃え */
}

.company-overview__image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* 右側のテキストエリア */
.company-overview__content {
  flex: 1; /* ✅ 幅を均等に分配 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* 見出し */
.company-overview__content h2 {
  font-size: 48px;
  font-weight: bold;
  color: #34736C;
  margin-bottom: 20px;
}

/* 説明テキスト */
.company-overview__content p {
  max-width: 550px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ボタン */
.company-overview__button {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  padding: 12px 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  background: #34736C;
  color: white;
  border-radius: 30px;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.company-overview__button:hover {
  background: #285d57;
  transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
  .company-overview {
    padding: 80px 0;
  }

  .company-overview .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .company-overview__image {
    width: 100%;
  }

  .company-overview__image img {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    margin: 0 auto;
  }

  .company-overview__content {
    align-items: center;
  }

  .company-overview__content p {
    max-width: 90%;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .company-overview {
    padding: 80px 0;
  }

  .company-overview__content h2 {
    font-size: 28px;
  }

  .company-overview__content p {
    font-size: 18px;
    max-width: 100%;
    line-height: 1.7;
  }

  .company-overview__image img {
    width: 100%;
    height: 340px;
  }

  .company-overview__button {
    max-width: 240px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .company-overview {
    padding: 60px 0;
  }

  .company-overview__content h2 {
    font-size: 24px;
  }

  .company-overview__content p {
    font-size: 16px;
  }

  .company-overview__image img {
    width: 100%;
    height: auto; /* ✅ 高さは自動で比率維持 */
    object-fit: contain; /* ✅ はみ出さず自然な縮小 */
  }

  .company-overview__button {
    width: 100%;
    font-size: 14px;
  }
}

/* 事業内容セクション */
.business-section {
  background: #ECF8E5;
  padding: 100px 0;
  text-align: center;
}

.business-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* h2 タイトルの中央配置 & 余白統一 */
.business-section h2 {
  font-size: 48px;
  font-weight: bold;
  color: #34736C;
  margin-bottom: 50px; /* ✅ 統一されたマージン */
}

.business-section p {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
  margin-top: 10px;
  text-align: center; /* ✅ 中央揃え */
}

.business-content {
  display: flex;
  flex-wrap: wrap;           /* ✅ 折り返しを有効に */
  justify-content: center;   /* ✅ 中央に配置 */
  gap: 40px;
  margin-bottom: 70px;
}

.business-content {
  display: flex;
  flex-wrap: wrap;                /* 折り返しを有効に */
  justify-content: center;        /* 中央に揃える */
  gap: 40px;
  margin-bottom: 70px;
}
/* 共通横幅 */
.business-main-image,
.business-grid {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/* メイン画像 */
.business-main-image {
  margin-bottom: 60px;
  text-align: center;
}

.business-main-image img {
  width: 100%;
  height: 600px;
  border-radius: 10px;
}

/* グリッド配置 */
.business-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 60px;
}

/* 各アイテム */
.business-item {
  flex: 1 1 calc(25% - 30px);
  text-align: center;
}

.business-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.business-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: #34736C;
  margin-top: 10px;
}

/* 事業内容ページへのボタン */
.business-section__button {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  padding: 12px 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  background: #34736C;
  color: white;
  border-radius: 30px;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.business-section__button:hover {
  background: #285d57;
  transform: translateY(-2px);
}


/* 992px以下：横2つ並び、画像高さ調整 */
@media (max-width: 992px) {
  .business-item {
    flex: 1 1 calc(50% - 20px);
  }

  .business-main-image img {
    height: 500px;
  }

  .business-section h2 {
    font-size: 40px;
  }

  .business-section p {
    font-size: 20px;
  }
}

/* 768px以下：縦並び、中央寄せ */
@media (max-width: 768px) {
  .business-grid {
    gap: 15px;
    margin-bottom: 30px;
  }

  .business-main-image img {
    height: 400px;
  }

  .business-section h2 {
    font-size: 32px;
  }

  .business-section p {
    font-size: 18px;
  }

  .business-section__button {
    max-width: 240px;
    font-size: 16px;
  }
}

/* 576px以下：余白とフォント微調整 */
@media (max-width: 576px) {
  .business-section {
    padding: 60px 0;
  }

  .business-main-image img {
    height: 400px;
  }

  .business-section h2 {
    font-size: 28px;
  }

  .business-section p {
    font-size: 16px;
  }

  .business-grid {
    gap: 20px;
  }

  .business-item h3 {
    font-size: 18px;
  }

  .business-section__button {
    font-size: 15px;
    max-width: 220px;
  }
}


/* お知らせセクション */
.news-section {
  background: #fff;
  padding: 100px 0;
}

.news-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* h2 タイトルの中央配置 */
.news-section h2 {
  font-size: 48px;
  font-weight: bold;
  color: #34736C;
  text-align: center;
  margin-bottom: 50px;
}

/* ニュースリスト全体を中央配置 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px; /* ✅ 適切な幅で中央配置 */
  margin: 0 auto; /* ✅ 中央寄せ */
}

/* 各ニュース項目 */
.news-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ddd; /* ✅ 下線を追加 */
  text-align: left; /* ✅ テキストを左寄せ */
}

/* ✅ 一番上のアイテムに上部ボーダーを追加 */
.news-item:first-child {
  border-top: 1px solid #ddd;
}



/* 左側のメタ情報 (年月日・カテゴリー) */
.news-meta {
  width: 20%;
  min-width: 120px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 18px;
}

.news-date {
  font-weight: bold;
  color: #34736C;
}

.news-category {
  background: #34736C;
  color: white;
  font-size: 16px;
  padding: 2px 18px;
  border-radius: 10px;
  margin-top: 5px;
}

/* 右側のタイトル・抜粋 */
.news-content {
  flex: 1;
  padding-left: 20px;
  text-align: left; /* ✅ テキストを左寄せ */
}

.news-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

.news-title a {
  text-decoration: none;
  color: #333;
}

.news-title a:hover {
  color: #285d57;
}

.news-excerpt {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.news-excerpt a {
  text-decoration: none;
  color: #333;
}

/* 一覧ページへのボタン (中央配置) */
.news-section__button {
  display: block;
  margin: 50px auto 0; /* ✅ 上の余白を確保し、中央配置 */
  width: 100%;
  max-width: 280px;
  padding: 12px 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  background: #34736C;
  color: white;
  border-radius: 30px;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.news-section__button:hover {
  background: #285d57;
  transform: translateY(-2px);
}

/* 992px以下：横2つ並び、画像高さ調整 */
@media (max-width: 992px) {
  .news-section h2 {
    font-size: 40px;
  }

}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .news-section h2 {
    font-size: 32px;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-meta {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }

  .news-content {
    padding-left: 0;
  }

  .news-title {
    font-size: 18px;
  }

  .news-excerpt {
    font-size: 14px;
  }

  .news-section__button {
    max-width: 240px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .news-section h2 {
    font-size: 28px;
  }

  .news-section__button {
    font-size: 15px;
    max-width: 220px;
  }
}



/* 代表者の言葉セクション */
.ceo-message {
  padding: 100px 0;
  text-align: center;
}

/* セクションのコンテナ */
.ceo-message .container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* 会社ロゴの中央配置 */
.ceo-logo {
  margin-bottom: 40px;
}

.ceo-logo img {
  width: 110px; /* ✅ 適切なサイズに調整 */
  height: auto;
}

/* 代表者の言葉 */
.ceo-content {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center; /* ✅ テキストを左寄せ */
}

.ceo-content p {
  font-size: 36px; /* ✅ 大きめのフォント */
  font-weight: bold;
  color: #333;
  line-height: 1.8;
}

/* 代表者名の中央配置 */
.ceo-name {
  text-align: center;
}

.ceo-name p {
  font-size: 24px;
  font-weight: bold;
  color: #34736C;
  line-height: 1.6;
}


/* フッター */
.footer {
  background: #ECF8E5;
  padding: 80px 0;
  position: relative;
  width: 100%;

  /* ✅ 上部左右に丸みを持たせる */
  border-top-left-radius: 50% 10%;
  border-top-right-radius: 50% 10%;
  padding-bottom: 20px;

}


/* ✅ フッターコンテナ (nav-containerと同じレイアウト) */
.footer .container {
  display: flex;
  align-items: center; /* ✅ 縦中央揃え */
  justify-content: space-between; /* ✅ 左右均等配置 */
  width: 100%;
  max-width: 1000px; /* ✅ nav-container と統一 */
  gap: 40px; /* ✅ nav-containerと統一 */
  padding: 20px;
  margin: 0 auto; /* ✅ 中央寄せ */
}

/* ✅ Google Mapエリア */
.footer-map {
  flex: 1;
  max-width: 500px;
}

/* ✅ Google Mapのデザイン調整 */
.footer-map iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 10px;
}

/* ✅ 会社情報 */
.footer-info {
  flex: 1;
  text-align: left;
  max-width: 500px;
  background-color: #ffffff;
  padding:  0 20px 20px 20px;
  border-left: 5px solid #34736C; /* ✅ 飾りとして左にボーダー */
  border-right: 5px solid #34736C;
  border-radius: 10px;
}

/* ロゴ付きタイトル */
.footer-info h3 {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #34736C;
  margin-bottom: 16px;
  border-bottom: #34736C 2px dotted;
}

.footer-logo {
  height: 28px;
  margin-right: 10px;
}

.footer-info p {
  font-size: 16px;
  color: #333;
  margin-bottom: 1px;
}


.footer-nav {
  margin-top: 30px;
  text-align: center;
}

.footer-nav-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li a {
  color: #34736C;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
}

.footer-nav-list li a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer-nav-list {
    gap: 30px;
  }

  .footer-nav-list li a {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .footer-nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    row-gap: 10px;
  }

  .footer-nav-list li {
    flex: 0 1 auto;
  }

  .footer-nav-list li a {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .footer-nav {
    margin-top: 20px;
  }

  .footer-nav-list {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-nav-list li a {
    font-size: 14px;
  }
}

.footer-decoration {
  width: 100%;
  margin: 0;
  text-align: center;
}

.footer-decoration img {
  width: 100%;
  height: auto;
  display: block;
}


/* ✅ 著作権表記 */
.footer-copyright {
  background: #ECF8E5; /* ✅ フッターと同じ背景色 */
  text-align: center;
  margin-top: 15px;
  padding: 15px 0;
  font-size: 14px;
  color: #34736C;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: #ffffff 1px solid;
}


/* ✅ レスポンシブ対応 */
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column; /* ✅ スマホでは縦並び */
    text-align: center;
    gap: 30px;
  }

  .footer-info {
    text-align: center;
  }
}
.calendar {
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 14px;
  }
  .calendar th,
  .calendar td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
    height: 40px;
  }
  .calendar th {
    background-color: #f0f0f0;
  }
  .holiday {
    background-color: #ffe6e6;
    color: #c00;
    font-weight: bold;
  }