@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
          appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

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

ol, ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, dd, figure {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

::-moz-selection {
  background-color: var(--color-black);
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background-color: var(--color-black);
  color: var(--color-white);
  text-shadow: none;
}

:root {
  --container-width: 1200px;
  --container-width-middle: 1080px;
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #b0b9bf;
  --color-lightgray: #c2ccd2;
  --color-darkgray: #38383a;
  --color-black-bg: #454649;
  --color-red: #ad0003;
  --color-slide-pagination: #656c70;
  --color-slide-pagination-active: #b0b9bf;
  --color-slide-progress: #fff;
  --font-family-base: Noto Sans JP, Noto Sans Japanese, YuGothic, Yu Gothic, 游ゴシック体, 游ゴシック, メイリオ, Meiryo, sans-serif;
  --font-light: 200;
  --font-demilight: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-black: 900;
}

html {
  font-size: 62.5%;
  font-kerning: normal;
  font-feature-settings: "palt";
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
  scroll-behavior: smooth;
  scroll-padding: 90px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

html::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track {
  background-color: transparent;
}
html::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
html.mode-debug {
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
html.mode-debug::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

body {
  font-family: var(--font-family-base);
  font-size: 1.6rem;
  font-weight: var(--font-regular);
  line-height: 1.5;
  letter-spacing: 0;
  background: var(--color-black-bg);
  color: var(--color-white);
}

address {
  font-style: normal;
}

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

iframe {
  max-width: 100%;
}

svg {
  transform: translate(0, 0);
}

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

.l-loading {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  transition: 1s ease;
  z-index: 2000;
}

.l-wrapper {
  display: none;
}

@media (max-width: 1023px){
  html {
    scroll-padding: 0;
  }
}

@media (max-width: 767px){
  html {
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  html::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
  }
  body {
    font-size: 4.26667vw;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
}