body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fdfdfd;
}

/* ヘッダー全体 */
header {
  position: relative;
  text-align: center;
  color: white;
}

/* 背景画像 */
.header-background {
  background-image: url('header-image.jpg');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* ロゴ＋社名の配置 */
.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.7); /* 半透明白背景 */
  max-width: 100%;
  margin: 0 auto;
}

/* ロゴ (PNGバージョン) */
.logo {
  width: 100px;
  height: 100px;
  background-image: url('logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 15px;
}

/* 社名 */
.logo-title h1 {
color: #1b6ca8;
  font-weight: bold;
  font-size: 36px;
  margin: 0;
}

/* キャッチコピー */
.logo-title p {
  margin: 10px 0 0 0;
  font-size: 18px;
color: #333;
  font-weight: bold;
}

/* ナビゲーション */
nav {
  background-color: #1b6ca8;
  overflow: hidden;
}

nav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  background-color: #139689;
}

/* セクション共通 */
.section {
  padding: 40px;
  max-width: 1000px;
  margin: auto;
}

.section:nth-child(even) {
  background-color: #f4f4f4;
}

/* フッター */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .logo-title {
    padding: 60px 20px;
  }
  .logo {
    width: 80px;
    height: 80px;
  }
  .logo-title h1 {
    font-size: 28px;
  }
  .logo-title p {
    font-size: 16px;
  }
}
