@charset "utf-8";

/* Main CSS */


/* Main Visual */

.mv_wrap {
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* For IE */
}

.mv_wrap .swiper-wrapper {
    height: 500px;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.mv_wrap .swiper-slide::before {
    content: '';
    /* background-size: cover; */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: bgSize 3s linear;
}

.mv_wrap .mv01::before {
    background: url(../images/main/mv01.jpg) center center no-repeat;
}

.mv_wrap .mv02::before {
    background: url(../images/main/mv02.jpg) center center no-repeat;
}

.mv_wrap .mv03::before {
    background: url(../images/main/mv03.jpg) center center no-repeat;
}

@keyframes bgSize {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.mv_wrap .layout {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.mv_wrap .slogan {
    padding: 206px 0;
}

@media screen and (min-width: 1920px) {
    .mv_wrap .swiper-slide::before {
        background-size: cover !important;
    }
}


/* Main Quick Menu */

.m_quick {
    padding: 30px 0;
}

.m_quick ul {
	display: flex;
	padding: 0;
    overflow: hidden;
    border: 1px solid #ddd;
}

.m_quick ul li {
	position: relative;
    text-align: center;
    width: 100%;
    padding: 0 30px;
    word-break: keep-all;
}

.m_quick ul li:after {
    content:'';
	position: absolute;
	top: 58%;
	display: block;
	width: 1px;
	height: 80px;
	background: #ddd;
    left: 0;
    transform: translateY(-50%);
}

.m_quick ul li:first-child:after {
	display: none;
}

.m_quick ul li a {
    display: block;
    width: 100%;
    padding: 50px 0;
    position: relative;
}

.m_quick ul li a:before {
    content: '';
    width: 90px;
    height: 90px;
    position: absolute;
    background: #eef9ff;
    border-radius: 50%;
    top: 30px;
    left: 50%;
    /* margin: -45px 0 0 -45px; */
    z-index: -1;
    opacity: 0;
    /* filter: alpha(opacity=0); */
    transition: .5s;
    transform: translate(-50%, 0);
}

.m_quick ul li a img {
    position: relative;
    top: 0;
    transition: .5s;
}

.m_quick ul li a p {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

.m_quick ul li a:hover img {
    top: -5px;
}

.m_quick ul li a:hover::before {
    opacity: 1;
    filter: alpha(opacity=100);
}


/* Main Board */

.m_board {
    background: #f4f4f4;
    padding: 30px 0;
}

.m_board .layout {
    overflow: hidden;
}

.m_board .layout>div {
    float: left;
    width: 380px;
    height: 293px;
    margin-left: 30px;
    background: #fff;
    padding: 40px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.m_board .layout>.notice {
    margin-left: 0;
}

.m_board h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    overflow: hidden;
}

.m_board h3 a {
    float: right;
    margin-top: 2px;
}

.m_board .list_wrap {
    margin-top: 20px;
}

.m_board .list_wrap li {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.m_board .list_wrap li .title,
.m_board .list_wrap li span {
    padding: 15px 0;
}

.m_board .list_wrap li .title {
    display: block;
    padding: 15px 0;
    float: left;
    color: #333;
}

.m_board .list_wrap li .title:hover {
    text-decoration: underline;
}

.m_board .list_wrap li .date {
    float: right;
    color: #999;
}

.m_board .lecture a {
    display: block;
}

.m_board .lecture .list_wrap .lecture_thumb {
    width: 300px;
    height: 153px;
    overflow: hidden;
}

.m_board .lecture .lecture_thumb a {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.m_board .lecture .list_wrap p {
    color: #333;
    margin-top: 13px;
}

.m_board .lecture .list_wrap a:hover p {
    text-decoration: underline;
}


/* Main Link */

.m_link {
    background: url(../images/main/link_bg.jpg) center -110px no-repeat;
    background-attachment: fixed;
    text-align: center;
    padding: 40px 0 30px;
    overflow: hidden;
}

.m_link p {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}

.m_link a {
    display: inline-block;
    color: #fff;
    padding: 13px 0;
    width: 192px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 25px;
    transition: .5s;
}

.m_link a:nth-child(odd) {
    background: #0775ba;
}

.m_link a:nth-child(odd):hover {
    background: #0567a5;
}

.m_link a {
    background: #00a678;
}

.m_link a:hover {
    background: #008c65;
}

.m_link a:not(:last-child) {
    margin-right: 30px;
}

@media screen and (min-width: 1920px) {
    .m_link {
        background-size: cover;
    }
}