/*All Style*/
/* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} */

* {
    scroll-behavior: smooth;
    /* word-break: break-all; */
    word-wrap:break-word;
}

section {
    overflow: hidden !important;
}

a {
    color: #333;
}

.list {
    list-style: none;
    padding: 0;
}

.flex-direction-column-reverse {
    flex-direction: column-reverse;
}

.box-shadow {
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
}

.color-blue {
    color: #0056b3
}

.color-hover-blue:hover {
    color: #0056b3 !important;
}

.bg-blue {
    background: #e5f7ff
}

.bg-light-green {
    background: #A6B37B;
}

.bg-line {
    background: #04C303;
}

/*Menu*/
.menu-style>li {
    position: relative;
}

.dropdown-item {
    color: #000;
    transition: .3s;
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
    color: #000;
    background: linear-gradient(120deg, #c8e3ff 0%, #e6f2ff 50%, #c8e3ff 100%);
    transition: .3s;
}


/*Style*/
.header .navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0px;
    z-index: 4;
}

.navbar.active {
    position: fixed;
    box-shadow: 0 10px 15px #e1e1e1;
    animation: slideIn 0.5s cubic-bezier(0.33, 0.85, 0.4, 0.96) forwards;
    padding: 15px;
}

@keyframes slideIn {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

.header .navbar .navbar-brand {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1E3D58;
}

.navbar-nav .nav-link {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
}

.navbar-nav .nav-link:hover {
    color: #66b0ff;
}

.card-icon {
    aspect-ratio: 1 / 1;
    max-width: 100px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    margin-inline: auto;
    margin-bottom: 15px;
    color:#fff;
    background: linear-gradient(45deg, #27b9ff, #a8e4ff) !important;
    box-shadow: #0093cd 3px 3px 5px 0px inset;
}



.mask {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: #912727;
    padding: 10px;
    text-shadow: 1px 1px #ffffff;
}

.article_list_btn {
    width: 100%;
    min-width: 150px;
    background: #1a74d4;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    font-weight: 700;
    white-space: nowrap;
    vertical-align: middle;
    border: 0;
    border-radius: .25rem;
    font-size: 18px;
    display: inline-block;
    text-align: center;
}

.article_list_btn:focus,
.article_list_btn:hover {
    background: linear-gradient(120deg, #0056b3 0%, #1a74d4 50%, #0056b3 100%);
    color: #fff;
}

.article_list_link {
    display: block;
    padding: 8px 10px;
    margin: 0 0 10px 0;
    background: #e6f2ff;
    border-radius: .25rem;
    font-weight: 700;
    color: #343a40;
}

.article_list_link:focus,
.article_list_link:hover {
    background: linear-gradient(120deg, #c8e3ff 0%, #e6f2ff 50%, #c8e3ff 100%);
}

.enlargeIn {
    -webkit-animation-name: enlargeIn;
    animation-name: enlargeIn;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}

@-webkit-keyframes enlargeIn {
    from {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
    }

    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes enlargeIn {
    from {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
    }

    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

/*top鍵*/
.toTop-arrow {
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    opacity: 0.6;
    color: #fff;
    background: #000;
    cursor: pointer;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: none;
    transition: .3s;
}

.toTop-arrow::before {
    transform: rotate(-45deg) translate(0, -50%);
    left: 0.5rem;
}

.toTop-arrow::after {
    transform: rotate(45deg) translate(0, -50%);
    right: 0.5rem;
}

.toTop-arrow:focus {
    outline: none;
}

.toTop-arrow:hover {
    opacity: 1;
    transition: .3s;
}

/*top鍵*/

/*Rwd*/
@media (max-width: 575px) {
    .mask {
        min-height: 250px;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 10px 0;
    }

    .nav-link {
        padding: .5rem 1rem;
    }

    .mask {
        min-height: 350px;
        font-size: 28px;
    }

    header {
        position: initial;
        background: #fff;
    }

    header>nav>a,
    header>nav>a:hover {
        color: #000;
    }

    .navbar-dark .navbar-nav .nav-link {
        color: #000;
    }

    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover {
        color: #000;
    }

    .dropdown-menu {
        padding: 0;
    }

    .dropdown-item {
        padding: .4rem 1.5rem;
    }

    .article_list_btn {
        text-align: left;
    }
}

@media (min-width: 575px) {
    .header .navbar .navbar-brand {
        font-size: 30px;
    }
}

@media (min-width: 768px) {}

@media (min-width: 992px) {


    .menu-style>li>a:after {
        content: "";
        transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        -webkit-transition-duration: 0.3s;
        width: 0px;
        right: 0px;
        background: #65bcf6;
        height: 3px;
        display: block;
        position: absolute;
        bottom: 0px;
    }

    .menu-style>li:hover>a:after {
        width: 100%;
        left: 0;
    }

    .fix {
        position: absolute;
        min-width: 150px;
        text-align: center;
        background: #fff;
    }

    .flex-direction-column--lg {
        flex-direction: column;
    }
}

@media (min-width:768px) {
    .flex-direction-row--md {
        flex-direction: row;
    }
}

@media (min-width:1200px) {}