

@font-face {
    font-family: cocogoose;
    src: url(../font/CocogoosePro.otf);
}
@font-face {
    font-family: cocogooseB;
    src: url(../font/CocogooseProB.otf);
}
html {
}
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: cocogoose;
}

#wrapper {
    width: 100%;
    padding: 0px;
    margin: 0px;
}

#head {
    background-image: url(../img/bg_small.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    margin: 0px;
    padding: 0px;
}
#logo {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -80px;
    margin-left: -180px;
}
#logo img {
    width: 360px;
}
.sloganBox {
    width: 100%;
    height: 220px;
    background-image: url(../img/slogan_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}
.sloganBox h1 {
    width: 100%;
    padding: 0px;
    margin: 0px;
    font-size: 18px;
    color: #000;
    text-align: center;
    line-height: 30px;
    font-weight: 400;
}
#projectSection {
    padding-top: 50px;
}
.sectionHead {
    font-family: cocogooseB;
    color: #333;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
}
.projectList {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex: 1 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.projectBox {
    width: 50%;
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 2% 5%;
}
.pjImgBox img {
    margin: 0px;
}
.pjName {
    font-size: 20px;
    line-height: 20px;
    display: block;
    padding: 10px 0px;
    color: #333;
}
.pjInfo {
    font-size: 14px;
    line-height: 20px;
    display: block;
    color: #555;
    padding-bottom: 20px;
}
a.pjButton:link, a.pjButton:visited {
    display: block;
    width: 150px;
    height: 44px;
    background-color: #fff;
    color: #753BCF;
    border: 1px solid #753BCF;
    box-sizing: border-box;
    border-radius: 6px;
    font-size: 14px;
    line-height: 44px;
    text-align: center;
    text-decoration: none;
    font-family: cocogoose;
    cursor: pointer;
}
a.pjButton:hover, a.pjButton:active {
    background-color: #753BCF;
    color: #fff;
    transition: all 200ms ease-out;
}

.cuBox {
    width: 100%;
    padding: 5% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cuBox img {
    display: block;
    margin: 0 auto;
}
.cuBox a:link, .cuBox a:visited {
    color: #753BCF;
    text-align: center;
    display: block;
    padding: 20px 0px;
    cursor: pointer;
    text-decoration: none;
}
.cuBox a:hover, .cuBox a:active {
    color: #753BCF;
    text-decoration: underline;
    text-underline-offset: 5px;
}

#footSection {
    width: 100%;
    height: 200px;
    padding-top: 50px;
    box-sizing: border-box;
    position: relative;
    background-image: url(../img/bottom.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
}
.footSection img{
    margin: 0 auto;
}
.copyright {
    position: absolute;
    bottom: 0px;
    width: 100%;
    font-size: 12px;
    line-height: 30px;
    color: #000;
    text-align: center;
    display: block;
    height: 30px;
}
.copyright a:link, .copyright a:visited {
    text-decoration: none;
    color: #222;
}
.copyright a:hover, .copyright a:active {
    text-decoration: underline;
}

@media only screen and (max-width:800px) {
    #logo {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -60px;
        margin-left: -100px;
    }
    #logo img {
        width: 200px;
    }
    .sloganBox h1 {
        width: 100%;
        padding: 0px;
        margin: 0px;
        font-size: 14px;
        color: #000;
        text-align: center;
        line-height: 30px;
        font-weight: 400;
    }
    .projectBox {
        width: 100%;
        background-color: #fff;
        border-radius: 10px;
        box-sizing: border-box;
        padding: 2% 5% 10% 5%;
    }
    #footSection {
        width: 100%;
        height: 200px;
        padding-top: 30px;
        box-sizing: border-box;
        position: relative;
        background-image: url(../img/bottom.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        text-align: center;
    }
    .copyright {
        position: absolute;
        bottom: 0px;
        width: 100%;
        font-size: 12px;
        line-height: 20px;
        color: #000;
        text-align: center;
        display: block;
        height: 40px;
    }
}



