@charset "UTF-8";
/* CSS Document */

/***
* top.css
*/

@media only print, only screen and (min-width: 18.75em){

#loader{
  width: 100%;
  height: 100%;
  position: fixed;
  background: #fff;
  z-index: 7777;
}

#loaderLogo{
  width: 68.8vw;
  position: absolute;
  top: 50%;
  left: 50%;
  padding-bottom: 48px;
  transform: translate(-50%, -50%);
}

#breadCrumb{
  display: none;
}

#topBnr{
  width: calc(100% - 32px);
  padding: 0 16px 0;
  overflow: hidden;
  background: #fff;
}

#topBnr ul{
  width: calc(100% + 16px);
}

#topBnr li{
  width: calc(100% - 16px);
  height: 100%;
  float: none;
  margin: 0 0 16px 0;
  position: relative;
}

#topBnr li:last-child{
  margin-right: 0;
}

#topBnr li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition-duration: 0.5s;
}

#topBnr li:hover img{
  border-radius: 20px;
  transition-duration: 0.5s;
}

#topBnr li h2{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-bottom: 20px;
  color: #fff;
  opacity: 0.8;
  font-size: 14vw;
  letter-spacing: -0.01em;
}

}

@media only print, only screen and (min-width: 1000px){

#loader{
  width: 100%;
  height: 100%;
  position: fixed;
  background: #fff;
  z-index: 7777;
}

#loaderLogo{
  width: 31.94vw;
  position: absolute;
  top: 50%;
  left: 50%;
  padding-bottom: 48px;
  transform: translate(-50%, -50%);
}

#breadCrumb{
  display: none;
}

#topBnr{
  width: calc(100% - 60px);
  padding: 0 30px 30px;
  overflow: hidden;
  background: #fff;
}

#topBnr ul{
  width: calc(100% + 16px);
}

#topBnr li{
  width: calc(50% - 16px);
  height: calc(100vh - 100px);
  float: left;
  margin: 0 16px 0 0;
  position: relative;
  z-index: 1;
  border-radius: 0;
  transition-duration: 0.5s;
  overflow: hidden;
}
  
#topBnr li:hover{
  border-radius: 30px;
  transition-duration: 0.5s;
}

#topBnr li::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  z-index: 3333;
  transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
  pointer-events: none;
}

#topBnr li:hover::after{
  opacity: 0.3;
}

#topBnr li:last-child{
  margin-right: 0;
}

#topBnr li img{
  width: 100%;
  height: calc(100vh - 100px);
  object-fit: cover;
  object-position: top;
  transform: scale(1);
}

#topBnr li:hover img{
  transform: scale(1.05);
}

#topBnr li h2{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-bottom: 80px;
  color: #fff;
  opacity: 0.7;
  font-size: 7.292vw;
  letter-spacing: -0.01em;
  transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

#topBnr li:hover h2{
  opacity: 1;
  transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

}

@media only print, only screen and (min-width: 1800px){

#loaderLogo{
  width: 575px;
}

#topBnr li h2{
  font-size: 130px;
}

}