/* Google Fonts 読み込み */
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;color-scheme:dark light}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){line-height:1.5;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(button){border-style:solid}:where(a){color:inherit;text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em + 0.5rem)}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(:focus-visible){outline:3px solid Highlight;outline-offset:2px;scroll-margin-block:10vh}:where(.visually-hidden:not(:focus-within,:active)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}


body {
  color: #000000;
  font-family: "Noto Serif JP", "Roboto", serif;
  background:#FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}


.wrap {
  background-blend-mode: lighten;
  z-index: 1100;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.wrap:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  transform: translate(0, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) .6s;
  content: '';
}
.wrap img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;

  max-width: 300px;
  width: 40%;
  height: auto;

  animation-name:fadeIn,movelogo;
  animation-duration:1s,1.5s;
  animation-timing-function:ease-in-out, ease-out;
  animation-delay:0s, 2s;
  animation-iteration-count:1,1;
  animation-direction:normal,normal;
  animation-fill-mode:backwards,forwards;


}
.wrap.active {
  -webkit-transition: all 3s ease;
  -moz-transition: all 3s ease;
  -o-transition: all 3s ease;
  transition: all 3s ease;
}

.wrap.active:before {
  transform: translate(-100%, 0);
}
.wrap.active img {
  display: none;
}

.maincontent{
  overflow:hidden;
}


.scrollm{
  text-align:center;
  position:fixed;
  bottom:5vw;
  right:3%;
  z-index:5;
}

.mouses{
  width:22px;
  height:38px;
  margin:0 auto;
  position:relative;
  background:#eeeeee linear-gradient(transparent 0%, transparent 50%,#333333 50%, #333333 100%);
  background-size:100% 200%;
  border-radius:100px;
  animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
}

.mouses:before,
.mouses:after{
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
  margin:auto;
}

.mouses:before{
  width:16px;
  height:32px;
  background-color:#eeeeee;
  border-radius:100px;
}

.mouses:after{
  background:#333333;
  width:5px;
  height:5px;
  border-radius:100%;
  animation:trackBallSlide 5s linear infinite;
}

.mousestx{

  font-family:'Roboto',sans-serif;
  font-size:0.8em;
  font-weight:bold;
  color:#333333;
  animation:colorText 5s ease-out infinite,nudgeText 5s ease-out infinite;
}

/* Animations */
@keyframes colorSlide{
  0% {
    background-position: 0% 100%;
  }
  20% {
    background-position: 0% 0%;
  }
  21% {
    background-color: #88969e;
  }
  29.99% {
    background-color: #333333;
    background-position: 0% 0%;
  }
  30% {
    background-color: #88969e;
    background-position: 0% 100%;
  }
  50% {
    background-position: 0% 0%;
  }
  51% {
    background-color: #88969e;
  }
  59% {
    background-color: #333333;
    background-position: 0% 0%;
  }
  60% {
    background-color: #88969e;
    background-position: 0% 100%;
  }
  80% {
    background-position: 0% 0%;
  }
  81% {
    background-color: #88969e;
  }
  90%, 100% {
    background-color: #333333;
  }
}

@keyframes colorText{
  21% {
    color: #88969e;
  }
  30% {
    color: #333333;
  }
  51% {
    color: #88969e;
  }
  60% {
    color: #333333;
  }
  81% {
    color: #88969e;
  }
  90% {
    color: #333333;
  }
} 

@keyframes trackBallSlide{
  0%{
    opacity: 1;
    transform: scale(1) translateY(-10px);
  }
  6%{
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  14%{
    opacity: 0;
    transform: scale(0.4) translateY(30px);
  }
  15%, 19%{
    opacity: 0;
    transform: scale(0.4) translateY(-10px);
  }
  28%, 29.99%{
    opacity: 1;
    transform: scale(1) translateY(-10px);
  }
  30%{
    opacity: 1;
    transform: scale(1) translateY(-10px);
  }
  36%{
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  44%{
    opacity: 0;
    transform: scale(0.4) translateY(30px);
  }
  45%, 49%{
    opacity: 0;
    transform: scale(0.4) translateY(-10px);
  }
  58%, 59.99%{
    opacity: 1;
    transform: scale(1) translateY(-10px);
  }
  60%{
    opacity: 1;
    transform: scale(0.9) translateY(-10px);
  }
  66%{
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  74%{
    opacity: 0;
    transform: scale(0.4) translateY(30px);
  }
  75%, 79%{
    opacity: 0;
    transform: scale(0.4) translateY(-10px);
  }
  88%, 100%{
    opacity: 1;
    transform: scale(1) translateY(-10px);
  }
}
@keyframes nudgeMouse{
  0%{
    transform: translateY(0);
  }
  20%{
    transform: translateY(8px);
  }
  30%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(8px);
  }
  60%{
    transform: translateY(0);
  }
  80%{
    transform: translateY(8px);
  }
  90%{
    transform: translateY(0);
  }
}
@keyframes nudgeText {
  0%{
    transform: translateY(0);
  }
  20%{
    transform: translateY(2px);
  }
  30%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(2px);
  }
  60%{
    transform: translateY(0);
  }
  80%{
    transform: translateY(2px);
  }
  90%{
    transform: translateY(0);
  }
}


/* header */

#header{
  width:90%;
  margin:0 auto;
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding:1em 0;
  font-family:'Noto Sans JP',sans-serif;
}

#header h1{
  width:15%;
  max-width:200px;
}

#header .mainnav{
  width:60%;
}

#header .mainnav ul{
  display:flex;
  justify-content: flex-end;
}

#header .mainnav ul li{
  font-weight:900;
  padding:0 1em;
}

.disable a{
  pointer-events:none;
  opacity:.3;
}

#header .mainnav ul li a{
  text-decoration:none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

#header .mainnav ul li a:hover{
  text-decoration:none;
  color:#666;
}

@media screen and (max-width: 640px) {
  #header{
    width:95%;
  }
  #header .mainnav ul li{
    font-size:2.9vw;
    padding:0 1vw;
  }

}

/* intro */
/* ------------------ */

#intro{
  position:relative;
  padding:5vw 0 0 0;
}

#intro .nlogo-hft{
  width:40%;
  max-width:500px;
  margin:0 auto;
}

#intro .nmlg{
  width:50%;
  max-width:700px;
  margin:-1.5vw auto 1vw auto;
  position:relative;
  z-index:2;
}

#intro .nmlgb{
  width:40%;
  margin:0 auto;
  max-width:450px;
}

#intro .nlogo-htb{
  width:40%;
  margin:-3.5vw auto 0 auto;
  max-width:450px;
}

#intro .ld{
  width:50%;
  max-width:700px;
  margin:0 auto;
  position:absolute;
  top:20%;
  left:0;
  right:0;
  z-index:3;
}

#intro .ld .ld01{
  padding-bottom:3vw;
}



#intro .int-t{
  text-align:center;
  padding:1em 0;
  font-size:1.4em;
  line-height:1.8;
}


.fadeIn {
  opacity: 0;
  transform: translateY(50px);
}

.fadeIn.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}




@media screen and (min-width: 1300px) {
  #intro{
    position:relative;
    padding:10em 0 10em 0;
  }
  #intro .nmlg{
    margin:-1.5em auto 1em auto;
  }

  #intro .nlogo-htb{
    margin:-3em auto 0 auto;
  }
}

@media screen and (max-width: 640px) {
  #intro{
    position:relative;
    padding:50vw 0 20vw 0;
  }
  #intro .int-t{
    text-align:center;
    padding:1em 0;
    font-size:3.5vw;
    line-height:1.8;
  }

  #intro .ld{
    top:35%;
  }
}



/* movie */
/* ------------------ */
#movie{
  position:relative;
  padding:0;
  width:100%;
  height:100vh;
  margin-top:-20vw;
}



#movie .coming_video{
  width:100%;
  height:auto;
  position:absolute;
  top:50%;
  left:50%;
  z-index:1;
  transform:translate(-50%, -50%);
}


#movie .js-modal-video{
  position:absolute;
  top:calc(100% / 1.5);
  right:5%;
  z-index:2;
  color:#FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight:900;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  background:rgba(0,0,0,1);
  padding:1em 1em 1em 3em;
  border-radius:10px;
  line-height:1;
  cursor:pointer;
}

#movie .js-modal-video:before{
  content:'';
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2079%2079%22%20style%3D%22enable-background%3Anew%200%200%2079%2079%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23FFFFFF%3Bstroke-miterlimit%3A10%3B%7D%3C%2Fstyle%3E%3Ccircle%20class%3D%22st0%22%20cx%3D%2239.5%22%20cy%3D%2239.5%22%20r%3D%2239%22%2F%3E%3Cpolygon%20class%3D%22st0%22%20points%3D%2261.78%2C41%2026.11%2C20.41%2026.11%2C61.59%20%22%2F%3E%3C%2Fsvg%3E');
  background-repeat:no-repeat;
  background-position:center center;
  width:30px;
  height:40px;
  display:block;
  position:absolute;
  top:5px;
  left:10px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

#movie .js-modal-video:hover{
  color:#000000;
  background:rgba(255,255,255,1);
}

#movie .js-modal-video:hover:before{
  content:'';
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2079%2079%22%20style%3D%22enable-background%3Anew%200%200%2079%2079%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3Anone%3Bstroke%3A%23000000%3Bstroke-miterlimit%3A10%3B%7D%3C%2Fstyle%3E%3Ccircle%20class%3D%22st0%22%20cx%3D%2239.5%22%20cy%3D%2239.5%22%20r%3D%2239%22%2F%3E%3Cpolygon%20class%3D%22st0%22%20points%3D%2261.78%2C41%2026.11%2C20.41%2026.11%2C61.59%20%22%2F%3E%3C%2Fsvg%3E');
}


@media screen and (min-width: 1500px) {
  #movie{
    margin-top:0;
  }

  #movie .js-modal-video{
    top:calc(100vh / 1.3);
    right:5%;
  }

}

@media screen and (max-width: 1000px) {
  #movie .js-modal-video{
    top:calc(100vh / 1.65);
    right:5%;
  }

}

@media screen and (max-width: 640px) {
  #movie .js-modal-video{
    top:calc(100vh / 1.8);
    right:5%;
    font-size:3vw;
  }
  #movie .js-modal-video:before{
    width:15%;
    height:30px;
    top:1.5vw;
    left:10px;
  }

}

@media screen and (max-width: 480px) {
  #movie{
    margin-top:0;
  }
  #movie .js-modal-video{
    top:calc(100vh / 1.9);
    right:5%;
    font-size:3vw;
  }
  #movie .js-modal-video:before{
    width:15%;
    height:30px;
    top:0.5vw;
    left:10px;
  }

}

/* tcontents */
/* ------------------ */
#tcontents{
  position:relative;
  padding:5em 0;
}

#tcontents ul{

}

#tcontents ul li{
  color:#FFFFFF;
  text-align:left;
  padding:1em 5em;
  font-size:1.4em;
  line-height:1.8;
  padding-top:20vw;
  margin:.2em 0;
  position:relative;
}



#tcontents ul li .tcslide{
  width:100%;
  height:100%;
  background:rgba(0,0,0,1);
  position:absolute;
  top:0;
  left:-100%;
  z-index:2;
  opacity:1;
}

#tcontents ul li.ct01{
  background:url(../images/tcontents_bg01.jpg) no-repeat center top;
  background-size:100% auto;
}

#tcontents ul li.ct02{
  background:url(../images/tcontents_bg02.jpg?=231011) no-repeat center top;
  background-size:100% auto;
}

#tcontents ul li.ct03{
  background:url(../images/tcontents_bg03.jpg) no-repeat center top;
  background-size:100% auto;
}

#tcontents ul li.ct04{
  background:url(../images/tcontents_bg04.jpg?=231011) no-repeat center top;
  background-size:100% auto;
}
#tcontents ul li .ld{
  display:flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
#tcontents ul li h2{
  font-weight:500;
  letter-spacing:.1em;
  padding:.2em 0 .2em 0;
}

#tcontents ul li p{
  font-size:70%;
  line-height:1.6;
}

#tcontents ul li .subt{
  font-family:'Noto Sans JP', sans-serif;
  font-weight:900;
  font-size:90%;
  line-height:1.4;
  background:rgba(255,255,255,.6);
  color:#000;
  text-align:right;
  padding:0.1em 1em;
  width:40%;
  margin:0 auto 0 0;
}

#tcontents ul li .soon{
  background:rgba(255,255,255,.3);
  font-family:'Noto Sans JP', sans-serif;
  font-weight:900;
  font-size:2vw;
  border-radius:100%;
  text-alirgn:center;
  width:20vw;
  height:20vw;
  display:flex;
  justify-content: center;
  align-items: center;
  position:absolute;
  top:-2%;
  right:10%;
}

#tcontents ul li.active .soon{
  background:rgba(255,255,255,.7);
  font-size:2vw;
}

#tcontents ul li a{
  text-decoration:none;
  display:block;
  color:#000000;
}

@media screen and (min-width: 1500px) {

  #tcontents ul li .soon{
    font-size:1.4em;
  }

}

@media screen and (max-width: 900px) {
  #tcontents ul li{
    padding:1em 5vw;
    font-size:1.4em;
    line-height:1.8;
    padding-top:calc(100% / 5.5);
    margin:.2em 0;
    position:relative;
  }

  #tcontents ul li .soon{
    font-size:2.5vw;
    width:25vw;
    height:25vw;
  }

}

@media screen and (max-width: 640px) {
  #tcontents ul li{
    font-size:3vw;
    padding-top:calc(100% / 3);
  }

  #tcontents ul li.ct01{
    background:url(../images/tcontents_bg01_sp.jpg) no-repeat center top;
    background-size:100% auto;
  }

  #tcontents ul li.ct02{
    background:url(../images/tcontents_bg02_sp.jpg) no-repeat center top;
    background-size:100% auto;
  }

  #tcontents ul li.ct03{
    background:url(../images/tcontents_bg03_sp.jpg) no-repeat center top;
    background-size:100% auto;
  }

  #tcontents ul li.ct04{
    background:url(../images/tcontents_bg04_sp.jpg) no-repeat center top;
    background-size:100% auto;
  }
}

@media screen and (max-width: 480px) {
  #tcontents{
    padding:0;
  }

  #tcontents ul li .soon{
    right:5%;
  }
}


/* logo */
/* ------------------ */
#logo{
  position:relative;
  padding-bottom:0;
}

#logo .lg{
  width:40%;
  margin:0 auto;
  padding-bottom:1em;
}

#logo .lg-t{
  text-align:center;
  padding:1em 0;
  font-size:1.4em;
  line-height:1.8;
}

@media screen and (max-width: 640px) {
  #logo .lg-t{
    padding:1em 0;
    font-size:3vw;
  }

}

/* charactor */
/* ------------------ */
#charactor{
  position:relative;
  padding:10vw 0 0 0;
  background:#efefef;
  margin-top:-15vw;
}




@keyframes purun {
  0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
  15%  { transform: scale(0.9, 0.9) translate(0%, 5%); }
  30%  { transform: scale(1.3, 0.8) translate(0%, 10%); }
  50%  { transform: scale(0.8, 1.3) translate(0%, -10%); }
  70%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
  100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}

#charactor .nazepiyo2{
  width:30%;
  height:calc(100% / 3);
  padding-top:20vw;
  margin:0 auto;
  text-align:center;
}

#charactor.purun .nazepiyo2{
  animation: purun 0.8s linear 0s infinite;
}



#charactor .nazepiyo2 path.st0 {
  fill:none;
  stroke:none;
  stroke-width:2px;
  stroke-dasharray:1000px;
}
/*口*/
#charactor .nazepiyo2 path.st1 {
  fill:none;
  stroke:none;
  stroke-width:2px;
  stroke-dasharray:1000px;
}
/*目の背景*/
#charactor .nazepiyo2 circle.st2 {
  fill:none;
  stroke:none;
  stroke-width:2px;
  stroke-dasharray:1000px;
}
/*輪郭*/
#charactor .nazepiyo2 path.st3 {
  fill:none;
  stroke:#000000;
  stroke-width:2px;
  stroke-dasharray:1000px;
}
/*輪郭*/
#charactor .nazepiyo2 path.st4 {
  fill:none;
  stroke:#000000;
  stroke-width:2px;
  stroke-dasharray:1000px;
}


#charactor .cht-t{
  text-align:center;
  padding:0;
  font-size:1.4em;
  line-height:1.8;
}

#charactor .piyotaro{
  width:100%;
  margin:3vw auto 0 auto;
  padding-top:calc(100% / 1.1);
  position:reltive;
  z-index:2;
}

#charactor .piyotaro:after{
  content:'';
  background:url(../images/grass.svg) repeat-x center bottom;
  background-size:auto 100%;
  height:5vw;
  width:100%;
  position:absolute;
  bottom:0;
  left:0;
  display:block;
}

#charactor .piyotaro .nazetaro{
  width:20%;
  margin:0 auto;
  position:absolute;
  bottom:0;
  left:30%;
}

#charactor .piyotaro .nazetaro .nazeil{

}

#charactor .piyotaro .nazetaro .nazenm{
  position:absolute;
  top:5vw;
  left:-2vw;
  font-family:'Noto Sans JP', sans-serif;
  font-weight:900;
  font-size:1.4em;
}

#charactor .piyotaro .nazepiyo{
  width:15%;
  margin:0 auto;
  position:absolute;
  bottom:0;
  left:47%;
}

#charactor .piyotaro .nazepiyo .nazepiyonm{
  position:absolute;
  top:0;
  right:-10vw;
  font-family:'Noto Sans JP', sans-serif;
  font-weight:900;
  font-size:1.4em;
}

@media screen and (min-width: 1000px) {
  #charactor{
    position:relative;
    padding:5em 0 0 0;
    background:#efefef;
    margin-top:-15vw;
  }
  #charactor .nazepiyo2{
    padding-top:0;
    height:calc(100% / 3);
  }

  #charactor .piyotaro{

    margin:3vw auto 0 auto;
    padding-top:calc(100% / 2);
  }

  #charactor .cht-t{
    text-align:center;
    padding:1em 0;
    font-size:1.4em;
    line-height:1.8;
  }

  #charactor .piyotaro .nazetaro .nazenm{
    top:5vw;
    left:0;
    font-size:1.4em;
  }

  #charactor .piyotaro .nazepiyo .nazepiyonm{
    top:0;
    right:-8vw;
    font-size:1.4em;
  }

}

@media screen and (max-width: 900px) {
  #charactor .piyotaro .nazetaro{
    width:27%;
    left:26%;
  }

  #charactor .piyotaro .nazepiyo{
    width:17%;
    left:48%;
  }

  #charactor .piyotaro .nazetaro .nazenm{
    position:absolute;
    top:5vw;
    left:-2vw;
    font-size:3vw;
  }

  #charactor .piyotaro .nazepiyo .nazepiyonm{
    position:absolute;
    top:0;
    right:-13vw;
    font-size:3vw;
  }


}

@media screen and (max-width: 640px) {
  #charactor .nazepiyo2{
    width:40%;
    height:calc(100% / 2);
    margin:0 auto;
    padding-top:20vw;
  }
  #charactor .cht-t{
    font-size:3vw;
  }

  #charactor .piyotaro{
    width:100%;
    margin:3vw auto 0 auto;
    padding-top:calc(100% / 2);
    position:reltive;
    z-index:2;
  }

}

@media screen and (max-width: 480px) {
  #charactor .nazepiyo2{
    width:40%;
    height:calc(100% / 3);
    margin:0 auto;
    padding-top:20vw;
  }
  #charactor .piyotaro{
    padding-top:calc(100% / 1);
  }

}

/* histroy */
/* ------------------ */

#history{
  background:#000000;
  color:#FFFFFF;
}

#history .odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  font-family: 'Nanum Myeongjo', serif; !important;
  line-height: 1em !important;
}
#history .odometer-formatting-mark {
  display: none !important;
}
#history .odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
  text-align: inherit !important;
}


.history-wrapper-content{




}

.history-wrapper-content .yearmap{
  position: absolute;
    top: 2em;
    left: 40vw;
    z-index: 99;
    width: 50vw;
    font-family:sans-serif;
    font-size:16px;
    font-weight:500;
}

.history-wrapper-content .yearmap a{
  text-decoration:none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.history-wrapper-content .yearmap a:hover{
  color:#999999;
}

.history-wrapper-content .yearmap .ymap-t{
  position: absolute;
  top:-1.5em;
  left:-0.5em;
}

.history-wrapper-content .yearmap .ymap-s{
  position: absolute;
  top:-1.5em;
  left:10%;
}

.history-wrapper-content .yearmap .ymap-h{
  position: absolute;
  top:-1.5em;
  left:66%;
}

.history-wrapper-content .yearmap .ymap-r{
  position: absolute;
  top:-1.5em;
  right:-0.5em;
}

.history-wrapper-content .yearmap .ymap-100{
  position: absolute;
  top:0.5em;
  left:-1em;
  font-weight:800;
  opacity:.3;
}

.history-wrapper-content .yearmap .ymap-0{
  position: absolute;
  top:0.5em;
  right:-1em;
  font-weight:800;
  opacity:.3;
}

.history-wrapper-content .yearmap .ymsvg-pc{
  display:block;
}

.history-wrapper-content .yearmap .ymsvg-sp{
  display:none;
}

.history-wrapper-content .yearmap svg {
    
}
.history-wrapper-content .yearmap svg .mask {
    width: 0;
}

.history-wrapper-content .yearmap svg .mask2 {
    width: 0;
}


.history-wrapper-content .scrollContainer {
    overscroll-behavior: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
 
}
.history-wrapper-content .section {
    height: 95vh;
    margin-top:5vw;
}
.history-wrapper-content .section.start-content {
    flex: 0 0 100vw;
}
.history-wrapper-content .caption h2 {
    font-size: clamp(4rem, 6vw, 10rem);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -1px;

}
.history-wrapper-content .caption p {
    
    font-size: clamp(0.8rem, 4vw, 1.5rem);
}

.history-wrapper-content .single-images {
    position:relative;
    width: 30rem;
    height: 50rem;
    overflow:hidden;
}

.history-wrapper-content .single-images img{
    position:relative;
    width: 100%;
    height: 100%;
}
.history-wrapper-content .double-images {
    position: relative;
    width: 90rem;
    display: flex;
}
.history-wrapper-content .double-images.type-01 {
    margin: 10rem 0;
}
.history-wrapper-content .double-images.type-01 figure:first-child {
    flex-basis: 60rem;
    flex-shrink: 0;
    height: 80vh;
}
.history-wrapper-content .double-images.type-01 figure:last-child {
¥
    height: 50vh;
    position: absolute;
    bottom: -4rem;
    right: -26rem;
    top: auto;
}
.history-wrapper-content .double-images.type-02 figure:first-child {
    flex-basis: 90rem;
    flex-shrink: 0;
    height: 100vh;
}
.history-wrapper-content .double-images.type-02 figure:last-child {
    height: 50vh;
    position: absolute;
    bottom: -4rem;
    right: -26rem;
    top: auto;
}
.history-wrapper-content .triple-images {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10rem 0;
}
.history-wrapper-content .triple-images figure {
    width: 50rem;
    height: 50rem;
}
.history-wrapper-content .triple-images figure:first-child {
    width: 50vh;
    height: 50vh;
    padding-bottom: 100%;
}
.history-wrapper-content .triple-images figure:first-child img {
    width: 100%;
    height: 100%;
}
.history-wrapper-content .triple-images figure:nth-child(2) {
    width: 35vh;
    height: 35vh;
    position: absolute;
    top: -35%;
    right: -20%;
}

.history-wrapper-content .triple-images.double figure:nth-child(2) {
    width: 40vh;
    height: 20rem;
    position: absolute;
    top:auto;
    left:-25%;
    bottom: -50%;
    right: auto;
}
.history-wrapper-content .triple-images figure:nth-child(2) img {
    width: 100%;
    height: 100%;
}
.history-wrapper-content .triple-images figure:nth-child(3) {
    width: 40vh;
    height: 20rem;
    position: absolute;
    bottom: -50%;
    left: -25%;
}
.history-wrapper-content .triple-images figure:nth-child(3) img {
    width: 100%;
    height: 100%;
}
.history-wrapper-content figure {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.history-wrapper-content figure.start-image {
    width: 50%;
    height: 100%;
}
.history-wrapper-content figure.start-image img {
    width: 140%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.history-wrapper-content figure.last-image {
    position:relative;
    width: 40rem;
    height: 50rem;
    display:flex;
    align-items: center;
    margin-right:10rem;

}

.history-wrapper-content figure.last-image img{
    position:relative;
    width: 70%;
    height: auto;
}

.history-wrapper-content figure img {
    width: 140%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.history-wrapper-content .start-chapter .caption {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    padding-left: 10vw;
    margin-bottom: 15rem;
}
.history-wrapper-content .start-chapter .caption h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    text-transform: uppercase;
    line-height: 1;
    width:100%;
}
.history-wrapper-content .start-chapter .caption p {
    max-width: 100rem;
    padding-left: 0;
    font-size: clamp(1.5rem, 4vw, 2rem);
}
.history-wrapper-content .chapters {
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 10vw;
}
.history-wrapper-content .chapters.c01 .caption {
    padding-left: 20rem;
}
.history-wrapper-content .chapters.c02 {
    padding: 0 10vw;
}
.history-wrapper-content .chapters.c02 .caption {
    padding-left: 20rem;
    width: max-content;
    margin-top: 10rem;
}

.history-wrapper-content .chapters.c03 {
    padding: 0 10vw;
}
.history-wrapper-content .chapters.c03 .caption {
    width: max-content;
    margin-top: 0;
}

.history-wrapper-content .caption p.histline {
    padding-bottom:0.5rem;
}

.history-wrapper-content .caption p.prline {
    padding-top:1rem;
}

.history-wrapper-content .backto{
}

.history-wrapper-content .backto a{
  color:#000000;
  display:inline-block;
  background:#FFFFFF;
  padding:0.2em 1em;
  border-radius:10px;
  text-decoration:none;
  font-family:sans-serif;
  font-weight:600;
  font-size:clamp(1rem, 1vw, 1.5rem);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.history-wrapper-content .backto a:hover{
  color:#FFFFFF;
  background:#000000;
}

.history-wrapper-content .item {
    width: 100%;
    height: 100%;
    display: flex;
    background: #000000;
}


.history-wrapper-content .caption p.histline.is-active{
  animation: fadeInLeft 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInLeft 1s;
  -webkit-animation-fill-mode: backwards;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.history-wrapper-content .caption p.prline.is-active{
  animation: fadeInRight 1s;
  animation-fill-mode: backwards;
  -webkit-animation: fadeInRight 1s;
  -webkit-animation-fill-mode: backwards;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}



@media screen and (min-width: 2500px) {
  .history-wrapper-content .yearmap .ymap-s{
    left:5.4vw;
  }
  .history-wrapper-content .yearmap .ymap-h{
    left:33.5vw;
  }
  .history-wrapper-content .yearmap .ymap-100{
    top:1.2em;
  }

  .history-wrapper-content .yearmap .ymap-0{
    top:1.2em;
  }
}

@media screen and (min-width: 1600px) and (max-width: 2499px) {

  .history-wrapper-content .yearmap .ymap-s{
    left:5.4vw;
  }
  .history-wrapper-content .yearmap .ymap-h{
    left:33.5vw;
  }

  .history-wrapper-content .yearmap .ymap-100{
    top:0.8em;
  }

  .history-wrapper-content .yearmap .ymap-0{
    top:0.8em;
  }
}

@media screen and (max-width: 1100px) {

  .history-wrapper-content figure.start-image img {
      height: 80%;
  }
  .history-wrapper-content .start-chapter .caption {
    justify-content: center;
  }
}


@media screen and (max-width: 800px) {
  .history-wrapper-content .yearmap .ymap-h{
    left:65%;
  }
  .history-wrapper-content figure.start-image img {
      height: 50%;
  }
}


@media screen and (max-width: 640px) {

  .history-wrapper-content .yearmap{
    position: absolute;
      top: 3em;
      left: 10vw;
      z-index: 99;
      width: 80vw;
      font-family:sans-serif;
      font-size:11px;
      font-weight:500;
  }

  .history-wrapper-content .yearmap .ymap-t{
    position: absolute;
    top:-2em;
    left:-5%;
  }

  .history-wrapper-content .yearmap .ymap-s{
    position: absolute;
    top:-2em;
    left:6.5vw;
  }

  .history-wrapper-content .yearmap .ymap-h{
    position: absolute;
    top:-2em;
    left:51vw;
  }

  .history-wrapper-content .yearmap .ymap-r{
    position: absolute;
    top:-2em;
    right:-5%;
  }

  .history-wrapper-content .yearmap .ymap-100{
    position: absolute;
    top:1em;
    left:-1em;
    font-weight:800;
    opacity:.3;
  }

  .history-wrapper-content .yearmap .ymap-0{
    position: absolute;
    top:1em;
    right:-1em;
    font-weight:800;
    opacity:.3;
  }

  .history-wrapper-content .yearmap .ymsvg-pc{
    display:none;
  }

  .history-wrapper-content .yearmap .ymsvg-sp{
    display:block;
  }

  .history-wrapper-content .scrollContainer {
    overscroll-behavior: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .history-wrapper-content figure.start-image {
    width: 0;
    height: 100%;
  }

  .history-wrapper-content .start-chapter .caption {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-left: 5vw;
    margin-bottom: 10rem;
  }

  .history-wrapper-content .start-chapter .caption h2 {
    font-size: clamp(3rem, 7vw, 10rem);
    text-transform: uppercase;
    line-height: 1;
  }

  .history-wrapper-content .single-images {
    position:relative;
    width: 15rem;
    height: 30rem;
    overflow:hidden;
    display:flex;
    align-items: center;
  }

  .history-wrapper-content .single-images img{
    position:relative;
    width: 100%;
    height: 100%;
  }

  .history-wrapper-content .triple-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10rem 0;
  }
  .history-wrapper-content .triple-images figure {
      width: 50rem;
      height: 50rem;
  }
  .history-wrapper-content .triple-images figure:first-child {
      width: 40vh;
      height: 40vh;
      padding-bottom: 100%;
  }
  .history-wrapper-content .triple-images figure:first-child img {
      width: 100%;
      height: 100%;
  }
  .history-wrapper-content .triple-images figure:nth-child(2) {
      width: 35vh;
      height: 25vh;
      position: absolute;
      top: -35%;
      right: -20%;
  }

  .history-wrapper-content .triple-images.double figure:nth-child(2) {
    width: 35vh;
    height: 25vh;
    position: absolute;
    top:auto;
    left:-20%;
    bottom: -55%;
    right: auto;
  }
  .history-wrapper-content .triple-images figure:nth-child(2) img {
      width: 100%;
      height: 100%;
  }
  .history-wrapper-content .triple-images figure:nth-child(3) {
      width: 35vh;
      height: 25vh;
      position: absolute;
      bottom: -55%;
      left: -20%;
  }
  .history-wrapper-content .triple-images figure:nth-child(3) img {
      width: 100%;
      height: 100%;
  }

  .history-wrapper-content figure.last-image {
    position:relative;
    width: 30rem;
    height: 40rem;
    display:flex;
    align-items: center;
    justify-content: center;
    margin-right:0;

  }
  .history-wrapper-content figure.last-image img{
    position:relative;
    width: 60%;
    height: auto;
}


}


/* book */
/* ------------------ */

#book{
  width:90%;
  margin:0 auto;
  max-width:1200px;
  padding-bottom:10em;
}

#book h2{
  font-size:clamp(.9rem, 2.9vw , 2rem);
  text-align:center;
  padding:5vw 0;
  font-weight:normal;
  line-height:1.8;
  position:relative;
  z-index:2;
}

#book .bkaf{
 position:relative;
 z-index:2;
}

#book .bkaf dt{
  padding:0 0 .5em 2em;
  font-size:clamp(.8rem, 2vw , 1.1rem);
}

#book .bkaf dd{
  background:#eaeaea;
  padding:2em;
  font-size:clamp(.8rem, 2vw , 1.1rem);
  line-height:1.8;
}

#book .bkcv{
  padding:5vw 0;
  position:relative;
}

#book .bkcv .bkimg{
  width:50%;
  margin:0 auto;
}

#book .bkcv .bknaze{
  position:absolute;
  top:15%;
  right:0;
  width:25%;
  height:auto;
}

#book .bkcv .bkpiyo{
  position:absolute;
  top:60%;
  left:5%;
  width:20%;
  height:auto;
}

#book .bkbf{
  padding:5vw 0;
  width:90%;
  margin:0 auto;
  font-size:clamp(.8rem, 2vw , 1.1rem);
  line-height:1.8;
}

#book .bkbf dt{

}

#book .bkbf dd{

}

#book .bkbf dd p{
  padding:1em 0;
}

#book .bkinfo{
  background:#eaeaea;
  width:90%;
  margin:0 auto;
  padding:2em;
  font-size:clamp(.7rem, 2vw , 1rem);
  line-height:1.8;
}

#book .bkinfo ol li{
  padding-bottom:1em;
}

#book .bkinfo ul li{
  line-height:2;
}

#book .sp{
  display:none;
}


@media screen and (min-width: 1000px) {
  #book{
    width:90%;
    margin:0 auto;
    max-width:1200px;

  }
  #book h2{
    padding:2em 0;
  }

  #book .bkcv{
    padding:3em 0;
  }

  #book .bkbf{
    padding:3em 0;
    width:80%;
  }

  #book .bkinfo{
    width:80%;
  }

}

@media screen and (max-width: 640px) {

  #book .sp{
    display:block;
  }

  #book .bkinfo{
    background:#eaeaea;
    width:90%;
  }
}

@media screen and (max-width: 480px) {
  #book h2{
    padding:10vw 0;
  }

  #book .bkaf dt{
    padding:0 0 .5em 0;
    text-align:center;
  }
}

/*-------------------
animation
-------------------*/

@keyframes purun {
  0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
  15%  { transform: scale(0.9, 0.9) translate(0%, 5%); }
  30%  { transform: scale(1.3, 0.8) translate(0%, 10%); }
  50%  { transform: scale(0.8, 1.3) translate(0%, -10%); }
  70%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
  100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}

@-webkit-keyframes purupuru {
      0%   { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
      20%  { -webkit-transform: scale(1.0, 1.06) translate(-5%, -4%) skew(6deg, 0deg); }
      50%  { -webkit-transform: scale(1.0, 0.94) translate(5%, 4%) skew(-6deg, 0deg); }
      65%  { -webkit-transform: scale(1.0, 1.03) translate(2%, -2%) skew(-3deg, 0deg); }
      80%  { -webkit-transform: scale(1.0, 0.97) translate(-2%, 2%) skew(3deg, 0deg); }
      100% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
    }
    @keyframes purupuru {
      0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
      20%  { transform: scale(1.0, 1.06) translate(-5%, -4%) skew(6deg, 0deg); }
      50%  { transform: scale(1.0, 0.94) translate(5%, 4%) skew(-6deg, 0deg); }
      65%  { transform: scale(1.0, 1.03) translate(2%, -2%) skew(-3deg, 0deg); }
      80%  { transform: scale(1.0, 0.97) translate(-2%, 2%) skew(3deg, 0deg); }
      100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
    }


@-webkit-keyframes wrapload {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    opacity: 1;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  80% {
    opacity: .2;
    -webkit-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -42%, 0);
    transform: translate3d(0, -42%, 0);
  }
}
@keyframes wrapload {
   0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    opacity: 1;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  80% {
    opacity: .2;
    -webkit-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -42%, 0);
    transform: translate3d(0, -42%, 0);
  }
}


@-webkit-keyframes movelogo {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1, 1);
    transform: translate3d(0, 0, 0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(.6, .6);
    transform: translate3d(0, 0, 0) scale(.6, .6);
  }
  100% {
    opacity: .3;
    -webkit-transform: translate3d(0, 0, 0) scale(.6, .6);
    transform: translate3d(0, 0, 0) scale(.6, .6);
    z-index:-1;
  }
}
@keyframes movelogo {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1, 1);
    transform: translate3d(0, 0, 0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(.6, .6);
    transform: translate3d(0, 0, 0) scale(.6, .6);
  }
  100% {
    opacity: .3;
    -webkit-transform: translate3d(0, 0, 0) scale(.6, .6);
    transform: translate3d(0, 0, 0) scale(.6, .6);
    z-index:-1;
  }
}



@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes fadeOutTop {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
}
@keyframes fadeOutTop {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
}
@-webkit-keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}