body {
    margin: 0;
    padding: 0;
    /*background-color: #d2d2d2;*/
}

.containrer-full {
    width: 100%;
    background-color: #fff;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    /*background-color: #fff;*/
    box-sizing: border-box;
}

header {
    min-height: 80px;
    padding: 10px 20px 0;
}

header a.logo {
    float: left;
    margin-top: 8px;
}

header a.logo img {
    width: 50%;
}

header ul {
    list-style: none;
    float: right;
}

header ul li {
    display: inline-block;
}

header ul li a {
    text-decoration: none;
    color: #3d3d3d;
    padding: 0 5px;
    margin: 0 10px;
    width: 100px;
}

header ul li a:hover {
    padding-bottom: 8px;
    border-bottom: 3px solid #BF00FF;
    color: #BF00FF;
}

.main-img {
    height: 400px;
    background: url(http://css3.zerois.net/images/pic1.jpg) top center no-repeat;
    background-size: cover;
}

.text-box {
    position: relative;
    float: right;
    right: 50px;
    top: 100px;
    padding: 10px 25px;
    width: 45%;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-center {
    text-align: center;
}

.row {
    padding: 10px;
    overflow: hidden;
}

.col-3 {
    width: 33.3333333333%;
    float: left;
}

.v250,
.v350 {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v350 {
    height: 350px;
}

.v250 h2,
.v350 h2 {
    font-size: 1.85rem;
    font-weight: normal;
}

.v250 p {
    font-size: 1rem;
    margin: 0;
    padding-bottom: 0.5rem;
}

.img-part figure img {
    width: 300px;
}

.img-part figcaption {
    text-align: center;
    margin-top: 10px;
}

.img-part figure .circle {
    width: 200px;
    /* 둥근 테두리 넓이 설정 */
    height: 200px;
    /* 둥근 테두리 높이 설정 */
    border-radius: 50%;
    /* 50% 를 적용하면 원이 됩니다. */
    overflow: hidden;
    /* 원 이외의 다른 부분은 감추게 처리 합니다. */
    margin-left: auto;
    margin-right: auto;
}

    