
@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins, sans-serif;
}
body{
    margin: 0 auto;
    padding: 0;
    max-width: 1500px;
    background-image: url(./img/bg.jpg);
    
    color: #fff;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5{
 
  font-family: "Creepster", system-ui;
  font-weight: 400;
  font-style: normal;

}

.yokai-kv{
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    video{
        width: 100%;
        height: 100%;
    }
}
.yokai-kv__moon{
    position: absolute;
    top: 50%;
    left: 50%;  
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 700px;
}
.yokai-kv__subu{
    position: absolute;
    top: 50%;
    left: 50%;  
    transform: translate(-50%, -50%);
    z-index: 6;
    max-width: 300px;
}
.yokai-logo{
    position: absolute;
    top: 5%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 200px;
    height: auto;
    z-index: 10;
}
.kv-ofuda{
    position: absolute;
    z-index: 7;
    width: 150px;
}
.kv-ofuda--first{
    top: 10%;
    right: 10%;
    rotate: 5deg;
}
.kv-ofuda--second{
    top: 50%;
    left: 10%;
    rotate: -5deg;
}

.yokai-intro{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    width: 100%;
    padding: 2rem 0;
    position: relative;
}
.yokai-intro__title{
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 1rem;
}
.yokai-intro__subtitle{
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}
.monster-wrapper{
    height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  z-index: 10;
}
.monster{
  position: relative;
  margin: auto;
  width: 250px;
  animation: float 3s infinite;
}
.ball {
  position: relative;
  height: 250px;
  width: 250px;
  border-radius: 50%;
  background-color: #fe6546;
  overflow: hidden;
}
.ball:before {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 5px;
  height: 30px;
  width: 30px;
  z-index: 3;
  background-color: rgba(255,255,255,.5);
  border-radius: 50%;
  box-shadow: 
    18px 22px 0px -10px rgba(255,255,255,.5), 
    26px -2px 0px -9px rgba(255,255,255,.5), 
    14px -26px 0px -8px rgba(255,255,255,.5), 
    -11px -28px 0px -6px rgba(255,255,255,.5),
    -5px -50px 0px -10px rgba(255,255,255,.5);
}
.ball:after {
  content: '';
  position: absolute;
  bottom: 60px;
  right: 5px;
  height: 30px;
  width: 30px;
  z-index: 3;
  background-color: rgba(255,255,255,.5);
  border-radius: 50%;
  box-shadow: 
    -18px 19px 0px -10px rgba(255,255,255,.5), 
    -26px -4px 0px -9px rgba(255,255,255,.5), 
    14px -26px 0px -6px rgba(255,255,255,.5), 
    -11px -25px 0px -8px rgba(255,255,255,.5),
    5px -48px 0px -10px rgba(255,255,255,.5);
}
.belly {
  content: '';
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 100px;
  width: 60%;
  border-radius: 50%;
  background-color: #f8d27f;
}
.left-arm {
  position: absolute;
  top: 60px;
  left: -10px;
  z-index: -1;
  transform: rotate(18deg);
  height: 150px;
  width: 50px;
  border-radius: 80% 100% 30px 100px;
  background-color: #e25335;
}
.right-arm {
  position: absolute;
  top: 60px;
  right: -10px;
  z-index: -1;
  transform: rotate(-18deg);
  height: 150px;
  width: 50px;
  border-radius: 80% 100% 100px 30px;
  background-color: #e25335;
}
.left-foot {
  position: absolute;
  bottom: -5px;
  left: 35px;
  z-index: -1;
  height: 50px;
  width: 50px;
  border-radius: 0 0 30px 30px;
  background-color: #e25335;
}
.right-foot {
  position: absolute;
  bottom: -5px;
  right: 35px;
  z-index: -1;
  height: 50px;
  width: 50px;
  border-radius: 0 0 30px 30px;
  background-color: #e25335;
}
.middle-eye {
  position: absolute;
  margin: auto;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  background-color: #fff4e2;
}
.eye:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  height: 0;
  background-color: #fe6546;
  animation: blink 6s infinite;
}
.eye:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  height: 0;
  background-color: #fe6546;
  animation: blink 6s infinite;
}
.left-eye:before,
.left-eye:after,
.right-eye:before,
.right-eye:after {
  animation-delay: .05s ;   
}
.left-eye {
  position: absolute;
  top: 60px;
  left: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #fff4e2;
}
.right-eye {
  position: absolute;
  top: 60px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #fff4e2;
}
.iris {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #3ebdac;
  animation: eyemove 6s infinite;
}
.iris-small{
  height: 20px;
  width: 20px;
}
.iris:after {
  content:'';
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #000;
}
.iris-small:after {
  height: 10px;
  width: 10px;
}
.mouth {
  position: absolute;
  margin: auto;
  top: 110px;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 40px;
  width: 80px;
  border-radius: 30% 30% 50% 50%;
  background-color: #973462;
  animation: mouth 6s infinite;
}
.tongue{
  position: absolute;
  margin: auto;
  bottom: 0;
  left:0;
  right: 0;
  height: 20px;
  width: 80%;
  border-radius: 50%;
  background-color: #d84f93;
}
.teeth{
  height: 25px;
  width: 15px;
  transform: rotate(180deg);
  border-radius: 100% 100% 0 0/150% 150% 0 0;
  background-color: #ffebd6;
  box-shadow: 
    -65px 0px 0px 0px #ffebd6,
    -22px 5px 0px -1px #ffebd6,
    -42px 5px 0px -1px #ffebd6;
}
.left-ears .large {
  position: absolute;
  top: -20px;
  left: 5px;
  z-index: -1;
  height: 50px;
  width: 50px;
  transform: rotate(100deg);
  border-radius: 80% 15% 55% 50% / 55% 15% 80% 50%;
  background-color: #e25335;
}
.left-ears .small {
  position: absolute;
  top: 30px;
  left: -5px;
  z-index: -1;
  height: 30px;
  width: 30px;
  transform: rotate(80deg);
  border-radius: 80% 15% 55% 50% / 55% 15% 80% 50%;
  background-color: #e25335;
}
.right-ears .large {
  position: absolute;
  top: -20px;
  right: 5px;
  z-index: -1;
  height: 50px;
  width: 50px;
  transform: rotate(180deg);
  border-radius: 80% 15% 55% 50% / 55% 15% 80% 50%;
  background-color: #e25335;
}
.right-ears .small {
  position: absolute;
  top: 30px;
  right: -5px;
  z-index: -1;
  height: 30px;
  width: 30px;
  transform: rotate(180deg);
  border-radius: 80% 15% 55% 50% / 55% 15% 80% 50%;
  background-color: #e25335;
}
.shadow {
  margin-top:1rem;
  height: 25px;
  width: 250px;
  border-radius: 50%;
  background-color: rgba(0,0,0,.7);
  animation: zoom 3s infinite;
}

@keyframes eyemove {
  0% { transform: translateX(0px); } 
  20%, 25% { transform: translateX(10px); }
  35%, 45% { transform: translateY(-5px); }  
  50% { transform: translateX(0px); }
}
@keyframes blink {
  0%, 60% { height: 0; }
  65% { height: 55%; }
  70% { height: 0; }
  75% { height: 55%; }
  80%, 100% { height: 0; }
}
@keyframes float {
  0%, 100%{
    transfrom: translateY(0);
  }
  50%{
    transform: translateY(-20px);
  }
}
@keyframes zoom {
  0%, 100%{
    transform: scale(1);
  }
  50%{
    transform: scale(0.7);
  }
}

.eyes-ctn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
position: relative;
}

.eye_img{
    position: absolute;
    width: 120px;
    height: 120px;
    /* background-image:url(./img/1x/Asset\ 2.png);
    background-repeat: no-repeat;
    background-size: cover; */
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 45px rgba(80, 80, 80, 0.5);
    inset: 0 0 15px #153147;
    opacity: 1;
    
}

.eye_img--first{
    transform: translateY(-270%);
    left: 10%;
}

.eye_img--second{
    transform: translateY(80%);
    left: 50%;
}
.eye_img--third{
    transform: translateY(-200%);
    right: 10%;
}

    .yokai-video{
        margin: 6rem auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }
    .yokai-video__img{
        max-width: 300px;
    }
    .yokai-video__ctn{
        position: relative;
    }
 
    .yokai-store{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2rem 0;
    }
.yokai-store__card{
    background-image: url(./img/ofuda/ofuda-white.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    min-height: 300px;
    width: 195px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.yokai-store__img{
    width: 200px;
}
@media (max-width: 768px) {
    .yokai-kv {
        video{
            display: none;
        }
    }
}