/******************************************************************************
******************************************************************************

******************************************************************************
******************************************************************************/

/* === Base === */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');
/* ボックスサイズの標準化 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* マージン・パディングを初期化 */
body, h1, h2, h3, h4, h5, h6, p, blockquote,
dl, dd, ol, ul, figure,
form, fieldset, legend, input, textarea, button {
  margin: 0;
  padding: 0;
}

/* リストのスタイル削除 */
ul, ol {
  list-style: none;
}

/* 見出し・テキストの初期化 */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* 本文の初期設定：行間・可読性 */
body {
  line-height: 1.5;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #000;
  background-color: #fff;
  -webkit-text-size-adjust: 100%; /* iOSでのフォントサイズ調整防止 */
  text-rendering: optimizeLegibility;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}
a:focus {
  outline: 2px solid #005fcc; /* キーボード操作用フォーカスリング */
}

/* フォーカス可視化（マウス操作では非表示、キーボード操作では表示） */
:focus:not(:focus-visible) {
  outline: none;
}

/* ボタンやフォーム要素の初期化 + アクセシビリティ */
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer; /* ボタンらしさの維持 */
}
button:disabled,
input:disabled {
  cursor: not-allowed;
}

/* 画像・メディア */
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* altが無いimgは非表示にすることで誤解防止 */
img:not([alt]) {
  visibility: hidden;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th {
  text-align: left;
}

/* フォーム系：アクセシビリティ改善 */
input, textarea, select {
  min-height: 1.5em; /* タップしやすいサイズ */
}
label {
  cursor: pointer;
}

/* HTML5セクショニング要素 */
article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}