body {
  margin: 0;
  font-family: sans-serif;
}
:root {
  --base-2: #fff !important;
}

.top-header {
  width: 100%;
  background: #fff;
}

/* h1 */
.top-h1 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: normal;
}

/* ロゴ並び */
.logo-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

/* ロゴ右ボタン：PCのみ */
.header-btns {
  display: flex;
  gap: 10px;
  align-items: center;
}

.top-nav-btn {
  display: block;
  line-height: 0;
}

.top-nav-btn img {
  display: block;
  height: 50px; /* 必要に応じて調整 */
  width: auto;
}

/* スマホでは非表示 */
@media (max-width: 768px) {
  .header-btns {
    display: none;
  }
}

/* ===== PCメニュー（整理済み）===== */
/* 外側（100%背景） */
.pc-nav-wrap {
  width: 100%;
  background: #f4f4f4;
}

/* 内側（1280） */
.pc-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* メニュー自体の背景 */
.pc-nav ul {
  background: #fefefe;
}

/* 横並び＋高さ確定 */
.pc-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 50px; /* ← 半角スペースで書き直す */
}

/* 5分割 */
.pc-nav li {
  width: 20%;
  text-align: center;
  position: relative;
}

/* クリック領域＝全体 */
.pc-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  color: #333;
  font-size: 15px;

  /* hover用 */
  background: #f4f4f4;
  transition: 0.2s;
}

/* ===== hover（これでズレない）===== */
.pc-nav a:hover {
  background: #333;
  color: #fff;
}

/* ===== 縦線（高さ連動）===== */
.pc-nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%; /* ← 全高さにする */
  width: 1px;
  background: #ccc;
}
/* 左端と右端の線 */
.pc-nav ul {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

/* 各メニューの区切り */
.pc-nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #ccc;
}

/* FV */
.fv {
  max-width: 1280px;
  margin: 0 auto;
}

.fv img {
  width: 100%;
  height: auto;
  display: block;
}

.fv-pc {
  display: block !important;
}

.fv-sp {
  display: none !important;
}

/* SPメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #333;
  margin-bottom: 5px;
}

.sp-nav {
  display: none;
}

/* コンテンツ */
/* セクションは100%幅 */
section {
  width: 100%;
}

/* 中身を1080中央に */
.content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 20px;
}

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

  .top-h1 {
    font-size: 12px;
    padding: 6px 15px;
  }

  .logo-row {
    padding: 12px 15px;
  }

  .header-btns,
  .pc-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .sp-nav.active {
    display: block;
  }

  .sp-nav ul {
    list-style: none;
    margin: 0;
    padding: 15px;
  }

  .sp-nav li {
    margin-bottom: 10px;
  }

  .fv-pc {
    display: none !important;
  }

  .fv-sp {
    display: block !important;
  }
}

/* ===== h1帯（100%）===== */
.top-h1 {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 8px 0;
  background: #2bb7f2;
  color : #fff;
}

/* 中の文字だけ1280中央 */
.top-h1 span {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 14px;
  font-weight: normal;
}

