/* =========================================================
   Footer（ItalyTrip）
   - 背景白／高さ軽め
   - 左寄せ3リンクにイタリアンカラーの縦ライン
   - SNS削除済み
========================================================= */

/* ===== 全体 ===== */
.siteFooter {
  width: 100%;
  min-height: 220px;          /* 高さを半分ほどに調整 */
  background: #fff;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  border-top: 1px solid #ddd; /* 上に薄い区切り線 */
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

/* ===== 上段ナビ ===== */
.footerNav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;             
  margin-left: 100px;
  margin-top: 32px;
}

.footerNavList {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footerNavItem {
  display: flex;
  align-items: center;
}

.footerNavLink {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  padding: 0px 42px 0px 12px;   
}

.footerNavLink:hover {
  text-decoration: underline;
}

/* イタリア国旗カラー縦ライン */
.footerNavLink::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;             /* 6px → 5px（ややスリムに） */
  margin-right: 8px;      /* 予備：必要なら .footerNavLink に padding ではなく margin-right を使う場合 */
  background: linear-gradient(
    to right,
    #009246 0 33%,   /* 緑 */
    #ffffff 33% 66%, /* 白 */
    #ce2b37 66% 100% /* 赤 */
  );
  /* filter: none;  影は無し */
}

/* ===== ロゴ部分 ===== */
.footerBrand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
}

.footerLogo--text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none; 
}

.footerLogo--text .logoLine1 {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 2px;
  text-decoration: underline;             /* ← 下線を残す */
  text-decoration-color: #0097c0;         /* ← アズーリブルー（青ライン） */
  text-underline-offset: 2px;             /* ← 文字との距離を調整 */
}

.footerLogo--text .logoLine2 {
  display: inline-block;
  font-size: 13px;
  color: #555;
  margin: 0;
  text-decoration: none;                  /* ← カタカナ側は下線ナシ */
}

/* ===== コピーライト ===== */
.footerCopy {
  text-align: center;
  margin-top: 32px;
  padding-bottom: 24px;
  font-size: 13px;
}

.footerCopy a {
  color: #333;
  text-decoration: none;
}

.footerCopy a:hover {
  text-decoration: underline;
}

/* =========================================================
   Responsive（SP）
========================================================= */
@media (max-width: 768px) {
  .siteFooter {
    min-height: 260px;
    padding: 16px 0;
  }

  .footerNav {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 24px;
    gap: 12px;
  }

  .footerNavLink {
    font-size: 13px;
    padding-left: 14px;
  }

  .footerBrand {
    margin-top: 32px;
  }

  .footerLogoImage {
    width: 100px;
  }

  .footerCopy {
    font-size: 11px;
    margin-top: 24px;
  }
}


@media (max-width: 768px) {
  /* footerNavを縦並びに */
  .siteFooter .footerNav {
    flex-direction: column !important; /* 横並びを縦並びに変更 */
    align-items: flex-start;
    margin-left: 24px;
    gap: 12px;  /* リンク間の隙間 */
  }

  .siteFooter .footerNavList {
    display: block;  /* 横並び解除 */
    padding: 0;
    margin: 0;
  }

  .siteFooter .footerNavItem {
    display: block !important;  /* 縦に並べる */
    margin-bottom: 8px;  /* アイテム間の隙間 */
  }

  /* footerNavLinkは縦並びに */
  .siteFooter .footerNavLink {
    display: block !important;  /* 横並び解除 */
    font-size: 13px;  /* 文字サイズ調整 */
    padding-left: 14px;  /* 左の余白 */
    margin-bottom: 8px;  /* 各リンク間に隙間 */
  }
}