@charset "utf-8";



/* -- SNS 表示 2024.09.06 written by Webc Asano ------------------------------------------------------------ */

.pic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    background-color: #fefefe;
}

.sns-box {
    display: flex;
    /* 縦並び */
    flex-direction: column;
    gap: 0.5rem;
}

.btn-sns {
    display: flex;
    padding: 0.6rem 1rem;
    box-sizing: border-box;
    border-radius: 0.2rem;
    width: 100%;
    color: white;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.btn-sns svg {
    fill: #fff;
}

.btn-sns span {
    display: inline-block;
    width: 95%;
    text-align: center;
}

.btn-sns:hover {
    transform: scale(1.1);
}

.btn-x {
    background-color: #111319;
}

.btn-facebook {
    background-color: #375A94;
}

.btn-line {
    background-color: #5DB40F;
}

.btn-pinterest {
    background-color: #B83026;
}
