/* ========================================
   ベース（リセット + 共通スタイル）
   ======================================== */

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

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

body {
  font-family: var(--font-jp);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ── レスポンシブ改行 ── */
.tb-br {
  display: none;
}

/* ── ユーティリティ ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.grid-bg {
  background-color: #FFFFFF;
  background-image:
    linear-gradient(#E8EFF5 1px, transparent 1px),
    linear-gradient(90deg, #E8EFF5 1px, transparent 1px);
  background-size: 30px 30px;
}
