header {
    height: 6rem;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    padding: 0 1.5rem;
    z-index: 7777;
    background: linear-gradient(to right, #eaf9c3, #aff08e);
}
header h1 {
    width: 15rem;
}
header h1 a {
    width: 100%;
}
header h1 a img {
    width: 100%;
}

nav {
    z-index: 8888;
    position: fixed;
    width: 100%;
    bottom: 0;
    height: 7rem;
    background: #fff;
    border-top: 1px solid #e4e4e4;
    display: flex;
}
nav a {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3);
}
nav a img {
    height: 3rem;
    margin-bottom: 0.5rem;
}
nav a span {
    font-size: 1.6rem;
    color: #cbcbcb;
    font-weight: 600;
}

main {
    min-height: 100vh;
    padding: 0 1.5rem 8rem;
}
main .bnr {
    height: 45rem;
    padding-top: 2rem;
    background-image: url(../img/main-img.png);
    background-size: 35rem;
    background-repeat: no-repeat;
    background-position: bottom;
}
main .bnr h2 {
    font-family: 'Moebius';
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
main .bnr h2 span {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    color: #d46161;
    font-family: 'Moebius';
}
main .bnr p {
    font-size: 1.6rem;
}
main .type {
    padding: 2rem 0;
}
main .type h2 {
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
main .type h2 img {
    width: 2rem;
    margin-right: 0.5rem;
}
main .type .shortcut {
    display: flex;
    justify-content: space-between;
}
main .type .shortcut a {
    width: calc(100% / 3 - 1rem);
}
main .type .shortcut a img {
    width: 100%;
}
main .info {
    padding: 2rem 0;
}
main .info h2 {
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
main .info h2 img {
    width: 2rem;
    margin-right: 0.5rem;
}
main .info .shortcut {}
main .info .shortcut a {
    border-radius: 1rem;
    height: 7rem;
    box-shadow: 1px 1px 1px 2px #fca917;
    display: block;
    background-repeat: no-repeat;
    background-position: right 3rem center;
    background-size: auto 5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    padding: 0 3rem;
}
main .info .shortcut a:nth-of-type(1) {
    background-image: url(../img/btn-icon-1.png);
}
main .info .shortcut a:nth-of-type(2) {
    background-image: url(../img/btn-icon-2.png);
}
main .info .shortcut a:nth-of-type(3) {
    background-image: url(../img/btn-icon-3.png);
}
main .info .shortcut a h3 {
    font-size: 1.8rem;
    font-weight: 800;
}
main .info .shortcut a h3 img {
    width: 1.5rem;
    margin-left: 0.5rem;
}
main .news {
    padding: 2rem 0;
}
main .news h2 {
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}
main .news h2 img {
    width: 2rem;
    margin-right: 0.5rem;
}
main .news h2 a {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    background: #000;
    border-radius: 2rem;
    padding: 0.8rem 1.5rem;
    position: absolute;
    right: 0;
}
main .news .news_swiper {
    overflow: hidden;
    height: max-content;
    position: relative;
    padding-bottom: 2rem;
}
main .news .news_swiper .swiper-wrapper {}
main .news .news_swiper .swiper-wrapper a {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    border: 1px solid #d8d8d8;
    border-radius: 1rem;
    height: 15rem;
}
main .news .news_swiper .swiper-wrapper a .left {
    width: 30%;
    margin-right: 1rem;
    height: 100%;
}
main .news .news_swiper .swiper-wrapper a .left img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
main .news .news_swiper .swiper-wrapper a .right {
    width: 70%;
}
main .news .news_swiper .swiper-wrapper a .right .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
main .news .news_swiper .swiper-wrapper a .right .top h3 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}
main .news .news_swiper .swiper-wrapper a .right .top .date {
    font-size: 1.4rem;
    color: #626160;
}
main .news .news_swiper .swiper-wrapper a .right > p {
    font-size: 1.6rem;
    color: #626160;
    line-height: 1.4;
}
main .news .news_swiper .swiper-pagination {
    bottom: 0;
    text-align: right;
}
.swiper-pagination-bullet-active {
    background-color: #65b741 !important;
}