@charset 'utf-8';
/*==============
    common
===============*/
body {
    background: #130101;
}
.top h2 {
    color: var(--yellow);
}
.reflect,
.reflect canvas {
    max-width: 100%;
}
@media screen and (max-width: 768px) {
    .moreBtn {
        text-align: right;
    }
}
/*==============
    header
===============*/
/*header .header-logo {
    display: none!important;
}*/
header .gnav-list a {
    background: #fff;
    color: var(--black);
}
header .gnav-list a:hover {
    background: var(--color1);
    color: #fff;
}
header .hamburger:before,
header .hamburger:after {
    background: #ccc;
}
/*==============
    main
===============*/
#main {
    position: relative;
    overflow: hidden;
}
#main:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/main.jpg) no-repeat top center /cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.05);
    transition: 2s transform cubic-bezier(0.5, 1, 0.89, 1);
    transition-delay: 0.1s;
}
#main.show:before {
    transform: scale(1);
}
#main .wrap {
    position: relative;
    height: 100vh;
}
#main .wrap::before {
    content: "";
    background: url(../img/mv-parts01.png);
    width: 393px;
    height: 52px;
    position: absolute;
    background-size: contain;
    top: 42%;
    left: -7%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-repeat: no-repeat;
}
#main .wrap::after {
    content: "";
    background: url(../img/mv-parts02.png);
    width: 410px;
    height: 132px;
    position: absolute;
    background-size: contain;
    top: 46%;
    right: -5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-repeat: no-repeat;
}
#main .mv-logo .pc-on {
    display: block;
}
#main .mv-logo .sp-on {
    display: none;
}
#main .mv-logo {
    position: absolute;
    bottom: 13%;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    opacity: 0;
    transition: 1.6s opacity cubic-bezier(0.5, 1, 0.89, 1);
    transition-delay: 0.5s;
}
#main.show .mv-logo {
    opacity: 1.0;
}
@media screen and (max-width: 1300px) {
    #main .wrap {
        width: 80%;
        max-width: initial;
    }
}
@media screen and (max-width: 1200px) {
    #main .wrap::before {
        min-width: 303px;
        width: 32.75%;
    }
    #main .wrap::after {
        min-width: 320px;
        width: 34.17%;
    }
}
@media screen and (max-width: 768px) {
    #main .mv-logo {
        width: 100%;
    }
    #main .mv-logo .sp-on {
        display: block;
    }
    #main .mv-logo .pc-on {
        display: none;
    }
    #main .wrap::before {
        display: none;
    }
    #main .wrap::after {
        display: none;
    }
}
@media screen and (max-width: 500px) {
    #main:before {
        background: url(../img/main-sp.jpg) no-repeat top center /cover;
    }
}
/*==============
    topics
===============*/
#topics {
    transform: translateY(-50px);
    margin-bottom: -70px;
}
#topics .topics-list {}
#topics .topics-list-item {
    padding: 0 16px 20px;
    max-width: 471px;
    position: relative;
}
@media screen and (max-width: 768px) {
    #topics {
        transform: translateY(-20px);
        margin-bottom: -40px;
    }
    #topics .topics-list-item {
        padding: 0 8px 20px;
    }
}
#topics .topics-list-item:before {
    content: "";
    width: calc(100% - 32px);
    height: calc(100% - 20px);
    position: absolute;
    top: 0;
    left: 16px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.3);
}
#topics .topics-list-item a {
    position: relative;
    display: block;
    overflow: hidden;
}
#topics .topics-list-item a:after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color1);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s;
}
#topics .topics-list-item img {
    transition: all 0.4s;
}
#topics .topics-list-item a:hover:after {
    opacity: 0.5;
}
#topics .topics-list-item a:hover img {
    transform: scale(1.05);
}
.bgwrap {
    padding: 150px 0;
    background: url(../img/bg-ambers.jpg) no-repeat top left /100%;
    background-attachment: fixed;
}
@media screen and (max-width: 768px) {
    .bgwrap {
        padding: 80px 0;
        background-attachment: initial;
        background: none;
    }
    .bgwrap::after {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100vh;
        background-repeat: no-repeat;
        background-position: 0 0;
        background-image: url(../img/bg_sp-ambers.jpg);
        background-size: contain;
    }
    #topics .topics-list-item a:hover img {
        transform: initial;
    }
    #topics .topics-list-item a:hover:after {
        opacity: 0;
    }
}
@media screen and (max-width: 500px) {
    #topics {
        transform: translateY(-60px);
        margin-bottom: -90px;
    }
}
/*==============
    news
===============*/
#news {
    padding: 0 0 150px;
}
@media screen and (max-width: 768px) {
    #news {
        padding: 0 0 80px;
    }
}
#news .news-container {
    display: grid;
    grid-template-columns: 360px 1fr;
}
#news .news-container .moreBtn {
    grid-column: 1 / 2;
}
#news .news-container ul {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
}
@media screen and (max-width: 959px) {
    #news .news-container {
        grid-template-columns: 100%;
    }
    #news .news-container .moreBtn {
        grid-column: auto;
        grid-row: 3;
        margin-top: 45px;
    }
    #news .news-container ul {
        grid-column: auto;
        grid-row: auto;
    }
}
#news ul li {
    padding: 0;
    border: 0;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.3);
}
#news ul li+li {
    margin-top: 32px;
}
@media screen and (max-width: 768px) {
    #news ul li+li {
        margin-top: 20px;
    }
}
#news ul li .category i{
    background: var(--yellow);
    color: var(--gray-black);
}
#news ul li:hover .category i {
    background: var(--yellow);
    color: var(--gray-black);
}
#news ul li:hover .ttl,
#news ul li:hover .day {
    opacity: 1;
}
#news ul li a {
    display: block;
    background: #fff;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
}
#news ul li a:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color1);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s all;
    z-index: -1;
}
#news ul li .ttl {
    font-size: 1.6rem;
    margin: 12px 30px 0;
}
#news ul li a:hover:before {
    opacity: 0.1;
    visibility: visible;
}
@media screen and (max-width: 768px) {
    #news ul li .ttl {
        font-size: 1.4rem;
        margin: 12px 15px 0;
    }
}
/*==============
    media
===============*/
#media ul {
    display: flex;
    width: fit-content;
    gap: 40px;
    padding-bottom: 50px;
}
#media ul li a:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#media ul li div.tag {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}
#media ul li .flex {
    position: relative;
    overflow: hidden;
}
#media ul li .flex img {
    transition: 0.8s all;
}
#media ul li div.tag .category i {
    font-family: var(--en);
    font-size: 1.6rem;
    background: #868686;
    padding: 6px 10px;
    min-width: 84px;
    text-align: center;
    color: #fff;
    display: block;
    transition: 0.4s all;
}
#media ul li div.tag p.day {
    display: inline-block;
    font-size: 1.4rem;
    color: #b2b2b2;
    padding-left: 10px;
    transition: 0.4s all;
}
#media ul li p.ttl {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: 0.4s all;
    color: #fff;
}
#media ul li a:hover p.ttl {
    opacity: 0.5;
}
#media .moreBtn {
    text-align: right;
}
@media screen and (max-width: 768px) {
    #media ul {
        display: block;
    }
    #media ul li {
        margin-bottom: 24px;
    }
}
/*==============
    profile
===============*/
#profile {
    background: url(../img/profile.jpg) no-repeat center /cover;
    padding: 8.89vw 0;
}
#profile h2 {
    color: var(--yellow);
    /*color: var(--color1);*/
}
@media screen and (max-width: 768px) {
    #profile {
        background: url(../img/profile-sp.jpg) no-repeat center /cover;
        padding: 17vw 0;
    }
    #profile .moreBtn {
        text-align: left;
    }
}
/*==============
    gallery
===============*/
#gallery {
    padding: 150px 0;
    /*background: linear-gradient(to right,  #0f0f0f 0%,#333333 100%);*/
    background: var(--gray-black);
}
#gallery h2 {
    color: var(--yellow);
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
    #gallery {
        padding: 80px 0;
    }
}
#gallery .gallery-item {
    margin-bottom: 80px;
    padding: 3.89vw 0;
    position: relative;
    z-index: 2;
}
#gallery .gallery-item:last-child {
    margin-bottom: 0;
}
#gallery .gallery-item:after {
    content: "";
    width: 80%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}
#gallery #photo:after {
    background: url(../img/photo.jpg) no-repeat center /cover;
}
#gallery #movie:after {
    background: url(../img/movie.jpg) no-repeat center /cover;
}
#gallery .gallery-item.anime:before {
    width: 80%;
    z-index: -1;
}
#gallery .gallery-item.anime.show:before {
    transform: translateX(-100%);
}
@media screen and (max-width: 768px) {
    #gallery .gallery-item {
        margin-bottom: 80px;
        padding: 8vw 0;
    }
    #gallery .gallery-item:after {
        width: 100%;
    }
    #gallery #photo:after {
        background: url(../img/photo-sp.jpg) no-repeat center /cover;
    }
    #gallery #movie:after {
        background: url(../img/movie-sp.jpg) no-repeat center /cover;
    }
    #gallery .gallery-item.anime:before {
        width: 100%;
    }
}
#gallery .gallery-item-ttl {
    font-family: var(--en);
    font-size: 3.0rem;
    letter-spacing: 0.025em;
    color: var(--yellow);
    margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
    #gallery .gallery-item-ttl {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
}
#gallery .moreBtn {
    position: relative;
    right: auto;
    bottom: auto;
}
@media screen and (max-width: 768px) {
    #gallery .moreBtn {
        text-align: left
    }
}
#gallery .gallery-item:nth-child(odd) .gallery-item-container {
    width: fit-content;
    margin-left: auto;
}
#gallery .gallery-item:nth-child(even):after {
    left: auto;
    right: 0;
}
#gallery .gallery-item.anime:nth-child(even):before {
    left: 20%;
}
#gallery .gallery-item.anime.show:nth-child(even):before {
    transform: translateX(100%);
}
@media screen and (max-width: 768px) {
    #gallery .gallery-item.anime:nth-child(even):before {
        left: 0;
    }
}
/*==============
    schedule
===============*/
#schedule {
    background: url(../img/schedule.jpg) no-repeat center /cover;
    padding: 8.89vw 0;
}
#schedule h2 {
    color: #fff;
}
@media screen and (max-width: 768px) {
    #schedule {
        background: url(../img/schedule-sp.jpg) no-repeat center /cover;
        padding: 17vw 0;
    }
    #schedule .moreBtn {
        text-align: left;
    }
}
/*==============
    special
===============*/
#special {
    padding: 275px 0 150px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: url(../img/bg2-ambers.jpg) no-repeat left top /100%;
    background-attachment: fixed;
}
#special h2 {
    color: var(--yellow);
}
@media screen and (max-width: 768px) {
    #special {
        padding: 100px 0 80px;
        background-attachment: initial;
        background: none;
    }
}
#special:after {
    content: "";
    width: 80%;
    height: 610px;
    background: var(--gray-black);
    position: absolute;
    top: 120px;
    left: 0;
    z-index: -1;
}
@media screen and (max-width: 768px) {
    #special:after {
        height: 300px;
        top: 50px;
    }
}
#special .flex {
    align-items: center;
    justify-content: space-between;
}
#special .flex h2 {
    margin-bottom: 0;
}
#special .special-list {
    margin-top: 72px;
}
#special .special-list.slick-dotted.slick-slider {
    margin-bottom: 0;
}
#special .special-list .slick-list {
    overflow: visible;
}
#special .special-list-item {
    margin: 0 18px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
    #special .special-list-item {
        margin: 0 8px;
    }
}
#special .special-list-item-inner {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}
#special .special-list-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(8.5px);
    transition: 0.4s all;
}
#special .special-list-item-inner a.on img {
    filter: none;
}
#special .special-list-item-inner a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#special .special-list-item-inner a:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color1);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: 0.4s all;
}
#special .special-list-item-inner a:after {
    content: "";
    width: 25%;
    padding-top: 25%;
    background: url(../img/lock.png) no-repeat center /contain;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 2;
}
#special .special-list-item-inner a.on:after {
    display: none;
}
#special .special-list-item a:hover:before {
    opacity: 0.5;
}
#special .special-list-item a:hover img {
    transform: scale(1.05);
}
#special .special-list .slick-dots {
    position: relative;
    bottom: auto;
    display: flex;
    column-gap: 10px;
    margin-top: 28px;
    padding: 0 18px;
}
#special .special-list .slick-dots li {
    width: 50px;
    height: auto;
    padding: 0;
    margin: 0;
}
#special .special-list .slick-dots li:first-child:last-child {
    display: none;
}
@media screen and (max-width: 768px) {
    #special .special-list .slick-dots {
        padding: 0 8px;
    }
    #special .special-list .slick-dots li {
        width: 20px;
    }
}
#special .special-list .slick-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
#special .special-list .slick-dots li button:before {
    display: none;
}
#special .special-list .slick-dots li button:after {
    content: "";
    width: 100%;
    height: 3px;
    background: #ccc;
    margin: 4px 0;
    display: block;
}
#special .special-list .slick-dots li.slick-active button:after {
    opacity: 0.5;
}
/*==============
    onlineshop
===============*/
#onlineshop {
    padding: 150px 0;
    background: url(../img/onlineshop-bg.jpg) no-repeat center right /cover;
    background: var(--gray-black);
}
@media screen and (max-width: 1000px) {
    #onlineshop {
        padding: 100px 0;
    }
}
@media screen and (max-width: 768px) {
    #onlineshop {
        padding: 50px 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: #fff;
}
#onlineshop .onlineshop-txt .txt {
    font-size: 1.8rem;
    letter-spacing: 0.025em;
    margin-bottom: 60px;
}
#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%;
        max-height: 50vw;
        margin-bottom: 24px;
    }
    #onlineshop .onlineshop-img:has(> .reflect) {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 768px) {
    #onlineshop .onlineshop-txt .txt {
        font-size: 1.4rem;
        margin-bottom: 32px;
    }
}
/*==============
    video
===============*/
#video {
    padding: 0 0 150px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: url(../img/bg-ambers.jpg) no-repeat left top /100%;
    background-attachment: fixed;
}
@media screen and (max-width: 768px) {
    #video {
        padding: 0 0 70px;
        background-attachment: initial;
        background: none;
    }
}
#video:after {
    content: "";
    width: 100%;
    height: 293px;
    /*background: #333333;*/
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
@media screen and (max-width: 768px) {
    #video:after {
        height: 35%;
    }
}
#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 a::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color1);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.8s all;
    z-index: 2;
}
#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;
    z-index: 2;
}
@media screen and (max-width: 420px) {
    #video .youtube a::after {
        width: 50px;
        height: 50px;
    }
}
#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;
}
/*==============
    DOWNLOAD
===============*/
#download {
    padding: 150px 0 0;
    /*position: relative;
    overflow: hidden;
    z-index: 2;
    background: url(../img/bg2.png) no-repeat left top /100%;
    background-attachment: fixed;*/
}
#download .flex .left {
    width: 40%;
}
#download .flex .right {
    width: 60%;
}
#download .flex .left p {
    font-size: 1.6rem;
    margin-bottom: 32px;
    line-height: 1.8;
    color: #fff;
}
#download .flex .left p.moreBtn {
    margin-bottom: 0;
}
#special .flex .moreBtn.pc {
    display: block;
}
#special .flex .moreBtn.sp {
    display: none;
}
@media screen and (max-width: 1000px) {
    #download .flex {
        flex-wrap: wrap;
    }
    #download .flex .left,
    #download .flex .right {
        width: 100%;
    }
    #download .flex .left {
        order: 2;
        margin-top: 32px
    }
    #download .flex .right {
        order: 1;
    }
    #download .flex .left p {
        margin-bottom: 24px;
    }
}
@media screen and (max-width: 768px) {
    #download {
        padding: 100px 0 0;
        background-attachment: initial;
        background: none;
    }
}
@media screen and (max-width: 500px) {
    #special .flex .moreBtn.pc {
        display: none;
    }
    #special .flex .moreBtn.sp {
        display: block;
    }
    #special .special-list {
        margin-top: 32px;
        margin-bottom: 24px !IMPORTANT;
    }
}
/*==============
    MAGAZINE
===============*/
#magazine {
    padding: 0;
}
#magazine .flex {
    align-items: center;
}
#magazine .flex .left {
    width: 40%;
}
#magazine .flex .right {
    width: 60%;
}
#magazine .flex .right img {
    max-width: 350px;
    margin: 0 auto;
    display: block;
}
#magazine .flex .left .vol {
    font-size: clamp(24px, calc(1.5rem + ((1vw - 3.78px) * 1.5066)), 40px);
    font-family: var(--en);
    margin-bottom: 32px;
    color: #fff;
}
#magazine .flex .left .vol span {
    font-size: clamp(40px, calc(2.5rem + ((1vw - 3.78px) * 3.0132)), 72px);
    line-height: 0;
    color: #fff;
}
#magazine .flex .left p.moreBtn {
    margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
    #magazine .flex {
        flex-wrap: wrap;
    }
    #magazine .flex .left,
    #magazine .flex .right {
        width: 100%;
    }
    #magazine .flex .left {
        order: 2;
        margin-top: 32px
    }
    #magazine .flex .right {
        order: 1;
    }
    #magazine .flex .left p {
        margin-bottom: 24px;
    }
}
@media screen and (max-width: 768px) {
    #magazine {
        padding: 0;
        background-attachment: initial;
        background: none;
    }
}
@media screen and (max-width: 500px) {
    #magazine .flex .right img {
        max-width: initial;
        width: 80%;
        margin: 0 auto;
        display: block;
    }
    #magazine .flex .left .vol {
        margin-bottom: 24px;
    }
}
/* safari */
/*_::-webkit-full-page-media, _:future, #profile, #gallery, #media, #news, #main, #topics{
    position: relative;
    z-index: 10;
}*/
_::-webkit-full-page-media,
_:future,
body {
    position: relative;
    z-index: 9;
}
_::-webkit-full-page-media,
_:future,
body::after {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url(../img/bg-ambers.jpg);
    background-size: cover;
}
/* 1227 */
.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;
}
/*==============
    yurikagram
===============*/
#yurikagram {
    padding: 275px 0 150px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
#yurikagram h2 {
    color: var(--yellow);
}
#yurikagram:after {
    content: "";
    width: 80%;
    height: 610px;
    background: var(--gray-black);
    position: absolute;
    top: 120px;
    left: 0;
    z-index: -1;
}
#yurikagram .flex {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 72px;
}
#yurikagram .flex h2 {
    margin-bottom: 0;
}
#yurikagram .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#yurikagram .list li {
    width: calc(100% / 3);
}
#yurikagram .list li {
    overflow: hidden;
}
#yurikagram .list li a img {
    object-position: 50% 20%;
    width: 100%;
    height: 100%;
    max-height: 355px;
    max-width: 355px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: 0.8s all;
}
#yurikagram .list li a img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#yurikagram .list li a {
    position: relative;
    display: block;
    width: 89%;
}
#yurikagram .list li a:after {
    content: "";
    width: 25%;
    padding-top: 25%;
    background: url(../img/lock.png) no-repeat center /contain;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 2;
}
@media screen and (max-width: 768px) {
    #yurikagram {
        padding: 100px 0 80px;
    }
    #yurikagram .flex {
        margin-bottom: 32px;
    }
    #yurikagram:after {
        height: 200px;
        top: 50px;
    }
    #yurikagram .moreBtn {
        margin-top: 32px;
    }
    #yurikagram .list li {
        width: calc(96% / 3);
    }
}
/* 251007 add */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}
.popup-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}
.popup-hidden.off {
    display: none !important;
}
#popup-content {
    background-color: white;
    width: 90%;
    max-width: 900px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
#popup-content .inner {
    padding: 10px;
}
#popup-content .ttl {
    font-size: 16px;
    margin-bottom: 16px;
}
#close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}
.popup-image-area img {
    max-width: 100%;
    height: auto;
}
.link-button {
    display: inline-block;
    padding: 20px;
    background-color: var(--color1);
    color: white;
    text-decoration: none;
    text-align: center;
    width: calc(100% - 40px);
    transition: 0.4s all;
    font-family: var(--jpMin);
    border: 1px solid var(--color1);
}
.link-button:hover {
    background: #fff;
    color: var(--color1);
}
.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}
/* topbnr */
.bnrWrap {
    margin-bottom: 100px;
    margin-top: -50px;
}
.bnrWrap a {
    transition: 0.4s all;
}
.bnrWrap a:hover {
    opacity: 0.5;
}
@media screen and (max-width: 765px) {
    .bnrWrap {
        margin-bottom: 50px;
        margin-top: -30px;
    }
}