/* 全体のベース */
body {
  margin: 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  background: #fffdf5; /* ロゴの背景に合わせたクリーム色 */
  color: #333;
}

/* ヘッダー */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #faf6ef;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* 中央寄せのためのコンテナ */
.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  flex-direction: column; /* スマホは縦並び */
  align-items: center;
  text-align: center;
}

/* ロゴ（背景画像方式） */
.logo {
  background: url("images/logo.jpg") no-repeat center center;
  background-size: contain;
  width: 160px;     /* 横幅だけ指定 */
  aspect-ratio: 200 / 70;
  text-indent: -9999px;
  overflow: hidden;
  margin-bottom: 15px;
}

/* ナビ */
.nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* PCサイズで横並びに切り替え */
@media (min-width: 768px) {
  .header-inner {
    flex-direction: row; /* 横並び */
    justify-content: space-between;
    text-align: left;
  }

  .logo {
    margin-bottom: 0;
  }
}

/* 全体のベース */
body {
  margin: 0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  background: #fffdf5; /* ロゴと相性の良いクリーム色 */
  color: #333;
}

/* セクションの余白 */
.section {
  padding: 60px 20px;
}

/* 中央寄せコンテナ */
.container {
  max-width: 900px;
  margin: 0 auto;   /* 中央寄せの本体 */
  text-align: center; /* テキストも中央寄せ */
}

.hero {
  position: relative;
  background-image: url("images/background.png");
  background-size: cover;
  background-position: center top;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #444;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 250, 240, 0) 0%, #fdf6e8 100%);
}

/* 見出し */
.section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #444;
}

/* 本文 */
.section p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.company-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: #444;
  font-weight: bold;
}

.company-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 16px;
  background: #fffdf5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.company-table th,
.company-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.company-table th {
  background-color: #f8f8f8;
  color: #444;
  font-weight: bold;
  writing-mode: horizontal-tb;
  white-space: nowrap;
}

#contact .contact-text {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333; /* 黒寄りの落ち着いた色 */
}

#contact .contact-mail a {
  font-size: 22px;
  font-weight: bold;
  color: #000; /* 完全な黒 */
  text-decoration: none;
}

#contact .contact-mail a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 20px 0;
  color: #666;
  font-size: 14px;
}