/* === リセット & ベース === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
  background: url("../img/backgroundimage-1.png") no-repeat center center / cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-attachment: fixed;
  line-height: 1.5; /* 全体の行間を広めに */
}

/* === ヘッダー === */
.site-header {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px; /* ← 他ページと同じ */
  border-bottom: 1px solid #ececec;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 60px; /* ← 他ページと同じ */
  height: auto;
}

/* === ナビ === */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  padding: 6px 10px; /* ← 他ページと同じ */
  border-radius: 4px;
  transition: background 0.2s;
}

.site-nav a:hover {
  background: rgba(0,0,0,0.05);
}

.site-nav a.active {
  background: #969292;
  color: #fff;
}

.site-nav .btn-contact {
  background: #2dbbe6;
  color: #fff;
  padding: 6px 14px; /* ← 他ページと同じ */
  border-radius: 4px;
}

.site-nav .btn-contact:hover {
  opacity: 0.9;
}

/* === ハンバーガー === */
.menubar {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menubar .bar {
  width: 100%;
  height: 3px;
  background-color: #605f5f;
}

/* === mainコンテンツ === */
.page-content {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px; /* セクション間の余白を広めに */
  text-align: left; /* 全体を中央揃え */
}

.news-list {
  background-color: rgba(254, 254, 254, 0.9);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  padding: 30px;
}

.news-list h2 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* ニュースリスト */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 800px;
}

.news-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-date {
  font-size: 12px;
  color: #605f5f;
}

.news-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.news-text {
  font-size: 14px;
  line-height: 1.6;
}

.highlight {
  color: #2dbbe6;
  text-decoration: underline;
}

/* === フッター === */
.site-footer {
  text-align: center;
  font-size: 12px;
  color: #605f5f;
  padding: 15px 0;
  background-color: rgba(255,255,255,0.7);
}

/* === スマホ表示 === */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    border-top: 1px solid #ddd;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }
  .menubar {
    display: flex;
  }
  .site-nav.open {
    display: block;
  }

  .form-container {
    width: 100%;
    padding: 20px;
  }
  .faq-list {
    max-width: 100%; /* スマホでは画面幅に合わせる */
  }
  .faq-item {
    grid-template-columns: 35px 1fr;
    gap: 8px 10px;
  }
  body {
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  }
}