/* ============================================================
   global.css — site-wide base reset, loaded first on every page
   ============================================================ */
@charset "UTF-8";

.mobile-break { display: none; }
@media (max-width: 560px) {
  .mobile-break { display: inline; }
}

:root {
  --green: #087319;
  --text:  #151915;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6, p {
  text-wrap: pretty;
}

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

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