.sub-section-2 {
    padding-top: 0;
}
.sub-section-2 .content-container {
    padding: 0 24px;
}
.sub-section-2 .content-container .counselor-search {
    display: inline-block;
    width: 100%;
    border-top: 6px solid #93adcd;
    padding: 24px 0;
}
.counselor-search > span {
    display: inline-block;
    padding-left: 12px;
    font-size: 36px;
    line-height: 60px;
}

.counselor-search .search {
    float: right;
    font-size: 0;
}

.counselor-search .search label {
    display: inline-block;
    width: 60px;
    text-align: center;
    font-size: 24px;
    line-height: 60px;
    font-weight: 700;
}
.counselor-search .search input {
    display: inline-block;
    width: calc(100% - 120px);
    max-width: 300px;
	height: 60px;
    border: 4px solid #20262e;
    padding: 0 12px;
    font-size: 20px;
    line-height: 52px;
    font-weight: 700;
    vertical-align: top;
}
.counselor-search .search button {
    display: inline-block;
    border: none;
    padding: 0;
    background-color: transparent;
    vertical-align: top;
}
.counselor-search .search button i {
    font-size: 60px;
}
@media only screen and (max-width: 599px) { 
    .counselor-search > span {
        display: none;
    }
    .counselor-search .search {
        width: 100%;
    }
    .counselor-search .search input {
        max-width: none;
    }
}
.counselor-list {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 0;
}
.counselor-list .counselor {
    float: left;
	position: relative;
    width: calc((100% - 73px) / 3);
    margin: 12px;
    border-top: 3px solid #4a8edf;
    border-bottom: 3px solid #20262e;
    padding: 0 8px;
    background-color: #ebebeb;
}
.counselor-list .counselor .center {
    display: inline-block;
    margin: 24px 0;
    border-top: 1px solid #20262e;
    border-bottom: 1px solid #20262e;
    padding: 8px 24px;
    font-size: 15px;
    line-height: 1.4;
}
.counselor-list .counselor .name {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 700;
}
.counselor-list .counselor .img-container {
	position: relative;
	width: 100%;
	padding-top: 100%;
    border: 2px solid #20262e;
    background-color: #ffffff;
    margin-bottom: 8px;
	overflow: hidden;
}
.counselor-list .counselor .img-container img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.counselor-list .counselor .wrapper {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.counselor-list .counselor:hover .wrapper {
    display: block;
}
.counselor-list .counselor .wrapper > span {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid #ffffff;
    padding: 8px 12px;
    background-color: transparent;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}
@media only screen and (max-width: 979px) {
    .counselor-list .counselor {
        float: none;
        display: inline-block;
        width: 300px;
    }
}
@media only screen and (max-width: 599px) {
    .counselor-list .counselor {
        width: 100%;
        max-width: 300px;
        margin: 12px 0;
    }
}

.counselor-info-wrapper {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}
.counselor-info-wrapper .counselor-info-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 552px;
    border-radius: 12px;
    padding: 30px;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
}
.counselor-info-wrapper .counselor-info-container .title {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
}
.counselor-info-wrapper .counselor-info-container .button-close {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}
.counselor-info-wrapper .counselor-info-container .content {
    margin-top: 12px;
    font-size: 0;
}
.counselor-info-wrapper .counselor-info-container .content .field {
    width: 100%;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.2;
}
.counselor-info-wrapper .counselor-info-container .content img {
    display: inline-block;
    width: calc(50% - 6px);
}
.counselor-info-wrapper .counselor-info-container .content .career {
    display: inline-block;
    width: calc(50% - 6px);
    margin-left: 12px;
    font-size: 13px;
    line-height: 1.2;
	word-break: keep-all;
}
@media only screen and (max-width: 599px) {
    .counselor-info-wrapper .counselor-info-container {
        max-width: none;
		width: calc(100% - 24px);
        height: 80%;
    }
	.counselor-info-wrapper .counselor-info-container .content {
		height: calc(100% - 32px);
		overflow: auto;
	}
    .counselor-info-wrapper .counselor-info-container .content img {
        display: block;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    .counselor-info-wrapper .counselor-info-container .content .career {
        width: 100%;
        margin-top: 12px;
        margin-left: 0;
    }
}