/*-------------------------------------------------
|- slide-wrap
-------------------------------------------------*/
.slide-wrap {
    width: 100%;
}
/* ---------- slick ---------- */
.slide-wrap .slick-slide img {
    height: 100%;
}
.slide-wrap .slick-prev, .slide-wrap .slick-next {
    width: 80px;
    height: 80px;
    z-index: 1;
}
.slide-wrap .slick-prev:before, .slide-wrap .slick-next:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1;
}
.slide-wrap .slick-prev:before {
    background: url(/assets/img/btn_slide_prev.svg);
    background-size: auto;
    background-position: center;
}
.slide-wrap .slick-next:before {
    background: url(/assets/img/btn_slide_next.svg);
    background-size: auto;
    background-position: center;
}
/* ---------- slick dotted ---------- */
.slick-dotted.slick-slider {
    margin-bottom: 80px;
}
.slick-dots {
    bottom: -80px;
    margin-bottom: 30px;
    padding: 20px 0;
    line-height: 0;
}
.slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 10px;
}
.slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
}
.slick-dots li button:before {
    content: '';
    width: 10px;
    height: 10px;
    background: #C8C9CA;
    border-radius: 50%;
    opacity: 1;
}
.slick-dots li.slick-active button:before {
    background: var(--primary-color);
    opacity: 1;
}
.slide-wrap .slick-prev {
    left: 23%;
}
.slide-wrap .slick-next {
    right: 23%;
}
@media screen and (min-width: 768px){
    .slide {
        position: relative;
    }
    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.5);
        transition: .4s;
    }
    .slide.slick-active::before {
        position: unset;
        background: none;
    }
}
@media screen and (max-width: 1701px){
    .slide-wrap .slick-prev {
        left: 20%;
    }
    .slide-wrap .slick-next {
        right: 20%;
    }
}
@media screen and (max-width: 1601px){
    .slide-wrap .slick-prev {
        left: 18%;
    }
    .slide-wrap .slick-next {
        right: 18%;
    }
}
@media screen and (max-width: 1501px){
    .slide-wrap .slick-prev {
        left: 16%;
    }
    .slide-wrap .slick-next {
        right: 16%;
    }
}
@media screen and (max-width: 1401px){
    .slide-wrap .slick-prev {
        left: 14%;
    }
    .slide-wrap .slick-next {
        right: 14%;
    }
}
@media screen and (max-width: 1281px){
    .slide-wrap .slick-prev {
        left: 11%;
    }
    .slide-wrap .slick-next {
        right: 11%;
    }
}
@media screen and (max-width: 1001px){
    .slide-wrap .slick-prev {
        left: 9%;
    }
    .slide-wrap .slick-next {
        right: 9%;
    }
}
@media screen and (max-width: 767px){
    .slick-dotted.slick-slider {
        margin-bottom: 50px;
    }
    .slick-dots {
        bottom: -50px;
        margin-bottom: 0;
    }
}
/*-------------------------------------------------
|- top-btn
-------------------------------------------------*/
.top-btn {
    padding: 30px 20px;
    box-sizing: border-box;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
}
.top-btn__item {
    width: 60%;
    max-width: 240px;
    margin-right: 60px;
}
.top-btn__item:last-of-type {
    margin-right: 0;
}
.top-btn__link {
    position: relative;
}
.top-btn__link::before {
    content: '';
    transition: .3s;
}
.top-btn__link:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.4);
    display: block;
}
@media screen and (max-width: 767px){
    .top-btn {
        padding: 15px 0;
        gap: 0 15px;
    }
    .top-btn__item {
        width: 20%;
        max-width: none;
        margin: 0;
    }
    .top-btn__link {
        height: 100%;
        padding: 0;
        font-size: var(--font-size14);
    }
    /* ---------- slick ---------- */
    .top-btn .slick-prev {
        left: 3%;
    }
    .top-btn .slick-next {
        right: 3%;
    }
    .top-btn .slick-prev, .top-btn .slick-next {
        width: 10px;
        height: 23px;
        z-index: 1;
    }
    .top-btn .slick-prev:before, .top-btn .slick-next:before {
        content: '';
        width: 100%;
        height: 100%;
        display: block;
        opacity: 1;
    }
    .top-btn .slick-prev:before {
        background: url(/assets/img/btn_slide_prev_white.svg);
        background-size: cover;
        background-position: center;
    }
    .top-btn .slick-next:before {
        background: url(/assets/img/btn_slide_next_white.svg);
        background-size: cover;
        background-position: center;
    }
}
/*-------------------------------------------------
|- section
-------------------------------------------------*/
.section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 70px 0;
}
.section:nth-child(even){
    background: #F2F3F1;
}
.section-inner {
    width: 93%;
    max-width: 960px;
    margin: 0 auto;
}
.section-ttl {
    width: 100%;
    padding: 0;
    border: 0;
}
.section-ttl__news {
    margin-bottom: 30px;
}
.section-ttl__en {
    margin-right: 15px;
}
@media screen and (max-width: 767px){
    .section {
        padding: 40px 0;
    }
    .section__news {
        padding: 40px 0 50px;
    }
    .section-ttl {
        padding: 0;
    }
    .section-ttl__news {
        margin-bottom: 15px;
    }
}
/*-------------------------------------------------
|- product
-------------------------------------------------*/
.product-wrap {
    width: 93%;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.product__item {
    width: 48%;
    max-width: 350px;
    height: 150px;
    margin: 0 50px 50px 0;
}
.product__item:nth-child(even){
    margin-right: 0;
}
.product__item:nth-child(n+3){
    margin-bottom: 0;
}
.product__link {
    position: relative;
    width: 100%;
    height: 100%;
    border: 4px solid;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    transition-duration: .4s;
    overflow: hidden;
}
.product__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 50%;
    height: 100%;
    padding-left: 25%;
    transform: skew(335deg);
    display: block;
    z-index: -1;
}
.product__icon {
    line-height: 0;
    display: flex;
    align-items: center;
}
.product__icon-game {
    width: 36%;
    max-width: 127px;
    margin-left: 25px;
}
.product__icon-card {
    width: 37%;
    max-width: 131px;
    margin-left: 35px;
}
.product__icon-hobby {
    width: 31%;
    max-width: 109px;
    margin-left: 35px;
}
.product__icon-goods {
    width: 33%;
    max-width: 117px;
    margin-left: 40px;
}
.product__icon svg {
    height: 100%;
}
.st1 {
    fill: #6e71b7;
}
.st2-1 {
    fill: #a4ce4d;
    stroke: #78b420;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
}
.st2-2 {
    fill: #78B420;
}
.st3-1 {
    stroke-width: 2.5px;
}

.st3-1, .st3-2, .st3-3 {
    fill: none;
    stroke: #f7b419;
    stroke-miterlimit: 10;
}
.st3-2 {
    stroke-width: 3px;
}
.st3-4 {
    fill: #f7b419;
}
.st4-1 {
    fill: #ebca33;
}

.st4-1, .st4-2 {
    stroke: #ebca33;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}
.st4-2 {
    fill: #e6b400;
}
.product__txt {
    margin-right: 10px;
    display: flex;
    align-items: flex-end;
    flex-flow: column;
    justify-content: end;
}
.product__txt-game {
    color: var(--color-01);
}
.product__txt-card {
    color: #78B420;
}
.product__txt-hobby {
    color: var(--color-03);
}
.product__txt-goods {
    color: var(--color-04);
}
.product__txt-en {
    font-size: var(--font-size18);
    line-height: 1;
}
.product__txt-jp {
    font-size: 2rem;
    font-weight: 600;
}
@media screen and (min-width: 768px){
    .product__link:hover {
        transform: translateY(-6px);
        box-shadow: 0px 8px 18px -5px rgba(85, 85, 85, .75);
    }
}
@media screen and (max-width: 891px){
    .product__item {
        max-width: none;
        margin: 0 20px 20px 0;
    }
}
@media screen and (max-width: 767px){
    .product-wrap {
        width: 100%;
        justify-content: space-between;
    }
    .product__item {
        width: 49%;
        height: auto;
        min-height: 75px;
        margin: 0 0 15px 0;
    }
    .product__link {
        border: 2px solid;
    }
    .product__link::before {
        left: -30px;
    }
    .product__txt {
        margin: 0 5px 3px 0;
    }
    .product__txt-en {
        font-size: .61rem;
    }
    .product__txt-jp {
        font-size: var(--font-size14);
    }
    .product__icon {
        padding: 5px 0;
    }
    .product__icon-game {
        width: 36%;
        margin-left: 13px;
    }
    .product__icon-card {
        width: 37%;
        margin-left: 17px;
    }
    .product__icon-hobby {
        width: 31%;
        margin-left: 15px;
    }
    .product__icon-goods {
        width: 33%;
        margin-left: 20px;
    }
    /* .product__txt {
        margin-bottom: 5px;
    }
    .product__txt-game,
    .product__txt-hobby,
    .product__txt-goods {
        margin-right: 20px;
    }
    .product__txt-card {
        margin-right: 10px;
    } */
}
.product__link-game {
    border-color: #6E71B7;
}
.product__link-game::before {
    background: #1D2087;
}
.product__link-card {
    border-color: #A4CE4D;
}
.product__link-card::before {
    background: #78B420;
}
.product__link-hobby {
    border-color: #F7B419;
}
.product__link-hobby::before {
    background: #EE8700;
}
.product__link-goods {
    border-color: #EBCA33;
}
.product__link-goods::before {
    background: #E6B400;
}
/*-------------------------------------------------
|- news
-------------------------------------------------*/
.news-wrap {
    width: 93%;
    max-width: 700px;
    margin: 0 auto;
}
.news {
    width: 100%;
    border-bottom: 1px dotted #888;
}
.news-link {
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    transition: .3s;
}
.news-link:hover .news-ttl {
    color: var(--primary-color);
}
.news-date {
    margin-right: 10px;
    font-size: var(--font-size14);
    line-height: 2;
}
.news-cate {
    min-width: 124px;
    margin-right: 15px;
    padding: 2px 10px;
    box-sizing: border-box;
    color: #fff;
    font-size: var(--font-size13);
    text-align: center;
}
.news-ttl {
    font-size: var(--font-size15);
    word-break: break-word;
    flex: 1;
}
@media screen and (max-width: 767px){
    .news-link {
        padding: 10px 0;
    }
    .news-date {
        font-size: var(--font-size12);
        line-height: 1.5;
    }
    .news-cate {
        min-width: 90px;
        margin-right: 0;
        padding: 0 5px;
    }
    .news-ttl {
        width: 100%;
        margin-top: 10px;
        font-size: var(--font-size14);
        flex: none;
    }
}

/*-------------------------------------------------
|- pickup
-------------------------------------------------*/
.pickup-wrap {
    width: 93%;
    max-width: 840px;
    margin: 0 auto;
}
.pickup-wrap > * + * {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--primary-color);
}
.pickup {
    width: 100%;
}
.pickup__link {
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.pickup__body {
    position: relative;
    width: 36%;
    padding-top: 25%;
    overflow: hidden;
}
.pickup__body-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .5s;
}
.pickup__ttl {
    width: 100%;
    margin-bottom: 10px;
    font-size: var(--font-size18);
    font-weight: 600;
    word-break: break-all;
}
.pickup__txt {
    margin-left: 1rem;
    font-size: var(--font-size14);
    flex: 1;
}
@media screen and (min-width: 768px){
    .pickup__link:hover .pickup__body-img {
        transform: scale(1.1,1.1);
    }
}
@media screen and (max-width: 767px){
    .pickup-wrap {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .pickup-wrap > * + * {
        margin-top: 0;
        padding-top: 0;
        border: 0;
    }
    .pickup {
        width: 47%;
        margin-bottom: 30px;
    }
    .pickup__body {
        width: 100%;
        padding-top: 70%;
    }
    .pickup__ttl {
        font-size: var(--font-size14);
    }
    .pickup__txt {
        margin: 0;
        font-size: var(--font-size13);
    }
    .pickup__link {
        display: block;
    }
}
