* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Yu Gothic", "Hiragino Sans", "Meiryo", sans-serif;
  color: #1f2d3d;
  background: #f4f7fb;
  line-height: 1.8;
}

.site-header {
  background: #0c4a7c;
  color: #fff;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-title {
  flex: 0 0 auto;
}

.site-title span {
  font-size: 13px;
  opacity: .85;
}

.site-title h1 {
  font-size: 34px;
  line-height: 1.3;
}

.site-title p {
  font-size: 15px;
  margin-top: 6px;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 760px;
}

.global-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  font-size: 15px;
}

.hero {
  position: relative;
  min-height: 560px;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .28));
}

.hero-bg.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  padding: 70px 70px;
}

.hero-photo-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 999px;
  background: rgba(0, 0, 0, .25);
  font-size: 14px;
  font-weight: bold;
}

.hero-lead {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 14px;
}

.hero h2 {
  font-size: 48px;
  line-height: 1.35;
  margin-bottom: 18px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .45);
}

.hero-line {
  width: 120px;
  height: 4px;
  background: #f2c94c;
  margin: 20px 0;
  border-radius: 10px;
}

.hero-text {
  font-size: 18px;
  font-weight: bold;
  max-width: 620px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-button {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.hero-button.primary {
  background: #0c5ca8;
}

.hero-button.secondary {
  border: 2px solid rgba(255, 255, 255, .75);
  background: rgba(0, 0, 0, .2);
}

.section {
  padding: 64px 20px;
}

.section-inner {
  max-width: 1100px;
  margin: auto;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.section-heading h2 {
  margin: 0;
}

.more-link {
  font-weight: 600;
  color: #2b6cb0;
  text-decoration: none;
}

.more-link:hover {
  text-decoration: underline;
}

.section-heading h2,
.section-title {
  text-align: center;
  color: #0c4a7c;
  font-size: 32px;
}

.section-heading h2::after,
.section-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: #4caf50;
  margin: 10px auto 0;
  border-radius: 20px;
}

.more-link {
  position: absolute;
  right: 0;
  color: #0c5ca8;
  text-decoration: none;
  font-weight: bold;
}

.news-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .10);
  padding: 10px 28px;
}

.news-row {
  display: grid;
  grid-template-columns: 120px 90px 1fr 30px;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid #e6edf5;
}

.news-row:last-child {
  border-bottom: none;
}

.news-date {
  color: #37a652;
  font-weight: bold;
}

.news-label {
  background: #e6f6e9;
  color: #2f9d45;
  border-radius: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  padding: 3px 10px;
}

.news-row h3 {
  font-size: 16px;
}

.arrow {
  font-size: 28px;
  color: #555;
}

.light {
  background: #fff;
}

.card-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.menu-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 20px;
  text-decoration: none;
  color: #1f2d3d;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
  min-height: 210px;
  position: relative;
  transition: .25s;
}

.menu-card:hover {
  transform: translateY(-6px);
}

.card-icon {
  font-size: 38px;
  color: #0c5ca8;
  margin-bottom: 12px;
}

.line-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #30b84a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}

.menu-card h3 {
  color: #0c4a7c;
  margin-bottom: 8px;
}

.menu-card p {
  font-size: 14px;
}

.menu-card span {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: #0c5ca8;
  font-size: 24px;
}

.site-footer {
  background: #0c4a7c;
  color: #fff;
  text-align: center;
  padding: 26px;
}

.hero-photo-info {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
  font-weight: bold;
}

.hero-photo-info span {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .45);
  font-size: 14px;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(0, 0, 0, .25);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-nav:hover {
  background: rgba(12, 74, 124, .85);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.hero-dots button.active {
  background: #fff;
}

.news-label.photo {
  background: #f1e8ff;
  color: #7b3fc6;
}

.sub-page-hero {
  background: linear-gradient(135deg, #0c4a7c, #2f8f5b);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.sub-page-hero h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.sub-label {
  font-size: 14px;
  letter-spacing: .08em;
  opacity: .85;
  margin-bottom: 8px;
}

.page-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 14px;
  opacity: .85;
  margin-bottom: 22px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: 22px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

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

.footer-copy {
  font-size: 13px;
  opacity: .75;
}

.post-category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-news {
  background: #e9f3ff;
  color: #1565c0;
}

.category-event {
  background: #e9f8ee;
  color: #2e7d32;
}

.category-report {
  background: #fff4e5;
  color: #ef6c00;
}

@media(max-width:768px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media(max-width:1000px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-grid-7 {
  grid-template-columns: repeat(4, 1fr);
}

.photo-card {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff, #f7f1ff);
}

.photo-card h3 {
  color: #7b3fc6;
}


/* ===========================
   Footer
=========================== */

.site-footer {
  background: #234f84;
  color: #fff;
  padding: 60px 20px 35px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
}

.site-footer h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.site-footer p {
  margin-bottom: 25px;
  opacity: .9;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.footer-nav a:hover {
  color: #8fd16a;
}

.copyright {
  font-size: .9rem;
  opacity: .7;
}

/* ===========================
   About / Static Pages
=========================== */

.page-hero-simple {
  background: linear-gradient(135deg, #1f5b86, #3b9b5f);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
}

.page-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.page-label {
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 18px;
}

.page-hero h2 {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.content-section {
  background: #f4f7fb;
  padding: 70px 20px;
}

.content-card {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.content-card h3 {
  color: #1f4f82;
  font-size: 1.5rem;
  margin-top: 38px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 5px solid #58b957;
}

.content-card h3:first-child {
  margin-top: 0;
}

.content-card p {
  line-height: 1.9;
  color: #333;
  margin-bottom: 18px;
}

.info-list {
  padding-left: 1.5em;
  line-height: 2;
}

.site-message {
  margin-top: 45px;
  padding: 30px;
  background: #eef7ee;
  border-radius: 14px;
  border-left: 6px solid #58b957;
}

.site-message strong {
  display: block;
  color: #1f4f82;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-org {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 16px;
}

.public-post-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.public-post-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.public-post-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.public-post-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}

.public-post-body {
  padding: 20px;
}

.public-post-meta {
  font-size: 13px;
  color: #4b7f63;
  font-weight: 700;
  margin-bottom: 8px;
}

.public-post-body h3 {
  font-size: 18px;
  margin: 0 0 12px;
  line-height: 1.5;
}

.public-event-info {
  background: #f0f7f3;
  border-left: 4px solid #2f8f5b;
  padding: 10px 12px;
  margin: 12px 0;
  border-radius: 8px;
}

.public-event-info p {
  margin: 4px 0;
  font-size: 14px;
}

.public-post-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

.detail-eyecatch {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  border-radius: 18px;
  margin-bottom: 30px;
  display: block;
  background: #f5f7f8;
}

.detail-meta {
  color: #2f8f5b;
  font-weight: 700;
  margin-bottom: 12px;
}

.detail-event-box {
  background: #f0f7f3;
  border-left: 5px solid #2f8f5b;
  padding: 20px;
  border-radius: 14px;
  margin: 24px 0;
}

.detail-event-box h2 {
  margin-top: 0;
}

.detail-event-box p {
  margin: 8px 0;
  line-height: 1.7;
}

.detail-body {
  margin-top: 40px;
  font-size: 1.05rem;
  line-height: 2;
}

.detail-body h2 {
  margin-bottom: 20px;
}

.detail-link {
  margin-top: 18px;
}

.detail-link a {
  font-weight: 700;
  color: #1f6fb2;
  text-decoration: none;
}

.detail-nav {
  max-width: 960px;
  margin: 32px auto 60px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
}

.detail-nav a {

  text-decoration: none;

  font-weight: bold;

  color: #2c6fb7;

}

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

.back-link {
  margin-bottom: 20px;
}

.back-link a {
  color: #2c6fb7;
  text-decoration: none;
  font-weight: bold;
}

/*==================================
  お知らせ一覧（Ver1.20）
==================================*/

.news-filter {

  display: flex;
  gap: 20px;
  flex-wrap: wrap;

  margin: 30px 0;

}

.news-filter label {

  display: flex;
  flex-direction: column;

  font-weight: bold;

  gap: 8px;

}

.news-filter select {

  min-width: 220px;

  padding: 10px 14px;

  border-radius: 10px;

  border: 1px solid #ddd;

  font-size: 15px;

}

.news-list-item {

  background: #fff;

  border-radius: 16px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);

  overflow: hidden;

  margin-bottom: 25px;

}

.news-list-image {

  width: 100%;

  height: 260px;

  object-fit: cover;

  display: block;

}

.news-list-body {

  padding: 24px;

}

.news-list-body h2 {

  margin: 10px 0 15px;

  font-size: 1.5rem;

  line-height: 1.5;

}

.news-list-body p {

  line-height: 1.8;

}

.detail-link {

  margin-top: 18px;

  text-align: right;

}

.detail-link a {

  text-decoration: none;

  color: #1f6fb2;

  font-weight: bold;

}

.detail-link a:hover {

  color: #0a4f8f;

}

.more-link {
  text-align: center;
  margin-top: 32px;
}

.news-filter input {
  min-width: 260px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}


.section-title-center {
  text-align: center;
}

.section-description {
  text-align: center;
  margin: 20px auto 30px;
  color: #555;
}

.more-link-right {
  text-align: right;
  margin-bottom: 20px;
}

.section-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section-heading .more-link {
  position: absolute;
  right: 0;
}

.detail-link {
  text-align: right;
  margin-top: 18px;
}

.detail-link a {
  display: inline-block;
}

.site-title h1 a {
  color: inherit;
  text-decoration: none;
}

.site-title h1 a:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-hero h2 {
    font-size: 2rem;
  }

  .content-card {
    padding: 32px 22px;
  }
}

@media(max-width:1000px) {
  .menu-grid-7 {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-card {
    grid-column: span 2;
  }
}

@media(max-width:768px) {
  .menu-grid-7 {
    grid-template-columns: 1fr;
  }

  .photo-card {
    grid-column: span 1;
  }
}

@media(max-width:768px) {
  .site-title h1 {
    font-size: 26px;
  }

  .global-nav {
    gap: 12px;
  }

  .global-nav a {
    font-size: 14px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 50px 24px;
  }

  .hero h2 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 16px;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .more-link {
    display: none;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================
   Ver1.00 追加CSS
========================================================== */


/* ==================================================
   一箕地区ポータル Ver1.00
   ヘッダー・ナビゲーション・スマートフォン調整
================================================== */

/* キーボード操作時の見やすさ */
a:focus-visible,
button:focus-visible {
  outline: 3px solid #f2c94c;
  outline-offset: 4px;
}

/* --------------------------
   ヘッダー
-------------------------- */

.header-inner {
  padding: 26px 40px;
  align-items: flex-start;
  gap: 32px;
}

.site-title {
  flex: 0 0 380px;
}

.site-title h1 a {
  color: inherit;
  text-decoration: none;
}

.site-title h1 a:hover {
  opacity: 0.9;
}

.global-nav {
  flex: 1 1 auto;
  max-width: none;
  gap: 14px 20px;
  padding-top: 12px;
}

.global-nav a {
  position: relative;
  padding: 4px 0;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.global-nav a:hover {
  color: #dff4ff;
}

.global-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  border-radius: 999px;
  background: #f2c94c;
}

/* --------------------------
   ヒーローボタン
-------------------------- */

.hero-button {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
}

.hero-button.primary:hover {
  background: #084d91;
}

.hero-button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* --------------------------
   フッター
-------------------------- */

.footer-nav a {
  padding: 3px 0;
}

/* ==================================================
   Ver1.00 地域ブログ追加
================================================== */

.photo-card {
  grid-column: span 1;
}

.blog-card {
  background: linear-gradient(135deg, #ffffff, #eef7ff);
}

.blog-card h3 {
  color: #1f6fb2;
}

/* ==================================================
   Ver1.00 地域ブログ紹介
================================================== */

.blog-section {
  background: linear-gradient(135deg, #edf6fc, #f4fbf4);
}

.blog-introduction {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 50px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.blog-label {
  color: #2f8f5b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.blog-introduction h2 {
  color: #0c4a7c;
  font-size: 34px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.blog-introduction-text>p:not(.blog-label) {
  color: #444;
  line-height: 2;
  margin-bottom: 26px;
}

.blog-button {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  background: #0c5ca8;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.blog-button:hover {
  background: #084d91;
  transform: translateY(-2px);
}

.blog-introduction-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.blog-introduction-panel span {
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  background: #eef6fb;
  color: #0c4a7c;
  font-weight: 700;
  text-align: center;
}

.blog-introduction-panel span:nth-child(2),
.blog-introduction-panel span:nth-child(3) {
  background: #eef8ef;
  color: #2f7f48;
}

@media (max-width: 768px) {

  .blog-introduction {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 22px;
  }

  .blog-introduction h2 {
    font-size: 27px;
  }

  .blog-introduction-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-introduction-panel span {
    min-height: 80px;
    font-size: 14px;
  }

  .blog-button {
    display: block;
    text-align: center;
  }
}

@media (max-width: 420px) {

  .blog-introduction-panel {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   Ver1.00 一箕地区について
================================================== */

.about-introduction {
  background: #fff;
}

.about-introduction-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 60px;
}

.about-label {
  color: #2f8f5b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.about-introduction-text h2 {
  color: #0c4a7c;
  font-size: 34px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.about-introduction-text p {
  color: #444;
  line-height: 2;
  margin-bottom: 16px;
}

.about-button {
  display: inline-block;
  margin-top: 12px;
  padding: 13px 24px;
  border: 2px solid #0c5ca8;
  border-radius: 8px;
  color: #0c5ca8;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.about-button:hover {
  color: #fff;
  background: #0c5ca8;
  transform: translateY(-2px);
}

.about-information {
  display: grid;
  gap: 16px;
}

.about-information-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid #e0e8ef;
  border-radius: 16px;
  background: #f8fafc;
  color: #1f2d3d;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.about-information-item:hover {
  transform: translateY(-3px);
  border-color: #8bbf9a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.about-information-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f3ed;
  font-size: 28px;
}

.about-information-item h3 {
  color: #0c4a7c;
  font-size: 18px;
  margin-bottom: 4px;
}

.about-information-item p {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

/* タブレット・スマートフォン */
@media (max-width: 850px) {

  .about-introduction-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .about-introduction-text h2 {
    font-size: 27px;
  }

  .about-button {
    display: block;
    text-align: center;
  }

  .about-information-item {
    padding: 18px;
  }

  .about-information-icon {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

.about-introduction {
  padding-top: 56px;
  padding-bottom: 56px;

  #main-menu {
    padding-top: 56px;
  }
}

/* --------------------------
   タブレット
-------------------------- */

@media (max-width: 1100px) {

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px 32px;
  }

  .site-title {
    flex-basis: auto;
  }

  .global-nav {
    justify-content: flex-start;
    padding-top: 0;
  }
}

/* --------------------------
   スマートフォン
-------------------------- */

@media (max-width: 768px) {

  .header-inner {
    padding: 20px;
  }

  .site-title span {
    font-size: 12px;
  }

  .site-title h1 {
    font-size: 25px;
    line-height: 1.4;
  }

  .site-title p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* スマホではナビを2列のボタン形式にする */
  .global-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .global-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 8px 6px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    text-align: center;
    white-space: normal;
    font-size: 13px;
    line-height: 1.4;
  }

  .global-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .global-nav a[aria-current="page"] {
    border-color: #f2c94c;
  }

  .global-nav a[aria-current="page"]::after {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 48px 58px 62px;
  }

  .hero-photo-label {
    font-size: 12px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero h2 {
    font-size: 31px;
    line-height: 1.45;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
  }

  .hero-button {
    width: 100%;
    padding: 13px 18px;
    text-align: center;
  }

  .hero-nav {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .hero-photo-info {
    gap: 8px;
  }

  .hero-photo-info span {
    padding: 5px 10px;
    font-size: 12px;
  }

  .section {
    padding: 50px 18px;
  }

  .section-heading h2,
  .section-title,
  .section-title-center {
    font-size: 27px;
  }

  .more-link-right {
    text-align: center;
  }

  .public-post-image {
    height: 220px;
  }

  /* 従来の縦一列指定を上書き */
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .footer-nav a {
    padding: 6px 2px;
    font-size: 13px;
  }
}

/* --------------------------
   小さいスマートフォン
-------------------------- */

@media (max-width: 420px) {

  .site-title h1 {
    font-size: 22px;
  }

  .global-nav {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 42px 48px 62px;
  }

  .hero h2 {
    font-size: 27px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   Ver1.00 主なメニュー調整
================================================== */

#main-menu {
  background: #f7f9fc;
}

#main-menu .section-inner {
  max-width: 1100px;
}

/* 8項目をPCで4列×2段にする */
.menu-grid-7 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

/* すべてのカードの大きさと構造を統一 */
.menu-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 28px 24px 24px;
  border: 1px solid #e4eaf0;
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: #9cc7ad;
  box-shadow: 0 14px 30px rgba(20, 54, 80, 0.14);
}

/* アイコンの配置と大きさを統一 */
.menu-card .card-icon {
  min-height: 58px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 40px;
}

/* LINEアイコンも他と高さを合わせる */
.menu-card .line-icon {
  width: 56px;
  height: 56px;
  min-height: 56px;
  margin-bottom: 18px;
  font-size: 13px;
}

/* 見出し */
.menu-card h3 {
  min-height: 34px;
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.5;
}

/* 説明文 */
.menu-card p {
  flex: 1;
  margin-bottom: 24px;
  color: #4a5560;
  font-size: 14px;
  line-height: 1.8;
}

/* 右下の矢印 */
.menu-card>span {
  right: 20px;
  bottom: 16px;
  font-size: 24px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.menu-card:hover>span {
  transform: translateX(4px);
}

/* 地域ブログ */
.blog-card {
  background: linear-gradient(135deg, #ffffff, #edf6ff);
}

/* フォトコンテスト */
.photo-card {
  grid-column: span 1;
  background: linear-gradient(135deg, #ffffff, #f7f1ff);
}

/* タブレット */
@media (max-width: 1000px) {

  .menu-grid-7 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-card {
    grid-column: span 1;
  }
}

/* スマートフォン */
@media (max-width: 768px) {

  /*
    既存CSSの
    .card-grid { grid-template-columns: 1fr; }
    を上書きします
  */
  .card-grid.menu-grid-7 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .menu-card {
    min-height: 220px;
    padding: 22px 16px 20px;
  }

  .menu-card .card-icon {
    min-height: 50px;
    font-size: 34px;
  }

  .menu-card .line-icon {
    width: 50px;
    height: 50px;
    min-height: 50px;
    font-size: 12px;
  }

  .menu-card h3 {
    min-height: 54px;
    font-size: 17px;
  }

  .menu-card p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* 小さいスマートフォン */
@media (max-width: 480px) {

  .card-grid.menu-grid-7 {
    grid-template-columns: 1fr;
  }

  .menu-card {
    min-height: 190px;
  }

  .menu-card h3 {
    min-height: auto;
  }
}

/* ==================================================
   Ver1.00 最新のお知らせカード調整
================================================== */

.public-post-list {
  align-items: stretch;
}

.public-post-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.public-post-image-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #eef2f5;
}

.public-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.35s ease;
}

.public-post-card:hover .public-post-image {
  transform: scale(1.025);
}

/* 画像なし記事 */
.public-post-no-image {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    linear-gradient(135deg, #edf6fb, #eef8ef);
  color: #0c4a7c;
}

.public-post-no-image-icon {
  font-size: 52px;
  line-height: 1;
}

.public-post-no-image-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* カード本文 */
.public-post-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.public-post-meta {
  min-height: 34px;
}

.public-post-body h3 {
  min-height: 82px;
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.55;
}

/* 行事情報 */
.public-event-info {
  margin-bottom: 18px;
}

.public-event-info p {
  word-break: break-word;
}

/* 詳しく見るを最下部に統一 */
.public-post-detail-link {
  margin-top: auto;
  padding-top: 18px;
}

.public-post-detail-link a {
  display: inline-block;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.public-post-detail-link a:hover {
  color: #0a4f8f;
  transform: translateX(3px);
}

/* 読み込み・エラー表示 */
.public-post-message {
  grid-column: 1 / -1;
  padding: 32px;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  color: #555;
}

/* スマートフォン */
@media (max-width: 768px) {

  .public-post-image-wrap,
  .public-post-no-image {
    height: 220px;
  }

  .public-post-body h3 {
    min-height: auto;
  }
}

/* ==================================================
   Ver1.00 公式LINE案内
================================================== */

.line-introduction {
  background: linear-gradient(135deg, #edf9f0, #f4faf6);
}

.line-introduction-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 48px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.line-section-label {
  color: #2f9d45;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.line-introduction-text h2 {
  color: #0c4a7c;
  font-size: 34px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.line-introduction-text>p {
  color: #444;
  line-height: 1.9;
  margin-bottom: 14px;
}

.line-note {
  font-size: 14px;
  color: #5d6b63;
}

.line-introduction-button {
  display: inline-block;
  margin-top: 12px;
  padding: 13px 24px;
  border-radius: 8px;
  background: #2f9d45;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.line-introduction-button:hover {
  background: #267f39;
  transform: translateY(-2px);
}

.line-introduction-features {
  display: grid;
  gap: 14px;
}

.line-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #dce9df;
  border-radius: 14px;
  background: #f8fcf9;
}

.line-feature-item>span {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e5f5e8;
  font-size: 23px;
}

.line-feature-item h3 {
  color: #0c4a7c;
  font-size: 17px;
  margin-bottom: 3px;
}

.line-feature-item p {
  color: #555;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 850px) {

  .line-introduction-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 768px) {

  .line-introduction-card {
    padding: 30px 22px;
  }

  .line-introduction-text h2 {
    font-size: 27px;
  }

  .line-introduction-button {
    display: block;
    text-align: center;
  }

  .line-feature-item {
    padding: 16px;
  }
}

/* ==================================================
   Ver1.00 Aboutページ
================================================== */

/* ページ内メニュー */
.about-page-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dfe7ed;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.about-page-nav a {
  color: #0c4a7c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.about-page-nav a:hover {
  color: #2f8f5b;
}

/* 固定メニューで見出しが隠れないようにする */
#overview,
#history,
#nature,
#community,
#purpose,
#operation {
  scroll-margin-top: 90px;
}

.content-section-light {
  background: #eef3f7;
}

.content-label {
  margin-bottom: 6px !important;
  color: #2f8f5b !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-note {
  margin-top: 30px;
  padding: 24px;
  border-left: 5px solid #2f8f5b;
  border-radius: 12px;
  background: #eef8f0;
}

.about-note strong {
  display: block;
  margin-bottom: 8px;
  color: #0c4a7c;
  font-size: 18px;
}

.about-note p {
  margin-bottom: 0;
}

.about-link-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid #dce5eb;
  border-radius: 14px;
  background: #f8fafc;
}

.about-link-box h4 {
  margin-bottom: 6px;
  color: #0c4a7c;
  font-size: 18px;
}

.about-link-box p {
  margin-bottom: 0;
  font-size: 14px;
}

.about-link-box a {
  flex: 0 0 auto;
  padding: 11px 18px;
  border-radius: 8px;
  background: #0c5ca8;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.about-link-box a:hover {
  background: #084d91;
}

.operation-table {
  margin: 24px 0 36px;
  overflow: hidden;
  border: 1px solid #dde5eb;
  border-radius: 12px;
}

.operation-table dl {
  margin: 0;
}

.operation-table dl>div {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid #dde5eb;
}

.operation-table dl>div:last-child {
  border-bottom: none;
}

.operation-table dt,
.operation-table dd {
  padding: 14px 18px;
}

.operation-table dt {
  background: #edf4f8;
  color: #0c4a7c;
  font-weight: 700;
}

.operation-table dd {
  margin: 0;
  background: #fff;
}

/* タブレット・スマートフォン */
@media (max-width: 768px) {

  .about-page-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .about-page-nav a {
    padding: 8px 5px;
    border: 1px solid #dce5eb;
    border-radius: 7px;
    background: #f8fafc;
    text-align: center;
    font-size: 13px;
  }

  .about-link-box {
    flex-direction: column;
    align-items: stretch;
  }

  .about-link-box a {
    text-align: center;
  }

  .operation-table dl>div {
    grid-template-columns: 1fr;
  }

  .operation-table dt {
    padding-bottom: 7px;
  }

  .operation-table dd {
    padding-top: 7px;
  }
}

@media (max-width: 420px) {

  .about-page-nav {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   Ver1.00 公式LINEページ
================================================== */

.line-mobile-break {
  display: none;
}

/* ページ冒頭 */
.line-page-introduction {
  background: linear-gradient(135deg, #eef9f0, #f6fbf7);
}

.line-page-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 60px;
}

.line-page-label {
  color: #2f9d45;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.line-page-text h2 {
  color: #0c4a7c;
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.line-page-text>p {
  color: #444;
  line-height: 2;
  margin-bottom: 15px;
}

.line-page-note {
  margin-top: 28px;
  padding: 22px;
  border-left: 5px solid #2f9d45;
  border-radius: 12px;
  background: #fff;
}

.line-page-note strong {
  display: block;
  margin-bottom: 8px;
  color: #0c4a7c;
  font-size: 17px;
}

.line-page-note p {
  margin: 0;
  color: #4b5b50;
  font-size: 14px;
  line-height: 1.8;
}

/* LINEロゴ風表示 */
.line-page-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  padding: 40px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.line-page-logo-circle {
  width: 145px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #30b84a;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.line-page-logo p {
  color: #0c4a7c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

/* 配信内容 */
.line-content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.line-content-card {
  padding: 28px 22px;
  border: 1px solid #e0e9e3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}

.line-content-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #e8f6eb;
  font-size: 28px;
}

.line-content-card h3 {
  color: #0c4a7c;
  font-size: 18px;
  margin-bottom: 10px;
}

.line-content-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

/* 友だち追加 */
.line-register-section {
  background: linear-gradient(135deg, #e6f6e9, #f3faf4);
}

.line-register-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  padding: 48px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.line-register-text h2 {
  color: #0c4a7c;
  font-size: 34px;
  margin-bottom: 18px;
}

.line-register-text>p {
  color: #444;
  line-height: 1.9;
  margin-bottom: 18px;
}

.line-register-button {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  background: #2f9d45;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.line-register-button:hover {
  background: #267f39;
}

.line-button-disabled {
  background: #94a79a;
  cursor: not-allowed;
  pointer-events: none;
}

.line-register-status {
  margin-top: 12px;
  color: #68766c !important;
  font-size: 13px;
}

.line-qr-area {
  display: flex;
  justify-content: center;
}

.line-qr-placeholder {
  width: 230px;
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px dashed #9ebba5;
  border-radius: 16px;
  background: #f5faf6;
  color: #2f7f48;
  text-align: center;
}

.line-qr-placeholder span {
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
}

.line-qr-placeholder p {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

/* 利用上の注意 */
.line-guidance-list {
  display: grid;
  gap: 18px;
  max-width: 960px;
  margin: 36px auto 0;
}

.line-guidance-item {
  padding: 26px 28px;
  border-left: 5px solid #2f9d45;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.06);
}

.line-guidance-item h3 {
  color: #0c4a7c;
  font-size: 19px;
  margin-bottom: 10px;
}

.line-guidance-item p {
  color: #4b4b4b;
  line-height: 1.9;
  margin-bottom: 7px;
}

.line-guidance-item p:last-child {
  margin-bottom: 0;
}

/* 個人情報 */
.line-policy-section {
  background: #edf5f8;
}

.line-policy-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px 42px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.line-policy-card h2 {
  color: #0c4a7c;
  font-size: 28px;
  margin-bottom: 14px;
}

.line-policy-card p {
  max-width: 700px;
  color: #444;
  line-height: 1.9;
}

.line-policy-button {
  flex: 0 0 auto;
  padding: 13px 22px;
  border: 2px solid #0c5ca8;
  border-radius: 8px;
  color: #0c5ca8;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
}

.line-policy-button:hover {
  color: #fff;
  background: #0c5ca8;
}

/* お問い合わせ */
.line-contact-box {
  max-width: 850px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.line-contact-box h2 {
  color: #0c4a7c;
  font-size: 28px;
  margin-bottom: 14px;
}

.line-contact-box p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 22px;
}

.line-contact-button {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  background: #0c5ca8;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.line-contact-button:hover {
  background: #084d91;
}

/* タブレット */
@media (max-width: 900px) {

  .line-page-grid,
  .line-register-card {
    grid-template-columns: 1fr;
  }

  .line-page-logo {
    min-height: 270px;
  }

  .line-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* スマートフォン */
@media (max-width: 768px) {

  .line-mobile-break {
    display: block;
  }

  .line-page-text h2,
  .line-register-text h2 {
    font-size: 27px;
  }

  .line-page-logo {
    min-height: auto;
    padding: 30px;
  }

  .line-page-logo-circle {
    width: 115px;
    height: 115px;
    font-size: 24px;
  }

  .line-register-card {
    padding: 30px 22px;
  }

  .line-register-button {
    display: block;
    text-align: center;
  }

  .line-policy-card {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 22px;
  }

  .line-policy-button {
    text-align: center;
  }

  .line-contact-box {
    padding: 30px 22px;
  }
}

/* 小さいスマートフォン */
@media (max-width: 480px) {

  .line-content-grid {
    grid-template-columns: 1fr;
  }

  .line-qr-placeholder {
    width: 200px;
    height: 200px;
  }
}

/* ==================================================
   Ver1.00 公式LINEアカウント情報
================================================== */

.line-account-info {
  margin: 24px 0 18px;
  padding: 18px 20px;
  border-left: 5px solid #30b84a;
  border-radius: 10px;
  background: #f1faf3;
}

.line-account-name {
  margin-bottom: 5px !important;
  color: #0c4a7c !important;
  font-size: 19px;
  font-weight: 700;
}

.line-account-id {
  margin-bottom: 0 !important;
  color: #444 !important;
  font-size: 15px;
}

.line-account-id strong {
  color: #218a38;
  font-size: 18px;
  letter-spacing: 0.04em;
}

/* ==================================================
   Ver1.00 WordPress最新記事
================================================== */

.blog-post-title {
  margin-top: 48px;
  color: #0c4a7c;
  font-size: 26px;
  text-align: center;
}

.blog-post-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: #4caf50;
}

.wordpress-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.wordpress-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e0e8ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.wordpress-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.wordpress-image-link {
  display: block;
  overflow: hidden;
}

.wordpress-image,
.wordpress-no-image {
  width: 100%;
  height: 190px;
}

.wordpress-image {
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wordpress-card:hover .wordpress-image {
  transform: scale(1.03);
}

.wordpress-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #edf6fc, #eef8ef);
  color: #0c4a7c;
  font-size: 46px;
}

.wordpress-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.wordpress-date {
  margin-bottom: 8px;
  color: #4b7f63;
  font-size: 13px;
  font-weight: 700;
}

.wordpress-body h3 {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.55;
}

.wordpress-body h3 a {
  color: #0c4a7c;
  text-decoration: none;
}

.wordpress-body h3 a:hover {
  color: #0c5ca8;
}

.wordpress-excerpt {
  margin-bottom: 18px;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

.wordpress-link {
  margin-top: auto;
  text-align: right;
}

.wordpress-link a {
  color: #0c5ca8;
  text-decoration: none;
  font-weight: 700;
}

.wordpress-link a:hover {
  text-decoration: underline;
}

.wordpress-message {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: 12px;
  background: #fff;
  color: #555;
  text-align: center;
}

@media (max-width: 900px) {

  .wordpress-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {

  .wordpress-post-grid {
    grid-template-columns: 1fr;
  }

  .wordpress-image,
  .wordpress-no-image {
    height: 210px;
  }
}

/* ==================================================
   Ver1.00 WordPressブログ一覧ボタン
================================================== */

.wordpress-more {
  margin-top: 34px;
  text-align: center;
}

.wordpress-more-button {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #0c5ca8;
  border-radius: 8px;
  background: #fff;
  color: #0c5ca8;
  text-decoration: none;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.wordpress-more-button:hover {
  color: #fff;
  background: #0c5ca8;
  transform: translateY(-2px);
}

@media (max-width: 600px) {

  .wordpress-more-button {
    display: block;
    width: 100%;
  }
}

/* ==================================================
   Ver1.00 地域ブログ一覧
================================================== */

.community-blog-lead {
  background:
    linear-gradient(135deg, #edf6fc, #f2faf3);
}

.community-blog-lead-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 50px;
  padding: 48px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.community-blog-label {
  margin-bottom: 12px;
  color: #2f8f5b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.community-blog-lead-card h2 {
  margin-bottom: 20px;
  color: #0c4a7c;
  font-size: 34px;
  line-height: 1.55;
}

.community-blog-lead-card p {
  color: #444;
  line-height: 2;
}

.community-blog-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.community-blog-topics span {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 14px;
  background: #eef6fb;
  color: #0c4a7c;
  font-weight: 700;
  text-align: center;
}

.community-blog-topics span:nth-child(2),
.community-blog-topics span:nth-child(3) {
  background: #eef8ef;
  color: #2f7f48;
}

.community-blog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.community-blog-heading .section-title {
  margin-bottom: 0;
}

.community-blog-wp-link {
  color: #0c5ca8;
  text-decoration: none;
  font-weight: 700;
}

.community-blog-wp-link:hover {
  text-decoration: underline;
}

.community-blog-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.community-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e0e8ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.community-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.community-blog-image-link {
  display: block;
  overflow: hidden;
}

.community-blog-image,
.community-blog-no-image {
  width: 100%;
  height: 210px;
}

.community-blog-image {
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.community-blog-card:hover .community-blog-image {
  transform: scale(1.03);
}

.community-blog-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, #edf6fc, #eef8ef);
  color: #0c4a7c;
  font-size: 48px;
}

.community-blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 21px;
}

.community-blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 12px;
}

.community-blog-category {
  padding: 4px 10px;
  border-radius: 999px;
  background: #eaf6ec;
  color: #2f7f48;
  font-size: 12px;
  font-weight: 700;
}

.community-blog-meta time {
  color: #4b7f63;
  font-size: 13px;
  font-weight: 700;
}

.community-blog-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.55;
}

.community-blog-card h3 a {
  color: #0c4a7c;
  text-decoration: none;
}

.community-blog-card h3 a:hover {
  color: #0c5ca8;
}

.community-blog-excerpt {
  margin-bottom: 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

.community-blog-read {
  margin-top: auto;
  text-align: right;
}

.community-blog-read a {
  color: #0c5ca8;
  text-decoration: none;
  font-weight: 700;
}

.community-blog-read a:hover {
  text-decoration: underline;
}

.community-blog-message {
  grid-column: 1 / -1;
  padding: 30px;
  border-radius: 14px;
  background: #fff;
  color: #555;
  text-align: center;
}

.community-blog-back-section {
  background: #edf5f8;
}

.community-blog-back {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.community-blog-back h2 {
  margin-bottom: 14px;
  color: #0c4a7c;
  font-size: 28px;
}

.community-blog-back p {
  margin-bottom: 22px;
  color: #555;
  line-height: 1.9;
}

.community-blog-back a {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  background: #0c5ca8;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.community-blog-back a:hover {
  background: #084d91;
}

@media (max-width: 900px) {

  .community-blog-lead-card {
    grid-template-columns: 1fr;
  }

  .community-blog-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {

  .community-blog-lead-card {
    padding: 30px 22px;
  }

  .community-blog-lead-card h2 {
    font-size: 27px;
  }

  .community-blog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-blog-back {
    padding: 30px 22px;
  }
}

@media (max-width: 600px) {

  .community-blog-grid {
    grid-template-columns: 1fr;
  }

  .community-blog-image,
  .community-blog-no-image {
    height: 220px;
  }
}

@media (max-width: 420px) {

  .community-blog-topics {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   Ver1.10 地域ブログカテゴリー絞り込み
================================================== */

.community-blog-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.community-blog-filter-button {
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid #b9cbd6;
  border-radius: 999px;
  background: #fff;
  color: #0c4a7c;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.community-blog-filter-button:hover {
  border-color: #2f8f5b;
  color: #2f7f48;
  transform: translateY(-1px);
}

.community-blog-filter-button.is-active {
  border-color: #2f8f5b;
  background: #2f8f5b;
  color: #fff;
}

.community-blog-filter-button:focus-visible {
  outline: 3px solid #f2c94c;
  outline-offset: 3px;
}

.community-blog-result {
  min-height: 24px;
  margin-bottom: 24px;
  color: #59666f;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 600px) {

  .community-blog-filter {
    display: grid;
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .community-blog-filter-button {
    width: 100%;
    padding: 9px 8px;
  }
}

@media (max-width: 380px) {

  .community-blog-filter {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   町内会紹介
========================================= */

.neighborhood-section {
  padding: 80px 20px;
  background:
    linear-gradient(180deg,
      #f7fbf5 0%,
      #ffffff 100%);
}

.neighborhood-section .section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.neighborhood-heading {
  margin-bottom: 38px;
  text-align: center;
}

.neighborhood-heading .section-label {
  margin: 0 0 8px;
  color: #4f7f35;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.neighborhood-heading h2 {
  margin: 0;
  color: #26352a;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.35;
}

.neighborhood-heading h2::after {
  display: block;
  width: 56px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: #79a94d;
  content: "";
}

.neighborhood-heading .section-description {
  margin: 20px auto 0;
  color: #5b665e;
  font-size: 1rem;
  line-height: 1.9;
}

/* ==========================================
   町内会紹介カード
========================================== */

.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.neighborhood-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe7da;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(29, 66, 35, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.neighborhood-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(29, 66, 35, 0.14);
}

.neighborhood-card-image-link {
  display: block;
  overflow: hidden;
  background: #edf3e9;
}

.neighborhood-card-image {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;

  /* 画像の上側を優先して表示 */
  object-position: center 20%;
}

.neighborhood-card:hover .neighborhood-card-image {
  transform: scale(1.035);
}

.neighborhood-card-body {
  padding: 24px 26px 26px;
}

.neighborhood-card-title {
  margin: 0 0 14px;
  font-size: 1.25rem;
  line-height: 1.5;
}

.neighborhood-card-title a {
  color: #164e7a;
  text-decoration: none;
}

.neighborhood-card-title a:hover {
  text-decoration: underline;
}

.neighborhood-card-excerpt {
  margin: 0 0 22px;
  color: #505b55;
  font-size: 0.96rem;
  line-height: 1.9;
}

.neighborhood-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3f7727;
  font-weight: 700;
  text-decoration: none;
}

.neighborhood-card-link:hover {
  text-decoration: underline;
}

.neighborhood-loading,
.wordpress-loading,
.wordpress-empty,
.wordpress-error {
  grid-column: 1 / -1;
  padding: 32px;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
}

.neighborhood-card-info {
  margin: 10px 0 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.neighborhood-card-info p {
  margin: 2px 0;
}

.neighborhood-info-label {
  display: inline-block;
  min-width: 58px;
  margin-left: 4px;
}

.organization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.neighborhood-section .section-footer,
.organization-section .section-footer {
  margin-top: 40px;
  text-align: center;
}

.organization-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.neighborhood-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.neighborhood-card-image-link {
  display: block;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.neighborhood-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.neighborhood-card-body {
  padding: 24px;
}

.neighborhood-card-title {
  margin: 0 0 16px;
  font-size: 1.25rem;
}

.neighborhood-card-title a {
  color: #124b83;
  text-decoration: none;
}

.neighborhood-card-info {
  margin-bottom: 22px;
}

.neighborhood-card-info p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0;
  line-height: 1.6;
}

.neighborhood-info-label {
  min-width: 72px;
  font-weight: 500;
}

.neighborhood-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #124b83;
  font-weight: 700;
  text-decoration: none;
}

.organization-section {
  padding: 72px 20px;
  background: #f4f7fb;
}

.organization-section .container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.organization-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.organization-section .section-header h2 {
  color: #124b83;
  font-size: 3rem;
  margin-bottom: 15px;
}

.organization-section .section-header p {
  margin: 18px 0 0;
  color: #334155;
  font-size: 1.1rem;
}

.organization-section .section-header::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #4CAF50;
  margin: 20px auto 0;
}

.organization-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.organization-section .section-footer {
  margin-top: 40px;
  text-align: center;
}

.organization-section .more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 265px;
  padding: 15px 28px;
  color: #376d23;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #4d832f;
  border-radius: 999px;
  background: #fff;
}

.staff-section {
  padding: 72px 20px;
  background: #ffffff;
}

.staff-section .container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.staff-section .section-header {
  margin-bottom: 40px;
  text-align: center;
}

.staff-section .section-header h2 {
  margin: 0;
  color: #124b83;
  font-size: clamp(2rem, 4vw, 3rem);
}

.staff-section .section-header p {
  margin: 18px 0 0;
  color: #334155;
  font-size: 1.1rem;
}

.staff-section .section-header::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 24px auto 0;
  background: #4ba44f;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.staff-section .section-footer {
  margin-top: 40px;
  text-align: center;
}

.staff-section .more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 300px;
  padding: 15px 28px;
  color: #376d23;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #4d832f;
  border-radius: 999px;
  background: #fff;
}

.staff-grid:has(.neighborhood-card:only-child) {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

@media screen and (max-width: 768px) {

  .staff-section {
    padding: 56px 16px;
  }

  .staff-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .staff-section .more-button {
    width: 100%;
    min-width: 0;
  }
}


/* スマートフォン */
@media (max-width: 768px) {
  .neighborhood-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .neighborhood-card-image {
    height: 200px;
  }

  .neighborhood-card-body {
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .organization-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {

  .organization-section {
    padding: 56px 16px;
  }

  .organization-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .neighborhood-card-image-link {
    height: 210px;
  }
}

/* カード一覧 */

.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.neighborhood-card {
  overflow: hidden;
  border: 1px solid #e1e9dd;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(43, 65, 47, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.neighborhood-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(43, 65, 47, 0.14);
}

.neighborhood-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.neighborhood-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #edf3e9;
}

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

.neighborhood-card:hover .neighborhood-card-image img {
  transform: scale(1.03);
}

.neighborhood-card-body {
  padding: 22px 24px 24px;
}

.neighborhood-card-category {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #edf6e8;
  color: #467332;
  font-size: 0.78rem;
  font-weight: 700;
}

.neighborhood-card-title {
  margin: 0;
  color: #26352a;
  font-size: 1.25rem;
  line-height: 1.5;
}

.neighborhood-card-text {
  display: -webkit-box;
  overflow: hidden;
  margin: 13px 0 0;
  color: #687169;
  font-size: 0.92rem;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.neighborhood-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #edf0eb;
}

.neighborhood-card-date {
  color: #818981;
  font-size: 0.82rem;
}

.neighborhood-card-read {
  color: #4f7f35;
  font-size: 0.86rem;
  font-weight: 700;
}

/* 読み込み・エラー */

.neighborhood-loading,
.neighborhood-empty,
.neighborhood-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 36px 20px;
  border-radius: 14px;
  background: #ffffff;
  color: #687169;
  text-align: center;
}

.neighborhood-error {
  border: 1px solid #edd5d5;
  color: #9b4545;
}

/* 一覧ボタン */

.neighborhood-more {
  margin-top: 38px;
  text-align: center;
}

.neighborhood-more-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  padding: 14px 28px;
  border: 2px solid #4f7f35;
  border-radius: 999px;
  background: #ffffff;
  color: #3f682e;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.neighborhood-more-button:hover {
  transform: translateY(-2px);
  background: #4f7f35;
  color: #ffffff;
}

.line-qr-image {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}

/* タブレット */

@media (max-width: 820px) {
  .neighborhood-section {
    padding: 64px 18px;
  }

  .neighborhood-grid {
    gap: 20px;
  }

  .neighborhood-card-body {
    padding: 19px 20px 21px;
  }
}

/* スマートフォン */

@media (max-width: 640px) {
  .neighborhood-section {
    padding: 52px 15px;
  }

  .neighborhood-grid {
    grid-template-columns: 1fr;
  }

  .neighborhood-heading {
    margin-bottom: 28px;
  }

  .neighborhood-heading .section-description {
    text-align: left;
  }

  .neighborhood-card-title {
    font-size: 1.15rem;
  }

  .neighborhood-more-button {
    width: 100%;
    min-width: 0;
  }
}