/* =======================================
   LP用リセットCSS（レスポンシブ対応）
======================================= */

/* ---------- 基本リセット ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

/* ---------- テキスト要素 ---------- */
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

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

/* ---------- メディア ---------- */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- フォーム要素 ---------- */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* ---------- テーブル ---------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ---------- レスポンシブベース ---------- */
body {
  font-size: 16px;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

/* ---------- コンテナ・余白のベース ---------- */
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .inner {
    padding: 0 16px;
  }
}

/* ---------- ユーティリティ（任意追加） ---------- */
.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

img {
  vertical-align: bottom;
}