﻿@charset "utf-8";

/* ========================================================
   1. リセットCSS
   ======================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================================================
   2. 全体・文字の基本設定
   ======================================================== */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333333;
  background-color: #f8f9fa;
  padding: 40px 0;
}

/* ========================================================
   3. レイアウト（外枠）の設定
   ======================================================== */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

/* ========================================================
   4. 各パーツの装飾
   ======================================================== */
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: #1a1a1a;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 2px solid #efefef;
  margin-bottom: 40px;
}

h2 {
  font-size: 22px;
  line-height: 1.4;
  color: #2c3e50;
  border-left: 5px solid #3498db;
  padding-left: 12px;
  margin-top: 48px;
  margin-bottom: 24px;
}

p {
  margin-bottom: 24px;
}

a {
  color: #3498db;
  text-decoration: none;
  transition: opacity 0.2s;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

img {
  max-width: 100%;
  height: auto important;
  display: block;
  margin: 32px auto;
  border-radius: 6px;
}

/* ========================================================
   5. メニュー（コンポーネント）
   ======================================================== */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.menu-list li {
  margin-bottom: 12px;
}

.menu-list a {
  display: block;
  padding: 16px;
  background-color: #3498db;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.2s, transform 0.1s;
}

@media (hover: hover) {
  .menu-list a:hover {
    background-color: #2980b9;
  }
  .menu-list a:active {
    transform: scale(0.98);
  }
}

/* ========================================================
   6. スマホ用の調整（画面横幅が768px以下のとき）
   ======================================================== */
@media screen and (max-width: 768px) {
  body {
    padding: 0;
    font-size: 15px;
  }

  .container {
    padding: 24px 16px;
    box-shadow: none;
    border-radius: 0;
  }

  h1 {
    font-size: 24px;
    padding-bottom: 16px;
    margin-bottom: 32px;
  }

  h2 {
    font-size: 19px;
    margin-top: 36px;
    margin-bottom: 16px;
  }
}
table img {
  width: 100%;
  height: auto;
}
