@charset 'utf-8';
/*==============
    header
===============*/
header {
    transition: 0.8s all;
}
header.headerColorScroll::after {
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -100;
    box-shadow: 0 0 90px 100px #fff;
}
/*header h1 {
    display: none;
}*/
header.headerColorScroll h1 {
    display: block;
    position: absolute;
    top: 40px;
}
@media screen and (max-width: 420px) {
    header.headerColorScroll::after {
        box-shadow: 0 0 90px 80px #fff;
    }
}
/*==============
    main
===============*/
#main .flexbox {
    display: flex;
    height: 93vh;
    margin-top: 7vw;
}
#main .flexbox div {
    width: 50%;
}
#main .flexbox div.left {
    background-image: url(../img/main.jpg?2);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center -10vw;
}
#main .flexbox div.right {
    position: relative;
}
#main .flexbox div.right::after {
    content: "";
    background-image: url(../img/mian-logo.png);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    max-width: 74.58%;
    height: 14.11%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
@media screen and (max-width: 1000px) {
    #main .flexbox div.right {
        display: none;
    }
    #main .flexbox div {
        width: 100%;
    }
    #main .flexbox div.left {
        position: relative;
    }
    #main .flexbox div.left::after {
        content: "";
        background-image: url(../img/mian-logo-white.png);
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 100%;
        max-width: 65%;
        height: 14.11%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }
    #main .flexbox {
        height: 100vh;
        margin-top: 0;
    }
    #main .flexbox div.left {
        background-position: center;
    }
}
@media screen and (max-width: 500px) {
    #main .flexbox div.left {
        background-position-y: 0;
    }
}
/*==============
    bnr
===============*/
#bnr {
    padding: 40px 0 125px;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fff 50%, var(--color3) 50%, var(--color3) 100%);
}
/*#bnr::after {
    content: "";
    width: 100%;
    height: 252px;
    position: absolute;
    bottom: 0;
    z-index: -1;
}*/
#bnr.update::after {
    height: 562px;
}
#bnr ul.half {
    display: flex;
    gap: 50px;
}
#bnr ul.half li {
    width: 50%;
    transition: 0.4s all;
}
#bnr ul.half li a {
    background: linear-gradient(to right, var(--color1) 0%, var(--color2) 100%);
    background-position: 0 50%;
    background-size: 110% auto;
    display: block;
    padding: 80px 0 80px 56px;
    transition: 0.4s all ease-out;
}
#bnr ul.half li:hover a {
    background-position: 100% 50%;
}
#bnr ul.half li a .ttl {
    font-size: 3.6rem;
    color: var(--black);
    font-family: var(--en);
    padding-left: 56px;
    position: relative;
    border-bottom: 2px solid;
    padding-bottom: 10px;
    margin-bottom: 15px;
    transition: 0.4s all;
    color: #fff;
}
#bnr ul.half li a .ttl.join::before {
    content: "";
    width: 38px;
    height: 38px;
    background-image: url(../img/join.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 45%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: 0.4s all;
}
#bnr ul.half li a .ttl.youtube::before {
    content: "";
    width: 38px;
    height: 38px;
    background-image: url(../img/youtube.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 40%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: 0.4s all;
}
#bnr ul.half li a .jp {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    transition: 0.4s all;
}
#bnr ul.half li:hover a .ttl,
#bnr ul.half li:hover a .jp {
    opacity: .5;
}
#bnr ul.half li:hover a .ttl.twitter::before,
#bnr ul.half li:hover a .ttl.join::before {
    opacity: 0.5;
}
#bnr .wideBnr {
    overflow: hidden;
    margin-top: 40px;
}
#bnr .wideBnr:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
    #bnr {
        padding: 32px 0;
    }
    #bnr ul.half {
        gap: 20px;
        margin-bottom: 20px;
    }
    #bnr .wideBnr {
        margin-top: 0;
    }
    #bnr ul.half li a {
        padding: 30px 0 30px 10%;
    }
    #bnr ul.half li a .ttl {
        font-size: 2.4rem;
        padding-left: 30px;
    }
    #bnr ul.half li a .jp {
        font-size: 1.4rem;
    }
    #bnr ul.half li a .ttl.youtube::before,
    #bnr ul.half li a .ttl.join::before {
        width: 20px;
        height: 20px;
    }
}
@media screen and (max-width: 768px) {
    #bnr ul.half {
        width: 100% !important;
    }
}
@media screen and (max-width: 600px) {
    #bnr {
        background: var(--color3);
    }
    #bnr ul.half {
        display: block;
    }
    #bnr ul.half li {
        width: 100%;
        margin-bottom: 16px;
    }
    #bnr ul.half li a {
        padding: 25px 0 25px 10%;
    }
}
/*==============
    news
===============*/
#news {
    padding: 125px 0;
}
#news h2 {
    color: var(--black);
}
#news ul {
    display: flex;
}
#news ul li {
    border-bottom: none;
    padding: 30px;
    border-right: 1px solid #f2f2f2;
    width: calc(100% - 120px);
}
#news ul li a .flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
}
#news ul li:last-child {
    border-right: 0;
}
#news ul li:last-child {
    padding-right: 0;
}
#news ul li:nth-child(1) {
    padding-left: 0;
}
#news ul li .day {
    font-family: var(--en);
    font-size: 1.4rem;
    margin-right: 15px;
    color: #808080;
    transition: 0.4s all;
}
#news ul li .category i {
    font-family: var(--en);
    font-size: 1.2rem;
    background: var(--color2);
    padding: 2px 20px;
    color: #fff;
    display: table;
    transition: 0.4s all;
}
#news ul li .ttl {
    font-size: 1.4rem;
    line-height: 1.8;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: 0.4s all;
}
#news ul li:hover .ttl,
#news ul li:hover .day {
    opacity: 0.5;
}
#news ul li:hover .category i {
    opacity: 0.5;
}
/* more */
#news .moreBtn {
    margin-top: 30px;
}
#news .moreBtn a:hover {
    opacity: 0.5;
}
@media screen and (max-width: 1000px) {
    #news {
        padding: 70px 0;
    }
    #news ul {
        display: block;
    }
    #news ul li {
        border-bottom: 1px solid var(--color3);
        border-right: none;
        padding: 30px 0;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    #news ul li .ttl {
        -webkit-line-clamp: 2;
    }
    #news ul li {
        padding: 20px 0;
    }
    #news ul li:nth-child(1) {
        padding-top: 0;
    }
}
/*==============
    profile
===============*/
#profile {
    width: 100%;
    height: 70vw;
    background-image: url(../img/profile-top.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
    margin-bottom: 30vh;
}
#profile .flex {
    background: #fff;
    padding: 100px 80px;
    position: absolute;
    max-width: 1200px;
    bottom: -20vh;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: calc(100% - 160px);
}
#profile .flex .left {
    width: 33.01%;
}
#profile .flex .right {
    width: 66.99%;
}
#profile .flex .right p {
    font-size: 1.6rem;
    line-height: 1.8;
}
#profile .flex .left .moreBtn {
    text-align: left;
}
@media screen and (max-width: 1300px) {
    #profile {
        margin-bottom: 30vh;
    }
    #profile .flex {
        width: calc(90% - 16vw);
        padding: 7vw 8vw;
        bottom: -30vh;
    }
}
@media screen and (max-width: 1080px) {
    #profile .flex {
        display: block;
    }
    #profile .flex .left,
    #profile .flex .right {
        width: 100%;
    }
    #profile .flex .left {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }
    #profile .flex .left h2 {
        margin-bottom: 24px;
    }
    #profile .flex .right p {
        display: inline-block;
        position: relative;
        height: 14vw;
        width: 100%;
        overflow: hidden;
    }
    #profile .flex .right p:before {
        content: "";
        position: absolute;
        border-style: none;
        left: 0;
        bottom: 0;
        z-index: 2;
        width: 100%;
        height: 16vw;
        background: linear-gradient(rgba(255, 255, 255, 0) 0, #fff 110px);
    }
    @media screen and (max-width: 768px) {
        #profile {
            margin-bottom: calc(40vw + 24px);
        }
        #profile .flex {
            display: block;
            bottom: -40vw;
        }
        #profile .flex .right p {
            font-size: 1.4rem;
        }
        #profile .flex .right p {
            height: 20vw;
        }
        #profile .flex .right p:before {
            background: linear-gradient(rgba(255, 255, 255, 0) 0, #fff 60px);
        }
    }
}
/*==============
    gallery
===============*/
#gallery .hero {
    background-color: var(--color1);
    padding: 115px 0 38px;
}
#gallery .hero h2 {
    color: #fff;
    text-align: left;
    margin-bottom: 0;
}
#gallery ul {
    display: flex;
}
#gallery ul li {
    background-color: #808080;
    position: relative;
}
#gallery ul li::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(rgba(255, 255, 255, 0) 0, #000000 90%);
    position: absolute;
    top: 0;
    left: 0;
}
#gallery ul li a .imgWrap {
    overflow: hidden;
}
#gallery ul li a .imgWrap img {
    display: block;
    -webkit-filter: grayscale(1);
    filter: gray;
    filter: grayscale(1);
    transition: 0.8s all;
    opacity: 0.5;
}
#gallery ul li:hover a .imgWrap img {
    -webkit-filter: grayscale(0);
    filter: none;
    filter: grayscale(0);
    opacity: 0.8;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#gallery ul li h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: clamp(2.4rem, 5.7vw, 3.6rem);
    font-family: var(--en);
    color: #fff;
    letter-spacing: 0.075em;
}
@media screen and (max-width: 1000px) {
    #gallery .hero {
        padding: 60px 0 24px;
    }
}
@media screen and (max-width: 768px) {
    #gallery ul {
        display: block;
    }
}
/*==============
    special
===============*/
#special {
    padding: 0 0 100px;
    position: relative;
}
#special::after {
    content: "";
    width: 100%;
    height: 406px;
    background-color: var(--color3);
    position: absolute;
    bottom: 0;
    z-index: -1;
}
#special .container {
    width: 90%;
    margin: 0 0 0 auto;
    overflow-x: visible;
    overflow-x: scroll;
    scrollbar-width: thin;
    scrollbar-color: #333 #cecfcf;
    margin-bottom: 32px;
}
#special .container ul {
    display: flex;
    width: fit-content;
    gap: 40px;
    padding-bottom: 56px;
}
#special .container ul li {
    width: 380px;
    max-width: 380px;
    transition: 0.8s all;
}
#special .container:-webkit-scrollbar-track {
    background-color: #ccc;
}
#special .container::-webkit-scrollbar-thumb {
    background-color: #fff;
}
#special .container::-webkit-scrollbar {
    width: 500px;
    height: 3px;
}
#special .container ul li a .thumbnail {
    overflow: hidden;
    position: relative;
}
#special .container ul li a .thumbnail img {
    transition: 0.8s all;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
    max-height: 667px;
    max-width: 1000px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    background: #fff;
}
#special .container ul li:hover a .thumbnail img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#special .container ul li a .thumbnail .day {
    display: inline-block;
    background: #fff;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #262626;
    font-family: var(--en);
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
}
#special .container ul li a .ttl {
    color: var(--black);
    font-size: 1.6rem;
    -webkit-line-clamp: 2;
    margin-top: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: 0.4s all;
}
/* more */
#special .moreBtn {
    color: var(--black);
}
#special .moreBtn a:hover {
    color: var(--color2);
}
@media screen and (max-width: 1000px) {
    #special {
        padding: 80px 0 60px;
    }
}
@media screen and (max-width: 768px) {
    #special .container ul li {
        width: 250px;
    }
    #special .container ul {
        gap: 24px;
    }
    #special .container ul li a .ttl {
        margin-top: 8px;
        font-size: 1.4rem;
    }
    #special::after {
        height: 39.88vh;
    }
}
/*==============
    onlineshop
===============*/
#onlineshop {
    padding: 150px 0;
    background: #eeeeee;
}
@media screen and (max-width: 768px) {
    #onlineshop {
        padding: 80px 0;
    }
}
#onlineshop .onlineshop-container {
    display: grid;
    grid-template-columns: auto 51%;
    justify-content: space-between;
    column-gap: 32px;
}
#onlineshop .onlineshop-txt {
    color: #fff;
}
#onlineshop .onlineshop-txt h2 {
    white-space: nowrap;
    color: var(--black);
}
#onlineshop .onlineshop-txt .txt {
    font-size: 1.8rem;
    letter-spacing: 0.025em;
    margin-bottom: 60px;
    color: var(--black);
}
#onlineshop .onlineshop-img {
    grid-row: 1 / 4;
    grid-column: 2 / 3;
    margin-bottom: -21%;
}
@media screen and (max-width: 959px) {
    #onlineshop .onlineshop-container {
        grid-template-columns: 100%;
    }
    #onlineshop .onlineshop-img {
        grid-row: auto;
        grid-column: auto;
        margin: 0 auto;
        width: 500px;
        max-width: 100%;
    }
}
@media screen and (max-width: 768px) {
    #onlineshop .onlineshop-txt .txt {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
}
::-webkit-full-page-media,
:future,
:root #onlineshop .moreBtn {
    margin-top: 24px;
}
/*==============
    video
===============*/
#video {
    padding: 125px 0;
    overflow: hidden;
}
#video h2 {
    text-align: center;
}
#video .youtube {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
#video .youtube img {
    transition: 0.8s all;
}
#video .youtube:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#video .youtube a::after {
    content: "";
    background-image: url(../img/play.png);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 119px;
    height: 119px;
    background-size: contain;
    background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
    #video {
        padding: 60px 0;
    }
}
@media screen and (max-width: 420px) {
    #video .youtube a::after {
        width: 50px;
        height: 50px;
    }
}
/*==============
    advertisement
===============*/
#advertisement {
    padding: 100px 0;
    background-color: var(--color1);
}
#advertisement ul {
    display: flex;
    /*justify-content: space-between;*/
    gap: 24px;
}
/*#advertisement ul::after{
  content:"";
  display: block;
  width:31.08%;
}*/
#advertisement ul li {
    width: 31.08%;
    overflow: hidden;
}
#advertisement ul li a img {
    transition: 0.8s all;
}
#advertisement ul li:hover a img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
    #advertisement {
        padding: 50px 0;
    }
}
@media screen and (max-width: 768px) {
    #advertisement ul {
        display: block;
    }
    #advertisement ul::after {
        width: 100%;
    }
    #advertisement ul li {
        width: 100%;
        margin-bottom: 16px;
    }
    #advertisement ul li:last-child {
        margin-bottom: 0;
    }
}
/*==============
    fc
===============*/
#fc {
    padding: 150px 0;
    background: #000;
    background-image: url(../img/fc.jpg);
    background-size: cover;
    background-position: center;
}
#fc h4 {
    text-align: center;
    margin-bottom: 56px;
}
#fc h4 img {
    width: 100%;
    max-width: 362px;
}
#fc ul {
    display: flex;
    gap: 56px;
    align-items: center;
    justify-content: center;
}
#fc ul li.Btn a {
    color: #fff;
    padding: 20px 100px;
    border: 1px solid #fff;
    font-size: clamp(1.6rem, 2.0vw, 2rem);
    font-family: var(--en);
    display: inline-block;
    position: relative;
}
#fc ul li.Btn a .bl {
    transition-duration: 0.5s;
    transition-property: opacity;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    opacity: 0;
}
#fc ul li.Btn a:hover .bl {
    transition-duration: 0.5s;
    transition-property: opacity;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    opacity: 1;
}
#fc ul li.Btn a .bl-a:before {
    background: #fff;
    transition-duration: 0.5s;
    transition-property: transform;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    content: "";
}
#fc ul li.Btn a .bl-a:after {
    background: #fff;
    transition-duration: 0.5s;
    transition-property: transform;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transform: scaleY(0);
    content: "";
}
#fc ul li.Btn a .bl-b:before {
    background: #fff;
    transition-duration: 0.25s;
    transition-property: transform;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: scaleX(0);
    content: "";
}
#fc ul li.Btn a .bl-b:after {
    background: #fff;
    transition-duration: 0.5s;
    transition-property: transform;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    width: 2px;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleY(0);
    content: "";
}
#fc ul li.Btn a:hover .bl-a:before {
    transition-duration: 0s;
    transition-property: transform;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    transform: scaleX(1);
    transform-origin: center center;
}
#fc ul li.Btn a:hover .bl-a:after {
    transition-duration: 0.5s;
    transition-property: transform;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    transform: scaleY(1);
    transform-origin: center center;
    transition-timing-function: linear;
}
#fc ul li.Btn a:hover .bl-b:before {
    transition-duration: 0.25s;
    transition-property: transform;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    transform: scaleX(1);
    transform-origin: center center;
    transition-timing-function: linear;
}
#fc ul li.Btn a:hover .bl-b:after {
    transition-duration: 0.5s;
    transition-property: transform;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    transform: scaleY(1);
    transform-origin: center center;
}
@media screen and (max-width: 1000px) {
    #fc {
        padding: 100px 0;
    }
}
@media screen and (max-width: 768px) {
    #fc {
        background-image: url(../img/fc-sp.jpg);
        background-size: cover;
        background-position: center;
    }
    #fc h4 img {
        max-width: initial;
        width: 65%;
    }
    #fc ul {
        display: block;
    }
    #fc ul li {
        width: 80%;
        margin: 0 auto;
    }
    #fc ul li a {
        padding: 20px 0 !important;
        display: block !important;
        text-align: center !important;
    }
    #fc ul li:last-child {
        margin-top: 16px;
    }
    #fc h4 {
        margin-bottom: 32px;
    }
    #fc {
        padding: 80px 0;
    }
}
/*==============
    sns
===============*/
#sns {
    background: var(--color2);
    padding: 56px 0;
}
#sns .sns-list {
    display: flex;
    gap: 56px;
    align-items: center;
    justify-content: center;
    align-items: baseline;
}
#sns .sns-list li {
    max-width: 32px;
}
#sns .sns-list li a {
    color: #fff;
    transition: 0.4s all;
}
#sns .sns-list li a:hover {
    opacity: 0.5;
}
#sns .sns-list li a i {
    font-size: 3rem;
    text-align: center;
    display: block;
    margin-bottom: 8px;
}
#sns .sns-list li a span {
    display: block;
    text-align: center;
    font-size: 1rem;
}
@media screen and (max-width: 768px) {
    #sns .sns-list {
        gap: initial;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }
    #sns .sns-list li {
        max-width: 20px;
    }
}
@media screen and (max-width: 500px) {
    #sns {
        padding: 24px 0;
    }
    #sns .sns-list {
        flex-wrap: wrap;
        row-gap: 30px;
        justify-content: center;
    }
    #sns .sns-list li {
        width: calc(100% / 4);
        max-width: initial;
        text-align: center;
    }
    #sns .sns-list li img {
        max-width: 30px;
    }
}
/*==============
    video
===============*/
#video .video-list {
    margin-top: 80px;
}
@media screen and (max-width: 768px) {
    #video .video-list {
        margin-top: 40px;
    }
}
#video .video-list.slick-dotted.slick-slider {
    margin-bottom: 0;
}
#video .video-list .slick-list {
    overflow: visible;
}
#video .video-list-item {
    max-width: 960px;
    margin: 0 20px;
    box-shadow: 0px 10px 15px 5px rgba(0, 0, 0, 0.3);
    max-height: 540px;
    background: #000;
}
@media screen and (max-width: 768px) {
    #video .video-list-item {
        margin: 0 8px;
    }
}
#video .youtube {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
#video .youtube img {
    transition: 0.8s all;
}
#video .youtube:hover a::before {
    opacity: 0.3;
}
#video .youtube:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#video .video-list .slick-dots {
    position: relative;
    bottom: auto;
    display: flex;
    justify-content: center;
    column-gap: 10px;
    margin-top: 28px;
}
#video .video-list .slick-dots li {
    width: 50px;
    height: auto;
    margin: 0;
    padding: 0;
}
#video .video-list .slick-dots li:first-child:last-child {
    display: none;
}
@media screen and (max-width: 768px) {
    #video .video-list .slick-dots li {
        width: 20px;
    }
}
#video .video-list .slick-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
    padding: 0;
}
#video .video-list .slick-dots li button:before {
    display: none;
}
#video .video-list .slick-dots li button:after {
    content: "";
    width: 100%;
    height: 3px;
    background: var(--color2);
    margin: 4px 0;
    display: block;
}
#video .video-list .slick-dots li.slick-active button:after {
    background: #fff;
}
.slick-prev {
    left: 0
}
.slick-next {
    right: 0
}
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    max-width: 70px;
    width: 100%;
    max-height: 70px;
    height: 100%;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    z-index: 10;
    background: transparent;
}
.slick-arrow:before {
    content: "" !important;
}
#bnrArea {
    padding: 120px 0 0;
}
#bnrArea .img-wrap {
    overflow: hidden;
}
#bnrArea .img-wrap img {
    transition: 0.8s all;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}
#bnrArea .img-wrap img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
    #bnrArea {
        padding: 70px 0 0;
    }
}