@charset "utf-8";

/* SNS */
        .sns-section {
            background-color: #f9f9f9;
            padding: 80px 50px;
            text-align: center;
        }
        
        .sns-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .sns-icons {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .sns-icon {
            margin: 0 15px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #d6c8a8; /* ベージュ */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .sns-icon:hover {
            background-color: #c4b696; /* ベージュより少し濃い */
        }