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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

:root {
  --color-font-primary: #ffffff;
  --color-font-secondary: #403939;
  --color-font-gray: #474343;
  --color-font-accent: #d6312b;
  --color-typography-primary: #2a2d30;
  --color-bg-fv: #090707;
  --color-bg-primary: #161313;
  --color-bg-secondary: #403939;
  --color-bg-line: #d9d9d9;
  --color-bg-header-footer: #1c1919;
  --font-base: "Roboto Condensed", sans-serif;
  --font-size-root: 62.5%;
  --font-size-heading: 4.8rem;
  --font-size-subheading: 1.8rem;
  --font-size-body: 2.4rem;
  --font-size-card-title: 1.8rem;
  --font-size-card-body: 1.4rem;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --line-height-base: 1.75;
  --spacing-section: 9.6rem;
  --spacing-heading-subheading: 0.8rem;
  --spacing-lead-content: 3.2rem;
  --spacing-content-md: 6.4rem;
  --spacing-content-sm: 2.4rem;
  --transition-base: 0.3s ease;
}

html {
  font-size: var(--font-size-root);
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  overflow-x: clip;
  padding-top: 64px;
  color: var(--color-font-primary);
  font-family: var(--font-base);
  background-color: var(--color-bg-primary);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}

input {
  color: var(--color-font-secondary) !important;
}

.l-section__head {
  margin-bottom: var(--spacing-lead-content);
  text-align: center;
}

.l-section__title {
  font-size: var(--font-size-heading);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
}

.l-section__subtitle {
  margin-bottom: var(--spacing-heading-subheading);
  font-size: var(--font-size-subheading);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

.pc_none {
  display: none !important;
}
@media (max-width: 767px) {
  .pc_none {
    display: block !important;
  }
}

.sp_none {
  display: block !important;
}
@media (max-width: 767px) {
  .sp_none {
    display: none !important;
  }
}
