.header-area {
  width: 100%;
  box-sizing: border-box;
}

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

/* 上カラム（中央1200px内、4列） */
.header-top {
  max-width: 1200px;
  margin: 0 auto 20px auto; /* 下に20px余白 */
  display: flex;
  align-items: center;
}

.header-top-item.logo {
  text-align: left;    /* 左端寄せ */
  flex: 0 0 auto;      /* ロゴ幅に固定 */
}

.header-top-item.btn1,
.header-top-item.text1 {
  flex: 1 1 auto;      /* 可変幅 */
  text-align: center;
}

.header-top-item.btn2 {
  flex: 1 1 auto;
  text-align: right;   /* 右端寄せ */
}

/* ロゴ調整 */
.header-top-item.logo img {
  max-height: 80px;
  height: auto;
  width: auto;
  display: block;
  margin: 0;
}

/* 下カラム（薄いグレー帯、高さ60px、中央1200px内） */
.header-bottom {
  width: 100%;
  background-color: #353A40; /* 薄いグレー */
  height: 60px;              /* 高さ固定 */
  margin-top: 20px;          /* 上に20px余白 */
}

.header-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* 左右端固定、均等按分 */
  height: 100%;
  align-items: center;           /* 縦中央揃え */
  gap: 0;                        /* 固定間隔なし */
}

.header-bottom-inner a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;               /* 指定サイズ */
}
