/**
 * Template Part: SNS Buttons (Super Socializer Overrides)
 * ログイン・登録ページ共通のSNSログインボタン用スタイル
 */

/* 1. コンテナ・リスト構造 */
.the_champ_login_ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.the_champ_login_ul li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 2. ボタン本体のデザイン */
/* クラス詳細度を極限まで高めて上書きを確実にする */
.the_champ_login_ul li .theChampLogin,
.the_champ_login_ul li i.theChampLogin,
.the_champ_login_ul li span.theChampLogin {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: auto !important;
    min-height: 50px !important;
    padding: 14px 20px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    border: none !important;
    text-decoration: none !important;
    position: relative !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    white-space: nowrap !important;
    overflow: visible !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.the_champ_login_ul li .theChampLogin:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 3. アイコンコンテナ */
.the_champ_login_ul li .theChampFacebookLogoContainer,
.the_champ_login_ul li .theChampLoginSvgContainer {
    margin-right: 12px !important;
    margin-left: 0 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* アイコン自体のサイズ */
.the_champ_login_ul li .theChampLogin svg,
.the_champ_login_ul li .theChampLogin ss,
.the_champ_login_ul li i.theChampLoginIcon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
}

/* 4. 各SNS固有の配色とテキスト挿入 */

/* Facebook */
.theChampFacebookLogin {
    background-color: #1877f2 !important;
    color: #ffffff !important;
}

.theChampFacebookLogin::after {
    content: "Facebookでログイン" !important;
}

/* Google */
.theChampGoogleLogin {
    background-color: #ffffff !important;
    color: #3c4043 !important;
    border: 1px solid #dadce0 !important;
}

.theChampGoogleLogin::after {
    content: "Googleでログイン" !important;
}

/* 5. 登録ページ等の文言出し分け用（必要に応じてクラス付与で対応可能、現状は"ログイン"で統一） */
.register-page-bg .theChampFacebookLogin::after {
    content: "Facebookで登録" !important;
}

.register-page-bg .theChampGoogleLogin::after {
    content: "Googleで登録" !important;
}