@charset "utf-8";

/* ------------------------------------------------
    GENERAL STYLES
-------------------------------------------------- */

:root {

    /* COLOR */
    --bg-color: #101010;
    --bg-text-color: #fff;

    /* タイトル日本語表示の色 */
    --section-title-sub-color: #ED60A0;

    /* NEWS pagerのカレント表示の色 */
    --news-pager-current-color: #ED60A0;

    /* トップページ「PICK UP]テキストのネオンカラー */
    --pickup-neon-color: #df44fe;

    /* newsリスト、news detailの白背景部分の色 */
    --box-contents-bg-color: #fff;
    --box-contents-text-color: #000;

    /* TOP PAGE NEWSリストの色 */
    --top-page-news-bg-color: #242627;
    --top-page-news-bg-text-color: #fff;

    /* ARTIST DETAILS のデフォルトカラー*/
    --artist-detail-bg-color: #101010;
    --artist-detail-bg-text-color: #fff;
    --artist-detail-member-bg-color: rgba(255, 255, 255, 0.13);

    /* SIZE */
    --page-padding-width: 10px;
    --section-margin: 40px;

    /* SWIPER */
    --swiper-navigation-size: 40px;
    --swiper-navigation-color: #fff;
    --swiper-navigation-sides-offset: 5px;

    --hover-opacity: 0.8;
}

@media (min-width:425px) {
    :root {
        --page-padding-width: 20px;
    }
}

@media (min-width:600px) {
    :root {
        --section-margin: 60px;
    }
}

@media (min-width:768px) {
    :root {
        --page-padding-width: 30px;
        --section-margin: 80px;
    }
}

/*  FONTS
-------------------------------------------------- */

/* POPPINS */
.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

/* NOTO SANS JP Valiables */

.noto-sans-jp {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/*  GENERAL
-------------------------------------------------- */
.pickup-jp-main {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 1.5;
    background: var(--bg-color);
    color: var(--bg-text-color);
    min-height: calc(100vh - 550px);
}

.pickup-jp-main * {
    box-sizing: border-box;
}

.pickup-jp-main a:hover,
.pickup-jp-main a:active,
.pickup-jp-main a:link,
.pickup-jp-main a:visited {
    color: var(--bg-text-color);
    text-decoration: none;
}

.pickup-jp-main img {
    width: 100%;
    height: auto;
}

.pickup-jp-section-title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-variation-settings: "wght"500;
    line-height: 1.2;
}

.pickup-jp-section-title__sub {
    color: var(--section-title-sub-color);
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wght"500;
    text-align: center;
    display: block;
}


.pickup-jp-section-title.--h1 {
    font-size: clamp(55px, 12vw, 90px);
    line-height: 1.2;
    padding-bottom: 0;
    color: var(--bg-text-color);
}

.pickup-jp-section-title.--h2 {
    font-size: clamp(50px, 10.8vw, 83px);
}

.pickup-jp-section-title.--h3 {
    font-size: clamp(39px, 9.72vw, 75px);
}

.pickup-jp-section-title.--h4 {
    font-size: clamp(33px, 8.262vw, 63px);
}

.pickup-jp-section-title.--h5 {
    font-size: clamp(28px, 7.023vw, 53px);
    font-weight: 400;
}

.pickup-jp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-padding-width);
}

.pickup-jp-container.--md {
    max-width: 980px;
}

.pickup-jp-section {
    padding: var(--section-margin) 0;

    /* SMTJ用 style打ち消し */
    max-width: unset;
    font-size: inherit;
    margin: unset;
}

article form input[type="submit"], form article input[type="submit"]{
    font-size: 14px;
}

@media (min-width:481px){
    .pickup-jp-main{
        min-height: calc(100vh - 400px);
    }
}

@media (min-width:768px) {
    .pickup-jp-container {
        padding: 0 var(--page-padding-width);
    }
}

@media (min-width: 321px) and (max-width: 1023px){
        article form{
        max-width:unset;
        font-size: inherit;
    }
}

/*　MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 12001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal * {
    box-sizing: border-box;
}

.modal-content {
    background-color: #fff;
    margin: 100px auto 0;
    padding: 50px 30px;
    width: 100%;
    height: calc(100% - 100px);
    text-align: center;
    animation: 0.5s modal-open ease;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

@keyframes modal-open {
    0% {
        transform: translate(0, 100%);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.modal-content-inner{
    width: 100%;
    height: 100%;
    overflow-y:auto;
}

.close {
    display: block;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/button-close--white.svg') no-repeat;
    background-size: 25px 25px;
    background-position: center center;
    position:absolute;
    top: -60px;
    right: 0;
}


.modal-image {
    width: 100%;
    max-width:500px;
}

.modal-name {
    font-size: 40px;
     line-height: 1.2;
     text-align: center;
}
.modal-name.--eng{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-variation-settings: "wght"300;
}

.modal-content__textwrap{
    margin-top: 20px;
}

@media (min-width:900px) {
    .modal-content {
        width: 85vw;
        height: fit-content;
        max-width: 980px;
        max-height: calc(95% - 120px);
        border-radius: 20px;
        margin-top: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: 0.7s modal-open-pc ease;
        overflow-y: auto;
    }

    @keyframes modal-open-pc{
        0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
    }

    .close {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/button-close--black.svg') no-repeat;
    background-size: 25px 25px;
    background-position: center center;
    position:absolute;
    top: 10px;
    right: 10px;
}

    .modal-content-inner{
        width: 100%;
        height: 100%;
        display:grid;
        gap: 20px;
        grid-template-columns: 1fr 1fr;

    }
    .modal-image{
    }
    .modal-content__textwrap{
        margin-top: 0;
    }
.modal-name{
    text-align: left;
}
  
}





/* ------------------------------------------------
    PICK UP JP TOP
-------------------------------------------------- */


/*  PICK UP swiper
-------------------------------------------------- */

.pickup-jp-artist {
    width: 100%;
    position: relative;
}

.pickup-jp-artist-inner {
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    margin: 0 auto;
    padding: 30px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pickup-jp-artist-title {
    font-size: clamp(47px, 12vw, 92px);
    font-weight: 400;
    font-variation-settings: "wght"400;
    color: #fff;
    text-shadow:
        0 0 6px rgba(255, 255, 255, 1),
        0 0 8px rgba(255, 255, 255, 1),
        0 0 21px var(--pickup-neon-color),
        0 0 42px var(--pickup-neon-color),
        0 0 82px var(--pickup-neon-color),
        0 0 92px var(--pickup-neon-color),
        0 0 102px var(--pickup-neon-color),
        0 0 151px var(--pickup-neon-color);
    animation: neon 3s infinite alternate;



}

@keyframes neon {
    100% {
        text-shadow:
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px var(--pickup-neon-color),
            0 0 40px var(--pickup-neon-color),
            0 0 80px var(--pickup-neon-color),
            0 0 90px var(--pickup-neon-color),
            0 0 100px var(--pickup-neon-color),
            0 0 150px var(--pickup-neon-color),
            0 0 200px var(--pickup-neon-color);

    }

    0% {

        text-shadow:
            0 0 2px #fff,
            0 0 4px #fff,
            0 0 6px var(--pickup-neon-color),
            0 0 10px var(--pickup-neon-color),
            0 0 45px var(--pickup-neon-color),
            0 0 55px var(--pickup-neon-color),
            0 0 70px var(--pickup-neon-color);
        /* 0 0 2px #fff,
            0 0 4px #fff,
            0 0 6px var(--pickup-neon-color),
            0 0 10px var(--pickup-neon-color),
            0 0 45px var(--pickup-neon-color),
            0 0 55px var(--pickup-neon-color),
            0 0 70px var(--pickup-neon-color); */
    }
}

.pickup-jp-artist-list {
    width: 100%;
    height: 100%;
}

.pickup-jp-artist-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pickup-jp-artist-item.swiper-slide {
    z-index: 0;
}

.pickup-jp-artist-item.swiper-slide.swiper-slide-active {
    z-index: 2;
}

.pickup-jp-artist .swiper-button-next,
.pickup-jp-artist .swiper-button-prev {
    width: 50px;
    height: 50px;
    z-index: 10;
}

.pickup-jp-artist .swiper-button-next::after {
    content: "";
    width: 40px;
    height: 40px;
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/swiper-arrow__right.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

.pickup-jp-artist .swiper-button-prev::after {
    content: "";
    width: 40px;
    height: 40px;
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/swiper-arrow__left.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

.pickup-jp-artist-item__inner {
    transform: scale(0.8);
    transition: transform 0.3s ease;
    transform-origin: center center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding-bottom: 30px;
}

.pickup-jp-artist-item__image-wrapper {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    height: auto;
}

.pickup-jp-artist-item__image {
    display: block;
    width: 100%;
}


.pickup-jp-artist-item__image-wrapper:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    background: #000;
    opacity: 0;
    transition: 0.3s;
}

.pickup-jp-artist-item__image-wrapper:hover::before {
    opacity: 0.2;
}

.swiper-slide-active .pickup-jp-artist-item__inner {
    transform: scale(1);
    opacity: 1;
}

.pickup-jp-artist-item__inner img {
    display: block;
    width: 100%;
    height: auto;
}

.pickup-jp-artist-item__view-btn {
    transition: ease-in 0.5s;
    display: block;
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/btn_view-artist.svg') no-repeat;
    background-size: contain;
    background-position: center top;
    width: 170px;
    height: 44px;
    font-size: 0;
    color: transparent;
    line-height: 1;
    margin: 20px;
    position: relative;
}

/* グラデーションのぼかし背景(filterプロパティ未対応のブラウザ) */
.pickup-jp-artist-item__view-btn::before {
    content: "";
    display: none;
}

/* グラデーションのぼかし背景(filterプロパティ対応済のブラウザ) */
@supports (-webkit-filter: blur(20px)) {

    .pickup-jp-artist-item__view-btn::before {
        content: "";
        position: absolute;
        left: -30px;
        top: -30px;
        transform: scale(1.2);
        display: block;
        width: 200px;
        height: 100px;
        border-radius: 260px;
        z-index: -1;
        background-image: linear-gradient(304deg, rgba(245, 41, 134, 1) 0%, rgba(118, 77, 197, 1) 62.56%, #026dff 100%);
        -webkit-filter: blur(40px);
        filter: blur(40px);
        box-shadow: none;
        opacity: 0.7;
        animation: 6s gradientShadow cubic-bezier(0.83, 0, 0.17, 1);
    }
}

@media (min-width:768px) {
    .pickup-jp-artist-item__view-btn::before {
        width: 300px;
        height: 120px;
        top: -60px;
        left: -60px;
        -webkit-filter: blur(50px);
        filter: blur(50px);
    }
}

@keyframes gradientShadow {
    0% {
        opacity: 0.7;
        transform: scale(0.7);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* active以外のスライド設定 */

.swiper-slide:not(.swiper-slide-active) .pickup-jp-artist-item__image-wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

.swiper-slide:not(.swiper-slide-active) .pickup-jp-artist-item__view-btn {
    opacity: 0;
    pointer-events: none;
}

.swiper-slide:not(.swiper-slide-active) .pickup-jp-artist-item__view-btn::before {
    display: none;
}

@media (min-width:768px) {
    .pickup-jp-artist-inner {
        padding-top: 60px;
    }

    .pickup-jp-artist-item__inner {
        padding-bottom: 50px;
    }
}



/*  PICK UP detail
-------------------------------------------------- */

.pickup-jp-artist-detail-item {
    display: none;
    background: var(--artist-detail-bg-color);
    color: var(--artist-detail-bg-text-color);
}

.pickup-jp-artist-detail-item.active {
    display: block;
}

.pickup-jp-artist-detail-item__inner {
    width: 100%;
    margin: 0 auto;
}


/* ----- PROFILE ----- */
.pickup-jp-artist-profile__image {
    margin-top: 10px;
}

.pickup-jp-artist-profile__profile-text {
    margin-top: 15px;
}

/* ----- MEMBER ----- */
.pickup-jp-artist__member {
    background: var(--artist-detail-member-bg-color);
    margin: 40px 0 0;
    position: relative;
}

.pickup-jp-artist__member::before {
    content: "";
    display: block;
    width: clamp(95px, 25vw, 140px);
    height: auto;
    aspect-ratio: 143 / 825;
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/member-title-deco.svg') no-repeat;
    background-size: contain;
    background-position: top left;
    position: absolute;
    top: 20px;
    left: -1vw;
    opacity:0.28;
}

/* 

.pickup-jp-artist-member__item{
    position: relative;
    z-index: 1;
}
    .pickup-jp-artist-member__item:hover{
cursor: pointer;
}
.pickup-jp-artist-member__image{
    display: block;
    position:relative;
}
.pickup-jp-artist-member__imagewrap{
    position: relative;
}
.pickup-jp-artist-member__imagewrap:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    background: #000;
    opacity: 0;
    transition: 0.3s;
}
.pickup-jp-artist-member__item:hover .pickup-jp-artist-member__imagewrap::before{
    opacity: 0.2;
} */

.pickup-jp-artist-member__inner {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}

.pickup-jp-artist-member__title {
    margin-top: -75px;
}

.pickup-jp-artist-member__list {
    margin-top: 20px;
    display: grid;
    gap: 15px 10px;
    grid-template-columns: 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
}


.pickup-jp-artist-member__name {
    text-align: center;
    font-size: 17px;
}

.pickup-jp-artist-member__name.--eng {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media (min-width:600px) {
    .pickup-jp-artist-member__title {
        margin-top: -100px;
    }
}

@media (min-width:768px) {
    .pickup-jp-artist__member {
        margin-top: 50px;
        position: relative;
    }

    .pickup-jp-artist-member__title {
        margin-top: -135px;
    }

    .pickup-jp-artist-member__list {
        gap: 35px 20px;
        margin-top: 50px;
    }
}

/* ----- MOVIE ----- */
.pickup-jp-artist__movie {
    position: relative;
    background: var(--artist-detail-bg-color);
}

.pickup-jp-artist__movie::before {
    content: "";
    display: block;
    width: clamp(95px, 25vw, 140px);
    height: auto;
    aspect-ratio: 146 / 630;
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/movie-title-deco.svg') no-repeat;
    background-size: contain;
    background-position: top left;
    position: absolute;
    top: 20px;
    left: -1vw;
    opacity: 0.28;
}

 .pickup-jp-artist-movie__inner:not(:has(.swiper)) {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}

.pickup-jp-artist-movie__title {
    margin-top: -75px;
}

.pickup-jp-artist-movie__movie {
    width: 100%;
    height: auto;
    margin-top: 20px;
    z-index: 1;
    position: relative;
}

.pickup-jp-artist-movie__movie iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}


.pickup-jp-artist-movie__movie .swiper-button-next,
.pickup-jp-artist-movie__movie .swiper-button-prev {
    width: 50px;
    height: 50px;
}

.pickup-jp-artist-movie__movie .swiper-button-next::after {
    content: "";
    width: 40px;
    height: 40px;
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/swiper-arrow__right.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

.pickup-jp-artist-movie__movie .swiper-button-prev::after {
    content: "";
    width: 40px;
    height: 40px;
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/swiper-arrow__left.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

@media (min-width:600px) {
    .pickup-jp-artist-movie__title {
        margin-top: -100px;
    }
}

@media (min-width:768px) {
    .pickup-jp-artist-movie__inner:not(:has(.swiper)) {
        max-width: 1200px;
        padding-left: var(--page-padding-width);
        padding-right: var(--page-padding-width);
        margin-left: auto;
        margin-right: auto;
    }

    .pickup-jp-artist-movie__title {
        margin-top: -135px;
    }
}


/* ----- LINKS ----- */
.pickup-jp-artist__links {
    background: var(--artist-detail-bg-color);
    position: relative;
}

.pickup-jp-artist-links__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    gap: clamp(15px, 5vw, 40px);

}

.pickup-jp-artist-links__item {
    width: clamp(38px, 10vw, 50px);
    height: auto;
    aspect-ratio: 1 / 1;
}

.pickup-jp-artist-links__item.--website {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/icon__website--white.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.pickup-jp-artist-links__item.--x {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/icon__x--white.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.pickup-jp-artist-links__item.--x.--black {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/icon__x--black.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.pickup-jp-artist-links__item.--instagram {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/icon__instagram--white.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.pickup-jp-artist-links__item.--instagram.--black {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/icon__instagram--black.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.pickup-jp-artist-links__item.--tiktok {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/icon__tiktok--white.svg');
    background-repeat: no-repeat;
    background-size: contain;
}
.pickup-jp-artist-links__item.--tiktok.--black {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/icon__tiktok--black.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.pickup-jp-artist-links__item.--youtube {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/icon__youtube--white.svg');
    background-repeat: no-repeat;
    background-size: contain;
}
.pickup-jp-artist-links__item.--youtube.--black {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/icon__youtube--black.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.pickup-jp-artist-links__item.--line {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/icon__line--white.svg');
    background-repeat: no-repeat;
    background-size: contain;
}


.pickup-jp-artist-links__link {
    width: 100%;
    height: 100%;
    display: block;
}

/* ---------- GPP ---------- */
.pickup-jp-artist-detail-item.--gpp {
    --artist-detail-bg-color: #101010;
    --artist-detail-bg-text-color: #fff;
    --artist-detail-nenber-bg-color: rgba(255, 255, 255, 0.13);
}

.pickup-jp-artist-detail-item.--gpp .pickup-jp-artist-profile__logo-image {
    height: clamp(20px, 5.128vw, 35px);
    width: auto;
}

@media (min-width:768px) {
    .pickup-jp-artist-detail-item.--gpp .pickup-jp-artist-member__list {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}



/* ---------- CERA RENA ---------- */
.pickup-jp-artist-detail-item.--cerarena {
    --artist-detail-bg-color: linear-gradient(90deg, rgb(150, 185, 225), rgb(230,230,240), rgb(249, 170, 215));
    --artist-detail-bg-text-color: rgb(0,0,0);
    --artist-detail-member-bg-color: rgba(255, 255, 255, 0.2);
}

.pickup-jp-artist-detail-item.--cerarena .pickup-jp-artist-profile__logo-image{
    height:auto;
    width: clamp(150px,40vw,340px);
}

.pickup-jp-artist-detail-item.--cerarena .pickup-jp-artist-profile__image{
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.pickup-jp-artist-detail-item.--cerarena .pickup-jp-artist-member__list {
    max-width: 900px;
}



/*  TOP PAGE > NEWS
-------------------------------------------------- */
.top-pickup-jp-news-section {
    background: var(--top-page-news-bg-color);
    color: var(--top-page-news-bg-text-color);
}

.top-pickup-jp-news-section__inner {
    padding-top: var(--section-margin-top);
    padding-bottom: var(--section-margin-top);
}


/* ------------------------------------------------
    NEWS LIST
-------------------------------------------------- */

.pickup-jp-news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;

}

.pickup-jp-news-list__item {
    background: var(--box-contents-bg-color);
    color: var(--box-contents-text-color);
}

.pickup-jp-news-list__item:hover {
    opacity: var(--hover-opacity);
    transition: 0.5s;
}

.pickup-jp-news-list__link {
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: clamp(110px, 28vw, 170px) auto;
    gap: 8px;
    color: var(--box-contents-text-color);
    text-decoration: none;
}

.pickup-jp-news-list__text {
    color: var(--box-contents-text-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pickup-jp-news-list__thumbnail {
    width: clamp(110px, 28vw, 170px);
    height: auto;
    aspect-ratio: 1 / 1;
    display: block;
    overflow: hidden;
    position: relative;
}

.pickup-jp-news-list__thumbnail-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    object-position: center center;
    position: relative;
    z-index: 1;
}

.pickup-jp-news-list__thumbnail-bg {
    position: absolute;
    display: block;
    object-fit: cover;
    filter: blur(1rem);
    width: 110% !important;
    height: 110% !important;
    margin-left: -5%;
    margin-top: -5%;
    top: 0;
    left: 0;
    z-index: 0;
}

.pickup-jp-news-list__text {
    padding: 8px;
    padding-left: 0;
}

.pickup-jp-news-list__title {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}

.pickup-jp-news-list__date {
    font-size: 15px;
    color: #989898;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

/*　----- VIEW MORE ----- */
.pickup-jp-news-list__viewmore {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: right;
    line-height: 1.2;
    margin-top: 20px;
    letter-spacing: 1px;
    font-size: 16px;
    width: fit-content;
    margin-left: auto;
}

.pickup-jp-news-list__viewmore::after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bg-text-color);
    display: block;
}

.pickup-jp-news-list__viewmore-link {
    color: var(--bg-text-color);
    padding: 10px 0;
}

.pickup-jp-news-list__viewmore-link::after {
    content: "";
    display: inline-block;
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/arrow-long-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    width: 40px;
    height: 12px;
    margin-left: 10px;
}

.pickup-jp-news-list__viewmore-link:hover {
    color: var(--section-title-sub-color) !important;
    transition: 0.5s;
}

.pickup-jp-news-list__viewmore:hover::after {
    background: var(--section-title-sub-color);
    transition: 0.5s;
}


.pickup-jp-news-list__viewmore-link:hover::after {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/arrow-long-right--pink.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    transition: 0.5s;
}

@media (min-width:475px) {
    .pickup-jp-news-list__title {
        -webkit-line-clamp: 4;
    }
}

@media (min-width:540px) {
    .pickup-jp-news-list__title {
        -webkit-line-clamp: 5;
    }
}

@media (min-width:768px) {

    .pickup-jp-news-list {
        gap: 15px;
    }

    .pickup-jp-news-list__link {
        gap: 13px;
    }

    .pickup-jp-news-list__text {
        padding: 13px;
        padding-left: 0;
    }
}


/*  NEWS PAGER
-------------------------------------------------- */
.pickup-jp-news-pager {
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pickup-jp-news-pager__btn-wrap {
    display: flex;
    gap: 5px;
}

.pickup-jp-news-pager__prev,
.pickup-jp-news-pager__next {
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid #aaa;
    transition: 0.5s;
}

.pickup-jp-news-pager__prev-link,
.pickup-jp-news-pager__next-link {
    display: block;
    width: 100%;
    height: 100%;
}

.pickup-jp-news-pager__prev {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/news-pager-icon--prev.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

.pickup-jp-news-pager__prev:hover {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/news-pager-icon--prev--pink.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

.pickup-jp-news-pager__prev.--fin {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/news-pager-icon--prev-fin.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

.pickup-jp-news-pager__prev.--fin:hover {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/news-pager-icon--prev-fin--pink.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

.pickup-jp-news-pager__next {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/news-pager-icon--next.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

.pickup-jp-news-pager__next:hover {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/news-pager-icon--next--pink.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

.pickup-jp-news-pager__next.--fin {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/news-pager-icon--next-fin.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

.pickup-jp-news-pager__next.--fin:hover {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/news-pager-icon--next-fin--pink.svg') no-repeat;
    background-size: contain;
    background-position: center center;
}

.pickup-jp-news-pager__number-wrap {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.pickup-jp-news-pager__number {
    width: 36px;
    height: 36px;
}

.pickup-jp-news-pager__number-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.pickup-jp-news-pager__number-link:hover {
    color: var(--section-title-sub-color) !important;
    transition: 0.5s;
}

.pickup-jp-news-pager__number-link.--current {
    color: var(--news-pager-current-color) !important;
    font-weight: 500;
}

@media (min-width:425px) {

    .pickup-jp-news-pager__prev,
    .pickup-jp-news-pager__next {
        width: 40px;
        height: 40px;
    }

    .pickup-jp-news-pager__number {
        width: 40px;
        height: 40px;
    }
}

/* ------------------------------------------------
    NEWS DETAIL
-------------------------------------------------- */

.pickup-jp-news-detail {
    background: var(--box-contents-bg-color);
    color: var(--box-contents-text-color);
    width: 100%;
    margin: 30px auto 0;
    padding: 25px 20px;
    max-width: 100%;
}



.pickup-jp-news-detail__date {
    font-size: 15px;
    color: #989898;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.pickup-jp-news-detail__title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}


.pickup-jp-news-detail__text {
    font-size: 15px;
    line-height: 1.8;
}
.pickup-jp-news-detail__text a{
    color: #ED60A0 !important;
    text-decoration: underline !important;
}

.pickup-jp-news-detail__text img {
    max-width: 100% !important;
    height: auto !important;
}

.pickup-jp-news-detail .sns_share_btn {
    box-sizing: content-box;
    margin-top: 15px !important;
}

.pickup-jp-news-detail .sns_share_btn .saveBtn input {
    margin-top: -10px;
}

/*　Pagination */

.pickup-jp-news-detail-pagination__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 12px;
    align-items: center;
    justify-items: center;
}


.pickup-jp-news-detail-pagination.--next {
    justify-self: left;
}


.pickup-jp-news-detail-pagination.--back {
    justify-self: right;
}

.pickup-jp-news-detail-pagination__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(90px, 30vw, 150px);
    height: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: var(--bg-text-color);
    line-height: 1;
}

.pickup-jp-news-detail-pagination__link.--next {
    justify-content: flex-start;
}

.pickup-jp-news-detail-pagination__link.--next::before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 9px;
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/news-detail-arrow--left.svg') no-repeat;
    background-size: contain;
    background-position: center left;
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.pickup-jp-news-detail-pagination__link.--back {
    justify-content: flex-end;
}

.pickup-jp-news-detail-pagination__link.--back::after {
    content: "";
    display: inline-block;
    width: 35px;
    height: 9px;
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/news-detail-arrow--right.svg') no-repeat;
    background-size: contain;
    background-position: center right;
    margin-right: 5px;
    position: relative;
    top: -1px;
}

/* hover setting */
.pickup-jp-news-detail-pagination__link:hover {
    color: var(--section-title-sub-color) !important;
    transition: 0.5s;
}

.pickup-jp-news-detail-pagination__link.--back:hover::after {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/news-detail-arrow--right--pink.svg') no-repeat;
    background-size: contain;
    background-position: center right;
    transition: 0.5s;
}

.pickup-jp-news-detail-pagination__link.--next:hover::before {
    background: url('https://fcdn2.smtown-official.jp/images/pickup-jp/news-detail-arrow--left--pink.svg') no-repeat;
    background-size: contain;
    background-position: center left;
    transition: 0.5s;
}

@media (min-width:768px) {
    .pickup-jp-news-detail {
        padding: 30px;
    }
}

/* YouTube サムネイル */
.youtube-wrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.youtube-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.youtube-thumbnail:hover {
    opacity: 0.8;
}