/* 🌟 コンタクトページをおしゃれに 🌟 */
.contact-container {
    max-width: 900px;
    margin: 96px 48px 96px;
    padding: 96px;
    background: rgba(255, 255, 255, 0.1); /* 透明感を出す */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* 立体感 */
    backdrop-filter: blur(8px); /* ぼかし効果で未来感 */
    text-align: center;
}

/* 🌟 SNSアイコンをよりスタイリッシュに 🌟 */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

.social-icons img {
    width: 35px;
    height: 35px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3)); /* 影を強調 */
}

.social-icons a:hover {
    transform: scale(1.15);
}

/* 🌟 お問い合わせフォームをスタイリッシュに 🌟 */
.contact-form {
    margin-top: 30px;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: black;
    font-size: 16px;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(211, 211, 211, 1); /* 明るいグレーに変更（#D3D3D3 相当） */
    font-weight: bold; /* ちょっと太めにして強調！ */
}

.contact-form button {
    background: linear-gradient(135deg, #000000, #727272);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.contact-form button:hover {
    background: linear-gradient(314deg, #000000, #727272);
}
