/* 新規作成 @SC 2025/10/28 #10495 SNSシェア機能 */
.sns-share-wrapper {
    display: none;
}

@media screen and (max-width: 767px) {
    .sns-share-wrapper {
        display: flex;
    }
}

/* シェアボタン */
.sns-share-button {
    display: flex;
    gap: 4px;
    align-items: center;
    border: none;
    background-color: white;
    white-space: nowrap;
    cursor: pointer;
}

.sns-share-button img {
    width: 20px;
}

.sns-share-button span {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
/* シェアボタン */

/* モーダル */
.sns-share-modal {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 60%;
    right: 10%;
    z-index: 100;
    transition: opacity 0.3s;
}
.sns-share-modal.is-show {
    opacity: 1;
    visibility: visible;
}

.sns-share-modal-content {
    border-radius: 9px;
    border: 1.5px solid #000;
    background-color: #fff;
    padding: 3%;
}

.sns-share-list {
    display: flex;
    flex-wrap: wrap;
}

.sns-share-item {
    display: flex;
    box-sizing: border-box;
    width: calc( 100% / 3 );
    padding: 5%;
    align-items: center;
}

.sns-share-item button {
    background-color: #fff;
    border: none;
    padding: 0;
    cursor: pointer;
}

.sns-share-item img {
    width: 100%;
}

.copy-link img {
    display: none;
}

.copy-icon.is-show,
.checked-icon.is-show {
    display: block;
}
/* モーダル */