@charset "utf8";

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: #eeeeee;
}

.sh-base {
    width: 800px;
    min-height: 100%;
    margin: 0 auto;
    padding-bottom: 150px;
    position: relative;
    background: #ffffff;
}

.sh-head {
    width: 100%;
    /*
    height: 150px;
    */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eeeeee;
    padding: 20px;
}

.sh-head-in {
    color: #ffffff;
    font-size: 2.0rem;
    font-weight: bold;
    width: 100%;

}

.sh-head-in img{
    display: block;
    width: 100%;
}

.sh-cont {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.sh-cont-in {
    width: 100%;
    height: 100%;
}

.sh-foot {
    width: 100%;
    height: 150px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #222222;
}

.sh-foot-in {
    color: #ffffff;
    font-size: 0.9em;
}

.sh-foot-in a{
    color: #ffffff;
    text-decoration: none;
}



@media screen and (max-width: 800px) {
    .sh-base {
        width: 100%;
    }

    .sh-cont {
        padding: 20px;
    }
}


/* ===== common ===== */
.sh-tl{
    text-align: left;
}

.sh-tc{
    text-align: center;
}

.sh-tr{
    text-align: right;
}

.sh-w100px {
    width: 100px;
}

.sh-w150px {
    width: 150px;
}

.sh-w200px {
    width: 200px;
}

.sh-w250px {
    width: 250px;
}

.sh-w300px {
    width: 300px;
}

.sh-w350px {
    width: 350px;
}