@charset "utf-8";

.contents {
    line-height: 1.8;
    color: #666;
    letter-spacing: -.2px;
    font-weight: 300;
}
/* greeting */
.pic-area {
    position: relative;
    width: 100%;
}
.pic-area .bg {
    border-radius: 10px;
    width:100%;
    overflow: hidden;
}
.pic-area .face {
    width: 20%;
    height: 20%;
    border-radius: 50%;
    overflow: hidden;
    margin: -10% auto 0;
}
.greeting {
    text-align: center;
}
.greeting h3 {
    font-weight:300;
    font-size:24px;
    padding:50px;
    color:#000;
}
.greeting p {
    font-weight:300;
    padding:18px 0;
    font-size: 16px;
}
/* history */
.history article {
    position: relative;
    display:block;
    width:100%;
    padding:80px;
    margin-top:10px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    color:black;
    transition: all 0.3s linear;
}
.history article:hover {
    border: 1px solid #9cb979;
    box-shadow: 2px 5px 10px rgba(0,0,0,.15);
}
.history article header {
    overflow: hidden;
}
.history article header h3 {
    float: left;
    font-size: 50px;
    font-weight: 100;
    letter-spacing: -2px;
    line-height:1;
    transition: all 0.3s linear;
}
.history article:hover header h3 {
    color:#9cb979;
    letter-spacing: 5px;
}
.history article header span {
    position: relative;
    margin-left: 30px;
    font-size:14px;
    font-weight:300;
    margin-top: 4px;
    letter-spacing: 0;
}
.history article header span:after {
    content: "";
    height: 2px;
    width: 100%;
    background: #ddd;
    position: absolute;
    left: 0;
    margin-top: 40px;
}
.history article dl {
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    padding-left: 140px;
}
.history article dl dt {
    position: absolute;
    left:20px; top:0;
    width:50px; height:50px;
    padding-top: 10px;
    background: #ccc;
    color:#fff;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s linear;
}
.history article:hover dl dt {
    background: #d1d9c8;
}
.history article dl dd {
    position: relative;
    display: block;
    padding: 5px 0 5px 10px;
    line-height: 1.4;
}
.history article dl dd::before {
    content: "";
    display: block;
    width: 2px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    top: 15px;
}
/* teacher */
.teacher {
    overflow: hidden;
}
.teacher article {
    float:left;
    width:33.333%;
    overflow: hidden;
    padding: 0 20px 80px;
    border: 0; outline: 0;
}
.teacher article:nth-child(4) {
    clear: both;
}
.teacher article img {
    width:100%;
    border-radius: 10px;
    overflow: hidden;
}
.teacher article dl {
    margin-top: 30px;
}
.teacher article dl dt {
    position: relative;
    font-size:24px;
    font-weight:300;
    color:#000;
    line-height:1;
}
.teacher article dl dt span {
    position: absolute;
    right:0; top:-5px;
    display:block;
    padding:7px 10px;
    font-size: 14px;
    color:#666;
    line-height: 1;
    border: 1px solid #e5e5e5;
    border-radius: 100px;
}
.teacher article dl dd {
    margin-top: 10px;
}
/* facility */
.facility {
    overflow: hidden;
}
.facility div {
    position:relative;
    float: left;
    width: 49%;
    height: 406px;
    margin-top: 20px;
    margin-right: 1%;
    border-radius: 10px;
    color: #fff;
}
.facility div:nth-child(2n+1) {
    margin-right: 0;
    margin-left: 1%;
}
.facility div::before {
    position:absolute;
    content:'';
    display: block;
    width:100%;
    height:100%;
    border-radius: 10px;
    background-color:#000;
    opacity: 0;
    transition: all 0.3s;
}
.facility div:hover::before {
    opacity: 0.5;
} 
.facility .big {
    width:100%;
    height: 708px;
    background: url("../images/facility_01.jpg")no-repeat center/cover;
    margin: 0 !important;
}
.facility div:nth-child(2){
    background: url("../images/facility_02.jpg")no-repeat center/cover;
}
.facility div:nth-child(3){
    background: url("../images/facility_03.jpg")no-repeat center/cover
}
.facility div:nth-child(4){
    background: url("../images/facility_04.jpg")no-repeat center/cover
}
.facility div:nth-child(5){
    background: url("../images/facility_05.jpg")no-repeat center/cover
}
.facility div p {
    position: absolute;
    bottom: 0; padding: 40px;
    font-size: 24px;
    font-weight: 500;
    z-index: 1;
}
.facility div p span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}
/* location */
.location .map {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.location .map > div{
    width:100% !important;
    height: 65vh;
}
.location .map div .wrap_map{
    height: 70vh !important;
}

.location ul li {
    position: relative;
    width: 100%;
    padding: 30px 80px;
    overflow: hidden;
    border-bottom: 1px solid #efefef;
}
.location ul .address {
    background: url("../images/icon_point.png")no-repeat 12px center/45px;
}
.location ul .tel {
    background: url("../images/icon_tel.png")no-repeat 10px center/50px;
}
.location ul .fax {
    border: 0;
    background: url("../images/icon_fax.png")no-repeat 10px center/50px;
}
.location ul li p {
    font-weight:500;
    color:#000;
}
/* breakpoint 991px - mobile size */
@media screen and (max-width:991px){
    /* greeting */
    .pic-area .face {
        width: 30%;
        height: 30%;
        margin: -15% auto 0;
    }
    .greeting h3 {
        font-size: 24px;
        padding: 30px;
        line-height:1.4;
    }
    .greeting p {
        font-size: 15px;
    }
    .greeting p br {
        display: none;
    }
    /* teacher */
    .teacher article dl dt {
        font-size: 20px;
    }
    .teacher article dl dt span {
        top: -4px;
        font-size: 14px;
    }
    .teacher article dl dd {
        /* margin-top: 10px; */
        font-size: 15px;
    }
    /* facility */
    .facility .big {
        width:100%;
        height: 500px;
        background: url("../images/facility_01.jpg")no-repeat center/cover;
        margin: 0 0 20px !important;
    }
    .facility div {
        position:relative;
        float: left;
        width: 100%;
        height: 500px;
        margin: 0 0 20px;
        border-radius: 10px;
        color: #fff;
    }
    .facility div:nth-child(2n+1) {
        margin: 0 0 20px;
    }
    .facility div::before {
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
        opacity: 1;
    }
    /* location */
    .location .map {
        width: 100%;
        height: 50vh;
        overflow: hidden;
        border-radius: 10px;
        border: 1px solid #eee;
    }
    .location .map div .wrap_map{
        height: 50vh !important;
    }
    .location ul .address {
        background: url(../images/icon_point.png)no-repeat 12px 40%/28px;
    }
    .location ul .tel {
        background: url(../images/icon_tel.png)no-repeat 10px 40%/32px;
    }
    .location ul .fax {
        border: 0;
        background: url(../images/icon_fax.png)no-repeat 10px 40%/32px;
    }
    .location ul li {
        position: relative;
        width: 100%;
        padding: 18px 60px;
        overflow: hidden;
        border-bottom: 1px solid #efefef;
    }
    .location ul li p, .location ul li span {
        font-size: 14px;
        line-height: 1.5;
    }
}
/* breakpoint 768px */
@media screen and (max-width:768px){
    /* greeting */
    .greeting h3 {
        font-size: 23px;
        padding: 16px;
    }
    /* history */
    .history article {
        padding:30px;
        margin-top:10px;
    }
    .history article:hover {
        border: 1px solid #9cb979;
        box-shadow: none;
    }
    .history article header h3 {
        font-size: 30px;
        font-weight: 300;
        letter-spacing: -2px;
        color: #a2cc61;
        line-height: 1;
    }
    .history article header span {
        margin-left: 18px;
        font-size: 12px;
    }
    .history article:hover header h3 {
        color: #a2cc61;
        letter-spacing: -2px;
    }
    .history article dl {
        padding-left: 62px;
    }
    .history article dl dt {
        position: absolute;
        left: 7px; top: 0;
        width: 40px; height: 40px;
        font-size: 15px;
        padding-top: 7px;
        background: url("../images/flower_pink.png")no-repeat center/contain;
        border-radius: 0px;
    }
    .history article:hover dl dt {
        background: url("../images/flower_pink.png")no-repeat center/contain;
    }
    .history article dl dd {
        font-size: 15px;
    }
    /* teacher */
    .teacher article {
        width: 100%;
        padding: 0px 20px 50px;
    }


}