html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}



body {
    padding-right: 0px !important;
    font-size: 16px;
    font-family: "Poppins", "Noto Sans TC", "Microsoft JhengHei", sans-serif !important;
    letter-spacing: 1.5px;
    position: relative;
    min-height: 100vh;
}

/* ---- icon set ---- */
.material-symbols-sharp {
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 20
}

/* ---- icon set end ---- */

/* ---- root ---- */

:root {
    --main-color: #48b7a7;
    --vice-color: #4a4f54;
    --notice-color: #e17e6f;
    --swiper-navigation-size: 40px;
}

/* ---- root end ---- */

/* ---- basic setting ---- */

.section-page {
    padding: 80px 0;
}

@media (max-width: 992px) {
    .section-page {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .section-page {
        padding: 30px 0;
    }
}



a {
    color: #333;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
    color: var(--main-color);
    cursor: pointer;
}

img {
    border: 0;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    width: 100%;
    height: auto;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
label {
    padding: 0;
    margin: 0;
    list-style: none;
}

input,
select,
textarea,
button {
    outline: none;
}

input:active,
select:active,
textarea:active,
button:active,
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

button {
    border: none;
    background-color: transparent;
}

select {
    -webkit-appearance: none;
    background-color: #fff;
    color: #333;
    height: 30px;
    line-height: 20px;
    background-image: url(../img/select-icon.svg);
    background-repeat: no-repeat;
    background-position: 96%;
    background-size: 12px;
}

/* ??±è????¸å??ç®­é?? */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input[type=date],
input[type=time] {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.fm-group {
    margin-bottom: 15px;
}

.fm-group label {
    display: block;
    color: #999;
    margin: 0 0 5px;
    font-size: 15px;
}

.fm-group textarea,
.fm-group input,
.fm-group select {
    color: #555;
    letter-spacing: 1.5px;
    width: 100% !important;
    font-size: 16px;
    border-radius: 5px;
    padding: .5rem .8rem !important;
    background-color: transparent;
    border: none;
    border: 1px solid #dedede;
    transition: .3s ease;
    background-color: #fff;
}

.fm-group input,
.fm-group select {
    height: 35px;
}

.fm-group textarea::placeholder,
.fm-group input::placeholder {
    color: #ccc;
}

.fm-group textarea:disabled,
.fm-group input:disabled,
.fm-group select:disabled {
    opacity: 1;
    background-color: #eee;
    color: #999;
    border: none;
    padding: 6px 8px !important;
}

.fm-group textarea:focus,
.fm-group input:focus,
.fm-group select:focus {
    border-color: var(--main-color);
}


.checkbox {
    display: inline-flex;
    align-items: center;
    margin: 5px 10px 5px 0;
}

.checkbox input[type='checkbox'] {
    width: 20px;
    height: 10px;
    margin: 0 10px 0 0;
    position: relative;
}

.checkbox input[type='checkbox']::before {
    position: absolute;
    top: -7px;
    left: -1px;
    width: 22px;
    height: 22px;
    content: '';
    display: block;
    border: 1px solid #dedede;
    background-color: #fff;
    transition: .3s ease;
}

.checkbox input[type='checkbox']::after {
    position: absolute;
    top: -6.5px;
    left: -1px;
    width: 22px;
    height: 22px;
    content: '\e5ca';
    font-family: 'Material Symbols Sharp';
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: var(--main-color);
    opacity: 0;
    transition: .3s ease;
}

.checkbox input[type='checkbox']:checked:before,
.checkbox input[type='checkbox']:checked:after {
    opacity: 1;
    border-color: rgba(36, 57, 95, 0.3);
}

.checkbox label {
    margin: 0;
    letter-spacing: 2px;
    color: #999;
    transition: .3s ease;
}

.checkbox input[type='checkbox']:checked+label {
    color: var(--main-color);
}

.search-flex {
    display: flex;
    align-items: center;
    height: 35px;
}

.search-flex select,
.search-flex input {
    padding: .5rem;
    height: 100%;
    width: 200px;
    color: var(--vice-color);
    border: 1px solid #dedede;
    border-radius: 5px 0 0 5px;
    border-right: none;
}

.search-flex.csi select,
.search-flex.csi input {
    margin: 0 .5rem 0 0;
    border-radius: 5px;
    border: 1px solid #dedede;
}

@media (max-width: 576px) {
    .csi {
        margin-bottom: 35px;
        margin-top: 15px;
    }
}


.search-flex.csi button {
    border-radius: 5px;
    height: 35px;
}

.search-flex select {
    padding: .5rem 1.5rem .5rem 1rem;
}

.search-flex button {
    background-color: var(--main-color);
    color: #fff;
    height: 100%;
    border-radius: 0 5px 5px 0;
    padding: .5rem 1rem;
    line-height: .7;
    letter-spacing: 3px;
    /*width: 80px;*/
    min-width: 80px;
}

@media (max-width: 576px) {
    .search-flex {
        width: 100%;
    }

    .search-flex input,
    .search-flex select {
        width: 100%;
    }
}

/* form */


.recaptcha {
    margin: 0 0 15px;
}

.recaptcha img {
    display: block;
    width: 250px;
    margin: 0 auto;
}

.swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

.swiper-button-next,
.swiper-button-prev {
    top: 35%;
    background-color: var(--main-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: #fff;
}

/* bg */

.dark-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    background-image: url(../img/bg-dark.webp);
}

.gray-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    /*background-color: #ededed;*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-image: url(../img/sect-bg.png);
}

.bg {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
    background-image: url(../img/sect-bg.png);
}

.sect-bg {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    background-image: url(../img/bg.jpg);
}

.sect-bg2 {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    background-image: url(../img/sect-bg2.webp);
}



.sect-light-bg {
    background-color: #f7f7f7;
}

.sect-dark-bg {
    background-color: #333;
}

/* font */

[class*=-h2] {
    font-size: 40px;
}

[class*=-h3] {
    font-size: 30px;
}

[class*=-h4] {
    font-size: 20px;
}

[class*=-h5] {
    line-height: 35px;
    font-size: 17px;
}

[class*=-h6] {
    line-height: 35px;
    font-size: 15px;
}

[class*=-smtext] {
    font-size: 14px;
}

[class*=white-] {
    color: #fff;
}

[class*=dark-] {
    color: #333;
}

[class*=gray-] {
    color: #777;
}

[class*=ltgray-] {
    color: #b6b6b6;
}

[class*=main-] {
    color: var(--main-color);
}

[class*=vice-] {
    color: var(--vice-color);
}

[class*=notice-] {
    color: var(--notice-color);
}

[class*=-lighter] {
    font-weight: 300;
}

[class*=-bolder] {
    font-weight: 700;
}

[class*=-xlbolder] {
    font-weight: 800;
}

[class*=-ls0] {
    letter-spacing: 0;
}

[class*=-ls1] {
    letter-spacing: 1px;
}

[class*=-ls2] {
    letter-spacing: 2px;
}

[class*=-ls3] {
    letter-spacing: 3px;
}

[class*=lh1] {
    line-height: 1;
}

[class*=lh15] {
    line-height: 1.5;
}



@media (max-width: 768px) {
    [class*=-h2] {
        font-size: 30px;
    }

    [class*=-h3] {
        font-size: 25px;
    }

    [class*=-h4] {
        font-size: 18px;
    }
}

.word-break {
    word-break: break-all;
}

/* bg-text */
.bg-text {
    background-color: #fff;
    padding: 2rem;
}

/* line */
.line-small {
    display: block;
    width: 50px;
    border-bottom: 2px solid #ddd;
    margin: 15px 0 17px;
}

.line-small.white {
    border-color: #fff;
}

.line-big {
    display: block;
    width: 50px;
    border: 5px solid #eee;
    margin: 15px 0 17px;
}

.line-end {
    margin: 0px -5px 0 auto;
    width: 50px;
    height: 1px;
    background-color: #ccc;
    transform: rotate(-45deg);
}

.no-gutter {
    margin-left: 0;
    margin-right: 0;
}

.no-gutter [class*=col-] {
    padding-left: 0;
    padding-right: 0;
}

.sm-gutter {
    margin-left: -5px;
    margin-right: -5px;
}

.sm-gutter [class*=col-] {
    padding-left: 5px;
    padding-right: 5px;
}

/* btn */
.btn-list {
    display: flex;
    justify-content: end;
}

.btn {
    position: relative;
    padding: 0.3rem 1.5rem;
    color: #fff;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    z-index: 2;
    background-color: #48b7a7;
    border-radius: 5px;
}

.btn:hover {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background: #fff;
}

/*.btn::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    display: block;
    content: '';
    background-color: #f8f8f8;
    transition: .3s ease;
    z-index: -1;
}

.btn::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    background-color: var(--main-color);
    transition: .3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
    transition: .3s ease .1s;
}

.btn:hover::after {
    width: 0;
}*/

.btn.btn-vice::after {
    background-color: var(--vice-color);
}

.btn.btn-cancel::after {
    background-color: #aaa;
}

.btn:focus,
.btn:active,
.btn:hover {
    box-shadow: none;
}

@media (max-width: 768px) {
    .btn {
        font-size: 14.5px;
        padding: .4rem 1rem .3rem;
    }
}

/* img */


.img-deco {
    display: block;
    margin: 0 auto;
    padding: 30px 40px;
    /*border: 5px solid rgba(72, 183, 166, 0.1);*/
}

@media (max-width: 576px) {
    .img-deco {
        width: 100%;
        padding: 20px;
        border-width: 3px;
    }
}

.calendar-iframe iframe {
    height: 800px;
    width: 100%;
}

@media (max-width: 768px) {
    .calendar-iframe iframe {
        height: 550px;
    }
}

@media (max-width: 576px) {
    .calendar-iframe iframe {
        height: 450px;
    }
}

/* modal */

.modal {
    padding-right: 0px !important;
}


.modal-content {
    border-radius: 5px;
    padding: 2rem 1rem;
    border: none;
}

.modal-xmark {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--notice-color);
}

.modal-icon {
    display: block;
    width: 150px;
    margin: 0 auto 1rem;
}

.modal-t {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    text-align: center;
    margin: 0 0 1rem;
}

@media (max-width: 576px) {
    .modal-t {
        font-size: 17px;
    }
}

/* ---- basic setting end ---- */


/* ---- gotop ---- */

.gotop {
    position: fixed;
    width: 45px;
    height: 180px;
    right: 15px;
    bottom: 50px;
    transition: display 0.5s ease-in-out;
    z-index: 10;
}

.gotop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .gotop {
        width: 38px;
        right: 5px;
    }
}

/* ---- gotop end ---- */


/* ---- right link ---- */

.right-link {
    position: fixed;
    bottom: 220px;
    right: 15px;
    z-index: 99;
    width: 40px;
}

.right-link a {
    text-align: center;
    display: block;
}

.right-link img {
    width: 100%;
}


/* ---- right link end ---- */


/* ---- bottom link ---- */

.bottom-link {
    position: fixed;
    width: 100vw;
    bottom: 0;
    height: 50px;
    z-index: 10;
    background-color: #e6e6e6;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.bottom-link a:not(:last-of-type) {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.bottom-link a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.bottom-link img {
    width: 80%;
    height: 60%;
    object-fit: contain;
}

/* ---- bottom link end ---- */

/* ---- header ---- */

.top-header {
    position: fixed;
    top: 0;
    z-index: 1002;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 3px 0;
}

.top-header-flex {
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 25px;
}

.top-header .th-link {
    font-size: 13px;
    display: flex;
    align-items: center;
    width: fit-content;
    position: relative;
    color: #fff;
    padding: 0 2px;
    transition: .3s ease;
}

.top-header .th-link:hover {
    cursor: pointer;
}

.top-header .th-link .material-symbols-sharp {
    line-height: .5;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-header .th-link .lang {
    font-size: 20px;
}

.top-header .th-link ul {
    display: none;
    position: absolute;
    right: 0;
    top: 22px;
    width: 120px;
}


@keyframes toggleFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .top-header .th-link:hover ul {
        display: block;
        animation: toggleFade .3s ease 0s 1 both;
    }
}


.top-header .th-link ul.active {
    display: block;
    animation: toggleFade .3s ease 0s 1 both;
}

.top-header .th-link ul li a {
    display: block;
    text-align: center;
    color: var(--main-color);
    background-color: #fff;
    padding: 10px 10px;
}

.top-header .th-link ul li:hover a {
    color: #fff;
    background-color: var(--main-color);
}

header {
    position: relative;
}

header .fixed-top {
    z-index: 100;
    top: 31px;
    transition: .3s ease;
    padding-right: 0px !important;
    background-color: rgba(0, 0, 0, .2);
}

.logo {
    width: 320px;
    min-width: 260px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}


.logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.logo img {
    object-fit: contain;
    width: 90%;
    height: 100%;
}

@media (max-width: 992px) {
    .logo {
        height: 55px;
    }

    .logo img {
        height: 95%;
    }
}

@media (max-width: 576px) {
    .logo {
        width: calc(100% - 70px);
    }

    .logo img {
        display: block;
        width: 270px;
    }
}


header .nav-menu {
    margin: 0;
    padding: 0;
    height: 100%;
}

@media(min-width: 992px) {
    header .nav-menu ul {
        display: flex;
        margin: 0;
        padding: 0;
        height: 100%;
    }
}

header .nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    list-style: none;
}

header .nav-menu>ul>li>a {
    display: block;
    position: relative;
    color: #fff;
    height: 100%;
    padding: 0 15px;
    transition: .3s ease;
    font-size: 16.5px;
    letter-spacing: 3px;
    line-height: 70px;
    font-weight: 500;
}

header .nav-menu>ul>li::before {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 0%;
    top: 0;
    left: 0;
    background: rgb(255, 255, 255, 0.3);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 90%);
    transition: .5s ease;
}



header .nav-menu>ul>li:hover::before {
    height: 100%;
}

@media (max-width: 1440px) {
    header .nav-menu>ul>li>a {
        font-size: 15px;
        padding: 0 10px;
    }
}

header .nav-menu .active>a {
    color: var(--main-color);
    text-decoration: none;
}

header .nav-menu li:hover>a {
    color: var(--main-color);
    text-decoration: none;
}

header .nav-menu .drop-down ul {
    display: none;
    position: absolute;
    /*left: calc(0% - 35px);*/
    top: 100%;
    height: auto;
    z-index: 99;
    overflow: hidden;
    transition: ease all 0.3s;
    list-style: none;
}


header .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
    background: rgb(242 242 242 / 60%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: .3s ease;
}

header .nav-menu .drop-down>a {
    display: flex;
    align-items: center;
}

header .nav-menu .drop-down>a::after {
    content: '\e313';
    font-family: 'Material Symbols Sharp';
    display: block;
    margin: 0 0 0 3px;
}

header .nav-menu .drop-down ul a {
    display: block;
    height: 100%;
    width: 100%;
    font-size: 15px;
    padding: 10px 15px;
    letter-spacing: 3px;
    font-weight: 500;
    text-align: center;
    text-transform: none;
    color: #333;
}

header .nav-menu .drop-down ul .active,
header .nav-menu .drop-down ul li:hover {
    background-color: rgba(255, 255, 255, 0.95) !important;
}

header .nav-menu .drop-down ul .active>a,
header .nav-menu .drop-down ul li:hover>a {
    color: var(--main-color);
}




/* ??¸å?®hover?????? */
header .nav-menu>ul>.drop-down:hover>ul {
    display: block;
    animation-name: header-animate;
    animation-duration: .5s;
    animation-delay: 0ms;
    animation-timing-function: ease;
}


@keyframes header-animate {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}



.mobile-nav {
    position: fixed;
    top: 25px;
    bottom: 0;
    z-index: 1000;
    overflow-y: auto;
    right: -280px;
    width: 280px;
    padding: 70px 0 0;
    background: #f8f8f8;
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #666666;
    padding: 10px 20px;
    font-weight: 600;
    transition: 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: var(--main-color);
    text-decoration: none;
}

.mobile-nav>ul>li {
    border-bottom: 1px solid #eee;
}

.mobile-nav>ul>li>a {
    padding: 15px 20px;
}

.mobile-nav .drop-down>a:after {
    padding-left: 10px;
    position: absolute;
    font-size: 18px;
    right: 15px;
    content: '\e313';
    font-family: 'Material Symbols Sharp';
}


.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 32px;
    z-index: 1001;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: none;
    font-size: 25px;
    transition: all 0.3s;
    outline: none !important;
    line-height: 1;
}

@media (max-width: 992px) {
    .mobile-nav-toggle {
        height: 55px;
        width: 55px;
    }
}

.mobile-nav-toggle:hover {
    cursor: pointer;
}

.mobile-nav-toggle .mobilenav-line span {
    display: block;
    width: 20px;
    height: 1px;
    background-color: #fff;
    transition: .3s ease;
}

.mobile-nav-toggle .mobilenav-line.active span {
    background-color: #aaa;
}

.mobile-nav-toggle .mobilenav-line span:nth-of-type(2) {
    margin: 6px 0;
}

.mobile-nav-toggle .mobilenav-line.active span:nth-of-type(2) {
    opacity: 0;
}

.mobile-nav-toggle .mobilenav-line.active span:nth-of-type(1) {
    transform: rotate(45deg) translateY(11px) translateX(0px);
}

.mobile-nav-toggle .mobilenav-line.active span:nth-of-type(3) {
    transform: rotate(-45deg) translateY(-10px) translateX(-1px);
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 500;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(255, 255, 255, 0.3);
    opacity: .8;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    right: 0;
}


/* ---- header end ---- */


/* ---- banner ---- */

.carousel-control-next-icon {
    background-image: url(../img/banner-next.svg);
}

.carousel-control-prev-icon {
    background-image: url(../img/banner-prev.svg);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 40px;
    height: 40px;
    transition: .3s ease;
}

@media (max-width: 992px) {

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        width: 20px;
        height: 20px;
    }
}

.carousel-indicators li {
    width: 50px;
}

.carousel-caption {
    position: absolute;
    right: 0;
    top: 40%;
    left: 0;
    z-index: 10;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
}

.carousel-caption h1 {
    font-size: 55px;
    color: #fff;
    font-weight: 400;
    mix-blend-mode: color-burn;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
    animation-delay: .5s;
}

.carousel-caption p {
    margin: 10px 0 0;
    font-weight: 500;
    color: var(--main-color);
    font-size: 20px;
    letter-spacing: 5px;
    animation-delay: 1s;
}

.carousel-caption .btn-list {
    animation-delay: 1.8s;
}

.carousel-indicators {
    bottom: 0;
}

.carousel-item img {
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel-item img {
        min-height: 450px;
    }

    .carousel-caption {
        top: 40%;
    }

    .carousel-caption h1 {
        font-size: 45px;
    }

    .carousel-caption p {
        width: fit-content;
        display: block;
        padding: 0 5px;
        margin: 10px auto 0 0;
    }
}

@media (max-width: 768px) {
    .carousel-caption {
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: 35px;
    }

    .carousel-caption p {
        margin: 10px auto 0;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        min-height: 400px;
    }

    .carousel-caption h1 {
        font-size: 30px;
    }

    .carousel-caption p {
        font-size: 15px;
    }
}


/* ---- banner end ---- */


/* ---- inbanner ---- */

.inbanner {
    position: relative;
}

.inbanner img {
    object-fit: cover;
    height: 350px;
}

.inbanner-caption {
    width: 100%;
    position: absolute;
    top: 48%;
}

.inbanner-caption h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 5px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .inbanner-caption h1 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .inbanner img {
        height: 300px;
    }

    .inbanner-caption h1 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .inbanner-caption h1 {
        font-size: 25px;
    }
}

/* ---- inbanner end ---- */

/* ---- breadcrumb ---- */
.breadcrumb {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin: 6px 0;
    justify-content: end;
}

.breadcrumb-item a {
    color: #aaa;
    letter-spacing: 3px;
    font-size: 14px;
}

.breadcrumb-item.active a {
    color: var(--main-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '|';
    color: #ccc;
}

@media (max-width: 768px) {
    .breadcrumb-item a {
        font-size: 13px;
    }
}

/* ---- breadcrumb end ---- */

/* ---- category ---- */
.category {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.category li {
    margin: 0 15px 0 0;
}

.category li a,
.category li.active a {
    position: relative;
    display: block;
    padding: .3rem 1.5rem;
    text-align: center;
    color: #fff;
    /*font-weight: 800;*/
    letter-spacing: 3px;
    /*z-index: 1;*/
    background-color: var(--vice-color);
    border-radius: 10px;
}

.category li:hover a,
.category li.active a {
    background-color: var(--main-color);
}

/*.category li a::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
    width: 0%;
    height: 100%;
    background-color: var(--main-color);
    transition: .3s ease;
}

.category li a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: var(--vice-color);
    transition: .3s ease;
}*/

/*.category li.active a::before,
.category li:hover a::before {
    width: 100%;
    transition: .3s ease .15s;

}

.category li.active a::after,
.category li:hover a::after {
    width: 0;
}
*/

@media(max-width: 992px) {
    .category {
        display: none;
    }
}

.categorySwiper .swiper-slide {
    width: fit-content;
    margin: 0 15px 0 0;
}

.categorySwiper .swiper-slide a {
    position: relative;
    display: block;
    padding: .3rem 1.5rem;
    text-align: center;
    color: #fff;
    font-weight: 400;
    letter-spacing: 3px;
    background-color: var(--vice-color);
}

.categorySwiper .swiper-slide a.active {
    background-color: var(--main-color);
}

@media (min-width: 992px) {
    .categorySwiper {
        display: none;
    }
}

/* ---- category end ---- */

/* ---- sidenav ---- */


@media (min-width: 992px) {
    .sidenav-sticky {
        position: sticky;
        top: 120px;
    }
}

.sidenav-t {
    font-size: 18px;
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid #ccc;
}

.sidenav li {
    margin: 0 0 6px;
}

.sidenav li a {
    padding: .8rem 1.2rem;
    display: block;
    background-color: var(--vice-color);
    color: #fff;
    border-radius: 10px;
}

.sidenav li:hover a,
.sidenav li.active a {
    background-color: var(--main-color);
}

/* ---- sidenav end ---- */

/* ---- pagination ---- */
.pagination {
    justify-content: center;
}

.pagination li {
    margin: 0 0 0 10px;
}

.pagination li a {
    display: flex;
    width: 45px;
    height: 30px;
    justify-content: center;
    align-items: center;
    color: #eee !important;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.pagination li.active a,
.pagination li:hover a {
    background-color: var(--main-color);
    color: #fff;
}

/* ---- pagination end ---- */

/* ---- main link ---- */
.main-link {
    display: block;
    padding: 1rem 2rem;
    color: #666;
    text-align: center;
    letter-spacing: 3px;
    background-color: #fff;
    border: 1px solid transparent;
}

.main-link:hover {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: #e5e5e5;
}

/* ---- main link end ---- */

/* ---- linkbox ---- */

.linkbox-img {
    transition: .3s ease;
}

.linkbox:hover .linkbox-img {
    opacity: .8;
}

.linkbox-t {
    padding: .3rem;
    text-align: center;
    color: #48b7a7;
    letter-spacing: 3px;
    font-weight: 500;
    font-size: 17px;
    transition: .3s ease;
    position: relative;
    border: 2px solid #48b7a7;
}

.linkbox:hover .linkbox-t {
    transition: .3s ease;
    border-color: transparent;
    color: #ffffff;
    background: #48b7a7;
}

/*.linkbox-t::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0%;
    height: 2px;
    content: '';
    background-color: rgba(72, 183, 166, 0.3);
    transition: .3s ease;
}*/

.linkbox:hover .linkbox-t::after {
    width: 100%;
}

@media (max-width: 768px) {
    .linkbox-t {
        font-size: 15px;
    }
}

/* ---- linkbox end ---- */

/* ---- news ---- */

.newsSwiper .swiper-slide {
    width: 350px;
    margin: 0 15px 0 0;
}

.newsSwiper .swiper-slide:last-of-type {
    margin: 0;
}

.news-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 0 15px;
    margin: 0 0 15px;
    border-bottom: 1px solid #eee;
}

.nl-img {
    display: block;
    width: 300px;
    min-width: 300px;
    height: 225px;
    overflow: hidden;
    transition: .3s ease;
    border-radius: 10px;
}

.nl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.news-list:hover .nl-img img {
    transform: scale(1.05);
    opacity: .8;
}

.nl-content {
    width: calc(100% - 320px);
}

.nl-date {
    width: fit-content;
    margin: 0 0 5px;
    background-color: var(--vice-color);
    color: #fff;
    font-size: 14px;
    padding: .2rem 1.5rem;
}

.nl-title {
    display: block;
    font-size: 20px;
    color: var(--vice-color);
    font-weight: 400;
    margin: 10px 0px;
    text-align: justify;
}

.nl-desc {
    color: #999;
    text-align: justify;
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: fit-content;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-list:hover .nl-title {
    color: var(--main-color);
}

.news-list:hover .nl-desc {
    color: #666;
}

@media (max-width: 1440px) {
    .nl-img {
        width: 225px;
        min-width: 225px;
        height: 220px;
    }

    .nl-content {
        width: calc(100% - 245px);
    }
}

@media (max-width: 768px) {
    .news-list {
        flex-wrap: wrap;
        position: relative;
    }

    .nl-img {
        min-width: unset;
        width: 100%;
        height: 350px;
    }

    .nl-content {
        width: 100%;
    }

    .nl-date {
        position: absolute;
        left: 10px;
        top: 0px;
        padding: .1rem .7rem;
        z-index: 2;
    }

    ;
}

@media (max-width: 576px) {
    .nl-img {
        width: 100%;
        height: 100%;
    }
}

.news-box {
    position: relative;
}

.news-date {
    position: absolute;
    top: 8px;
    left: 8px;
    display: block;
    width: fit-content;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 14px;
    padding: .2rem .6rem;
    transition: .3s ease;
    z-index: 1;
}

.news-box:hover .news-date {
    background-color: var(--main-color);
}

.news-title {
    display: block;
    font-weight: 400;
    font-size: 18px;
    margin: 8px 0;
    padding: 0 0 8px;
    color: var(--vice-color);
    text-align: justify;
    border-bottom: 1px solid #eee;
}

.news-box:hover .news-title {
    color: var(--main-color);
    border-color: rgba(72, 183, 166, 0.3);
}

.news-img {
    display: block;
    /* width: 300px;
    min-width: 300px;
    height: 225px;*/
    overflow: hidden;
    transition: .3s ease;
    border-radius: 10px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.news-box:hover .news-img img {
    transform: scale(1.2);
    /*opacity: .8;*/
}

.news-desc {
    text-align: justify;
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1.7;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: fit-content;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-box:hover .news-desc {
    color: #333;
}

@media (max-width: 768px) {
    .newsSwiper .swiper-slide {
        width: 250px;
    }

    .news-title {
        font-size: 16px;
    }

    .news-desc {
        font-size: 14px;
    }
}

.news-dt-date {
    font-size: 15px;
    color: #999;
}

.news-dt-share {
    display: flex;
    align-items: center;
}

.news-dt-share a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
}

.news-dt-share a img {
    width: 28px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .news-dt-share a img {
        width: 22px;
    }

    .news-dt-share a .material-symbols-sharp {
        font-size: 22px;
    }
}

/* ---- news end ---- */


/* ---- team ---- */

.team-box {
    position: relative;
}

.team-position,
.team-year {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--main-color);
    color: #fff;
    padding: .2rem .8rem;
    font-size: 14px;
}

.team-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.team-box::after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    position: absolute;
    right: -10px;
    bottom: -8px;
    z-index: -1;
}

.team-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--vice-color);
    text-align: right;
    margin: 6px 0;
}

/* ---- team end ---- */

/* ---- photo ---- */

.photo-box {
    position: relative;
}

.photo-box::after {
    position: absolute;
    width: 100%;
    height: 320px;
    top: -10px;
    right: -10px;
    display: block;
    content: '';
    background-color: #f5f5f5;
    z-index: -1;
    transition: .3s ease;
    border-radius: 10px;
}

.photo-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: .3s ease;
    border-radius: 10px;
}

.photo-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: .5rem 0;
    padding: 0 0 .5rem;
    border-bottom: 1px solid #eee;
}

.photo-view,
.photo-date {
    color: #999;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.photo-title {
    display: block;
    color: var(--main-color);
}

.photo-box:hover::after {
    background-color: rgba(72, 183, 166, 0.3);
}

.photo-box:hover .photo-img {
    opacity: .9;
}

@media (max-width: 1200px) {
    .photo-box::after {
        height: 280px;
    }

    .photo-img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .photo-box::after {
        height: 250px;
    }

    .photo-img {
        height: 250px;
    }

    .photo-flex {
        margin: .2rem 0;
        padding: 0 0 .2rem;
        display: block;
    }

    .photo-date .material-symbols-sharp {
        display: none;
    }

    .photo-date {
        display: block;
        background-color: var(--main-color);
        color: #fff;
        width: fit-content;
        position: absolute;
        top: 0px;
        left: 0px;
        font-size: 13px;
        padding: .2rem .5rem;
    }

    .photo-view {
        justify-content: end;
    }

    .photo-title {
        font-size: 15px;
        text-align: center;
    }
}

.lg-item {
    display: block;
    height: 300px;
}

@media (max-width: 1440px) {
    .lg-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .lg-item {
        height: 180px;
    }
}

.lg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-dt-flex {
    display: flex;
    align-items: center;
    justify-content: end;
}

.photo-dt-date,
.photo-dt-view {
    display: flex;
    align-items: center;
    margin: 0 0 0 .5rem;
    font-size: 14px;
    color: #999;
    line-height: 1;
}

.photo-dt-date .material-symbols-sharp,
.photo-dt-view .material-symbols-sharp {
    font-size: 20px;
}

/* ---- photo end ---- */


/* ---- activity ---- */
.activity-img {
    border: 1px solid #dedede;
}

.activity-box {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 0 10px 10px 10px;
    padding: 1rem 1.5rem;
    position: relative;
    margin: 0 0 2rem;
    transition: .3s ease;
}

.activity-box::after {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0 10px 10px 10px;
    background-color: rgba(72, 183, 166, 0.1);
    z-index: -1;
    top: 0px;
    right: 0px;
    transition: .3s ease;
}

.activity-box.disabled::after {
    background-color: rgba(0, 0, 0, 0.05);
}

.activity-box.upcoming::after {
    background-color: rgba(0, 0, 0, 0.1);
}

.activity-box:hover {
    border-color: var(--main-color);
}

.activity-box.upcoming:hover {
    border-color: var(--vice-color);
}

.activity-box.disabled:hover {
    border-color: #aaa;
}

.activity-box:hover::after {
    top: 8px;
    right: -8px;
}

.activity-state {
    position: absolute;
    background-color: var(--main-color);
    color: #fff;
    width: 150px;
    padding: .3rem 1rem;
    text-align: center;
    top: -34px;
    left: 0;
    border-radius: 8px 8px 0 0;
}

.activity-state.disabled {
    background-color: #ccc;
}

.activity-state.upcoming {
    background-color: var(--vice-color);
}

.activity-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--vice-color);
    width: 70%;
    margin: 0 1.5rem 0 0;
    text-align: center;
    transition: .3s ease;
}

.activity-box:hover .activity-title {
    color: var(--main-color);
}

.activity-desc {
    width: 100%;
    display: flex;
    align-items: start;
    /*justify-content: center;*/
    margin: 0 1.5rem 0 0;
}

.activity-desc li {
    min-width: 200px;
}

.activity-desc .acd-t {
    font-size: 14px;
    color: #999;
}

.activity-desc .ad-ct {
    color: var(--vice-color);
}

.activity-applybtn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: #fff;
    padding: .6rem 1rem;
    border-radius: 0 10px 10px 0;
    font-size: 14px;
    font-weight: 400;
    width: 130px;
    min-width: 130px;
}

.activity-applybtn.disabled {
    background-color: #ccc;
}

.activity-applybtn.upcoming {
    background-color: var(--vice-color);
}

@media (max-width: 992px) {
    .activity-box {
        flex-wrap: wrap;
        height: auto;
        padding: 0;
    }

    .activity-title {
        margin: 0 0 1rem;
        text-align: justify;
        width: 100%;
        padding: 1rem 1rem 0;
    }

    .activity-desc {
        justify-content: start;
        margin: 0 0 1rem;
        padding: 0 1rem 0;
    }

    .activity-applybtn {
        padding: .5rem 1rem;
        width: 100%;
        border-radius: 0 0 10px 10px;
    }
}

@media (max-width: 576px) {
    .activity-state {
        font-size: 13px;
        top: -30px;
        padding: .3rem .8rem;
    }

    .activity-title {
        font-size: 17px;
        padding: 1rem .7rem 0;
    }

    .activity-desc {
        padding: 0 .7rem 0;
    }

    .activity-desc {
        flex-wrap: wrap;
    }

    .activity-desc li {
        width: 100%;
    }

    .activity-desc li:not(:last-of-type) {
        margin: 0 0 .3rem;
    }
}

.activity-inbanner {
    padding: 95px 0 0 0;
    position: relative;
    background-color: var(--vice-color);
}


@media (max-width: 992px) {
    .activity-inbanner {
        padding: 80px 0 0 0;
    }
}

.adt-desc {
    padding: 1rem 1.5rem .5rem;
    border: 1px solid #dedede;
    height: 100%;
    margin: 0 0 .5rem;
    border-radius: 5px;
}

.adt-desc .acd-t {
    font-size: 14px;
    color: var(--main-color);
    margin: 0 0 .3rem;
}

.adt-applybtn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: #fff !important;
    padding: .8rem;
    border-radius: 5px;
}

.adt-applybtn.vice {
    background-color: var(--vice-color);
}

.adt-applybtn.red {
    background-color: var(--notice-color);
}

.adt-applybtn.disabled {
    background-color: #ccc;
}

.adt-applybtn.upcoming {
    background-color: var(--vice-color);
}

.adt-applybtn.w-95 {
    width: calc(50% - 7.5px);
}

.adt-applybtn:hover {
    background-color: var(--notice-color);
    color: #fff !important;
}

.adt-applybtn.disabled:hover {
    background-color: #ccc;
}

.adt-applybtn.upcoming:hover {
    background-color: var(--vice-color);
}

.adt-desc .ad-ct {
    color: var(--vice-color);
}

.adt-content {
    border: 1px solid #dedede;
    padding: 3rem 5rem;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .adt-desc {
        padding: .6rem 1rem .3rem;
    }

    .adt-content {
        padding: 1.5rem 1rem;
    }

    .adt-content img {
        width: 100% !important;
    }

    .adt-applybtn {
        padding: .5rem;
    }
}


/* ---- activity end ---- */


/* ---- login ---- */

.login-block {
    width: 100%;
    height: 60%;
    padding: 20% 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background-color: #fff;
    border-radius: 10px;
    width: 55%;
    max-width: 1050px;
    padding: 2.5rem 3rem;
}

.login-logo {
    width: 70%;
    min-width: 220px;
    margin: 0 auto 1rem;
    object-fit: contain;
    display: block;
}

@media (max-width: 1440px) {
    .login-box {
        width: 90%;
    }
}

@media (max-width: 992px) {
    .login-box {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .login-box {
        width: 420px;
    }
}

@media (max-width: 576px) {
    .login-logo {
        display: none;
    }

    .login-block {
        padding: 35% 15px;
    }

    .login-box {
        padding: 2rem 1rem;
        width: 100%;
    }
}

.login-link {
    display: flex;
    justify-content: space-between;
}

.login-link li {
    color: #ccc;
}

.login-link li a {
    color: var(--vice-color);
    display: block;
    font-size: 15px;
}

.login-link li:hover a {
    color: var(--main-color);
}

@media (max-width: 992px) {
    .login-link li a {
        margin: 0 15px;
    }
}

/* ---- login end ---- */

/* ---- member  ---- */

.member-inbanner {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 95px;
    background-color: rgba(0, 0, 0, 0.5);
}

.member-block {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .member-block {
        height: 100%;
    }
}

.member-content {
    width: 100%;
    margin: 180px 12%;
    max-width: 1600px;
}

.member-box {
    background-color: #fff;
    padding: 2.5rem 3rem;
    border-radius: 10px;
}

.member-nav-t {
    display: flex;
    justify-content: space-between;
    margin: 0 0 .6rem;
    padding: 0 0 .6rem;
    border-bottom: 1px solid #ccc;
    font-size: 20px;
    font-weight: 600;
    color: var(--vice-color);
}

.member-level {
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    padding: .3rem .5rem;
}

@media (max-width: 1440px) {
    .member-content {
        margin: 180px 5%;
    }
}

@media (max-width: 992px) {
    .member-content {
        margin: 180px 5% 50px;
    }

    .member-inbanner {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .member-content {
        margin: 130px 15px 50px;
    }

    .member-box {
        padding: 1.5rem 1rem;
    }
}

.member-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 0;
    color: var(--main-color);
    border-bottom: 1px solid #eee;
}

.member-list.payment .ml-amount {
    color: var(--vice-color);
}

.member-list.payment li a:hover {
    cursor: default;
}

.member-list li.read a {
    color: #999;
}

.member-list .ml-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: fit-content;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.member-list .ml-time {
    font-size: 13px;
    color: #ccc;
    margin: 0 0 0 .5rem;
    min-width: 145px;
    text-align: right;
    order: 2;
}

@media (max-width: 576px) {
    .member-list li a {
        flex-wrap: wrap;
    }

    .member-list .ml-time {
        min-width: unset;
        width: 100%;
        margin: 0 0 .3rem;
        order: 1;
        text-align: left;
    }
}

/* ---- member end ---- */


/* ---- contact ---- */


.contact-logo {
    display: block;
    min-width: 160px;
    max-width: 250px;
    margin: 0 auto 0 0;
}

.contact-info {
    margin: 0 0 1rem;
    border: 1px solid #ededed;
    padding: .5rem 1rem;
    border-radius: 5px;
}

.contact-info .ci-t {
    font-size: 15px;
    color: var(--main-color);
}

.contact-info .ci-ct {
    color: var(--vice-color);
}

.map iframe {
    border: none;
    width: 100%;
    height: 350px;
    border-radius: 5px;
}

@media (max-width: 992px) {
    .contact-logo {
        margin: 0 auto 0;
        max-width: 200px;
    }
}

.contact-form {
    padding: 2.5rem 3rem;
    border-radius: 5px;
    background-color: #f8f8f8;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/sect-bg1.svg);
}

.contact-form .fm-group label {
    color: var(--main-color);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem 1rem;
    }
}

/* ---- contact end ---- */

/* ---- footer ---- */


footer {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    color: #fff;
    background-color: var(--vice-color);
    padding: 35px 0px 25px;
    letter-spacing: 2px;
}

footer a {
    color: #fefefe;
    font-size: 14.5px;
}

footer a:hover {
    color: #cccccc;
}

.f-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-logo img {
    display: block;
    width: 50%;
    min-width: 150px;
}

@media (max-width: 1200px) {
    footer {
        padding: 30px 0 8px;
    }

    .f-logo img {
        width: 200px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 30px 0 60px;
    }
}

.f-link-t {
    border-bottom: 1px solid #aaa;
    margin: 0 0 10px;
    padding: 0 0 8px;
    color: var(--main-color);
}

.f-sns {
    display: flex;
}

.f-sns li {
    margin: 0 6px 0 0;
}

.f-sns li a img {
    display: block;
    width: 30px;
}

.copyright {
    color: #aaa;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 768px) {
    footer {
        padding: 30px 0 60px;
    }

    .f-link-t {
        text-align: center;
    }

    .f-link li a {
        text-align: center;
        display: block;
    }

    .f-sns {
        justify-content: center;
    }

    .f-sns li {
        margin: 0 3px;
    }
}

/* ---- footer end ---- */


/* ---- table ----*/
.table-m .table-ti {
    background: #48b7a7;
    color: #fff;
}

.table-m td,
.table-m th {
    padding: 0 20px;
    vertical-align: middle;
}

.table-calendar .gray {
    background: #dee2e6;
}

.table-calendar .table-ti {
    color: var(--main-color);
}

.table-calendar td,
.table-calendar th {
    vertical-align: middle;
}

.table-calendar .activity-applybtn {
    display: inline-block;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: #fff;
    padding: .3rem 1rem;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    width: 130px;
    min-width: 130px;
    border: 1px solid var(--main-color);
}

.table-calendar a.activity-applybtn:hover {
    background-color: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

/* ---- table end----*/

.badge {
    background: #6a6b6b;
    color: #fff;
    font-weight: 400;
    padding: 6px 10px;
    font-size: 14px;
}

.picbox {
    border-radius: 10px;
}

.picbox img {
    transition: .6s ease;
    border-radius: 10px;
}

.picbox:hover img {
    transform: scale(1.08);
    opacity: 0.9;
}

.picbox-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 400;
    font-size: 22px;
    text-align: center;
    padding: 15px;
    letter-spacing: 2px;
    background-color: rgba(0, 0, 0, 0.7);
    transition: .3s ease;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
    border-radius: 10px;
}

.picbox:hover .picbox-text {
    background-color: rgba(0, 0, 0, 0);
}

.contents {
    display: contents;
}

.g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -78px 0 0 0 !important;
    width: 302px !important;
    height: 76px !important;
    z-index: -999999;
    opacity: 0;
}

.table-m2 th {
    background: var(--main-color);
    color: #fff;
}