@charset "UTF-18";

html{
    font-size: 100%;
    scroll-behavior: smooth;
}

body{
    color: #707070;
    font-family: sans-serif;
}

img{
    max-width: 100%;
    vertical-align: bottom;
}

li{
    list-style: none;
}

a{
    color: #707070;
    text-decoration: none;
}

a:hover{
    opacity: 0.7;
}

.wrapper{
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
}

#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 35px;
    padding-bottom: 35px;
}

#header .logo{
    max-width: 190px;
    line-height: 0;
}

#header .logo a{
    display: block;
}

#header .navi{
    display: flex;
    align-items: center;
}

#header .navi li{
    font-size: 14px;
    margin-left: 40px;
}

.mainvisual{
    margin-bottom: 80px;
}

.introduction{
    margin-bottom: 80px;
    text-align: center;
}

.introduction .catchphrase{
    font-size: 20px;
    font-weight: bold;
}

.introduction .text{
    font-size: 16px;
}

.section-title{
    font-weight: bold;
    margin-bottom: 40px;
}

.section-title .en{
    display: block;
    font-size: 40px;
}

.section-title .ja{
    display: block;
    font-size: 40px;
}

#data{
    display: flex;
    align-items: center;
    margin-bottom: 120px;
}

#data .img{
    width: 50%;
}

#data .detail{
    width: 50%;
    padding-left: 80px;
}

#data .detail p{
    font-size: 16px;
    line-height: 2;
}

#works{
    margin-bottom: 120px;
}

#works .works-list{
    display: flex;
    flex-wrap: wrap;
}

#works .works-list li{
    width: 32%;
    margin: 0 2% 2% 0;
    text-align: center;
}

#works .works-list li:nth-child(3n){
    margin-right: 0;
}

#footer{
    font-size: 12px;
    padding-bottom: 20px;
    text-align: center;
}

#layerControl-1{
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 20px;
    margin-bottom: 20px;
    width: 15%;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    justify-content:center;
    display: block;
}

#layerControl-2{
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 20px;
    margin-bottom: 20px;
    width: 15%;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    justify-content:center;
    display: block;
}

.layerControl{
    display: flex;
    font-size: 10px;
}


@media screen and (max-width: 767px) {

    #header{
        padding-top: 25px;
        padding-bottom: 25px;
    }

    #header .logo{
        max-width: 120px;
    }

    .mainvisual{
        margin-bottom: 50px;
    }

    .introduction{
        margin-bottom: 50px;
    }

    .introduction .catchphrase{
        font-size: 16px;

    }

    .introduction .text{
        text-align: left;
    }

    .section-title{
        margin-bottom: 25px;
    }

    .section-title .en{
        font-size: 32px;
    }

    #data{
        flex-direction: column-reverse;
        margin-bottom: 60px;
    }

    #data .img{
        width: 100%;
    }

    #data .detail{
        width: 100%;
        padding-left: 0;
    }

    #works{
        margin-bottom: 60px;
    }

    #works .works-list{
        flex-direction: column;
    }
    
    #works .works-list li{
        width: 100%;
        margin: 0 0 20px;
    }

    #layerControl-1,#layerControl-2{
        width: 40%;
    }

}