@charset "UTF-8";
/* --------------------------------------------------
 Block
-------------------------------------------------- */

/* Common Block --------------- */

.comm-blc {
    max-width: 1200px;
    padding: 0 2%;
    margin: 0 auto;
    position: relative;
    box-sizing: content-box;
}

/* layout-style01 --------------- */

.layout-style01 {
    padding: 20px 0 0;
}

.layout-style01 > .comm-blc {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.layout-style01 .inner-blc {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.layout-style01 .side-bar {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    width: 80px;
    line-height: 1.2;
    padding: 0;
    margin-bottom: 0;
    position: sticky;
    top: 74px;
    z-index: 6;
}

.layout-style01 .side-bar .home {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.layout-style01 .side-bar .home a {
    text-decoration: none;
    padding: 15px;
    display: block;
}

.layout-style01 .side-bar .home .icon::after {
    font-family: "Font Awesome 5 Free";
    content: "\f015";
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.layout-style01 .side-bar .user {
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
}

.layout-style01 .side-bar .favorite a {
    text-decoration: none;
}

.layout-style01 .side-bar .favorite .icon::after {
    font-family: "Font Awesome 5 Free";
    content: "\f004";
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.layout-style01 .side-bar .recent a {
    text-decoration: none;
}

.layout-style01 .side-bar .recent .icon::after {
    font-family: "Font Awesome 5 Free";
    content: "\f1da";
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.layout-style01 .side-bar .list {
    height: calc(100vh - 160px);
    display: block;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-color: #00000000;
}

.layout-style01 .side-bar .list::-webkit-scrollbar {
    background: transparent;
    width: 3px;
}

.layout-style01 .side-bar .list::-webkit-scrollbar-thumb {
    background: #00000000;
    border-radius: 3px;
}

.layout-style01 .side-bar .list .item {
    width: auto;
    margin: 0 0 10px 0;
    position: relative;
}

.layout-style01 .side-bar .list .item:nth-child(8n+8) {
    margin-right: 0;
}

.layout-style01 .side-bar .list .item > a,
.layout-style01 .side-bar .list .item .tag-link {
    background: linear-gradient(161deg, #3e3c56, #1a1a1a 51.68%, #150e21), linear-gradient(90deg, #ffe3ab, #ffffff 31.53%, #ffb521 64.87%, #ffd277);
    background-origin: border-box;
    background-clip: content-box,border-box;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.layout-style01 .side-bar .list .item > a::before,
.layout-style01 .side-bar .list .item .tag-link::before {
    transform: scaleY(0);
    transform-origin: top right;
    border-radius: 8px;
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(171deg, #ffffb9, #feae0b 51.68%, #c37b00), linear-gradient(90deg, #ffe3ab, #ffffff 31.53%, #ffb521 64.87%, #ffd277);
    background-origin: border-box;
    background-clip: content-box,border-box;
    padding: 2px;
    z-index: 0;
    transition: transform .3s ease;
}

.layout-style01 .side-bar .list .item > a.active::before,
.layout-style01 .side-bar .list .item .tag-link.active::before {
    transform: scaleY(1);
    transform-origin: bottom right;
}

.layout-style01 .side-bar .list .item > a:hover::before,
.layout-style01 .side-bar .list .item .tag-link:hover::before {
    transform: scaleY(1);
    transform-origin: bottom right;
}

.layout-style01 .side-bar .list .item i {
    font-size: 32px;
}

.layout-style01 .side-bar .list .item .icn {
    width: 40px;
    margin: 5px auto;
    display: block;
    position: relative;
}

.layout-style01 .side-bar .list .item .icn img {
    transition: all .2s ease-in-out;
}

.layout-style01 .side-bar .list .item > a:hover .icn img,
.layout-style01 .side-bar .list .item .tag-link:hover .icn img {
    transform: scale(1.3);
}

.layout-style01 .side-bar .list .item > a.active .icn img,
.layout-style01 .side-bar .list .item .tag-link.active .icn img {
    transform: scale(1.4);
}

.layout-style01 .side-bar .list .item .txt {
    color: #ffffffcc;
    font-size: 12px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 auto 5px auto;
    display: block;
    position: relative;
}

.layout-style01 .side-bar .list .item > a.active .txt,
.layout-style01 .side-bar .list .item .tag-link.active .txt {
    color: #fff;
    text-shadow: 1px 1px 5px #000;
}

.layout-style01 .side-bar .list .item > a:hover .txt,
.layout-style01 .side-bar .list .item .tag-link:hover .txt {
    color: #fff;
    text-shadow: 1px 1px 5px #000;
}

.layout-style01 .main-content {
    width: calc(98% - 80px);
}

/* box-style01 --------------- */

.box-style01 {
    margin: 2% 0 20px;
}

.box-style01 .ttl {
    padding: 7px 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}

.box-style01 .ttl .icn {
    width: 40px;
    text-align: center;
    margin-right: 4px;
}

.box-style01 .ttl .txt01 {
    color: #fff;
    font-size: 170%;
    font-weight: 500;
    line-height: 1.4;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .box-style01 .ttl .txt01 {
        font-size: 140%;
    }
}

@media screen and (max-width: 480px) {
    .box-style01 .ttl .txt01 {
        font-size: 115%;
    }
}

/* swiper-container-1 --------------- */

.swiper-container-1 {
    width: 100%;
    overflow: hidden;
}

.swiper-container-1 .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 400px;
}

.swiper-container-1 .swiper-slide img {
    display: block;
    width: 100%;
}

.swiper-container-1 .swiper-button-next,
.swiper-container-1 .swiper-button-prev {
    transform: scale(.6);
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px black, 0 0 15px black;
}
  
.swiper-container-1 .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}
  
.swiper-container-1 .swiper-button-next {
    right: 5px;
}
  
.swiper-container-1 .swiper-button-prev {
    left: 5px;
}

@media (max-width:1330px) {
    .swiper-container-1 .swiper-slide {
        width: 32vw;
    }
}

@media (max-width:480px) {
    .swiper-container-1 .swiper-slide {
        width: 60vw;
    }
}

/* swiper-container-2 --------------- */

.swiper-container-2 {
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 auto;
    padding: 30px 10px;
    overflow: auto;
    overflow: hidden;
    margin-top: -17px;
}
  
.swiper-container-2 .swiper-slide {
    width: 100%;
    max-width: 650px;
    height: auto !important;
    box-shadow: 0 0 0;
    background-size: 100%;
    margin-top: 0 !important;
}
  
.swiper-container-2 .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
  
.swiper-container-2 .swiper-button-next,
.swiper-container-2 .swiper-button-prev {
    transform: scale(.6);
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px black, 0 0 15px black;
}
  
.swiper-container-2 .swiper-pagination-bullet {
    background-color: #fff;
    padding: 5px;
    border: 1px solid #fff;
}
  
.swiper-container-2 .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}
  
.swiper-container-2 .swiper-button-next {
    right: 5px;
}
  
.swiper-container-2 .swiper-button-prev {
    left: 5px;
}

@media (max-width:767px) {
    .swiper-container-2 .swiper-slide {
        width: 90%;
    }
}
  
@media (max-width: 500px) {
    .swiper-container-2 .swiper-slide {
        width: 85%;
        height: auto !important;
        box-shadow: 0 0 0;
        background-size: 100%;
        margin-top: 0 !important;
    }
}

/* page-blc --------------- */

.page-blc {
    padding: 0 0 30px;
}

.page-blc.providers > .comm-blc {
    max-width: none;
}

.page-blc .post-detail {
    background: linear-gradient(45deg, #3e3c5600 0%, #810000, #150e2100 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: rgb(255 255 255 / 18%) 0px 0px 4px 2px inset;
}

.page-blc .post-detail .main-img {
    text-align: center;
}

.page-blc .post-detail .detail {
    color: #fff;
    line-height: 1.6;
    margin-top: 20px;
}

.page-blc .nextprev {
    margin-top: 20px;
    padding: 7px 10px;
}

.page-blc .nextprev a {
    color: #fff;
}

/* member-blc --------------- */

.member-blc {
    background: linear-gradient(180deg, #3e3c56e8, #1a1a1acb 51.68%, #150e21ce);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: rgb(255 255 255 / 18%) 0px 0px 4px 2px inset;
}

.member-blc .ttl {
    color: #fff;
    font-size: 180%;
    text-align: center;
    margin-bottom: 10px;
}

.member-blc .ttl .txt01 {
    display: inline-block;
}

.member-blc .register-img {
    width: 100%;
    max-width: 50%;
    margin: 0 auto 15px;
    box-sizing: border-box;
}

.member-blc .form-blc {
    max-width: 400px;
    margin: 0 auto;
}

.member-blc .form-blc .row-blc {
    margin-bottom: 4%;
}

.member-blc .form-blc .txt-label {
    color: #fff;
}

.member-blc .form-blc .fill-item {
    display: flex;
}

.member-blc .form-blc .fill-item .icn {
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 44px;
    text-align: center;
    border: 1px solid #ffffff3d;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 4px 7px;
    box-sizing: border-box;
}

.member-blc .form-blc .fill-item input[type=text],
.member-blc .form-blc .fill-item input[type=password],
.member-blc .form-blc .fill-item select {
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: calc(100% - 44px);
    border: 1px solid #ffffff3d;
    border-left: none;
    border-radius: 10px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding: 4px 7px;
    box-sizing: border-box;
}

.member-blc .form-blc .fill-item input[type=text]::placeholder,
.member-blc .form-blc .fill-item input[type=password]::placeholder,
.member-blc .form-blc .fill-item select::placeholder {
    color: #ffffffaf;
}

.member-blc .form-blc .btn-style02 {
    text-align: center;
    margin-top: 30px;
}

.member-blc .form-blc .btn-style02 .btn-elem {
    font-size: 120%;
}

.member-blc .form-blc .btn-style02 .btn-elem .txt01 {
    padding-left: 30px;
    padding-right: 30px;
}

.member-blc .form-blc .txt-bottom {
    color: #fff;
    text-align: center;
    margin-top: 10px;
}

.member-blc .form-blc .txt-bottom .btn-txt {
    color: #FFF399;
    font-weight: 700;
    text-decoration: none;
}

.member-blc .form-blc .txt-bottom .btn-txt:hover {
    text-decoration: underline;
}

.member-blc .form-blc .bank-list {
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
    padding: 2%;
    display: flex;
    flex-wrap: wrap;
}

.member-blc .form-blc .bank-list .item {
    width: 15%;
    text-align: center;
    cursor: pointer;
    margin: 0 2% 2% 0;
}

.member-blc .form-blc .bank-list .item:nth-of-type(6n+6) {
    margin-right: 0;
}

.member-blc .form-blc .bank-list .item .img {
    width: 100%;
    padding: 4px;
    border-radius: 15px;
    border: solid 1px #ccc;
    opacity: 0.7;
    box-sizing: border-box;
}

.member-blc .form-blc .bank-list .item:hover .img,
.member-blc .form-blc .bank-list .item .img.active {
    opacity: 1;
}

.member-blc .form-blc .invalid-feedback {
    display: block;
    color: #ff6574;
    padding: 5px 0px;
    margin-top: 0.25rem;
}

.member-blc .step-status {
    width: 50%;
    display: flex;
    justify-content: center;
    margin: 10px auto;
}

.member-blc .step-status .item {
    background: #babcbd;;
    width: calc(25% - 3px);
    height: 9px;
    margin-right: 1px;
}

.member-blc .step-status .item.active {
    background: linear-gradient(150deg, #feca6b, #e76f2a);
}

.member-blc .step-status .item:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.member-blc .step-status .item:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-right: 0;
}

@media screen and (max-width: 767px) {
    .member-blc .ttl {
        font-size: 140%;
    }
}

@media screen and (max-width: 480px) {
    .member-blc .ttl {
        font-size: 115%;
    }
}

/* form-style01 --------------- */

.form-style01 {
    max-width: 585px;
    padding: 4%;
    margin: 0 auto;
}

.form-style01.non-max-width {
    max-width: none;
    padding: 0;
}

.form-style01 .border-blc {
    position: relative;
    z-index: 1;
}

.form-style01 .border-blc .inner {
    padding: 10px 12px 10px;
}

/* form-control --------------- */

.form-control {
    box-sizing: border-box;
}

/* modal-style01 --------------- */

.modal-style01 .modal-content {
    background-color: transparent;
    border-color: transparent;
}

/* form-style01 in modal-style01 --------------- */

.modal-style01 .form-style01 {
    padding: 2px;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
}

.modal-style01 .form-style01 .btn-close {
    background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    cursor: pointer;
}

.modal-style01 .form-style01 .form-check .form-check-input {
   margin-top: 7px;
}

.modal-style01 .form-style01 .form-blc .btn-style01 {
    text-align: center;
    margin-top: 30px;
}

.modal-style01 .form-style01 .form-blc .btn-style01 .btn-elem {
    font-size: 120%;
    padding-left: 30px;
    padding-right: 30px;
}

.modal-style01 .form-style01 .form-blc .fill-item .btn-style01 {
    margin-top: 0;
}

/* card-style01 --------------- */

.card.card-style01 {
    background: linear-gradient(180deg, #081944 0%, #060606 100%);
    color: #fff;
    border: none;
    box-shadow: 2px 2px 18px 0px rgba(0,0,0,0.47);
}

.card.card-style01 .card-header {
    background: linear-gradient(180deg, #3E56FF 0%, #372cd5 70%);
    color: #fff;
    font-size: 120%;
}

/* --------------------------------------------------
 title
-------------------------------------------------- */

/* page-ttl --------------- */

.page-ttl {
    color: #fff;
    font-size: 180%;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}

.page-ttl .txt01 {
    display: inline-block;
    text-shadow: 0 0 5px white, 0 0 10px #d88f01, 0 0 15px #ffbc3a;
}

@media screen and (max-width: 767px) {
    .page-ttl {
        font-size: 140%;
    }
}

/* ttl-style01 --------------- */

.ttl-style01 {
    color: #fff;
    font-size: 180%;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}

.ttl-style01 .txt01 {
    display: inline-block;
    text-shadow: 0 0 5px white, 0 0 10px #d88f01, 0 0 15px #ffbc3a;
}

@media screen and (max-width: 767px) {
    .ttl-style01 {
        font-size: 140%;
    }
}

/* ttl-style02 --------------- */

.ttl-style02 {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ttl-style02 .txt-blc {
    color: #fff;
    font-size: 180%;
    font-weight: 600;
    line-height: 1.6;
    flex: 1;
}

.ttl-style02 .txt01 {
    display: inline-block;
    text-shadow: 0 0 5px white, 0 0 10px #d88f01, 0 0 15px #ffbc3a;
}

.ttl-style02 .btn-blc {
    margin-left: 10px;
}

.ttl-style02 .btn-blc a {
    color: #fff;
    font-size: 95%;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .ttl-style02 .txt-blc {
        font-size: 140%;
    }
}

@media screen and (max-width: 480px) {
    .ttl-style02 .txt01 {
        width: 100%;
        flex: auto;
    }
    .ttl-style02 .btn-blc {
        width: 100%;
        margin-left: 0;
    }
}

/* --------------------------------------------------
 Table
-------------------------------------------------- */

/* Common Table --------------- */

.tbl-comm {
    border-top: 1px dotted #fff;
}

.tbl-comm th, .tbl-comm td {
    padding: 7px 15px;
    border-bottom: 1px dotted #ccc;
    box-sizing: border-box;
}

.tbl-comm th {
    background-color: #fff;
    width: 20%;
}

.tbl-comm th[align="center"], .tbl-comm td[align="center"] {
    text-align: center;
}

.tbl-comm th[align="right"], .tbl-comm td[align="right"] {
    text-align: right;
}

.tbl-respon {
    overflow-x: auto;
}

.tbl-respon .tbl-comm {
    min-width: 600px;
}

.note-tbl {
    color: red;
    text-align: center;
    margin: 2% 0;
    display: none;
}

/* Form Table --------------- */

.tbl-form th {
    background-color: #fff;
    width: 25%;
    padding: 2%;
    text-align: left;
}

.tbl-form td {
    padding: 2%;
    text-align: left;
}

.tbl-form th, .tbl-form td {
    border-bottom: 1px dotted #ccc;
}

/* tblRespon --------------- */

.tbl-respon {
    overflow-x: auto;
}

.note-tbl-respon {
    font-size: 80%;
    color: red;
    margin: 2% 0;
    text-align: center;
    display: none;
}

@media screen and (max-width: 767px) {
    /* Common Table --------------- */
    .tbl-comm th, .tbl-comm td {
        font-size: 90%;
    }
    .tbl-comm th {
        width: 30%;
    }
    .tbl-comm.single-row th, .tbl-form.single-row th {
        display: block;
        font-weight: bold;
        padding-bottom: 0;
    }
    .tbl-comm.single-row td, .tbl-form.single-row td {
        display: block;
    }
    .note-tbl {
        display: block;
    }
    /* Form Table --------------- */
    .tbl-form th {
        width: auto;
    }
    /* tblRespon --------------- */
    .note-tbl-respon {
        display: none;
    }
}

@media screen and (max-width: 650px) {
    /* tblRespon --------------- */
    .note-tbl-respon {
        display: block;
    }
}

/* Dark Table --------------- */

.table-dark th,
.table-dark td {
    color: #fff;
}

/* --------------------------------------------------
 List
-------------------------------------------------- */

/* Common List --------------- */

.list-comm li {
    width: 48%;
    float: left;
}

.list-comm li:nth-of-type(2n) {
    float: right;
}

/* list-style01 --------------- */

.list-style01 {
    display: flex;
    flex-wrap: wrap;
}

.list-style01 .item {
    background: linear-gradient(180deg, #3e3c5691, #1a1a1a8F 51.68%, #150e2191);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 32%;
    border-radius: 10px;
    padding-bottom: 20px;
    margin: 0 2% 2% 0;
    overflow: hidden;
    position: relative;
    box-shadow: rgb(255 255 255 / 18%) 0px 0px 4px 2px inset;
    box-sizing: border-box;
}

.list-style01 .item:hover {
    filter: brightness(1.1);
}

.list-style01 .item:nth-child(3n+3) {
    margin-right: 0;
}

.list-style01 .item a {
    text-decoration: none;
}

.list-style01 .item .img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 54%;
    margin-bottom: 10px;
}

.list-style01 .item .subj {
    color: #fff;
    font-size: 110%;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
    padding: 0 4%;
    margin-bottom: 10px;
}

.list-style01 .item .txt {
    color: #fff;
    font-size: 90%;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
    padding: 0 4%;
    margin-bottom: 20px;
}

.list-style01 .item .btn-blc {
    text-align: center;
    padding: 0 4%;
}

.list-style01 .item .btn-blc .btn-elem {
    font-size: 120%;
}

@media screen and (max-width: 767px) {
    .list-style01 .item {
        width: 49%;
    }
    .list-style01 .item:nth-child(3n+3) {
        margin-right: 2%;
    }
    .list-style01 .item:nth-child(2n+2) {
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .list-style01 .item {
        width: 100%;
        margin-right: 0;
    }
    .list-style01 .item:nth-child(3n+3) {
        margin-right: 0;
    }
}

/* list-style02 --------------- */

.list-style02 {
    display: flex;
    flex-wrap: wrap;
}

.list-style02 .item {
    width: 11.625%;
    margin: 0 1% 1% 0;
    position: relative;
    box-sizing: border-box;
}

.list-style02 .item:nth-child(8n+8) {
    margin-right: 0;
}

.list-style02 .item > a,
.list-style02 .item .tag-a {
    text-decoration: none;
    border-radius: 3px;
    display: block;
    position: relative;
    overflow: hidden;
    filter: drop-shadow(3px 3px 3px #000);
}

.list-style02 .item .img-blc {
    margin: 0;
}

.list-style02 .item .img-blc::before {
    content: "";
    /*background-color: rgba(0, 0, 0, 0);*/
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.list-style02 .item > a:hover .img-blc::before,
.list-style02 .item .tag-a:hover .img-blc::before {
    background-color: rgba(7, 11, 26, 0.6);
    opacity: 1;
    visibility: visible;
}

.list-style02 .item .img-blc img {
    width: 100%;
    object-fit: cover;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

.list-style02 .item .img-blc .img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    padding-top: 63.3%;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}

.list-style02 .item > a:hover .img-blc .img,
.list-style02 .item .tag-a:hover .img-blc .img {
    transform: scale(1.05);
    
}

.list-style02 .item .txt-blc {
    background-image: linear-gradient( rgba(0, 0, 0, 0.059),rgba(0, 0, 0, 0.859));
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 4px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    text-transform:uppercase;
    text-shadow: 0 0 2px #000;
}

.list-style02 .item .option {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.list-style02 .item .tag-a:hover .option {
    opacity: 1;
    visibility: visible;
}

.list-style02 .item .option .btn-play a {
    background: linear-gradient(171deg, #ffffb9, #feae0b 51.68%, #c37b00), linear-gradient(90deg, #ffe3ab, #ffffff 31.53%, #ffb521 64.87%, #ffd277);
    background-origin: border-box;
    background-clip: content-box, border-box;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 10px;
    padding: 2px;
    display: block;
    position: relative;
    transition: all 0.4s ease-in-out;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.list-style02 .item .option .btn-play a:hover {
    transform: scale(1.05);
}

.list-style02 .item .option .btn-play a::before {
    content: "";
    background: url(../img/common/icon_play01.png) no-repeat center center;
    background-size: 14px 16px;
    width: 14px;
    height: 16px;
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.list-style02 .item .option .btn-play-demo {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.list-style02 .item .option .btn-play-demo a {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 75%;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 5px;
    padding: 3px 5px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.list-style02 .item .option .btn-play-demo a:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.list-style02 .item .tag-list {
    width: 53%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    position: absolute;
    top: 4%;
    right: 2%;
}

.list-style02 .item .tag-list li {
    margin-top: 4%;
    margin-right: 4%;
    box-sizing: border-box;
}

.list-style02 .item .tag-list .tag {
    background-color: #333;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    line-height: 1.2;
    border-radius: 4px;
    padding: 2px 0.2vw;
    box-sizing: border-box;
    box-shadow: 0px 3px 2px 0px rgba(0,0,0,0.25);
}

.list-style02 .item .tag-list .tag.red {
    background-color: #ff4040;
}

.list-style02 .item .tag-list .tag.pink {
    background-color: #f3467f;
}

.list-style02 .item .tag-list .tag.green {
    background-color: #4ea0e4;
}

@media screen and (max-width: 1200px) {
    .list-style02 .item {
        width: 15.833%;
    }
    .list-style02 .item:nth-child(8n+8) {
        margin-right: 1%;
    }
    .list-style02 .item:nth-child(6n+6) {
        margin-right: 0;
    }
    .list-style02 .item .tag-list .tag {
        font-size: 0.7vw;
    }
}

@media screen and (max-width: 1000px) {
    .list-style02 .item {
        width: 23.5%;
        margin-right: 2%;
        margin-bottom: 2%;
    }
    .list-style02 .item:nth-child(8n+8) {
        margin-right: 2%;
    }
    .list-style02 .item:nth-child(6n+6) {
        margin-right: 2%;
    }
    .list-style02 .item:nth-child(4n+4) {
        margin-right: 0;
    }
    .list-style02 .item:last-child {
        margin-right: 0;
    }
    .list-style02 .item .tag-list .tag {
        font-size: 0.9vw;
    }
}

@media screen and (max-width: 767px) {
    .list-style02 .item {
        width: 32%;
    }
    .list-style02 .item:nth-child(4n+4) {
        margin-right: 2%;
    }
    .list-style02 .item:nth-child(3n+3) {
        margin-right: 0;
    }
    .list-style02 .item .txt-blc {
        font-size: 90%;
    }
    .list-style02 .item .tag-list .tag {
        font-size: 1.2vw;
        padding-left: 0.4vw;
        padding-right: 0.4vw;
        box-shadow: 0px 2px 1px 0px rgba(0,0,0,0.25);
    }
}

@media screen and (max-width: 480px) {
    .list-style02 .item .tag-list .tag {
        font-size: 1.8vw;
        padding-left: 0.6vw;
        padding-right: 0.6vw;
    }
}

/* nav-short --------------- */

.nav-short ul {
    max-width: 1200px;
    padding: 0 2%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    box-sizing: content-box;
}

.nav-short ul > li {
    width: 48%;
    text-align: center;
    margin: 0 4% 2% 0;
    transition: all .4s;
}

.nav-short ul > li:nth-of-type(2n+2) {
    margin-right: 0;
}

.nav-short ul > li:hover {
    transform: scale(1.05);
}

.nav-short ul > li > a {
    text-decoration: none;
    display: block;
    box-sizing: border-box;
}

.nav-short ul li .icn {
    width: 90px;
    height: 90px;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.nav-short ul li .icn img {
    flex: 0 0 auto;
    transition: all 0.4s ease-in-out;
}

.nav-short ul li .txt {
    color: #fff;
    font-size: 110%;
    font-weight: 600;
    text-align: center;
}

@media screen and (max-width: 480px) {
    .nav-short ul li .icn {
        margin-right: auto;
        margin-left: auto;
    }
}

/* --------------------------------------------------
 Button
-------------------------------------------------- */

/* btn-style01 --------------- */

.btn-style01 .btn-elem {
    color: #fff;
    background: linear-gradient(0deg, rgb(202, 41, 0) 20%, #ed8f3f 100%, #ed8f3f 80%, rgb(202, 41, 0) 99%);
    font-size: 11px;
    line-height: 1.2;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
    box-shadow: rgb(255 129 77) 0px 0px 4px 2px inset;
    -webkit-appearance: none;
}

.btn-style01 .btn-elem:hover {
    filter: brightness(1.4);
}

.btn-style01 .btn-elem .txt01 {
    padding: 4px 7px;
    display: block;
}

.btn-style01 .btn-elem .icn {
    width: 15px;
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    .btn-style01 .btn-elem .txt01 {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

/* btn-style02 --------------- */

.btn-style02 .btn-elem {
    color: #fff;
    background: linear-gradient(171deg, #ffffb9, #feae0b 51.68%, #c37b00), linear-gradient(90deg, #ffe3ab, #ffffff 31.53%, #ffb521 64.87%, #ffd277);
    background-origin: border-box;
    background-clip: content-box, border-box;
    font-weight: 600;
    line-height: 1.6;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    padding: 2px;
    display: inline-flex;
    align-items: center;
    position: relative;
    opacity: 0.9;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
    -webkit-appearance: none;
    text-shadow: 1px 1px 5px #000;
}

.btn-style02 .btn-elem:hover {
    opacity: 1;
}

.btn-style02 .btn-elem .icn {
    width: 15px;
    margin-right: 10px;
}

.btn-style02 .btn-elem .txt01 {
    padding: 4px 15px;
}

@media screen and (max-width: 767px) {
    .btn-style02 .btn-elem .txt01 {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

/* btn-style03 --------------- */

.btn-style03 .btn-elem {
    color: #fff;
    background: linear-gradient(171deg, #ffffb9, #feae0b 51.68%, #c37b00);
    line-height: 1.6;
    border: 2px solid #ffffff;
    border-radius: 4px;
    text-decoration: none;
    padding: 4px 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    position: relative;
    opacity: 0.9;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
    -webkit-appearance: none;
    text-shadow: 1px 1px 3px #000;
}

.btn-style03 .btn-elem:hover {
    opacity: 1;
}

.btn-style03 .btn-elem .icn {
    width: 15px;
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    .btn-style03 .btn-elem {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

/* paginator --------------- */

.paginator > .btn {
    background-color: #3e3c568A;
    color: #fff;
    border: 1px solid transparent;
    margin-left: 4px;
    margin-right: 4px;
    margin-bottom: 4px;
}

.paginator > .btn:first-child:hover,
.paginator > :not(.btn-check)+.btn:hover {
    background: #000000;
    color: #fff;
    border-color: transparent;
}

.paginator > .btn-primary {
    background: #000000c9;
    color: #fff;
}

.paginator > .btn.disabled, .paginator > .btn:disabled, .paginator > fieldset:disabled .btn {
    background-color: #3e3c5647;
    color: #ccc;
}

@media screen and (max-width: 767px) {
    .paginator > .btn {
        padding: 4px 8px;
    }
}

/* --------------------------------------------------
 Text
-------------------------------------------------- */

.txt-center {
    text-align: center;
}

.txt-underline {
    text-decoration: underline;
}

.txt-big {
    font-size: 115%;
}

.txt-small {
    font-size: 85%;
}

.txt-weight {
    font-weight: bold;
}

.txt-italic {
    font-style: italic;
}

.txt-inline-blc {
    text-align: left;
    display: inline-block;
}

.txt-black {
    color: #000;
}

.txt-red {
    color: #BD2D2B;
}

/* --------------------------------------------------
 Other Classes
-------------------------------------------------- */

/* Spacing --------------- */

.mt-1 {
    margin-top: 1%;
}

.mt-2 {
    margin-top: 2%;
}

.mt-3 {
    margin-top: 3%;
}

.mt-4 {
    margin-top: 4%;
}

.mt-5 {
    margin-top: 5%;
}

.mt-6 {
    margin-top: 6%;
}

.mt-7 {
    margin-top: 7%;
}

.mb-1 {
    margin-bottom: 1%;
}

.mb-2 {
    margin-bottom: 2%;
}

.mb-3 {
    margin-bottom: 3%;
}

.mb-4 {
    margin-bottom: 4%;
}

.mb-5 {
    margin-bottom: 5%;
}

.mb-6 {
    margin-bottom: 6%;
}

.mb-7 {
    margin-bottom: 7%;
}

/* Clear fix --------------- */

.clear-fix:after {
    content: "";
    clear: both;
    display: block;
}

/* Clear --------------- */

.clear {
    clear: both;
}

/* Hide --------------- */

.hidden {
    opacity: 0;
}

.visible {
    opacity: 1;
}

.disnon {
    display: none;
}

/* PDF icon --------------- */

.icn-pdf {
    vertical-align: bottom;
    margin: 0px 3%;
}

@media screen and (max-width: 1000px) {
    /* Hide --------------- */
    .post.hidden {
        opacity: 1;
    }
}

/* Popup --------------- */

.mfp-bg {
    animation: openBg 0.4s;
}

.white-popup-block {
    animation: open 0.4s;
}

.mfp-removing{
  animation: close 0.4s;
}

@keyframes openBg {
    0%   {opacity: 0;}
    100% {opacity: 0.8;}
}

@keyframes open {
    0%   {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes close {
    0%   {opacity: 1;}
    100% {opacity: 0;}
}

@media screen and (max-width: 767px) {
    /* Popup --------------- */
    .popup {
        display: block;
        position: relative;
    }
}