/* Cursors */
*{
  cursor: none;
}
.cursor {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #0e0e0e;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: scale(1);
}

.cursor.active {
  opacity: 0.5;
  transform: scale(0);
}

.cursor.hovered {
  opacity: 0.08;
}

.cursor_follow {
  position: absolute;
  mix-blend-mode: difference;
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: translate(5px, 5px);
}

.cursor_follow.active {
  opacity: 0.7;
  transform: scale(2.5);
}

.cursor_follow.hovered {
  opacity: 0.08;
}

/* Cursors */

/* Header */
.panel{
  padding: 60px 50px 10px 50px;
}

.logo{
	font-family: 'Baskerville', serif;
  font-size: 40px;
  letter-spacing: 5px;
  line-height: 1;
}
@media (max-width:1024px) {
  .panel{
  	padding: 90px calc(8% + 15px);
  }
}
@media (max-width:436px) {
  .panel{
  	padding: 20px 30px 10px 30px
  }
  .logo{
  	font-size: 30px;
  }
}
/* Header */

/* Hamburger */
.menu-bars{
  display: inline-block;
	position: relative;
  touch-action: manipulation;
  width: 60px;
  height: 30px;
  transition: .4s;
}
.menu-bars span {
  display: block;
  position: absolute;
  right: 0;
  height: 1px;
  background-color: #202020;
  transition: all .5s;
}
.menu-bars span:nth-child(1) {
  top: 5px;
  width: 60px;
}
.menu-bars span:nth-child(2) {
  top: 15px;
  width: 30px;
}
.menu-bars span:nth-child(3) {
  top: 25px;
  width: 20px;
}

.menu-bars:hover{
  transition: .4s;
}

.menu-bars:hover span:nth-child(1) {
  width: 20px;
}

.menu-bars:hover span:nth-child(2) {
  width: 30px;
}

.menu-bars:hover span:nth-child(3) {
  width: 60px;
}
@media (max-width:436px) {
  .menu-bars span:nth-child(1) {
    width: 40px;
  }
  .menu-bars span:nth-child(2) {
    width: 20px;
  }
  .menu-bars span:nth-child(3) {
    width: 10px;
  }
}
/* Hamburger */

/* Line */
.bottom-line,.bottom-line-strong{
	position: fixed;
  z-index: 12;
  background: #202020;
}

.bottom-line{
  height: 1px;
  width: 100vw;
  left: 0;
}

.bottom-line-strong{
  height: 5px;
  width: 50px;
  right: 50px;
}

.page-side{
	width: 50px;
  text-align: center;
  color: #202020;
  position: fixed;
  z-index: 12;
  right: 50px;
}
@media (max-width:1024px) {
  .bottom-line-strong,.page-side{
  	right: calc(8% + 15px);
  }
}
@media (max-width:436px) {
  .bottom-line-strong,.page-side{
  	right: 30px;
	}
}
/* Line */



/* 未使用
.mainMenu > li > a{
  position: relative;
	font-weight: bold;
  padding-left: 40px;
}

.mainMenu > li > a::before{
	position: absolute;
  left: 0;
  font-size: 14px;
  opacity: .6;
}

.mainMenu > li:nth-child(1) > a::before{
  content: "01";
}

.mainMenu > li:nth-child(2) > a::before{
  content: "02";
}

.mainMenu > li:nth-child(3) > a::before{
  content: "03";
}

.mainMenu > li:nth-child(4) > a::before{
  content: "04";
}
*/

/* Side bar */
.contact-title{
	font-weight: bold;
  font-size: 20px;
}

.contact-btn{
  position: relative;
  font-weight: bold;
}

.contact-btn::after{
	position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 157px;
  height: 1px;
  background: #fff;
  animation: scroll 3s ease-in-out infinite;
}

@keyframes scroll {
  0% {
    width:0px;
    opacity: 0;
  }
  50%{
  	opacity: 1;
  }
  100% {
    width:157px;
    opacity: 0;
  }
}

.sidebar .close{
  display: block;
  opacity: 1;
  top: 50px;
  right: 30px;
}

.sidebar .close svg{
	width: 40px;
  height: 40px;
}

.sidebar .content{
	padding: 120px 40px;
}

.corporate-info{
	font-size: 16px;
}

@media (max-width:1024px) {
  .sidebar .close{
  	top: 86px;
    right: 53px;
  }
  .sidebar .content{
    padding: 180px 40px;
  }
}

@media (max-width:436px) {
  .sidebar .close{
  	top: 12px;
    right: 10px;
  }
  .sidebar .content{
    padding: 70px 40px;
  }
}
/* Side bar */


/* Pagination */
.nav-arrows{
	position: fixed;
  z-index: 12;
  bottom: 90px;
  right: 50px;
  width: 50px;
  height: 120px;
}

.nav-arrow{
  display: block;
	width: 50px;
  height: 50px;
  padding: 9px;
  border-radius: 100%;
  border: 1px solid rgba(32,32,32,.2);
}

.nav-arrow > .material-icons{
	color: #202020;
  font-size: 30px;
}

@media (max-width:1024px) {
  .nav-arrows{
  	right: calc(8% + 15px);
  }
}

@media (max-width:436px) { 
  .nav-arrows{
  	display: flex;
    height: initial;
    right: initial;
    left: 30px;
    bottom: 22px;
  }
  .nav-arrow{
    width: 40px;
    height: 40px;
  	padding: 7px;
  }
  .nav-arrow > .material-icons{
    font-size: 25px;
  }
  .nav-arrow:nth-child(1){
  	margin-right: 10px;
  } 
}
/* Pagination */


/* Slides*/
.slides{
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}
.slide.whiteSlide{
  background: transparent;
}
.container .wrap .spaceWrap, .container .wrap.spaceWrap, .container .wrap:not(.noSpaces){
  padding: 90px calc(8% + 15px);
}

nav,.content,.bg-material,.top-lines,.nav-arrows{
  opacity: 0; /*for page transition animation*/
}

@media (max-width: 436px) {
  .container .wrap .spaceWrap, .container .wrap.spaceWrap, .container .wrap:not(.noSpaces){
    padding: 30px;
  }
}
/* Slides */


/* Font */
.p.large, p.large{
	font-size: 16px;
}
.h1.largest, h1.largest{
	font-size: 30px;
  line-height: 1;
}
@media (min-width: 436px) {
  .h1.largest, h1.largest{
		font-size: 51px;
  }
}
@media (min-width: 1024px) {
  .h1.largest, h1.largest{
		font-size: 60px;
  }
}
@media (min-width: 1240px) {
  .h1.largest, h1.largest{
		font-size: 75px;
  }
}
/* Font */


.button.play{
	margin-bottom: 0;
  position: relative;
  z-index:20;
  box-shadow: none;
  background: transparent;
  border:1px solid rgba(32,32,32,.2);
}
.button.play.small{
  padding: 19px;
}

@media (max-width: 436px) {
  .button-container{
  	text-align: right;
  }
}


.mockup{
  position: fixed;
  /*z-index: 999;*/
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 250px;
  height: 420px;
  animation: float 5s ease infinite;
}
@media (max-width:1024px) {
  .mockup{
    top: 40%;
  }
}
@media (max-width: 436px) {
  .mockup{
    width: 175px;
    height: 294px;
    top: 35%;
    right: 0;
  }
}

@keyframes float{
  0% {transform: translateY(-50%);}
  50% {transform: translateY(-46%);}
  100% {transform: translateY(-50%);}
}

.mock{
  width: 100%;
  height: 100%;
  position: absolute;
  max-width: 100%;
  height: 100%;
  transition: all ease 1600ms;
  transform-style: preserve-3d;
  perspective-origin: 20% 50%;
  transform: perspective(1000px) rotateX(30deg) rotateY(-25deg) rotateZ(20deg)
  translateX(35px) translateY(60px) translateZ(130px);
}

.mock-web,.mock-signage,.mock-phone{
  opacity: 0;
}



.mock1{
  background-color: #efefef;
  border-radius: 20px;
  box-shadow: 16px 27px 22px rgba(0,0,0,.16);
}

.mock-phone::after,.mock-web::after,.mock-signage::after{
  position: absolute;
  content: '';
  border-radius: 10px;
  border: 1px solid #a5deff;
  background: rgba(225, 244, 255, 0.6);
  box-shadow: 19px 32px 7px rgb(147, 206, 240, .2), inset 0 0px 16px #e9f7ff;
}

/* mock-phone */
.mock2::after{
  width: calc(100% - 32px);
  height: calc((100% - 80px)/4);
  top: 16px;
  left: 16px;
}

.mock3::after{
  width: calc((100% - 48px)/2);
  height: calc((100% - 80px)/4);
  top: calc(((100% - 80px)/4) + 32px);
  left: 16px;
}

.mock4::after{
  width: calc((100% - 48px)/2);
  height: calc((100% - 80px)/4);
  top: calc(((100% - 80px)/4) + 32px);
  left: calc(((100% - 48px)/2) + 32px);
}

.mock5::after{
  width: calc((100% - 48px)/2);
  height: calc((100% - 80px)/4);
  top: calc(((100% - 80px)/2) + 48px);
  left: 16px;
}

.mock6::after{
  width: calc((100% - 48px)/2);
  height: calc((100% - 80px)/4);
  top: calc(((100% - 80px)/2) + 48px);
  left: calc(((100% - 48px)/2) + 32px);
}

.mock7::after{
  width: calc(100% - 32px);
  height: calc((100% - 80px)/4);
  top: calc(((100% - 80px)*3/4) + 64px);
  left: 16px;
}
/* mock-phone */

/* mock-web */
.mock8::after{
  width: calc(100% - 32px);
  height: calc((100% - 48px)/2);
  top: 16px;
  left: 16px;
}

.mock9::after{
  width: calc((100% - 64px)/3);
  height: calc((100% - 48px)/2);
  top: calc(((100% - 48px)/2) + 32px);
  left: 16px;
}

.mock10::after{
  width: calc((100% - 64px)/3);
  height: calc((100% - 48px)/2);
  top: calc(((100% - 48px)/2) + 32px);
  left: calc(((100% - 64px)/3) + 32px);
}

.mock11::after{
  width: calc((100% - 64px)/3);
  height: calc((100% - 48px)/2);
  top: calc(((100% - 48px)/2) + 32px);
  left: calc(((100% - 64px)*2/3) + 48px);
}

.mock12::after{
  width: calc((100% - 32px)/4);
  height: calc((100% - 48px)/8);
  top: 32px;
  left: 32px;
}

.mock13::after{
  width: calc((100% - 64px)/2);
  height: calc(((100% - 48px)/2) - 32px);
  top: 32px;
  left: 50%;
}
/* mock-web */

/* mock-signage */
.mock14::after{
  width: calc(100% - 32px);
  height: calc((100% - 48px)/2);
  top: 16px;
  left: 16px;
}

.mock15::after{
  width: calc(100% - 52px);
  height: calc((100% - 48px)/2 - 80px);
  top: 26px;
  left: 26px;
}

.mock16::after{
  width: calc((100% - 67px)/4);
  height: 50px;
  top: calc((100% - 48px)/2 - 44px);
  left: 26px;
}

.mock17::after{
  width: calc((100% - 67px)/4);
  height: 50px;
  top: calc((100% - 48px)/2 - 44px);
  left: calc((100% - 67px)/4 + 31px);
}

.mock18::after{
  width: calc((100% - 67px)/4);
  height: 50px;
  top: calc((100% - 48px)/2 - 44px);
  left: calc((100% - 67px)/2 + 36px);
}

.mock19::after{
  width: calc((100% - 67px)/4);
  height: 50px;
  top: calc((100% - 48px)/2 - 44px);
  left: calc((100% - 67px)*3/4 + 41px);
}
@media (max-width: 436px) {
  .mock15::after{
    height: calc((100% - 48px)/2 - 50px);
  }
  
  .mock16::after{
    height: 25px;
    top: calc((100% - 48px)/2 - 18px);
  }
  
  .mock17::after{
    height: 25px;
    top: calc((100% - 48px)/2 - 18px);
  }
  
  .mock18::after{
    height: 25px;
    top: calc((100% - 48px)/2 - 18px);
  }
  
  .mock19::after{
    height: 25px;
    top: calc((100% - 48px)/2 - 18px);
  }
}

/* mock-signage */


/* background */
.bg-material{
  position: fixed;
  top: 0;
  right: 0;
  transition: all ease 1600ms;;
  border-radius: 0 0 0 100%;
  background: linear-gradient(225deg, #efefef, #ffffff);
  box-shadow: -10px 15px 30px #efefef, 10px -20px 20px #ffffff;
  animation: wave 3s infinite;
}
/* WAVE ANIMATION 未使用
@keyframes wave{
  0%{transform: scale(1);}
  50%{transform: scale(1.2);}
  100%{transform: scale(1);}
}
使用の際はanimation-delayを各要素に適用
*/
.material1{
  width: 10vw;
  height: 10vh;
}
.material2{
  width: 25vw;
  height: 25vh;
}
.material3{
  width: 40vw;
  height: 40vh;
}
.material4{
  width: 55vw;
  height: 55vh;
}
.material5{
  width: 70vw;
  height: 70vh;
}
.material6{
  width: 85vw;
  height: 85vh;
}
.material7{
  width: 100vw;
  height: 100vh;
}
.material8{
  width: 115vw;
  height: 115vh;
}
.material9{
  width: 130vw;
  height: 130vh;
}
/* background */


/* PROJECT PAGE - Footer*/
.panel.bottom{
  background: #0E0E0E;
  color: #fff !important;
  position: relative;
  font-size: 15px;
  pointer-events: all;
}
/* PROJECT PAGE - Footer*/

/* PROJECT PAGE - other*/
.wrap-img-100{
  min-height: 400px;
}
@media (max-width: 436px) {
  .wrap-img-100{
    min-height: initial;
  }
}

/* PROJECT PAGE - other*/