/* =========================================
   reset.css
   ブラウザ標準スタイルのリセット
   ========================================= */

/* すべての要素の余白とパディングをリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* デフォルトのフォント設定 */
html {
  font-size: 62.5%; /* 10pxベース（1rem = 10px） */
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* リンクの初期化 */
a {
  color: inherit;
  text-decoration: none;
}
a:hover,
a:focus {
  opacity: 0.8;
}

/* リストのマーカー削除 */
ul,
ol {
  list-style: none;
}

/* 画像をブロック要素化＋最大幅制限 */
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

/* 見出しの初期化 */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* テーブルの基本リセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ボタン・フォーム系のリセット */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

button {
  cursor: pointer;
}

/* セクションやブロック要素の初期設定 */
section, article, aside, header, footer, nav, main {
  display: block;
}

/* 強調テキスト */
strong, b {
  font-weight: bold;
}

/* スクロールバー（WebKit系）の初期化（任意） */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

/* 適度なベース余白 */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
