@charset "utf-8";
/* CSS Document */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.fixed-area{
    color: #333;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99;
}
.fixed-area__inner{
    position: relative;
    margin: 0 auto;
    width:100%;
}
.fixed-area__inner__contents{
    opacity: 0;
    position: absolute;
    top: 60px;
    transition: 1s;
}
.fixed-area__inner__contents.active{
    opacity: 1;
    top: 0;
}
.fixed-area__inner__contents__title{
    font-size: 50px;
}
.box{
    color: #666;
    height: 600vh;
}
.box__inner{
    background:#fff;
    height: 100vh;
    padding: 40px;
}
.box1{
    background:rgba(153,153,255,0.1);
}
.box2{
    background:rgba(153,153,255,0.1);
}
.box3{
    background:rgba(153,153,255,0.1);
}
.box4{
    background:rgba(153,153,255,0.1);
}
.box5{
    background:rgba(153,153,255,0.1);
	height:50%;
}
.pagenation{
    padding: 20px;
    position: fixed;
    right: 0;
    top: 50%;
	z-index:999999;
}
.pagenation li{
    list-style-type: none;
    margin-bottom: 20px;
}
.pagenation a{
    display: block;
    height: 20px;
    border: 1px solid #036;
    width: 20px;
}
.pagenation a.active{
    background: #fff;
}
/*ノートPC*/
@media screen and (max-width: 1366px){
	.fixed-area__inner__contents{
    opacity: 0;
    position: absolute;
    top: 30px;
    transition: 1s;
}
	.fixed-area__inner__contents.active{
    opacity: 1;
    top: 0;
}
	.fixed-area__inner__contents__title{
    font-size: 50px;
}
	.box{
    color: #666;
    height: 600vh;
}
	.box__inner{
    background:#fff;
    height: 100vh;
    padding: 40px;
}

}
/*タブレット*/
@media screen and (max-width: 1025px){
	.box{
    color: #666;
    height: 600vh;
	overflow:hidden;
	}
	.box__inner{
    background:#fff;
    height: 100vh;
    padding: 40px;
}

.pagenation{
    display:none;
}
}
/*スマホ*/
@media screen and (max-width: 767px){
.pagenation{
    display:none;
}
}