@charset "UTF-8";

.container {
    background-color: var(--primary-white);
}

/*==========================
Header
==========================*/

.header {
    display: flex;
    justify-content: center;
    position: relative;
}

.topIcon {
    width: 22rem;
    height: 6rem;
    position: absolute;
    top: 2.5rem;
    left: 4.1rem;
}

.title_header {
    width: 80.8rem;
    height: 34.3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-left: 0.4rem solid var(--primary-black);
    border-right: 0.4rem solid var(--primary-black);
    border-bottom: 0.4rem solid var(--primary-black);
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0.6rem 0.6rem 0 0 var(--primary-gray);
    background-image: url(../image/TOP/BG_TOP.jpg);
    background-repeat: repeat;
    background-size: 15rem 15rem;
    position: relative;
    overflow: clip;
    transform: translateY(-100%);
    animation: bounceDown 0.7s ease-out 1.1s forwards;
}

@keyframes bounceDown {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(6%);
    }
    65% {
        transform: translateY(-3%);
    }
    80% {
        transform: translateY(1%);
    }
    95% {
        transform: translateY(-1%);
    }
    100% {
        transform: translateY(0);
    }
}

.title_header::after {
    content: "";
    display: block;
    width: 100%;
    height: 4rem;
    background: url(../image/GALLERY/Gizagiza_header.png) repeat;
    background-repeat: repeat-x;
    position: absolute;
    top: -2rem;
    background-size: contain;
}

.decolation_header {
    background-color: var(--primary-black);
    color: var(--primary-white);
    width: 100%;
    height: 5.6rem;
    font-family: "pf-videotext";
    font-size: 3.6rem;
    letter-spacing: -0.198rem;
    display: flex;
    justify-content: center;
}

.title_GOODS {
    padding: 3.1rem 7.1rem 5rem 7.1rem ;
}

.title_GOODS_sp {
    display: none;
}

.menuIcon {
    width: 7rem;
    height: 8.2rem;
    position: fixed;
    top: 2.5rem;
    right: 6.3rem;
    z-index: 100;
    mix-blend-mode: difference;
    cursor: pointer;
}

/* Header sp */
@media screen and (max-width: 768px) {

    .topIcon {
        display: none;
    }

    .title_header {
        width: 24.4rem;
        height: 9.6rem;
        border-left: 0.2rem solid var(--primary-black);
        border-right: 0.2rem solid var(--primary-black);
        border-bottom: 0.2rem solid var(--primary-black);
        border-radius: 0 0 1rem 1rem;
        box-shadow: 4px 4px 3px 0 var(--primary-gray);
    }

    .title_header::after {
        height: 1.2rem;
        top: -0.6rem;
    }

    .decolation_header {
        height: 1.9rem;
        font-size: 1rem;
        letter-spacing: -0.055rem;
        position: absolute;
        top: 1.5rem;
    }

    .title_GOODS {
        display: none ;
    }

    .title_GOODS_sp {
        display: block;
        padding: 1.7rem 2.5rem ;
    }

    .menuIcon {
        width: 3.3rem;
        height: 4rem;
        top: 1.2rem;
        right: 1.6rem;
    }
  
  }
  /* sp 768px */

  /* 円形クロージングアニメーション用 */
.circle-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2001;
    pointer-events: none;
    display: none;
  }
  
  .circle-transition.active {
    display: block;
  }
  
  .circle-transition svg {
    width: 100%;
    height: 100%;
  }
  
  .circle-transition.closing {
    animation: none;
  }
  
  .circle-transition.opening {
    animation: none;
  }


/*==========================
Movie
==========================*/

.movie {
    margin-top: 12rem;
    width: 100%;
    height: 96rem;
    background-image: url(../image/GOODS/BG_movie.webp);
    background-size: cover;
    border-top: 2px solid var(--primary-black);
}

.movieFrame_goods {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.movieFrame_goods::after {
    content: "Now Making…";
    color: var(--primary-white);
    font-family: "pf-videotext";
    font-size: 9.6rem;
    font-weight: 900;
    position: absolute;
    left: 10.8rem;
    top: 25.5rem;
    clip-path: inset(0 3.7ch 0 0);
    animation: l4 1s steps(5) infinite;
    margin-bottom: 3rem;
}

@keyframes l4 {to{clip-path: inset(0 -1ch 0 0)}}

.movie_goods {
    border-left: 2px solid var(--primary-black);
    border-right: 2px solid var(--primary-black);
    border-bottom: 2px solid var(--primary-black);
    height: 100%;
    position: absolute;
    right: 10.8rem;
}

.movie_goods video {
    width: 100%;
}

/* Movie sp */
@media screen and (max-width: 768px) {

    .movie {
        margin-top: 3.7rem;
        height: 100vh;
        background-image: none;
    }

    .movieFrame_goods::after {
    height: 100%;
    line-height: 1;
    font-size: 4rem;
    color: var(--primary-orange);
    letter-spacing: -0.0168rem;
    position: absolute;
    left: 2.7rem;
    top: 1.5rem;
}

    .movie_goods {
    border-left: none;
    border-right: none;
    border-bottom: 2px solid var(--primary-black);
    height: 100vh;
    width: 100%;
    position: center;
    right: unset;
    object-fit: cover;
}

    .movie_goods video {
    width: 100%;
}
    
  }
  /* sp 768px */

/*==========================
Goods
==========================*/

.goods {
    overflow: hidden;
}

.goodsList {
    height: 100%;
}

/* Goods sp */
@media screen and (max-width: 768px) {

    .goods {
        height: auto ;
    }
  }
  /* sp 768px */

/* GoodsSlide */

.swiper-wrapper {
    height: 59.4rem;
    display: flex;
}

.swiper-slide {
    height: 100%;
    display: flex;
}

.swiper-slide-active {
    background-color: var(--primary-black);
}

.swiper-slide-active .title_slide {
    color: var(--primary-white);
    font-weight: 700;
}

.swiper-slide-active .title_slide_LINE {
    color: var(--primary-white);
    font-weight: 700;
}

.contents_slide {
    width: 101.2rem; 
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    padding: 0 7.7rem 0 7.7rem;
    border-bottom :2px solid var(--primary-black);
    box-sizing: border-box;
}

.slideTitle {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.title_slide {
    color: var(--primary-black);
    font-family: "zen-kaku-gothic-new" ;
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1; 
    letter-spacing: -0.288rem;
}

.title_slide_LINE {
    color: var(--primary-black);
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1; 
    border-bottom: 0.1rem solid var(--primary-white);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 0.3rem;
    position: relative;
    margin-right: 1.8rem;
}

.title_slide_LINE::after {
    content: "";
    display: block;
    background-image: url(../image/GOODS/Icon_link.svg);
    background-size: cover;
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    right: -2rem;
    bottom: 0.4rem;
}

.btn_next_title,.btn_prev_title {
    display: none;
}

.images_slide {
    display: flex;
    gap: 2.4rem;
}

.image-a {
    width: 41.5rem;
    height: 41.5rem;
    border: 2px solid var(--primary-black);
}

.image-b {
    width: 41.5rem;
    height: 41.5rem;
    border: 2px solid var(--primary-black);
}

.image-a img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.image-b img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.dots {
    display: none;
}

/* Goods slide sp */
@media screen and (max-width: 768px) {

.swiper-wrapper {
    height: 43.2rem;
    width: 100%;
    display: flex;
}

.contents_slide {
    width: 100vh;
    height: 43.2rem;
    align-items: center;
    gap: 1.7rem;
    padding: 0 2.7rem 0 2.7rem;
    border-bottom :2px solid var(--primary-black);
    background-color: var(--primary-black);
    position: relative;
}

.slideTitle {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
    gap: 2rem;
}

.title_slide {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1; 
    letter-spacing: -0.144rem;
}

.title_slide_LINE {
    font-size: 1rem;
    letter-spacing: 0;
}

.title_slide_LINE::after {
    width: 0.9rem;
    height: 0.9rem;
    right: -1.2rem;
    bottom: 0.3rem;
}

.btn_prev_title,
.btn_next_title {
    display: block;
    width: 1.7rem;
    height: 2.2rem;
    position: absolute;
}

.btn_prev_title {
    left: -1.5rem;
}

.btn_next_title {
    right: -1.5rem;
}

.btn_prev_title img,
.btn_next_title img {
    width: 100%;
}

.image-a,
.image-b{
    opacity: 0;
}

.image-a.active,
.image-b.active{
    opacity: 1;

}

.image-a {
    width: 32rem;
    height: 32rem;
    border: 2px solid var(--primary-black);
}

.image-b {
    width: 32rem;
    height: 32rem;
    border: 2px solid var(--primary-black);
    position: absolute;
}

image {
    width: 32rem;
    height: 32rem;
    border: 2px solid var(--primary-black);
    position: absolute;
    opacity: 0;
}

image.active {
    opacity: 1;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.dot_image {
    background: var(--primary-gray);
    width: 2rem;
    height: 2rem;
    text-align: center;
    border-radius: 50%;
    transition-duration: 0.3s;
}

.dot_image.active {
    background: var(--primary-white);
}

  }
  /* sp 768px */

/* GoodsSelect */

.select {
    display: grid;
    grid-template-columns: 1fr 69.4vw 1fr;
    grid-template-rows: max-content;
}

/* 行を増やす場合はここのgrid-template-rowsに追加 */
.select_goods {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(4,7.2rem);
}

.select_goods span {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 7.2rem;
    background-color: initial;
    opacity: initial;
    border-radius: 0;
    border-left: 2px solid var(--primary-black);
    border-bottom: 2px solid var(--primary-black);
    margin: 0!important;
}

.select_goods span:nth-of-type(4n) {
    border-right: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(n+13) {
    border-bottom: none
}

/* GoodsSelect sp */
@media screen and (max-width: 768px) {

.select {
    display: grid;
    grid-template-columns: none;
    grid-template-rows: none;
}

.select_button-prev, .select_button-next {
    display: none;
}

.select_goods {
    width: 71.2rem;
    overflow-x: auto;
}

.select_goods span {
    width: max(25.3rem);
}

}
/* sp 768px */

/* ==========================
Goods Name & Image
========================== */

.select_goods span:nth-of-type(1)::before {
    white-space: pre;
    content: 'チケット風\Aステッカーセット';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(1)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods1-a.webp);
    background-size: cover;
    border-left: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(2)::before {
    white-space: pre;
    content: 'アクリル\Aキーホルダー①';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(2)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods2-a.webp);
    background-size: cover;
    border-left: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(3)::before {
    white-space: pre;
    content: 'ステッカー①';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(3)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods3-a.webp);
    background-size: cover;
    border-left: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(4)::before {
    white-space: pre;
    content: 'プラスチックマグ';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(4)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods4-a.jpg);
    background-size: cover;
    border-left: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(5)::before {
    white-space: pre;
    content: 'タオルハンカチ';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(5)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods5-a.webp);
    background-size: cover;
    background-position-y: -1.1rem;
    border-left: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(6)::before {
    white-space: pre;
    content: 'ポストカード';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(6)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods6-a.webp);
    background-size: cover;
    background-position-y: -0.7rem;
    border-left: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(7)::before {
    white-space: pre;
    content: 'ステッカー\A 3枚セット';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(7)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods7-a.webp);
    background-size: cover;
    border-left: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(8)::before {
    white-space: pre;
    content: 'ステッカー②';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(8)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods8-a.webp);
    background-size: cover;
    border-left: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(9)::before {
    white-space: pre;
    content: 'アクリル\Aキーホルダー②';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(9)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods9-a.webp);
    background-size: cover;
    background-position-y: -1.1rem;
    border-left: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(10)::before {
    white-space: pre;
    content: 'トートバッグ';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(10)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods10-a.webp);
    background-size: cover;
    border-left: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(11)::before {
    white-space: pre;
    content: 'LINE絵文字';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(11)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods11-a.webp);
    background-size: cover;
    border-left: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(12)::before {
    white-space: pre;
    content: 'アクリル\Aキーホルダー③';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(12)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods12-a.webp);
    background-size: cover;
    border-left: 2px solid var(--primary-black);
}

.select_goods span:nth-of-type(13)::before {
    white-space: pre;
    content: 'ステッカー③';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(13)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods13-a.webp);
    background-size: cover;
    border-left: 2px solid var(--primary-black);
}


.select_goods span:nth-of-type(14)::before {
    white-space: pre;
    content: 'ステッカー④';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(14)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/goods14-a.webp);
    background-size: cover;
    border-left: 2px solid var(--primary-black);
}

/* .select_goods span:nth-of-type(15)::before {
    white-space: pre;
    content: 'COMING SOON…';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(16)::before {
    white-space: pre;
    content: 'COMING SOON…';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}  */

.select_goods span:nth-of-type(n+15)::before {
    white-space: pre;
    content: 'COMING SOON…';
    font-family: "zen-kaku-gothic-new" ;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select_goods span:nth-of-type(n+15)::after {
    content: "";
    display: grid;
    width: 100%;
    height: 100%;
    background-image: url(../image/GOODS/goods/Making_samnail.webp);
    background-size: cover;
    border-left: 2px solid var(--primary-black);
}

/* Goods Name & Image sp */
@media screen and (max-width: 768px) {

.select_goods span:nth-of-type(n+1)::before {
    font-size: 1.4rem;
    line-height: 1.5rem;
}

}
/* sp 768px */

/* ================================================= */


.select_goods span.swiper-pagination-bullet-active {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.select_button-prev {
    cursor: pointer;
    position: relative;
    z-index: 3;
    overflow: hidden;
    transition: color 0.5s ease;
}

.select_button-prev::before {
    content: "";
    display: block;
    width: 5rem;
    height: auto;
    aspect-ratio: 44 / 57;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../image/GOODS/Arrow_prev.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

.select_button-prev::after {
  background-color: var(--primary-black);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.select_button-prev:hover::after {
    transform: scale(1,1);
}

.select_button-next {
    cursor: pointer;
    position: relative;
    z-index: 3;
    overflow: hidden;
    transition: color 0.5s ease;
}

.select_button-next::before {
    content: "";
    display: block;
    width: 5rem;
    height: auto;
    aspect-ratio: 44 / 57;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../image/GOODS/Arrow_next.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

.select_button-next::after {
  background-color: var(--primary-black);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.select_button-next:hover::after {
    transform: scale(1,1);
}

/*==========================
Btn_links
==========================*/

.links {
    width: 100%;
    height: 37.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-top: 2px solid var(--primary-black);
}

.links::after {
    content: "";
    display: block;
    width: 15.4rem;
    height: 14.1rem;
    background: url(../image/GOODS/Emoji_MANURU_light.png) no-repeat center / cover;
    position: absolute;
    right: 15.8rem;
    bottom: -2.5rem;
    animation: poyopoyo 2s linear .5s infinite forwards;
    transform-origin: 50% 50%;
}

    @keyframes poyopoyo {
          0% { transform: scale(1); }
         30% { transform: scale(1); }
         40% { transform: scale(1.02); }
         50% { transform: scale(1); }
         60% { transform: scale(1.02); }
         70% { transform: scale(1); }
        100% { transform: scale(1); }

    }
    


.contents_links {
    width: 40.4rem ;
}

.text_links {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how_en {
    color: var(--primary-orange);
    font-size: 6.4rem;
    font-weight: 700;
    letter-spacing: -0.128rem;
    text-shadow: 0.6rem 0 0 var(--primary-black);
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: var(--primary-black);
    line-height: 1;
}

.how_jp {
    margin-top: 0.5rem;
    color: var(--primary-black);
    text-align: center;
    font-family: "zen-kaku-gothic-new" ;
    font-size: 2rem;
    font-weight: 500;
    line-height: 3rem; 
    letter-spacing: -0.08rem;
}

.sns_links {
    margin-top: 1.8rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2.3rem;
}

.btn_x {
    width: 8.1rem;
    height:8.1rem;
    transition-duration: .4s;
}

.btn_x img {
    width: 100%
}

.btn_x:hover {
    transform: scale(1.08);
  }

.btn_instagram {
    width: 8.1rem;
    height:8.1rem;
    transition-duration: .4s;
}

.btn_instagram img {
    width: 100%
}

.btn_instagram:hover {
    transform: scale(1.08);
  }



/* Btn_links sp */
@media screen and (max-width: 768px) {

.links {
    width: 100%;
    height: 29.4rem;
    border-top: 2px solid var(--primary-black);
}

.links::after {
    content: "";
    display: block;
    width: 10rem;
    height: 9.2rem;
    background: url(../image/GOODS/Emoji_MANURU_light.png) no-repeat center / cover;
    position: absolute;
    right: 50%;
    bottom: -1.5rem;
    transform: translate(50%);
}

    @keyframes poyopoyo {
          0% { transform: translate(50%) scale(1); }
         30% { transform: translate(50%) scale(1); }
         40% { transform: translate(50%) scale(1.02); }
         50% { transform: translate(50%) scale(1); }
         60% { transform: translate(50%) scale(1.02); }
         70% { transform: translate(50%) scale(1); }
        100% { transform: translate(50%) scale(1); }

    }

.contents_links {
    width: 28.3rem ;
    margin-bottom: 6rem;
}

.text_links {
    align-items: center;
}

.how_en {
    color: var(--primary-orange);
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: -0.128rem;
    text-shadow: 0.3rem 0 0 var(--primary-black);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--primary-black);
    line-height: 1;
}

.how_jp {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2rem; 
    letter-spacing: -0.056rem;
}

.sns_links {
    margin-top: 1.5rem;
    width: 100%;
    gap: 0.6rem;
}

.btn_x {
    width: 3.8rem;
    height: 3.8rem;
}

.btn_instagram {
    width: 3.8rem;
    height: 3.8rem;
}

}
  /* sp 768px */