
.zoomanimation{
    animation: bodyanimation 3s;
}

@keyframes bodyanimation{
    0% {
        overflow-y: hidden;
    }
    
    100% {
        transform:scale(3);
        opacity:0;
        overflow-y: hidden;
    }
}


.door {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    position: relative;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.door img{
    /* margin: 0; */
    height: 100%;
    /* width: auto; */
    width: 33vw;
    transition: all 1500ms 0s ease;
}



body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#fff;  /* 背景カラー */
    z-index: -9999; 
     /* 一番手前に */
    /* pointer-events: none; */
      /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
    opacity: 0;  /* 初期値 : 透過状態 */
    -webkit-transition: opacity .3s ease;  /* アニメーション時間は 0.3秒 */
    transition: opacity .3s ease;
  }

  body.fadeout::after {
    opacity: 1;
  }

  section {
    position: relative;
    top: 14%;
    left: 0;
    width: 100%;
    /* height: 100%; */
    display: table;
    color: #464646;
    background-color: #fff;
    overflow: hidden;
}
 .navigate-anchor {
    position: absolute;
    display: flex;
    font-size: 1.5vw;
    line-height: 44px;
    padding: 0 14px;
    text-decoration: none;
    color: #fff;
    background-color: rgba(0,0,0,0.5);
    box-shadow: 0 5px 12px rgb(0 0 0 / 26%);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    flex-direction: row;
    align-items: center;
    
}
article {
    display: table-cell;
    vertical-align: middle;
    -webkit-transition: transform .8s ease-out;
    transition: transform .8s ease-out;
    display: flex;
    justify-self: center;
    flex-direction: column;
    align-items: center;
}
.pagetwo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
    color: #464646;
    background-color: #E4007F;;
    overflow: hidden;
}

.left_door{
    transition: all 5s 0s ease;
}
.right_door{
    transition: all 5s 0s ease;
}



.left_door.open{
    /* position: absolute; */
    /* left:  0; */
    /* margin-left: -50%; */
    margin-right: 65%;
   
}

.number_input{
    position: fixed;
    bottom: 0%;
    right: 0%;
    padding: 1vw;
    background-color: rgba(0,0,0,0.5);
}

