@charset "UTF-8";
/* ========== base ========== */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ========== base ========== */
:root {
  --font-main: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", sans-serif;
  --font-en: aktiv-grotesk-extended, sans-serif;
  --color-primary: #142744;
  --color-text: #142744;
  --color-bg: #FFF;
}

*, *::before, *::after {
  box-sizing: border-box;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-family: var(--font-main);
  font-size: 62.5%;
  font-weight: 400;
  background-color: var(--color-bg);
}

body {
  position: relative;
  color: var(--color-text);
  -webkit-text-size-adjust: 100%;
}

.decoration-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.wf-loading .u-font-en {
  opacity: 0;
}

@keyframes wf-font-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.wf-active .u-font-en {
  animation: wf-font-fadein 0.2s ease forwards;
}

body.is-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: calc(var(--scroll-pos, 0px) * -1);
  overflow: hidden;
}

span {
  font: inherit;
  color: inherit;
}

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

a[href^="tel:"] {
  text-decoration: none;
}

img,
video {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: bottom;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button, input, select, textarea {
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: unset;
  outline: none;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: middle;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  text-align: left;
  vertical-align: middle;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #9BA3AF;
}

::-webkit-scrollbar-thumb {
  background: #C7E82F;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #C7E82F #9BA3AF;
}
