@font-face {
  font-family: 'Noto Sans JP';
  src: url("../../fonts/NotoSansJP-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url("../../fonts/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url("../../fonts/NotoSansJP-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url("../../fonts/NotoSansJP-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url("../../fonts/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-base: #ffffff;
  --color-main: #ff9348;
  --color-main-light: #fff4ed;
  --color-main-dark: #e57d34;
  --color-accent: #ff9348;
  --color-text-main: #2b2b2b;
  --color-text-sub: #757575;
  --color-text-link: #ff9348;
  --color-text-disabled: #cccccc;
  --color-border-light: #eeeeee;
  --color-border-medium: #e0e0e0;
  --color-surface-light: #f9f9f9;
  --color-surface-dark: #1a1a1a;
  --font-family-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "YuGothic Medium", YuGothic, "Yu Gothic Medium", "Yu Gothic", "BIZ UDGothic", sans-serif;
  --content-width: 1400px;
  --inline-gutter: 40px;
  --section-space: 128px;
}

@media screen and (max-width: 767px) {
  :root {
    --inline-gutter: 20px;
    --section-space: 96px;
  }
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

:target {
  scroll-margin-top: 100px;
}

body {
  background-color: var(--color-base);
  font-family: var(--font-family-base);
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}

a[href^="tel:"] {
  color: unset;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    color: var(--color-text-link);
    pointer-events: auto;
  }
}

img,
svg {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

strong {
  font-weight: 700;
}

input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
textarea,
select {
  padding: 0.8em 1em;
  background-color: #ffffff;
  border: 1px solid var(--color-border-medium);
  border-radius: 0.5em;
  line-height: 1;
}

textarea {
  resize: none;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--color-main);
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  width: fit-content;
  padding: 1em 2em;
  background-color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 100vmax;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  transition: all 0.3s;
}

@media (any-hover: hover) {

  button:hover,
  [type="button"]:hover,
  [type="reset"]:hover,
  [type="submit"]:hover {
    background-color: #ffffff;
    color: var(--color-accent);
  }
}

::placeholder {
  color: var(--color-text-disabled);
}

button:disabled,
optgroup:disabled,
option:disabled,
select:disabled,
textarea:disabled,
input:disabled {
  background-color: var(--color-surface-dark);
  border: 1px solid var(--color-border-medium);
  color: var(--color-text-disabled);
  cursor: not-allowed;
  opacity: 1.0;
}

@media (any-hover: hover) {

  button:disabled:hover,
  [type="button"]:disabled:hover,
  [type="reset"]:disabled:hover,
  [type="submit"]:disabled:hover {
    background-color: var(--color-surface-dark);
    color: var(--color-text-disabled);
  }
}