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


/*トップ画面*/
.top{
	padding: 65px 0 70px;
	width: 100%;
    height: auto;
	background-color: #1a1a1a;
	text-align: center;
    position: relative;
}

.top .icon{
    width: 100%;
    height: 100px;
}

.top .icon img{
    position: absolute;
    top: 65px;
    left: 50px;
}

.work{
    display: flex;
    margin: 20px auto 0;
    width: 800px;
}

.work-left p{
    text-align: left;
    color: white;
    opacity: 0.7;
}

.work-right p{
    text-align: right;
    color: white;
    opacity: 0.7;
}

.top .work img{
    max-width: 100%;
    height: auto;
    animation: fadeIn 2s ease 0s normal;
}

@keyframes fadeIn{
    0%{opacity: 0}
    100%{opacity: 1}
}


/*作品説明欄画面*/
.work-about-wrap{
    width: 100%;
    height: auto;
    background-color: #EFEFF0;
    text-align: center;
    padding: 0 0 70px;
}

.work-title{
    width: 100%;
    padding: 70px 0 10px;
}

.work-title h1{
    font-size: 40px;
    color: #3FA24C;
    font-weight: bold;
}

.work-memo-wrap{
    width: 480px;
    height: auto;
    margin: 0 auto;
}

.work-memo{
    padding: 30px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #3FA24C;
}

.work-memo-item{
    width: 160px;
}

.work-memo-item h2{
    text-align: right;
    font-size: 20px;
    color: #4d4d4d;
}

.work-memo-text{
    padding-left: 20px;
    width:280px;
}

.work-memo-text p{
    color: #4d4d4d;
    font-size: 12px;
    text-align: left;
    line-height: 150%;
}

.work-logo{
    width: 100%;
    padding: 20px 0px;
}

.work-logo p{
    color: #4d4d4d;
    padding: 10px 0 0px;
}

/*ページ推移画面*/
.allows-wrap{
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0 0 70px;
    background-color: #EFEFF0;
}

.left-allow{
    width: 330px;
    height: 50px;
    float: left;
    display: inline-block;
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease-out;
}

.left-allow-bg{
    position: absolute;
    top: 0px;
    left: -330px;
    z-index: 19;
    width: 330px;
    height: 50px;
    display: inline-block;
    background-image: linear-gradient(90deg, rgba(77,77,77,0.6) 10%,rgba(77,77,77,0.3) 50%,rgba(77,77,77,0) 100%);
    transition: all 0.4s ease-out;
}

.left-allow img{
    float: left;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 20;
}


.left-allow-wh{
    display: none;
    animation: wh-fadeIn 0.2s linear 0s 1 normal
}


.left-allow p{
    float: left;
    display: inline-block;
    padding-left: 10px;
    color: #4d4d4d;
    line-height: 50px;
    position: absolute;
    top: 0px;
    left: 25px;
    z-index: 20;
    transition: all 0.2s ease-out;
}

.left-allow:hover p{
    color: white;
}

.left-allow:hover .left-allow-bk{
    display: none;
}

.left-allow:hover .left-allow-wh{
    display: block;
}

.left-allow:hover .left-allow-bg{
    left: 0px;
}


.right-allow{
    width: 330px;
    height: 50px;
    float: right;
    display: inline-block;
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease-out;
}

.right-allow-bg{
    position: absolute;
    top: 0px;
    right: -330px;
    z-index: 19;
    width: 330px;
    height: 50px;
    display: inline-block;
    background-image: linear-gradient(270deg, rgba(77,77,77,0.6) 10%,rgba(77,77,77,0.3) 50%,rgba(77,77,77,0) 100%);
    transition: all 0.4s ease-out;
}

.right-allow img{
    float: left;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 20;
}


.right-allow-wh{
    display: none;
    animation: wh-fadeIn 0.2s linear 0s 1 normal
}


.right-allow p{
    float: right;
    display: inline-block;
    padding-left: 10px;
    color: #4d4d4d;
    line-height: 50px;
    position: absolute;
    top: 0px;
    right: 25px;
    z-index: 20;
    transition: all 0.2s ease-out;
}

.right-allow:hover p{
    color: white;
}

.right-allow:hover .right-allow-bk{
    display: none;
}

.right-allow:hover .right-allow-wh{
    display: block;
}

.right-allow:hover .right-allow-bg{
    right: 0px;
}

/*ランダム画面*/
.randomWrap{
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0px 0 70px;
    background-color: #EFEFF0;
}

.randomWrap-title{
    width: 640px;
    height: auto;
    margin: 0 auto;
    padding-top: 70px;
    border-top: 1px solid #A8A8A8;
}

.randomWrap-title h2{
    width: 100%;
    color: #4D4D4D;
    font-size: 20px;
}

.randomWrap-images{
    width: 640px;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
}

.randomWrap-images img{
    width: 100%;
}

.randomWrap-image1,.randomWrap-image2,.randomWrap-image3{
    width: 200px;
    height: auto;
    margin: 0 auto 20px;
}



