:root {
  --main_snaidero: var('#EB6209');
  --white: var('#FFF');
  --base: var('#333');
  --key: var('#EB6209');
  --max-width-outer: 1920px;
}
html {
  background-color: #fff;
  color: var(--base, #333);
  margin-top: 0 !important;
}
a {
  text-decoration: none !important;
}
/*=============================
global
===============================*/
.link {
  opacity: 1;
  transition: opacity 0.4s;
}
.link:hover {
  opacity: 0.75;
}
.h-100 {
  height: 100%;
}
/*=============================
outer, inner
===============================*/
.outer {
  max-width: 1920px;
  margin: auto;
  margin-top: 150px;
  width: calc(100% - 128px);
  max-width: calc(1440px - 268px);
}
.inner {
  max-width: calc(1440px - 268px);
  width: calc(100% - 128px);
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.inner-wide {
  width: calc(100% - 128px);
  height: 100%;
  position: relative;
}
.inner-mb-fixed-mb {
  max-width: calc(1440px - 268px);
  min-width: 1120px;
  width: calc(100% - 128px);
  margin: 0 auto;
  height: 100%;
  position: relative;
}
/*=============================
background
===============================*/
.bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay-gray {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
/*=============================
fonts
===============================*/
.chillax {
  font-family: 'Chillax';
}
.zenkaku-g-a {
  font-family: 'Zen Kaku Gothic Antique';
}
.color-w {
  color: var(--white, #fff);
}
.txt-center {
  text-align: center;
}
.txt-center-pc {
  text-align: center;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-700 {
  font-weight: 700;
}
.fw-900 {
  font-weight: 900;
}
.pc-none {
  display: none;
}
.mb-none {
  display: block;
}
.br-pc {
  display: block;
}
.br-mb {
  display: none;
}
.txt-center {
  text-align: center;
}
/* メインの文章用CSS */
.txt {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.7px;
}
.eng-ttl {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px;
}
/*=============================
flex
===============================*/
.d-flex {
  display: flex;
}
.row {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.fit-cnt {
  justify-content: space-between;
}
/*=============================
animation
===============================*/
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s cubic-bezier(0.33, 1, 0.68, 1),
    transform 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 800px) {
  html {
    margin-top: 0 !important;
  }
  .txt-center-pc {
    text-align: left;
  }
  .br-pc {
    display: none;
  }
  .br-mb {
    display: block;
  }
  .pc-none {
    display: inline-block;
  }
  .mb-none {
    display: none;
  }
  .eng-ttl {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: capitalize;
  }
  /*=============================
  flex
  ===============================*/
  .row {
    flex-direction: column;
  }
  .row-reverse {
    flex-direction: column-reverse;
  }
  .column-mb {
    flex-direction: column;
  }
  /*=============================
  outer, inner
  ===============================*/
  .inner {
    max-width: unset;
    width: calc(100% - 60px);
  }
  .inner-wide {
    width: calc(100% - 60px);
  }
  .inner-mb-fixed-mb {
    max-width: unset;
    width: calc(100% + 30px);
    min-width: unset;
    margin-left: auto;
  }
}
