:root {
  --color-text: #232629;
  --color-main: #f0821e;
  --color-main-dark: #d96e0a;
  --color-main-pale: #fdeedd;
  --color-base-pale: #faf6f0;
  --color-accent: #1d2a3a;
  --color-green: #08bf50;
  --color-line: #d9d9d9;
  --font-sans: "YakuHanJP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --content-width: 1128px;
  --gutter: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--color-text);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

.layout-container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content-width));
  margin-inline: auto;
}

.layout-container--medium {
  max-width: 942px;
}

.layout-container--wide {
  max-width: 1048px;
}

.section {
  padding-block: 100px;
}

:focus-visible {
  outline: 3px solid #1677ff;
  outline-offset: 4px;
}

@media (max-width: 899px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 15px;
  }

  .section {
    padding-block: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
