@charset "UTF-8";
/* -----------------------------------------------------------------------------
**
** SNSボタン(PC)
**
----------------------------------------------------------------------------- */

/* ボタンを並べる */
.SnsSharing-Group {
    display: flex;
    gap: 12px;
}

/*--------------------------------------*/
/* Xのボタン */

.SnsSharing-X {
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background-color: #000000;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.SnsSharing-X img {
    display: block;
    width: 18px;
    height: 18px;
}

/*--------------------------------------*/
/* Lineのボタン */

.SnsSharing-Line {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

.SnsSharing-Line img {
    display: block;
    width: 100%;
    height: 100%;
}

/*--------------------------------------*/
/* URLコピーのボタン */

.SnsSharing-CopyUrl {
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background-color: #d9d9d9;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    position: relative;
}

.SnsSharing-CopyUrl img {
    display: block;
    width: 18px;
    height: 18px;
}

/*--------------------------------------*/
/* URLコピーのツールチップ */


/* ツールチップの見た目 */
.SnsSharing-CopyUrl-Tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    z-index: 1;
    display: block;
    width: auto;
    padding: 10px;
    border-radius: 3px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
    color: var(--tr-black, #000);
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
}

/* 吹き出しの三角部分をcssで作成 */
.SnsSharing-CopyUrl-Tooltip::before {
    content: '';
    position: absolute;
    top: 92%;
    left: 0;
    right: 0;
    margin: auto;
    width: 5px;
    height: 5px;
    border: 3px solid transparent;
    z-index: 0;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    background-color: white;
}

/* is--showがclassに追加された時にツールチップ表示 */
.SnsSharing-CopyUrl-Tooltip.is--show {
    opacity: 1;
}





