body,
html {
    font-size: 14px;
    line-height: 2.2em;
    background-color: #fafafa;
}
#container {
    width: 100%;
    padding: 0;
    margin: 0;
}
#container img {
    max-width: 100%;
}
/* header
--------------------*/
#header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: fixed;
    top: 0;
    background-color: #fff;
}
#header .inner {
    width: 960px;
    height: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#header h1 {
    font-size: 28px;
    font-weight: normal;
    text-align: center;
    color: #ff7bac;
}
/* content
--------------------*/
#content {
    width: 960px;
    padding: 120px 0 0 0;
    margin: 0 auto;
    /*-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;*/
}
/* footer
--------------------*/
#footer {
    font-size: 0.8em;
    text-align: center;
    padding: 2em 0 3em;
}
@media screen and (max-width: 960px) {
    #header .inner,
    #content {
        width: 90%;
    }
    #header h1 {
        font-size: 25px;
    }
}
@media screen and (max-width: 768px) {
    #header .inner {
        height: 80px;
    }
    #header h1 {
        font-size: 3vw;
        font-weight: bold;
    }
    #content {
        padding: 100px 0 0 0;
    }
}
@media screen and (max-width: 600px) {
    #header {
        background-color: #fafafa;
    }
    #header h1 {
        font-size: 4vw;
    }
}
/* review-items
--------------------*/
.review-items {
    padding: 50px;
    margin: 0;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.review-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}
.review-title {
    width: 75%;
}
.review-title .title {
    display: block;
    width: 100%;
    font-size: 25px;
    line-height: normal;
    /*color: #ff7bac;*/
    border-bottom: 2px dashed #ffd1e2;
    padding: 0 0 0.75em 0;
}
.review-title .name {
    display: block;
    width: 100%;
    font-size: 1.2em;
    font-weight: bold;
    padding: 0.75em 0 0 0;
}
.review-icon {
    width: 15%;
    line-height: 0;
}
.review-icon img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.review-text {
    width: 75%;
    padding: 2em 0 0 0;
}
.review-text .image {
    padding: 2em 10%;
}
.review_list_btn {
    padding: 25px 0;
    display: flex;
    justify-content: center;
}
.review_list_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    width: 180px;
    height: 36px;
    border-radius: 18px;
    color: #fff;
    background-color: #ff7bac;
    box-shadow: 0 2px 5px 1px rgba(0, 0, 0, .2);
}
/* review list
--------------------*/
.btn-more {
    padding: 1.5em 0 0 0;
    display: flex;
    justify-content: center;
}
.btn-more a {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    width: 150px;
    height: 36px;
    border-radius: 18px;
    color: #fff;
    background-color: #ff7bac;
    box-shadow: 0 2px 5px 1px rgba(0, 0, 0, .2);
}
@media screen and (max-width: 960px) {
    .review-items {
        padding: 40px;
        align-items: flex-start;
    }
}
@media screen and (max-width: 768px) {}
@media screen and (max-width: 600px) {
    body,
    html {
        font-size: 14px;
        line-height: 2.2em;
        background-color: #fff;
    }
    .review-items {
        padding: 0;
        margin: 0 0 5em 0;
    }
    .review-head {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .review-title {
        width: 100%;
        font-size: 20px;
        padding: 1.5em 0 0.5em 0;
    }
    .review-title .name {
        font-size: 0.9em;
        text-align: center;
    }
    .review-icon {
        width: 30%;
    }
    .review-text {
        width: 100%;
        padding: 1em 0 0 0;
    }
    .review-text .image {
        padding: 2em 5%;
    }
    .review_list_btn {
        padding: 0 0 25px 0;
    }
}