@charset "UTF-8";
.footer {
    color: white;
    padding: 60px 20px 10px 20px;
    text-align: center;
    }

.footer-container a {
    text-decoration: none;
    }

.footer-sns {
    display: flex;
    justify-content: center;
    gap: 25px;
    }
    
    /*SNSのアイコンの大きさを設定、比率が崩れないようにobject-fitを使用*/
.footer img { 
    width: 30px;
    height: 30px;
    opacity: 0.8; /* 透明度を下げる */
    object-fit: contain;
    transition: opacity 0.5s ease, filter 0.5s ease; /* 透明度とフィルターの変化をスムーズに */
    }
    
    /* コピーライトの表記 */
.copyright {
    padding: 10px 0;
    font-size: 14px;
    color: var(--color-text);
    }
