@charset "UTF-8";

.c-share {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    flex: 0 1 auto;
}

.c-share__title {
    top: calc(20px - .5em);
    display: block;
    width: auto;
    font-size: 18px;
    line-height: 1;
    color: #525151;
    font-family: "Philosopher-B";
    flex: 0 0 auto;
}

.c-share__title::after {
    content: ':';
    position: relative;
    padding: 0 5px;
}

.c-share__list {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: auto;
    flex: 0 1 auto;
}

.c-share__list__item {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 15px 0 0;
    border-radius: 50%;
    border: 1px solid #525151;
    transition: opacity .4s ease-in-out;
    overflow: hidden;
}

.c-share__list__item:last-child {
    margin: 0;
}

.c-share__list__item:hover {
    opacity: .7;
}

.c-share__list__item__link {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.c-share__list__item__link img {
    object-fit: contain;
    object-position: center;
    width: 50%;
    height: 50%;
}

@media screen and (max-width: 991px) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 575px) {
    .c-share__title {
        top: calc(15px - .5em);
        font-size: 16px;
    }

    .c-share__list__item {
        width: 30px;
        height: 30px;
        margin: 0 10px 0 0;
    }
}



/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}