/* ================================
   RESET CSS for WordPress Theme
   ================================ */

/* Box sizing and layout normalization */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default body padding/margin */
html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 !important;
  font-family: "Noto Sans JP", sans-serif;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Reset images and media */
img,
picture,
video,
canvas,
svg {
  display: block;
  height: auto;
}

/* Form elements normalization */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

/* Ensure buttons are clickable */
button {
  cursor: pointer;
}

/* Table normalization */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Typography normalization */
h1, h2, h3, h4, h5, h6, p, figure, blockquote {
  margin: 0;
  font-weight: normal;
}

/* Remove default quote marks */
blockquote::before,
blockquote::after {
  content: '';
}

/* WordPress-specific: remove default image border/link outlines */
img {
  border-style: none;
}

/* WordPress: make embedded media responsive */
embed,
iframe,
object {
  max-width: 100%;
}

/* WordPress: reset alignments (alignwide/alignfull) */
.alignwide,
.alignfull {
  margin-left: auto;
  margin-right: auto;
}

/* WordPress: reset captions */
.wp-caption {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

/* WordPress: remove default gallery gaps */
.gallery {
  margin: 0;
}

/* WordPress block editor support */
.wp-block {
  max-width: 100%;
  margin: 0 auto;
}

