@charset "UTF-8";

/*-----------SNSバナー-----------*/
.banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.banner a {
    transition: .4s ease-in-out;
}

.banner a:hover {
    opacity: 0.7;
}

.banner a:nth-of-type(2) {
    background: #fff;
    display: block;
    width: 270px !important;
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.banner a:nth-of-type(2) img {
    padding: 22.5px;
    object-fit: contain;
    width: 44px;
    height: 44px;
}

.banner a:nth-of-type(2) span {
    font-size: 3.1rem;
}

@media screen and (max-width: 700px) {
    .banner {
    flex-direction: column;
    align-items: center;
}
    .banner a:nth-of-type(2) {
    margin-top: 20px;
    margin-left: 0;
}
}