@charset "UTF-8";
/* -------------------------------------------------------------
 *  Minimal reset（画像主体LP向け）
 *  余白は各コンポーネントの margin-top で制御するため、
 *  見出し・段落・リストのデフォルト余白はすべて 0 にする。
 * ------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* デフォルト余白を除去（h1〜6・p・リスト・引用ほか） */
h1, h2, h3, h4, h5, h6,
p, figure, blockquote,
dl, dd, ul, ol {
  margin: 0;
}

/* 見出しはサイズ・太さを継承（各コンポーネントで指定） */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

ul, ol {
  padding-left: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg, video {
  max-width: 100%;
  vertical-align: middle;
}

/* フォーム要素は親のフォントを継承 */
button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

[hidden] {
  display: none !important;
}
