/* ============================
 * Amidas SNS Icons - Frontend
 * ============================ */

.amidas-sns-icons-wrapper {
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* ヘッダーテキスト */
.amidas-sns-icons-header-text {
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 0 0 16px 0;
    text-align: center;
}

/* ヘッダー画像 */
.amidas-sns-icons-header-image {
    text-align: center;
    margin-bottom: 16px;
}
.amidas-sns-icons-header-image img {
    width: 300px;
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* アイコンリスト（横並び・中央揃え） */
.amidas-sns-icons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

/* 角丸ボタン */
.amidas-sns-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
.amidas-sns-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
}
.amidas-sns-icon-btn:focus-visible {
    outline: 2px solid #0073aa;
    outline-offset: 3px;
}
.amidas-sns-icon-btn:active {
    transform: translateY(-1px);
}

/* SVGアイコン */
.amidas-sns-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.amidas-sns-icon-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* URLなしメッセージ */
.amidas-sns-icons-wrapper p:only-child {
    margin: 0;
    padding: 20px;
    font-style: italic;
}
