@charset "UTF-8";
:root{
  --font_sans: "Noto Sans JP", sans-serif;
  --font_e: "Jost", sans-serif;
  --leading-trim: calc((1em - 1lh) / 2);
  --width: 1200px;
  --width_lg: 1366px;
  --sp-gutter: calc(25/375*100vw);
  --pc-gutter: 18px;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 20.8vw;
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: min(6.6666666667vw, 80px);
  }
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--textColor);
  font-size: 16px;
  font-size: 4.2666666667vw;
  font-family: var(--font_sans);
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.75;
  word-wrap: break-word;
  word-break: normal;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body * {
  word-wrap: break-word;
  word-break: normal;
}
@media (min-width: 768px) {
  body {
    font-size: 18px;
    font-size: 1.5vw;
  }
}
@media (min-width: 1201px) {
  body {
    font-size: 18px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

br[sp] {
	display: none;
}
br[pc],
br[pc][sp] {
	display: inline;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  br[pc],
  .pc-only {
    display: none !important;
  }
  br[sp],
  br[pc][sp] {
    display: inline;
  }
}

/*Font
----------------------------------------*/
.sans {
  font-family: var(--font_sans);
}

[lang=en],
.font_e {
  font-family: var(--font_e);
  font-optical-sizing: auto;
  font-style: normal;
}

/* Links
----------------------------------------*/
a {
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* Contents
----------------------------------------*/
.sect_spacer {
  margin-top: 3vw;
}
.center{
  text-align: center;
}
.text-description p + p{
  margin-top: 1.5em;
}