@charset "UTF-8";

:root {
  --season-bg-color: rgba(3,3,3,1);
}

/* RESPONSIVE OPTIMIZE */
@media screen and (min-width: 769px) {
  .spbr {
    display: none;
  }
}


/* FADE ANIMATION */
.fade {
  opacity: 0;
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}
.isAnimate {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}


/* COLUMN LAYOUT */
.colWrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* BUTTON */
.btn {
  padding: 12px 24px;
  border: solid 1px #999;
  background-color: #FFF;
  text-align: center;
  display: inline-block;
  font-weight: lighter;
  text-decoration: none ;
  -webkit-transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1);
}
.btn:hover {
  background-color: var(--season-bg-color);
  color: #FFF;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.13);
}


/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');

@font-face {
  font-family: "HelveticaLTWXX-Bold";
  src: url('/lib/HelveticaLTWXXBold/font.woff2') format('woff2'), url('/lib/HelveticaLTWXXBold/font.woff') format('woff');
}


body {
  font-family: 'Helvetica','Arial','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', sans-serif;
  background-color: var(--season-bg-color);
}

.hlvtc {
  font-family: 'HelveticaLTWXX-Bold';
}


.txt-ex-small {
  font-size: 0.6rem;
  line-height: 1.6;
  font-weight: lighter;
}

.txt-small {
  font-size: 0.8rem;
  line-height: 1.6;
  font-weight: lighter;
}

.txt-normal {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: lighter;
}

.txt-large {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: lighter;
}

.txt-ex-large {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: lighter;
}


/* LOADING */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: var(--season-bg-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}
/* Loading Animation */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(1.0);
    opacity: 0;
  }
}



/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  width: 100%;
  z-index: 1000;
  top: 0;
  right: 0;
  position: fixed;
  transition: .5s;
}
  .header.hide{
    transform: translateY(-100%);
  }
    @media all and (-ms-high-contrast:none) {
     /* IE10以降に適応されるCSS */
     .header.hide{
       transform: none;
     }
    }

.bg{
  background-color: rgba(0,0,0,0.2);
}

.nav-button {
  display: none;
}
.nav a {
  color: #FFF;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.2rem;
  -webkit-transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1);
  padding-bottom: 8px;
  cursor: pointer;
}


.nav a:hover {
  opacity: 0.6;
}
.nav li {
  display: inline-block;
  margin-right: 2rem;
}
.nav-wrap.open {
  display: block;
}
.nav-wrap.close {
  display: none;
}
@media screen and (min-width: 1201px) {
  .nav-wrap {
    display: block !important;
  }
}
@media screen and (max-width: 1200px) {
  .header:hover {
    background: none;
  }
  .nav-button {
    display: block;
    cursor: pointer;
  }
  .nav-wrap {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    padding-top: 10%;
  }
  .nav-wrap.nav {
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .nav-wrap li {
    display: block;
    margin: 3rem 2rem;
  }
  .nav-wrap li a {
    color: #fff;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: solid 1px #999 ;
  }
  /*メニューボタン*/
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .nav-button {
    z-index: 20;
    position: relative;
    width: 36px;
    height: 24px;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
  }
  .nav-button span:nth-of-type(1) {
    top: 0;
  }
  .nav-button span:nth-of-type(2) {
    top: 10px;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }
  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
  }
  .nav-button.active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }
}




.nav li a {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav li a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav li a:hover::after {
  width: 100%;
}



@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}











/* MAIN VISUAL */
  /* Swiper ----- */
    @-webkit-keyframes zoomUp {
      0% {
          -webkit-transform: scale(1);
          transform: scale(1);
      }
      100% {
          -webkit-transform: scale(1.15);
          transform: scale(1.15);
      }
    }
    @keyframes zoomUp { /* 1.15倍させる指定 */
      0% {
          -webkit-transform: scale(1);
          transform: scale(1);
      }
      100% {
          -webkit-transform: scale(1.15);
          transform: scale(1.15);
      }
    }
    .swiper-slide {
      overflow: hidden;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }
    .swiper-slide-active .slide-img,
    .swiper-slide-duplicate-active .slide-img,
    .swiper-slide-prev .slide-img {
        -webkit-animation: zoomUp 12s linear 0s;
        animation: zoomUp 12s linear 0s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }
    .slide-img {
        background-size: cover;
        background-position: center center;
        height: 100vh;
    }




.str__animation .str{
  will-change: auto;
  min-width: .2rem;
  transform: translateY(0);
  opacity: 0;
}

.translateY {
  padding-top: 150px;
}



/* PB*/
body#PB  {
  background: #333;
  color: #FFF;
}

#PB div.wrapper {
  width: 100%;
  height: 100vh;
}
#PB h1 {
  font-size: 30rem;
  font-family: "HelveticaLTWXX-Bold";
  color: #444;
  width: 100%;
  line-height: 1;
}
#PB h2 {
  font-size: 8rem;
  font-family: "HelveticaLTWXX-Bold";
  color: #EEE;
  width: 100%;
  line-height: 1;
  margin-top: -4.5rem;
}
#PB ul li {
}
#PB ul li a {
  display: block;
  background-color: #000;
  padding: 2rem;
}
#PB footer {
  width: 100%;
  position: fixed;
  bottom: 0;
}
#PB footer p {
  text-align: right;
}


/* Material icons*/
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: 'liga';
  -moz-osx-font-smoothing: grayscale;

  display: inline-flex;
  vertical-align: middle;
}
