* {
    box-sizing: border-box;
}
body.fixed {
    overflow: hidden;
}
:root {
    --border: 1.2rem;
    --mb: 4rem;
}
main {
    padding: 7rem 1.5rem 2rem;
}
main.pb {
    padding: 7rem 1.5rem 0;
}
#indexLoadImg {
    position: relative;
    background: #fff;
    min-height: 100vh;
}
#indexLoadImg img {
    position: absolute;
    display: block;
    height: 20rem;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
}

/* header */
header {
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    z-index: 9000;
    background: #fff;
}
#indexWrap header .back {
    display: none;
}
header .back {
    display: block;
    width: 2.1rem; height: 2.1rem;
    background: url(../img/back.png) no-repeat center/contain;
}
header a {
    display: block;
    height: 2.8rem;
}
header a img {
    display: block;
    height: 100%;
}

/* home */
#filterFrm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2.5rem;
    border-bottom: .1rem solid #E3E3E3;
}
#filterFrm > div {
    display: flex;
    align-items: center;
    gap: 1rem;
}
#filterFrm > div select {
    font-size: 1.7rem;
    border-color: #E6E6E6;
    padding: .9rem 1.2rem;
    border-radius: var(--border);
    width: 40%;
    color: #3282EA;
    font-weight: 600;
    background: url(../img/arrow-1.png) no-repeat 90% 50% / 1.5rem;
}
#filterFrm > div select:focus {
    outline: none;
}
#filterFrm > div select option {
    font-size: 1.7rem;
}
#filterFrm > div p {
    font-size: 1.7rem;
    font-weight: 600;
}
.home_cont .cont_list {
    padding: 2.5rem 0;
    border-bottom: .1rem solid #E3E3E3;
}
.home_cont .cont_list .top {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.5rem;
}
.home_cont .cont_list .top span {
    display: block;
    font-size: 1.5rem;
    color: #252525;
    background: #EFEFEF;
    padding: .7rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
}
.home_cont .cont_list .tit {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.home_cont .cont_list .date {
    font-size: 1.6rem;
    color: #7D7D7D;
}
.home_more_btn {
    display: block;
    padding: 2rem 0;
    border-radius: var(--border);
    background: #3785EB;
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    margin-top: 3rem;
}
.no_result {
    font-size: 2rem;
    text-align: center;
    padding: 7rem 0 4rem;
}
.home_news_sec {
    padding-top: 4rem;
}
.home_news_sec h2 {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.home_news_sec h2 .ico {
    display: block;
    width: 2.8rem; height: 2.8rem;
    background: url(../img/icon-3.png) no-repeat center/contain;
}
.news_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 11rem;
    margin-bottom: 1.5rem;
}
.news_box img {
    display: block;
    width: 40%; height: 100%;
    object-fit: cover;
}
.news_box .news-txt {
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news_box .news-txt h2 {
    font-size: 1.7rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
}
.news_box .news-txt pre {
    font-size: 1.6rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    color: #7E7E7E;
}
.news_box .news-txt span {
    font-size: 1.5rem;
    color: #A9A9A9;
    display: block;
    text-align: right;
}

/* list */
.list_banner {
    display: block;
    position: relative;
    margin-bottom: 2.5rem;
}
.list_banner img {
    display: block;
    width: 100%;
}
.list_banner .cont_box {
    position: absolute;
    top: 50%; left: 2rem;
    transform: translateY(-50%);
}
.list_banner .cont_box p {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: .7rem;
}
.list_banner .cont_box h1 {
    font-size: 2.1rem;
    color: #fff;
    font-weight: 600;
}
.list_tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.list_tab li {
    font-size: 1.7rem;
    font-weight: 600;
    background: #EFEFEF;
    padding: 1rem 1.6rem;
    border-radius: 2rem;
}
.list_tab li.on {
    background: #3785EB;
    color: #fff;
}
#list_form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
    border-bottom: .1rem solid #E6E6E6;
}
#list_form > div {
    width: calc(50% - .7rem);
}
#list_form select {
    font-size: 1.7rem;
    border-color: #EAEAEA;
    border-radius: var(--border);
    display: block;
    padding: 1.5rem;
    color: #787878;
    font-weight: 600;
    background: url(../img/arrow-2.png) no-repeat 93% 50% / 1.6rem;
}
#list_form #state {
    width: calc(50% - .7rem);
}
#list_form #type {
    width: 100%;
}
#list_form select:focus {
    outline: none;
}
#list_form select option {
    font-size: 1.7rem;
}
.list_cont .cont_list {
    display: block;
    padding: 2.5rem 0;
    border-bottom: .1rem solid #F3F3F3;
}
.list_cont .cont_list .top {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.5rem;
}
.list_cont .cont_list .top span {
    font-size: 1.5rem;
    background: #EFEFEF;
    padding: .5rem 1rem;
    border-radius: 1.5rem;
    font-weight: 500;
}
.list_cont .cont_list .tit {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}
.list_cont .cont_list .date {
    font-size: 1.6rem;
    color: #676767;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 2rem;
}
.pagination a {
    display: block;
    font-size: 1.8rem;
    color: #787878;
    font-weight: 500;
}
.pagination a.active {
    color: #3081EA;
    font-weight: 600;
}
.pagination a.next {
    width: 1.5rem; height: 1.5rem;
    background: url(../img/arrow-4.png) no-repeat center/contain;
    margin-bottom: .2rem;
}
.pagination a.prev {
    width: 1.5rem; height: 1.5rem;
    background: url(../img/arrow-3.png) no-repeat center/contain;
    margin-bottom: .2rem;
}

/* list_sub */
.list_sub_cont .list_tit {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
}
.list_sub_cont .bubble {
    color: #fff;
    background: #3785EB;
    font-size: 1.6rem;
    width: fit-content;
    padding: .9rem 1.5rem;
    border-radius: 2.5rem 2.5rem 2.5rem 0;
    margin-bottom: 1.5rem;
}
.list_sub_cont .cont_box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}
.list_sub_cont .cont_box:last-child {
    margin-bottom: 0;
}
.list_sub_cont .cont_box p {
    font-size: 1.6rem;
    color: #565656;
    line-height: 1.3;
}
.list_sub_cont .cont_box p span {
    font-size: 1.6rem;
    font-weight: 700;
}

/* calendar */
.dateSwiper {
    padding: 0 1.5rem !important;
}
.dateSwiper .swiper-slide {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}
.dateSwiper .swiper-slide p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    width: 3rem; height: 3rem;
}
.dateSwiper .swiper-slide p.day {
    color: #3B88EB;
}
.dateSwiper .swiper-slide p.date {
    font-weight: 600;
}
.dateSwiper .swiper-slide.on p.date {
    background: #3785EB;
    color: #fff;
    border-radius: 50%;
}
.calendar_date {
    margin-top: 1.5rem;
    background: #DCEDFF;
    text-align: center;
    padding: 1rem 0;
}
.calendar_date p {
    font-size: 1.7rem;
    color: #3383EB;
    font-weight: 600;
}
.today_cont {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #F7F7F7;
    padding: 1.5rem;
}
.record_item {
    border: .1rem solid #DBDBDB;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border);
}
.record_item .type {
    background: #DCEDFF;
    color: #3785EB;
    font-size: 1.6rem;
    display: block;
    padding: .7rem 1rem;
    border-radius: 2rem;
    width: fit-content;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.record_item .tit {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}
.record_item .date {
    font-size: 1.6rem;
    color: #7F7F7F;
}
.more_cont_box {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.register .tit {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.register .tit .ico {
    display: block;
    width: 3.2rem; height: 3.2rem;
    background: url(../img/icon-1.png) no-repeat center/contain;
}
.announ .tit {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.announ .tit .ico {
    display: block;
    width: 3.2rem; height: 3.2rem;
    background: url(../img/icon-2.png) no-repeat center/contain;
}
.register .none {
    font-size: 1.8rem;
    color: #737373;
    font-weight: 600;
    text-align: center;
    padding: 1rem 0 10rem;
}
.announ .none {
    font-size: 1.8rem;
    color: #737373;
    font-weight: 600;
    text-align: center;
    padding: 1rem 0 10rem;
}