:root {
  --bg: #f7faf7;
  --surface: #ffffff;
  --surface-soft: #f3f8f3;
  --surface-accent: #eef7ef;
  --line: #d8e6d8;
  --text: #223127;
  --sub: #50655a;
  --accent: #3f7d4e;
  --accent-dark: #2f613c;
  --accent-soft: #edf6ee;
  --gold-soft: #fff9e8;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.85;
}

img {
  max-width: 100%;
  display: block;
}

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

a:hover {
  text-decoration: none;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(21, 54, 30, 0.58), rgba(21, 54, 30, 0.58)),
    url("images/hero.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 55, 31, 0.25), rgba(46, 90, 57, 0.12));
}

.hero-inner {
  position: relative;
  width: min(92%, var(--max-width));
  margin: 0 auto;
  padding: 78px 0 70px;
}

.hero-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.hero-main {
  flex: 1 1 620px;
  max-width: 700px;
}

.hero-side {
  flex: 0 0 360px;
  margin-top: 60px;
  margin-bottom: 0;
  margin-left: auto;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.hero-label {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.96;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.12;
  font-weight: 800;
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 34px;
  font-size: 1.16rem;
  line-height: 1.9;
}


.hero-side-label {
  margin: 0 0 6px;
  font-size: 0.92rem;
  font-weight: 700;
  opacity: 0.92;
}

.hero-side-title {
  margin: 0 0 8px;
  font-size: 1.8rem;
  line-height: 1.3;
}

.hero-side-desc,
.hero-side-org {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
}

.hero-side-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.btn:hover,
.big-action-btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #fff;
  color: var(--accent-dark);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: #fff;
  background: transparent;
}

.section {
  padding: 54px 0 0;
}

.section-head {
  margin-bottom: 28px;
}

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

.section-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.section h2,
.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.35;
  color: #1f3025;
}

.intro-lead,
.section-text,
.easy-lead {
  max-width: 760px;
  margin: 0;
  font-size: 1.08rem;
  color: var(--sub);
}

.card-grid,
.easy-grid,
.flow-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.easy-card,
.flow-card,
.activity-card,
.contact-info-card,
.notice-box,
.office-box,
.point-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card {
  padding: 24px 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.26rem;
  line-height: 1.45;
}

.card p {
  margin: 0;
  color: var(--sub);
  font-size: 1.02rem;
}

.section-easy {
  padding-top: 62px;
}

.easy-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.easy-grid {
  margin-top: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.easy-card {
  padding: 24px 20px;
  text-align: center;
}

.easy-icon,
.flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.3rem;
  font-weight: 800;
}

.easy-card h3,
.flow-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.easy-card p,
.flow-card p {
  margin: 0;
  color: var(--sub);
}

.easy-note {
  margin: 18px 0 0;
  color: var(--sub);
  font-size: 0.96rem;
  text-align: center;
}

.section-point {
  padding-top: 62px;
}

.point-box {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 28px;
  background: linear-gradient(180deg, #fffef8 0%, #ffffff 100%);
}

.point-logo-wrap {
  flex: 0 0 220px;
  width: 220px;
}

.point-logo {
  width: 220px;
  max-width: none;
  height: auto;
  display: block;
}

.point-text p {
  margin: 0 0 10px;
  color: var(--sub);
  font-size: 1.05rem;
}

.section-soft {
  padding-top: 62px;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.activity-card {
  overflow: hidden;
}

.activity-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.activity-body {
  padding: 22px 22px 24px;
}

.activity-body h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.activity-body p {
  margin: 0;
  color: var(--sub);
}

.section-flow {
  padding-top: 62px;
}

.flow-card {
  padding: 24px 22px;
  text-align: center;
}

.section-accent {
  padding-top: 62px;
}

.contact-box {
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-accent);
  box-shadow: var(--shadow);
}

.contact-lead {
  margin: 0 0 22px;
  font-size: 1.08rem;
  color: var(--text);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-buttons.single-center {
  justify-content: center;
}

.big-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 68px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 1.16rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(63, 125, 78, 0.18);
}

.btn-form {
  background: var(--accent);
  color: #fff;
}

.form-subtext {
  margin: 0 0 24px;
  text-align: center;
  color: var(--sub);
  font-size: 1rem;
}

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

.contact-info-card {
  padding: 24px 22px;
}

.contact-info-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.contact-list,
.mail-template ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--sub);
}

.contact-list li,
.mail-template li {
  margin-bottom: 8px;
}

.sub-heading {
  margin-top: 20px;
}

.official-link a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.note {
  margin: 22px 0 0;
  color: var(--sub);
  font-size: 0.96rem;
}

.section-notice,
.section-notice-top {
  padding-top: 56px;
}

.notice-box {
  padding: 28px 26px;
}

.notice-box-soft {
  background: var(--gold-soft);
}

.notice-title {
  margin: 0 0 14px;
  font-size: 1.6rem;
  line-height: 1.35;
}

.notice-box p {
  margin: 0 0 10px;
  font-size: 1.03rem;
  color: var(--sub);
}

.notice-box p:last-child {
  margin-bottom: 0;
}

.section-office {
  padding: 58px 0 60px;
}

.office-outer {
  width: 100%;
}

.office-box {
  padding: 30px 28px;
}

.office-inner {
  display: flex;
  justify-content: flex-start;
  /* ←ここ重要 */
  align-items: center;
  gap: 24px;
  /* ←余白で調整 */
}

.office-text {
  flex: 0 1 520px;
}

.office-text h2 {
  margin: 0 0 16px;
  font-size: 2rem;
}

.office-text p {
  margin: 0 0 8px;
  color: var(--sub);
  font-size: 1.03rem;
}

.office-logo {
  flex: 0 0 200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.office-logo img {
  display: block;
  width: 200px;
  max-width: none;
  height: auto;
  margin: 0;
}

.site-footer {
  padding: 26px 16px 34px;
  text-align: center;
  color: var(--sub);
  font-size: 0.96rem;
  border-top: 1px solid var(--line);
  background: #f2f7f2;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .easy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .point-box,
  .office-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .point-logo-wrap,
  .office-logo {
    flex: none;
  }

  .hero-layout {
    flex-direction: column;
    gap: 24px;
  }

  .hero-main {
    max-width: 100%;
  }

  .hero-side {
    flex: none;
    width: 100%;
    margin-left: 0;
  }
}


@media (max-width: 760px) {
  .hero-inner {
    padding: 62px 0 56px;
  }

  .card-grid,
  .activity-grid,
  .contact-info-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .btn,
  .big-action-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-lead,
  .intro-lead,
  .section-text,
  .easy-lead,
  .contact-lead {
    font-size: 1rem;
  }

  .hero-side,
  .card,
  .easy-card,
  .flow-card,
  .contact-box,
  .contact-info-card,
  .notice-box,
  .office-box,
  .point-box {
    padding: 22px 18px;
  }

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

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

  .point-logo {
    max-width: 180px;
  }
}

/* =========================
   高齢者向けスマホ最適化
========================= */
@media (max-width: 640px) {
  body {
    font-size: 17px;
    line-height: 1.95;
  }

  .container,
  .hero-inner {
    width: min(94%, 100%);
  }

  .hero {
    background-position: center center;
  }

  .hero-inner {
    padding: 46px 0 40px;
  }

  .hero-label {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.18;
    letter-spacing: 0.01em;
    margin-bottom: 18px;
  }

  .hero-lead {
    font-size: 1.08rem;
    line-height: 1.95;
    margin-bottom: 24px;
  }

  /* ヒーローを縦並びにして読みやすく */
  .hero-layout {
    flex-direction: column;
    gap: 18px;
  }

  .hero-main {
    max-width: 100%;
  }

  .hero-side {
    width: 100%;
    margin-left: 0;
    padding: 20px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
  }

  .hero-side-label {
    font-size: 0.95rem;
  }

  .hero-side-title {
    font-size: 1.6rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .hero-side-desc,
  .hero-side-org {
    font-size: 1rem;
    line-height: 1.8;
  }

  .hero-side-link {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 14px 16px;
    text-align: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    font-size: 1.02rem;
    font-weight: 800;
    text-decoration: none;
  }

  /* ボタンは必ず縦並びで大きく */
  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn,
  .big-action-btn {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    padding: 16px 18px;
    font-size: 1.08rem;
    border-radius: 999px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-form {
    font-weight: 800;
  }

  /* セクション余白をやや広めに */
  .section {
    padding-top: 38px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-label {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .section h2,
  .section-head h2,
  .easy-title,
  .office-text h2,
  .notice-title {
    font-size: 1.9rem;
    line-height: 1.45;
  }

  .intro-lead,
  .section-text,
  .easy-lead,
  .contact-lead,
  .point-text p,
  .notice-box p,
  .office-text p,
  .card p,
  .easy-card p,
  .flow-card p,
  .activity-body p {
    font-size: 1.02rem;
    line-height: 1.95;
  }

  /* カード類を読みやすく */
  .hero-side,
  .card,
  .easy-card,
  .flow-card,
  .contact-box,
  .contact-info-card,
  .notice-box,
  .office-box,
  .point-box {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .card h3,
  .easy-card h3,
  .flow-card h3,
  .activity-body h3,
  .contact-info-card h3 {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  /* 1列表示を徹底 */
  .card-grid,
  .easy-grid,
  .flow-grid,
  .activity-grid,
  .contact-info-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* 活動写真は縦に長すぎないよう調整 */
  .activity-photo img,
  .gallery-grid img {
    aspect-ratio: 16 / 10;
  }

  /* ポイントロゴは大きすぎない */
  .point-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .point-logo-wrap {
    width: 100%;
    justify-content: flex-start;
  }

  .point-logo {
    max-width: 180px;
  }

  /* 参加の流れ番号を見やすく */
  .easy-icon,
  .flow-step {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  /* 注意書きも読めるサイズに */
  .easy-note,
  .form-subtext,
  .note,
  .cta-note,
  .site-footer {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  /* リンクの押しやすさ向上 */
  .official-link a,
  .back-link a {
    display: inline-block;
    padding: 8px 0;
    font-weight: 700;
  }

  /* フッター余白 */
  .site-footer {
    padding: 22px 14px 28px;
  }
}

/* =========================
   スマホ最小修正版（高齢者向け）
   既存PC版はそのまま
========================= */
@media (max-width: 640px) {
  body {
    font-size: 17px;
    line-height: 1.9;
  }

  .hero-inner {
    padding: 46px 0 40px;
  }

  .hero-layout {
    flex-direction: column;
    gap: 18px;
  }

  .hero-main {
    max-width: 100%;
  }

  .hero-label {
    font-size: 0.98rem;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
  }

  .hero-lead {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 100%;
  }

  .hero-side {
    width: 100%;
    margin-top: 60px;
    margin-left: 0;
    margin-bottom: 0;
    padding: 20px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
  }

  .hero-side-label {
    font-size: 0.95rem;
  }

  .hero-side-title {
    font-size: 1.5rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .hero-side-desc,
  .hero-side-org {
    font-size: 1rem;
    line-height: 1.8;
  }

  .hero-side-link {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 13px 16px;
    text-align: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
  }

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

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 16px 18px;
    font-size: 1.05rem;
  }

  .section {
    padding-top: 40px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section h2,
  .section-head h2,
  .easy-title,
  .notice-title,
  .office-text h2 {
    font-size: 1.8rem;
    line-height: 1.45;
  }

  .intro-lead,
  .section-text,
  .easy-lead,
  .contact-lead,
  .card p,
  .easy-card p,
  .flow-card p,
  .activity-body p,
  .notice-box p,
  .office-text p {
    font-size: 1rem;
    line-height: 1.9;
  }

  .card-grid,
  .easy-grid,
  .flow-grid,
  .activity-grid,
  .contact-info-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card,
  .easy-card,
  .flow-card,
  .contact-box,
  .contact-info-card,
  .notice-box,
  .office-box,
  .point-box {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .activity-photo img,
  .gallery-grid img {
    aspect-ratio: 16 / 10;
  }

  .point-box {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .point-logo-wrap {
    flex: 0 0 220px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .point-logo {
    display: block;
    width: 220px;
    max-width: none;
    height: auto;
    flex-shrink: 0;
  }

  .big-action-btn {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    font-size: 1.08rem;
  }

  .form-subtext,
  .easy-note,
  .note,
  .site-footer {
    font-size: 0.94rem;
    line-height: 1.8;
  }
}

/* =========================
   最新通知
========================= */
.latest-notice-box {
  background: #ffffff;
  border: 1px solid #d7e4d6;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(34, 48, 40, 0.04);
}

.latest-date {
  display: inline-block;
  margin-bottom: 8px;
  color: #3ca55c;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.latest-title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  line-height: 1.45;
  color: #1f332a;
}

.latest-desc {
  margin: 0 0 16px;
  color: #5a6b61;
  line-height: 1.8;
}

.latest-notice-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.latest-link-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.latest-link-btn.primary {
  background: #3ca55c;
  color: #fff;
}

.latest-link-btn.primary:hover {
  background: #2e7d46;
}

.latest-link-btn.secondary {
  background: #fff;
  color: #2e7d46;
  border: 1px solid #d7e4d6;
}

.latest-link-btn.secondary:hover {
  background: #edf6ee;
}

.latest-loading,
.latest-empty,
.latest-error {
  margin: 0;
  color: #5a6b61;
}

.latest-actions {
  margin-top: 20px;
  text-align: center;
}

.latest-actions .btn-secondary {
  background: #3ca55c;
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(60, 165, 92, 0.25);
}

.latest-actions .btn-secondary:hover {
  background: #2e7d46;
}


@media (max-width: 640px) {
  .latest-notice-box {
    padding: 18px 16px;
  }

  .latest-notice-links {
    flex-direction: column;
  }

  .latest-link-btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   花と緑 推進事業ボックス
========================= */
.promotion-box {
  margin: 40px 0;
  padding: 28px;
  border: 2px solid #2e7d32;
  border-radius: 14px;
  background: #f8fff8;
}

.promotion-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.promotion-text h2 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: #1b5e20;
}

.promotion-text p {
  margin: 0;
  color: #3b4d43;
  line-height: 1.7;
}

/* LINEボタン */
.btn-line {
  display: inline-block;
  padding: 14px 26px;
  background: #06c755;
  color: #fff;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.2s;
}

.btn-line:hover {
  background: #05a648;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .promotion-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .promotion-action {
    width: 100%;
  }

  .btn-line {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   地域写真投稿
========================= */


.photo-card {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  padding: 42px;

  border: 2px solid #4d8f45;
  border-radius: 22px;

  background: #f6fbf5;
}

.photo-left h2 {
  margin-top: 10px;
  margin-bottom: 18px;

  font-size: 46px;
  line-height: 1.3;
}

.photo-left p {
  line-height: 1.9;
}

.photo-buttons {
  display: flex;
  flex-direction: column;

  gap: 16px;

  min-width: 240px;
}

.btn-photo {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 16px 26px;

  border-radius: 999px;

  font-weight: 700;
  text-decoration: none;

  transition: 0.25s;
}

.btn-photo-main {
  background: #39c142;
  color: #fff;
}

.btn-photo-main:hover {
  background: #2ea937;
  transform: translateY(-2px);
}

.btn-photo-sub {
  background: #ffffff;
  border: 2px solid #39c142;
  color: #2f6f2f;
}

.btn-photo-sub:hover {
  background: #eff9ef;
  transform: translateY(-2px);
}

/* =========================
   スマホ
========================= */

@media (max-width: 900px) {

  .photo-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-left h2 {
    font-size: 34px;
  }

  .photo-buttons {
    width: 100%;
  }

  .btn-photo {
    width: 100%;
  }
}

/* =========================
   推進事業カード
========================= */

.project-card {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  padding: 42px;

  border: 2px solid #4d8f45;
  border-radius: 22px;

  background: #f6fbf5;

  margin-bottom: 40px;
}

.project-left h2 {
  margin-top: 10px;
  margin-bottom: 18px;

  font-size: 46px;
  line-height: 1.3;
}

.project-left p {
  line-height: 1.9;
}

.project-buttons {
  min-width: 240px;
}

.btn-project {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 16px 26px;

  border-radius: 999px;

  background: #39c142;
  color: #fff;

  font-weight: 700;
  text-decoration: none;

  transition: .25s;
}

.btn-project:hover {
  background: #2ea937;
  transform: translateY(-2px);
}

.project-card,
.line-box,
.photo-card {
  width: 100%;
  box-sizing: border-box;
}

.line-box {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  padding: 42px;

  border: 2px solid #4d8f45;
  border-radius: 22px;

  background: #f6fbf5;

  box-sizing: border-box;
  width: 100%;
}

/* =========================
   トップ導線カード 横幅統一
========================= */

.project-card,
.promotion-box,
.photo-card {
  max-width: 1020px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* =========================
   トップカード共通余白
========================= */

.project-card,
.line-card,
.photo-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================
   右側ボタンエリア統一
========================= */

.project-buttons,
.promotion-action,
.photo-buttons {
  width: 260px;
  min-width: 260px;
  height: 160px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 18px;
}

.btn-project,
.btn-line,
.btn-photo {
  width: 240px;
  height: 64px;

  display: flex;
  justify-content: center;
  align-items: center;

  box-sizing: border-box;
}

/* LINE登録ボタンだけ少し左へ調整 */
.promotion-action {
  transform: translateX(-20px);
}

/* スマホ */

@media (max-width: 900px) {

  .project-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-left h2 {
    font-size: 34px;
  }

  .project-buttons {
    width: 100%;
  }

  .btn-project {
    width: 100%;
  }
}




/* 募集カード */
.recruit-card {
  display: grid;
  grid-template-columns: 56% 44%;
  align-items: center;

  max-width: 1280px;
  min-height: 520px;
  margin: 0 auto;

  background: #f8f8f8;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.recruit-image {
  padding: 32px;
}

.recruit-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.recruit-content {
  padding: 40px 48px 40px 24px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.recruit-badge {
  display: inline-block;
  width: auto;
  background: #59b443;
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 28px;
}

.recruit-content h2 {
  font-size: 30px;
  line-height: 1.35;
  margin: 0 0 28px;
  color: #1f2e20;
  white-space: normal;
}

.recruit-content p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 28px;
}

.recruit-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-line {
  min-width: 240px;
  text-align: center;
}

.btn-detail {
  min-width: 120px;
  text-align: center;

  background: #ffffff;
  color: #2f8f46;

  border: 2px solid #59b443;

  padding: 14px 22px;

  border-radius: 16px;

  font-weight: bold;

  transition: 0.2s ease;
}

.btn-detail:hover {
  background: #59b443;
  color: #fff;
}

/* =========================
   母艦トップ 募集カード スマホ対応
========================= */

@media (max-width: 768px) {

  .recruit-section {
    margin: 28px 14px;
  }

  .recruit-card {
    grid-template-columns: 1fr;
    max-width: 100%;
    min-height: auto;
    border-radius: 26px;
  }

  .recruit-image {
    padding: 18px 18px 0;
  }

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

  .recruit-content {
    padding: 28px 22px 34px;
    text-align: center;
    align-items: center;
  }

  .recruit-badge {
    margin-bottom: 20px;
  }

  .recruit-content h2 {
    font-size: 28px;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .recruit-content p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 24px;
  }

  .recruit-buttons {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .btn-line,
  .btn-detail {
    width: 100%;
    max-width: 320px;
  }
}