@charset "UTF-8";
/* CSS Document */
/* Modern Reset for all browsers 
*/

/* 1. 全ての要素の余白をリセットし、サイズ計算を直感的にする */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. フォントのレンダリングを滑らかにし、OSのデフォルトフォントを適用 */
html {
  -webkit-text-size-adjust: 100%; /* iOSの横向き時の文字サイズ自動調整を防止 */
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* macOS/Safariで文字を綺麗にする */
  font-family: sans-serif; /* 基本のゴシック体設定 */
}

/* 3. 画像や動画が親要素を突き抜けないようにする */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 4. 見出しの太さやサイズをリセット（自分で指定するため） */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* 5. リストのポチ（中黒）を消す */
ol, ul {
  list-style: none;
}

/* 6. リンクの下線や色をリセット（aタグをボタンのように扱うことも多いため） */
a {
  text-decoration: none;
  color: inherit;
}

/* 7. ボタンや入力フォームの見た目をブラウザ依存にしない */
button, input, select, textarea {
  font: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none; /* iOSなどで勝手につくスタイルを消す */
}

button {
  cursor: pointer;
}

/* 8. テーブルの隙間をなくす */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
address{
font-style: normal;
}
