/* ==========================================================
   共通スタイル
========================================================== */

body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================
   ヘッダー（PCデザイン）
========================================================== */

header.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: relative;
}

.site-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

/* 右側グループ */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* メニュー (PC) */
.header-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.header-menu li a {
  font-weight: bold;
  color: #333;
}

/* SNS */
.header-sns {
  display: flex;
  gap: 15px;
  font-size: 20px;
}

/* ハンバーガー（PCでは非表示） */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}


/* ==========================================================
   フロントページ
========================================================== */

.front-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* キャッチコピー */
.catch-copy {
  text-align: center;
  margin: 40px 0 20px;
}

.catch-copy h2 {
  font-size: 28px;
}

.catch-copy p {
  color: #666;
}

/* スライドショー */
.simple-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* ← これが最強 */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 30px;
}


.simple-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 切れるが比率固定で綺麗 */
  transition: opacity 1s ease;
  opacity: 0;
}

.simple-slider img.active {
  opacity: 1;
}

/* ==========================================================
   カード一覧（NEWS / 駅 / バス）
========================================================== */

.section h2 {
  padding-left: 8px;
  border-left: 6px solid #ef5350;
  margin-bottom: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  width: calc(33.333% - 15px);
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
  overflow: hidden;
}

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

.card-title {
  padding: 12px 15px 5px;
  font-size: 18px;
  font-weight: bold;
}

.card-date {
  padding: 0 15px 15px;
  color: #666;
}

/* NEWSカラー */
.news-section h2 {
  color: #c62828;
  border-left-color: #ef5350;
}

/* 駅カラー */
.station-section h2 {
  color: #0d47a1;
  border-left-color: #1976d2;
}

/* バスカラー */
.bus-section h2 {
  color: #1b5e20;
  border-left-color: #4caf50;
}

/* ==========================================================
   自己紹介ページ
========================================================== */
.about-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.about-page img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.about-page p {
  font-size: 16px;
  line-height: 1.8;
}

/* ==========================================================
   お問い合わせページ
========================================================== */
.contact-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.contact-form-wrapper {
  margin-top: 20px;
}

/* ==========================================================
   ここからレスポンシブ
========================================================== */

/* ------------------------------
   タブレット（769px〜1024px）
------------------------------ */
@media (min-width: 769px) and (max-width: 1024px) {

  header.site-header {
    padding: 15px 25px;
  }

  .header-right {
    gap: 20px;
  }

  .header-menu {
    gap: 18px;
  }

  .front-main {
    max-width: 900px;
  }

  .card {
    width: calc(50% - 15px);
  }
}

/* ------------------------------
   スマホ（〜768px）
------------------------------ */
@media (max-width: 768px) {

  header.site-header {
    padding: 10px 14px;
  }

  /* ハンバーガー表示 */
  .hamburger {
    display: block;
    z-index: 1001;
  }

  /* メニュー（スマホ用） */
  .header-menu {
    display: none;
    position: absolute;
    top: 55px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    z-index: 1000;
  }

  .header-menu.active {
    display: flex;
  }

  /* SNS → 非表示 */
  .header-sns {
    display: none;
  }

  /* カード1列 */
  .card {
    width: 100%;
  }

  .simple-slider {
    height: 220px;
  }

  .catch-copy h2 {
    font-size: 22px;
  }
}

/* ------------------------------
   超スマホ（〜480px）
------------------------------ */
@media (max-width: 480px) {

  .simple-slider {
    height: 180px;
  }

  .catch-copy h2 {
    font-size: 20px;
  }

  .catch-copy p {
    font-size: 14px;
  }
}


