

@media screen and (min-width: 981px){




h1.lookbook_title {
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    font-size: 1.4rem;
}.lookbook_list {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        margin: 3rem 0;
}article.lookbook_card {
        font-family: "Roboto", sans-serif;
        width: 20rem;
        margin: 1rem 1rem;
        position: relative;
}.swiper {
    width: 100%;
    height: 30rem;
}
.swiper-slide img {
        width: 100%;
        height: 30rem;
        object-fit: cover;
        border-radius: 15px;
        margin: 0 !important;
}
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    text-shadow: 0 0 5px #000;
}

.lookbook_more_box {
    text-align: center;
    margin-top: 10px;
}

.lookbook_more_btn {
        display: inline-block;
        color: #fff;
        font-weight: bold;
        text-decoration: none;
        text-shadow: 0 0px 5px #000;
}.lookbook_more_box {
        text-align: center;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1rem;
}.lookbook_user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}.like_btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}
.like_btn.liked {
    color: #ff3366;
}p.lookbook_text {
    font-size: 1rem;
    line-height: 1.8;
}.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    font-size: 1rem;
    color: #fff;
}.swiper-button-next, .swiper-rtl .swiper-button-prev {
    width: 2rem!important;
    height: 2rem!important;
    background: rgb(255 255 255 / 50%);
    border-radius: 10rem;
}.swiper-button-prev, .swiper-rtl .swiper-button-next {
    width: 2rem!important;
    height: 2rem!important;
    background: rgb(255 255 255 / 50%);
    border-radius: 10rem;
}.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    color: #fff;
    font-size: 1rem!important;
}.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    color: #fff;
    font-size: 1rem!important;
    content: 'next';
}

/* ================================
   モーダル
================================ */
.lookbook_modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}
.lookbook_modal_bg {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(12px);
    background: rgba(0,0,0,0.4);
}
.lookbook_modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100vw;
    max-height: 100vh;
}
.lookbook_modal_content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.lookbook_modal_close {
    position: absolute;
    top: 0rem;
    right: 1rem;
    font-size: 4rem;
    color: white;
    cursor: pointer;
}


.heart_anim {
    position: absolute;
    font-size: 4rem;
    color: #ff4f9d;
    top:10rem;
    opacity: 0;
    animation: heartPopAnim 0.8s ease-out forwards;
    pointer-events: none;
    z-index: 9999;
}

@keyframes heartPopAnim {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    20% {
        transform: scale(1.2);
        opacity: 1;
    }
    60% {
        transform: scale(0.9);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
        transform: translateY(-20px);
    }
}

.link_share {
		padding: 0.5rem 1.5rem 0.3rem;
        background: #0a0a0a;
        color: #ffffff;
        border-radius: 2px;
        font-size: 1rem;
        cursor: pointer;
        display: inline-block;
        transition: 0.2s;
}
.link_share:hover {
    background: #e1e1e1;
}
.link_share.copied {
    background: #00c853;
    color: #fff;
}div#share {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
}.lookbook_share {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}.lookbook_share a {
    display: table;
    width: 2rem;
    height: 2rem;
}.lookbook_share img {
    width: 100%;
    margin: 0;
}a.share_btn.line_share img {
    width: 2.4rem;
    margin-top: -0.2rem;
}



/* モーダル全体 */
.lookbook_modal_content {
        max-height: 90vh;
    width: 90%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    padding: 0;
    overflow: hidden;
}

.modal_inner {
        display: flex;
        max-height: 90vh;
}

/* 左：画像 */
.modal_left {
        width: 45rem;
        background: #000;
        height: 90vh;
}.modal_left img {
        width: 100%;
        display: block;
        height: 90vh;
        object-fit: cover;
        border-radius: 0;
}.swiper.modal_swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    height: 90vh;
}

/* 右：情報 */
.modal_right {
        font-family: "Roboto", sans-serif;
		width: 45rem;
        padding: 2rem;
        box-sizing: border-box;
}.modal_user {
        font-weight: 500;
}

.modal_user_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.modal_text {
    margin: 2rem 0;
    white-space: pre-line;
}

.modal_like_btn {
    font-size: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* シェア */
.modal_share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}.modal_copy {
    background: #eee;
	padding: 0.5rem 1.5rem 0.3rem;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
}
span.lookbook_modal_close {
        color: #000;
        font-size: 3rem;
}
.modal_sns img {
    width: 28px;
    margin-right: 10px;
    cursor: pointer;
}.modal_sns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}



}