/* =========================================================
  base.css

  サイト全体の土台CSS
  - リセット
  - 基本文字設定
  - リンク
  - 画像
  - フォーム部品
  - 汎用No Image
========================================================= */


/* =========================================================
  01. 共通リセット
========================================================= */

* {
  box-sizing: border-box;
}


/* =========================================================
  02. HTML・BODY基本設定
========================================================= */

html {
  font-size: 16px;
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.7;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}


/* =========================================================
  03. リンク
========================================================= */

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


/* =========================================================
  04. 画像
========================================================= */

img {
  max-width: 100%;
  display: block;
}


/* =========================================================
  05. フォーム部品
========================================================= */

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}


/* =========================================================
  06. テキスト・リスト
========================================================= */

p {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.4em;
}


/* =========================================================
  07. No Image表示
========================================================= */

.no-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f3f3f3;
  color: #999;
  display: grid;
  place-items: center;
  font-size: 13px;
}