/*! LP Base Reset | based on modern-normalize (MIT License) */

/* ------------------------------
   全体リセット
------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ------------------------------
   見出し・テキスト
------------------------------ */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  font-weight: inherit;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
}

/* ------------------------------
   リンク
------------------------------ */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover,
a:focus {
  opacity: 0.7;
}

/* ------------------------------
   画像・メディア
------------------------------ */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ------------------------------
   リスト
------------------------------ */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ------------------------------
   ボタン・フォーム
------------------------------ */
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: 0;
  outline: none;
}
button {
  cursor: pointer;
}
textarea {
  resize: vertical;
}

/* ------------------------------
   コンテナ（中央揃え用）
------------------------------ */
.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

/* ------------------------------
   ヘルパー
------------------------------ */
.hidden {
  display: none !important;
}
.text-center {
  text-align: center;
}
