css/* ---------------------------------
 * 基本リセット
 * --------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---------------------------------
 * 全体・背景の設定
 * --------------------------------- */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f4f6f8;
  padding: 20px;
}

/* ---------------------------------
 * コンテナ（全体の枠組み）
 * --------------------------------- */
.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ---------------------------------
 * 見出し
 * --------------------------------- */
h1 {
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  color: #34495e;
  font-size: 20px;
  margin: 30px 0 15px 0;
  border-bottom: 2px solid #3498db;
  padding-bottom: 5px;
}

/* ---------------------------------
 * 段落とテキスト
 * --------------------------------- */
p {
  font-size: 15px;
  margin-bottom: 15px;
}

/* ---------------------------------
 * ボタン
 * --------------------------------- */
.btn {
  display: inline-block;
  background-color: #3498db;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center;
  margin-top: 15px;
}

.btn:hover {
  background-color: #2980b9;
}

/* ---------------------------------
 * AIでさらに追加部分
 * --------------------------------- */


   /* ==============================
   リセット設定
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==============================
   ヘッダーのレイアウト
============================== */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
}

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

/* ロゴ */
.site-logo a {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

/* ナビゲーションメニュー（横並び） */
.menu-list {
    display: flex;
    gap: 30px;
}

.menu-item a {
    font-size: 16px;
    font-weight: 500;
    color: #555555;
    transition: color 0.3s ease;
}

.menu-item a:hover {
    color: #3498db; /* マウスを乗せた時の色 */
}

/* ==============================
   コンテンツの仮装エリア
============================== */
.main-content {
    padding: 100px 20px;
    text-align: center;
    font-size: 20px;
}

/* ==============================
   AIで追加したフッターのコード
============================== */

/* フッター全体のスタイル */
.footer {
  background-color: #333333; /* 背景色（濃いグレー） */
  color: #ffffff;            /* 文字色（白） */
  padding: 40px 20px 20px;   /* 余白（上・左右・下） */
  font-size: 14px;           /* フォントサイズ */
}

/* コンテンツの最大幅を制限して中央に寄せる */
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* セクションの配置（スマホは縦並び、PCは横並び） */
.footer-sections {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid #555555; /* セクションとコピーライトの間の線 */
  padding-bottom: 30px;
}

/* 各セクションの幅（PCで3分割、スマホで100%） */
.footer-section {
  flex: 1 1 300px;
}

/* 見出しのスタイル */
.footer-section h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #f1c40f; /* 見出しの色（オレンジ系） */
}

/* リストのスタイル */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

/* リンクのスタイル */
.footer-section a {
  color: #ffffff;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline; /* ホバー時に下線を表示 */
}

/* 連絡先テキストのスタイル */
.footer-section p {
  margin: 0 0 8px 0;
  line-height: 1.6;
}

/* コピーライト部分のスタイル */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
}