/* ===========================
   RESET & GLOBAL
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-weight: 300; /* DemiLightに近い */
  color: #333;
  overflow-x: hidden; /* 横スクロール抑制 */
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  padding: 80px 40px;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1,
h2 {
  font-weight: 200; /* Light */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

h3 {
  font-weight: 400; /* Regular */
  text-shadow: none;
}

p {
  font-weight: 300; /* DemiLight */
}

.service-box p {
  font-weight: 400; /* Regular */
}

/* PCでは非表示 */
br.sp-only {
  display: none;
}
/* ===========================
   SIDEBAR
=========================== */
.sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(200px, 20vw, 300px);
  height: 100%;
  background: rgba(99, 196, 138, 0.59);
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
}

.sidebar a {
  color: #fff;
  font-weight: 400;
}

.sp-icon-nav {
  display: none;
}

/* サイドバーメニュー */
.menu {
  margin-top: 80px;
}

.menu ul {
  list-style: none;
  padding-left: 20px;
}

.menu li {
  margin-bottom: 20px;
}

.sidebar .menu a {
  position: relative;
  transition: all 0.3s ease;
}

.sidebar .menu a:hover {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8),
    0 0 12px rgba(255, 255, 255, 0.6);
}

/* サイドバーのお問い合わせボタン */
.contact-btn {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.contact-btn .btn {
  display: inline-block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.67);
  color: transparent;
  -webkit-text-stroke: 0.8px #63c48a;
  transition: all 0.3s ease;
}

.contact-btn .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #63c48a;
  -webkit-text-stroke: 0.6px #63c48a; /* 少し細めにして残す */
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9),
    0 0 20px rgba(99, 196, 138, 0.8);
  cursor: pointer;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  width: 100%;
  height: clamp(400px, 60vw, 600px);
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 0;
}

.hero-img img {
  width: 100%;
  height: auto;
  max-width: 1200px;
  object-fit: contain;
}

/* クリーム色オーバーレイ */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 253, 239, 0.63);
  z-index: 1;
}

/* ロゴ（右下） */
.hero-logo {
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: clamp(280px, 35vw, 520px);
  z-index: 2;
}

.hero-logo img {
  width: 100%;
}

/* ===========================
   VISION SECTION
=========================== */
#vision {
  background: #fff;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 20px;
}

#vision h1 {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 200;
  color: #206322;
  margin-bottom: clamp(20px, 5vw, 40px);
  line-height: 1.6;
}

#vision p {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  line-height: 1.8;
  color: #333;
}

/* ===========================
   SECTION HEADER 共通
=========================== */
.section-header {
  display: flex;
  flex-direction: column; /* 見出し＋説明を縦並びに */
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding-left: 20px;
}

/* squareとh2の横並び用 */
.title-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.title-row .square {
  width: 1.5em;
  height: 1.5em;
  background: rgba(99, 196, 138, 0.6);
  margin-right: 1em;
  transform: translateY(4px);
}

.section-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 200;
  color: #206322;
  margin: 0;
}

/* ===========================
   WORKS SECTION
=========================== */
#works {
  background: #fff;
  padding: clamp(60px, 8vw, 120px) 20px;
}
.works-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-direction: row-reverse; /* 画像右・文章左 */
}

.works-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.works-content {
  flex: 1;
  text-align: left;
}

.works-content h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  margin-bottom: 20px;
  color: #206322;
}

.works-content p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}

/* ボタンデザイン */
.btn-wrap {
  text-align: right; /* このdivの中身を右寄せ */
  width: 100%; /* 親幅をいっぱいに */
}

/* ボタン */
.btn-works {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1vw, 12px);
  padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 28px);
  border: 2px solid #206322;
  border-radius: 4px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  color: #206322;
  background-color: rgba(255, 255, 255, 0.6); /* 半透明白 */
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-works::after {
  content: "➔"; /* 矢印 */
  font-size: clamp(14px, 2vw, 16px);
  transition: transform 0.3s ease;
}

.btn-works:hover {
  background-color: rgba(32, 99, 34, 0.9); /* 濃い緑 */
  color: #fff;
}

.btn-works:hover::after {
  transform: translateX(4px); /* 矢印スライド */
}

/* レイアウト */
.works-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 40px);
  max-width: 1000px;
  margin: 0 auto;
}

/* ===========================
   SERVICES SECTION
=========================== */
#services {
  background: #fff url("../img/clip.png") no-repeat center/contain;
  padding: clamp(60px, 8vw, 120px) 20px;
}

/* タイトル行 */
#services p {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  margin-left: 35px;
  margin-bottom: 8px;
  margin-top: auto;
}

/* サービスボックス */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
  align-items: center;
  transform: translateX(30px);
}

.service-box {
  position: relative;
  border-radius: 32px;
  padding: 40px 140px 40px 40px;
  min-height: 220px;
  color: #fff;
  max-width: 700px;
  width: 100%;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-box.left {
  transform: translateX(-10%);
}
.service-box.right {
  transform: translateX(28%);
}

.service-box h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 400;
  margin: 0;
  text-align: left;
}

.service-box p {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* 番号サークル */
.num-circle {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  border: 1.5px solid #126e1c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  color: #126e1c;
  background: #fff;
}

/* サービスアイコン */
.service-box .icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.9;
}

.service-box .icon img {
  width: 140px;
  height: auto;
}

/* 背景色 */
.box01 {
  background: rgba(86, 180, 40, 0.5);
}
.box02 {
  background: rgba(7, 109, 44, 0.5);
}
.box03 {
  background: rgba(0, 149, 180, 0.5);
}

/* ===========================
   STAFF SECTION
=========================== */

/* --- スタッフブロック1（小倉さん）--- */

/* コンテナ */
.staff-member.staff-block-1 {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: relative;
}

/* 写真＋背景＋プロフィールカード */
.photo-area {
  position: relative;
  display: inline-block;
  margin-left: -50px; /* 写真を少し左に */
}

.staff-photo {
  width: 85%;
  border-radius: 100px;
  margin-left: -5%;
  display: block;
  z-index: 3;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* デコ背景（右下に出す） */
.photo-area::after {
  content: "";
  position: absolute;
  bottom: -130px;
  right: -100px;
  width: 80%;
  height: 80%;
  background: #f7f8eb;
  border-radius: 24px;
  z-index: -1;
}

/* プロフィールカード（写真右下に重ねる） */
.profile-card {
  position: relative;
  margin-top: -120px;
  margin-left: max(45%, 10px);
  align-items: center;
  text-align: center;
  background: #6cbe7f;
  padding: 50px;
  color: #fff;
  max-width: 650px;
  width: clamp(300px, 70%, 650px);
  z-index: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* 上の役職 */
.profile-card .title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 400;
  margin-bottom: 12px;
}

/* 名前 */
.profile-card h3 {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 500;
  margin: 0 0 20px 0;
}

/* 本文 */
.profile-card p {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  text-align: left; /* 本文は左寄せにしたいならここをleft */
  width: 100%;
}

/* 私の想い */
.comment-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.comment-card {
  background: rgba(251, 255, 212, 0.9);
  outline: 0.5px solid #258a05;
  outline-offset: -16px;
  border-radius: 80px;
  padding: clamp(20px, 4vw, 40px) clamp(10px, 2vw, 24px);
  width: 75%;
  max-width: 900px;
  margin: -20px 0 auto;
  text-align: center;
  line-height: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateX(-200px); /* ← 右へ動かす */
}

.comment-card h4 {
  color: #206322;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 300;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* 本文 */
.comment-card p {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 300;
  margin: 0 auto;
  max-width: 100%;
  text-align: center; /* 中央寄せ */
}

.bg-deco-bridge {
  position: absolute;
  top: calc(100% - 400px); /* ← ここで上に出してかぶせる */
  width: 60%;
  transform: translateX(55%);
  height: 200px; /* ← ちょい大きめにして見えやすく */
  background: #f7f8eb;
  z-index: -1; /* 趣味写真より後ろに */
  border-radius: 20px; /* ← 丸み強めにすると“かぶり”が自然 */
}

/* 趣味 */
.hobby-wrap {
  display: flex;
  align-items: flex-end;
  gap: 25px;
  margin-top: 50px;
  max-width: 1000px;
}

.hobby-photo {
  width: 40%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hobby-card {
  flex: 1;
  background: #ecfcd4;
  border-radius: 50px;
  padding: 40px;
  position: relative;
  width: 100%;
  z-index: 0;
  gap: 50px;
  margin-top: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hobby-card h4 {
  color: #206322;
  margin: 0;
  font-weight: 300;
  font-size: clamp(16px, 2.5vw, 20px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hobby-card p {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: #333;
  margin: 0;
  position: relative;
  z-index: 10;
}

.card-illust img {
  width: 100%;
  height: auto;
}

.card-title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.card-illust {
  position: absolute;
  bottom: -10px;
  right: 10px;
  width: 200px;
  opacity: 12;
  z-index: 1;
}

.card-title.center-title {
  justify-content: center;
}

.card-title .center-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(99, 196, 138, 0.6);
  margin-right: 10px;
  transform: translateY(-6px);
}

.card-title .circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(99, 196, 138, 0.6);
  margin-right: 10px;
  transform: translateY(1px);
}

/* --- スタッフブロック2（小林さん）--- */

/* コンテナ */
.staff-member.staff-block-2 {
  margin: 100px auto 300px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* 写真エリア（右寄せ配置） */
.staff-block-2 .photo-area {
  position: relative;
  display: block;
  margin-left: auto; /* 写真を右寄せ */
  margin-right: -250px;
  width: fit-content;
}

.staff-block-2 .staff-photo {
  width: 85%;
  border-radius: 100px;
  display: block;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* デコ背景 */
.staff-block-2 .photo-area::after {
  content: "";
  position: absolute;
  bottom: -200px; /* 写真より下にずらす */
  left: -300px; /* 左にはみ出させる */
  width: 90%;
  height: 90%;
  background: #ebf8f3;
  border-radius: 16px;
  z-index: -1;
}

/* プロフィールカード（写真の左下に重ねる） */
.staff-block-2 .profile-card {
  background: #73c0d4;
  color: #fff;
  position: relative;
  margin-top: -40px;
  margin-right: 60%;
  margin-left: -18%;
  text-align: center;
  padding: 50px;
  max-width: 700px;
  width: 95%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.staff-block-2 .profile-card .title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 400;
  margin-bottom: 12px;
}

.staff-block-2 .profile-card h3 {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 500;
  margin: 0 0 20px 0;
}

.staff-block-2 .profile-card p {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  text-align: left;
  width: 100%;
}

/* 私の想い（コメントカード） */
.staff-block-2 .comment-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.staff-block-2 .comment-card {
  background: rgba(221, 248, 233, 0.9);
  outline: 0.5px solid #258a05;
  outline-offset: -16px;
  border-radius: 80px;
  padding: clamp(20px, 4vw, 40px) clamp(10px, 2vw, 24px);
  width: 90%;
  max-width: 1000px;
  margin: -30px auto 0;
  text-align: center;
  line-height: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateX(200px);
}

.staff-block-2 .comment-card h4 {
  color: #206322;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 300;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.staff-block-2 .comment-card p {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 300;
  margin: 0 auto;
  text-align: center;
}

/* 背景デコ（カードの後ろに追加） */
.staff-block-2 .bg-deco.small {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-90%);
  width: clamp(250px, 60%, 600px);
  height: clamp(150px, 25vw, 250px);
  background: #ebf8f3;
  border-radius: 20px;
  z-index: -1;
}

/* 趣味エリア */
.staff-block-2 .hobby-wrap {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-top: 60px;
}

.staff-block-2 .hobby-photo {
  width: 40%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.staff-block-2 .hobby-card {
  flex: 1;
  background: #ecfcd4;
  border-radius: 50px;
  padding: 30px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.staff-block-2 .hobby-card h4 {
  color: #206322;
  margin: 0;
  font-weight: 300;
  font-size: clamp(16px, 2.5vw, 20px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.staff-block-2 .hobby-card p {
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: #333;
  margin: 0;
  position: relative;
  z-index: 10;
}

/* 趣味カードのイラスト */
.staff-block-2 .card-illust {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 200px;
  opacity: 1;
  z-index: 1;
}

.staff-block-2 .card-illust img {
  width: 100%;
  height: auto;
}

/* ===========================
   ACCESS SECTION
=========================== */

.access-left {
  flex: 1; /* ← 均等にする */
}
.access-right {
  flex: 1;
}

.access-inner {
  max-width: 1000px; /* ← 1200px から少し狭めて中央感UP */
  margin: 0 auto;
  justify-content: center; /* 全体を中央寄せ */
}

/* 見出しエリア（クリーム色背景） */
.access-header {
  background: #fffdef;
  padding: 40px 20px;
  width: 100%; /* 背景は全幅に広げる */
}

.access-header .inner {
  display: flex; /* ← 横並び */
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  max-width: 1000px; /* 中身の横幅制限 */
  padding-left: 80px; /* ← 左に余白を入れる */
  text-align: left; /* ← 行頭はそろえたまま */
}

.access-title {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.access-title h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 200;
  color: #206322;
  margin: 0;
}

.access-title .square {
  width: 30px;
  height: 30px;
  background: rgba(99, 196, 138, 0.6);
  margin-top: 6px;
  margin-right: 2px;
}

.access-description {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #333;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
  flex: 1; /* 横に広がる */
  text-align: left;
}

.access-header .access-description {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #333;
  font-weight: 300;
  margin: 0 auto;
  max-width: 800px;
  line-height: 1.8;
}

/* ===========================
   ACCESS SECTION - PC版
=========================== */

/* グリーン背景部分 */
.access-content {
  background: #5fac7b;
  padding: 60px 20px;
  color: #fff;
}
.access-content,
.access-content p,
.access-content h3,
.access-content h4,
.access-content span {
  font-weight: 700;
}

/* ロゴ */
.access-logo img {
  max-width: 650px;
  width: 100%;
  height: auto;
}

/* グリーン背景の中のレイアウト */
.access-inner {
  display: flex;
  gap: 40px;
  max-width: 1800px;
  margin: 0 auto;
  align-items: flex-start;
}

/* 左カラム（ロゴ + 地図） */
.access-left {
  flex: 1.2;
}
.map-img {
  width: 50vw;
  max-width: 900px;
  height: auto;
  display: block;
}

/* 右カラム（連絡先 + 写真 + 住所） */
.access-right {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- 上段：TELとFAX横並び --- */
.tel-fax-wrap {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
  text-align: left;
}
/* TELのスタイル */
.tel {
  display: flex;
  flex-direction: column;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  white-space: nowrap;
}

.tel,
.fax {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  white-space: nowrap;
}

/* FAX内のボタン */

/* FAXとボタンを縦並びに、中央揃え */
.fax {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  white-space: nowrap;
}

/* FAX番号 */
.fax strong {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  white-space: nowrap;
}

/* お問い合わせボタン */
.fax .btn {
  display: inline-block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}
.fax .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #63c48a;
  -webkit-text-stroke: 0.6px #63c48a; /* 少し細めにして残す */
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9),
    0 0 20px rgba(99, 196, 138, 0.8);
  cursor: pointer;
}

/* --- 下段：受付時間と定休日 --- */

.contact-info {
  margin-top: -50px;
  padding-left: clamp(20px, 2vw, 80px);
}
.contact-info p {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.6;
  white-space: nowrap;
}

/* ✅ お問い合わせボタンをinfo内で右に置く（流用） */
.contact-info .btn {
  display: inline-block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* 写真は下に */
.office-photo {
  width: 100%;
  height: auto;
  max-width: 800px;
  object-fit: contain;
  display: block;
  padding: 30px;
}

/* 住所と最寄り駅 */
.address {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 500;
  margin: 0 0 1%;
  line-height: 1.4;
}
.station {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}

/* ===========================
   FOOTER
=========================== */
.footer-nav {
  margin-top: 60px;
  text-align: center;
  background: #5fac7b;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 100px;
  margin: 0;
  padding: 0;
}

.footer-nav li a {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  color: #fff;
}

.footer-nav li a:hover {
  text-decoration: underline;
}

.site-footer {
  background: #206322;
  padding: 20px 10px;
  text-align: center;
}

.site-footer p {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 500;
  color: #fff;
  margin: 0;
}
