/* side_menu */
.side_menu {
    position: fixed;
    z-index: 101;
    right: 0px;
    bottom: 0;
    display: flex;
    flex-direction: column;
}
.side_menu a {
    writing-mode: vertical-rl;
    line-height: 90px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #949494;
    letter-spacing: 0px;
    text-transform: uppercase;
    height: 18%;
    justify-content: center;
    transition: all 0.2s;
    opacity: 0.5;
}
.side_menu a.active {
    opacity: 1;
}
.side_menu a:hover {
    background-color: #94949475;
}

/* main_banner */
.main_banner {
    position: relative;
}
.main_banner > div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.main_banner > div > span {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}
.main_banner > div > h2 {
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    line-height: 70px;
    margin-top: 32px;
    margin-bottom: 144px;
}
.main_banner > div > h2 > span {
    font-size: 54px;
    font-weight: 700;
}
.main_banner > div > p {
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    line-height: 50px;
}
.main_banner a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 115px;
}

/* main_intro */
.main_intro {
    background-image: url(../img/main_intro_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 168px;
    padding-bottom: 158px;
}
.main_intro > div {
    display: flex;
}
.main_intro_left > span {
    font-size: 14px;
    font-weight: 300;
    color: rgba(107, 107, 107, 0.67);
    letter-spacing: 4px;
}
.main_intro_left > h2 {
    font-size: 48px;
    font-weight: 700;
    color: #141414;
    line-height: 68px;
    margin-top: 31px;
}
.main_intro_left > h2 > span {
    color: #263f93;
}
.main_intro_right {
    margin-left: 160px;
    padding-top: 47px;
}
.main_intro_right p {
    font-size: 25px;
    font-weight: 400;
    color: #1d1919;
    line-height: 44px;
    margin-bottom: 52px;
}
.main_intro_right span {
    font-weight: 700;
    color: #263f93;
}
.main_intro_right a {
    display: flex;
    align-items: center;
    width: 160px;
    line-height: 55px;
    text-align: center;
    border: 1px solid #263f93;
    color: #263f93;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
    transition: all 0.2s;
}
.main_intro_right a > img {
    margin-left: 15px;
    transition: all 0.2s;
}
.main_intro_right a:hover {
    background-color: #263f93;
    color: #fff;
}
.main_intro_right a:hover > img {
    filter: brightness(10);
}

/* main_category */
.main_category {
    background-image: url(../img/main_category_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 138px;
    text-align: center;
    padding-bottom: 130px;
}
.main_category > div > span {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.67);
    letter-spacing: 3px;
}
.main_category h2 {
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    margin-top: 17px;
    margin-bottom: 71px;
}
.main_category_con {
    display: flex;
    justify-content: space-between;
}
.main_category_con a {
    width: 24%;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.2s;
}
.main_category_con a:hover {
    background-color: rgba(38, 63, 147, 0.5);
}
.main_category_con h3 {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 4px;
}
.main_category_con p {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}
.main_category_line {
    width: 100px;
    height: 5px;
    background-color: #fff;
    margin: 0 auto;
}

/* main_owner */
.main_owner {
    position: relative;
    padding-top: 213px;
    padding-bottom: 225px;
    text-align: center;
}
.main_owner::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #bf9a6e;
    position: absolute;
    left: 0px;
    top: 32px;
}
.main_owner > div > span {
    font-size: 14px;
    font-weight: 300;
    color: rgba(29, 25, 25, 0.67);
}
.main_owner > div > h2 {
    font-size: 48px;
    font-weight: 400;
    color: #1d1919;
    margin-top: 17px;
    margin-bottom: 71px;
}
.main_owner > div > p {
    font-size: 24px;
    font-weight: 400;
    color: #1d1919;
    line-height: 40px;
    margin-bottom: 157px;
}
.main_owner_con {
    display: flex;
    align-items: flex-start;
}
.main_owner_right {
    padding-left: 105px;
    padding-top: 11px;
    text-align: justify;
}
.main_owner_right h3 {
    font-size: 40px;
    font-weight: 400;
    color: #141414;
    margin-bottom: 82px;
}
.main_owner_right h3 > span {
    font-weight: 700;
}
.main_owner_right p {
    font-size: 22px;
    font-weight: 400;
    color: #272727;
    margin-bottom: 144px;
    line-height: 38px;
}
.main_owner_right a {
    display: flex;
    align-items: center;
    width: 210px;
    line-height: 55px;
    text-align: center;
    border: 1px solid #263f93;
    color: #263f93;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
    transition: all 0.2s;
}
.main_owner_right a > img {
    margin-left: 12px;
    transition: all 0.2s;
}
.main_owner_right a:hover {
    background-color: #263f93;
    color: #fff;
}
.main_owner_right a:hover > img {
    filter: brightness(10);
}

/* main_notice */
.main_notice {
    background-image: url(../img/main_notice_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 105px;
    padding-bottom: 156px;
    text-align: center;
    overflow: hidden;
}
.main_notice > div > span {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.67);
    letter-spacing: 3px;
}
.main_notice > div > h2 {
    font-size: 48px;
    font-weight: 400;
    color: #efeae6;
    letter-spacing: 3px;
    margin-top: 17px;
    margin-bottom: 28px;
}
.main_notice_line01 {
    width: 100%;
    height: 0.5px;
    background-color: #ffffff;
    opacity: 0.5;
}
.main_notice_line02 {
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    margin-top: 11px;
    margin-bottom: 67px;
}
.main_notice .main_notice_page {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.main_notice .main_notice_page > span {
    font-size: 32px;
    font-weight: 700;
    color: #ccc;
    position: relative;
    background-color: transparent;
    border-radius: 0px;
    width: auto;
    height: auto;
    opacity: 1;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}
.main_notice .main_notice_page > span.swiper-pagination-bullet-active {
    color: #fff;
}
.main_notice .main_notice_page > span:first-child::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 38px;
    background-color: #fff;
    margin: 0px 49px;
}
.main_notice_swiper {
    max-width: 1216px;
    width: 100%;
    margin: 34px auto 0px;
}
.main_notice_swiper .swiper-slide {
    position: relative;
    opacity: 0 !important;
}
.main_notice_swiper .swiper-slide-visible {
    opacity: 1 !important;
}
.main_notice_swiper .swiper-slide > a {
    position: absolute;
    right: 0px;
    top: -66px;
    transition: all 0.2s;
}
.main_notice_swiper .swiper-slide > a:hover {
    transform: rotate(90deg);
}
.main_notice_swiper li > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 66px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.5);
    padding-left: 42px;
    padding-right: 42px;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
    transition: all 0.2s;
}
.main_notice_swiper li > a:hover {
    background-color: rgba(38, 63, 147, 0.5);
}
.main_notice_swiper li > a > span {
    font-size: 18px;
}
.main_notice_swiper li:last-child > a {
    margin-bottom: 0px;
}

/* main_interior */
.main_interior {
    padding-top: 44px;
    text-align: center;
}
.main_interior > span {
    font-size: 14px;
    font-weight: 300;
    color: rgba(29, 25, 25, 0.67);
    letter-spacing: 3px;
}
.main_interior > h2 {
    font-size: 48px;
    font-weight: 400;
    color: #1d1919;
    letter-spacing: 3px;
    margin-bottom: 65px;
    margin-top: 17px;
}
.main_interior_wrap {
    position: relative;
}
.main_interior_con {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
    max-width: 1298px;
    overflow: hidden;
}
.main_interior_swiper01 {
    width: 100%;
}
.main_interior_swiper01 .swiper-slide {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.main_interior_swiper01 h3 {
    font-size: 40px;
    font-weight: 400;
    color: #1d1919;
    margin-bottom: 54px;
}
.main_interior_swiper01 p {
    font-size: 24px;
    font-weight: 400;
    color: #1d1919;
    margin-bottom: 67px;
}
.main_interior_sub {
    display: flex;
}
.main_interior_sub > img:first-child {
    margin-right: 28px;
}
.main_interior_swiper02 {
    width: 100%;
    margin-top: 42px;
}
.main_interior_swiper02 .swiper-slide {
    position: relative;
}
.main_interior_swiper02 .swiper-slide > span {
    font-size: 20px;
    font-weight: 400;
    color: #1d1919;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}

/* main_info */
.main_info {
    padding-top: 204px;
    text-align: center;
}
.main_info > div.center {
    margin-bottom: 109px;
}
.main_info > div > h2 {
    font-size: 50px;
    font-weight: 400;
    color: #373737;
    margin-bottom: 101px;
}
.main_info > div > h2 > span {
    font-weight: 700;
    color: #263f93;
}

/* main_form */
.main_form {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1654px;
    width: 100%;
    background-color: rgba(29, 25, 25, 0.8);
    z-index: 101;
    padding-left: 40px;
    display: flex;
    height: 80px;
    align-items: center;
}
#req_form {
    display: flex;
    margin-left: 16px;
    align-items: center;
}
#req_form span {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-left: 7px;
}
#btn_submit {
    width: 260px;
    line-height: 80px;
    color: #fff;
    background-color: #263f93;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    border: none;
    margin-left: 60px;
}
#btn_submit:hover {
    background-color: #333;
}
.form-control {
    width: 141px;
    height: 38px;
    margin-right: 12px;
}
.input01,
.input02,
.input04 {
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    border: none;
}
.input03 {
    font-size: 13px;
    font-weight: 400;
    color: #333;
    height: 38px;
    /* text-align: center; */
    padding-left: 14px;
    border: none;
}
.input04 {
    margin-right: 26px;
}
.quick_menu {
    background-color: #fff;
    display: flex;
    width: 23.28%;
    height: 100%;
}
.quick_menu > a {
    width: 25%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #d3d3d3;
    transition: all 0.2s;
}
.quick_menu > a:last-child {
    border: none;
}
.quick_menu > a:hover {
    opacity: 0.7;
}
