/* チャットボタンの装飾 */
#chatbot-toggle_button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

#chatbot-toggle_button:hover {
    transform: scale(1.1) rotate(5deg); /* 少し大きくして回転させる */
}

#chat-button img {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); /* アイコンに影をつける */
    border-radius: 50%;
}

/* チャットウィンドウ本体 */
#chatbot {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 1001;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}

/* ヘッダーの装飾 */
#chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    /* グラデーションで高級感を出す */
    background: linear-gradient(135deg, #4169e1 0%, #27408b 100%) !important;
}

#chatbot-logo {
    font-size: 14px;
    letter-spacing: 0.5px;
}

#chatbot-close-icon {
    cursor: pointer;
    transition: opacity 0.2s;
}

#chatbot-close-icon:hover {
    opacity: 0.7;
}

/* 中身のコンテナ */
#chatbot-body {
    flex: 1;
    background: #f9f9f9;
}
/* チャット案内パネルのコンテナ */
.chat-support-container {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid var(--bg-medium);
    border-left: 4px solid var(--neon-magenta); /* アクセントカラー */
    background-color: var(--bg-medium);
    border-radius: 8px;
    width: 55%;
    min-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.chat-support-title {
    font-size: 14px;
    font-weight: bold;
    color: #e4e4f1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* アイコン（任意：絵文字でも可） */
.chat-support-title::before {
    content: "💬";
    margin-right: 10px;
}

/* ボタン風リンクの装飾 */
.chatButton {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: bold;
    color: var(--neon-cyan) !important; /* 親要素のaタグ設定を上書き */
    border: 1px solid var(--neon-cyan);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.chatButton:hover {
    background-color: rgba(0, 255, 204, 0.1); /* ネオンカラーの微かな背景 */
    box-shadow: 0 0 15px var(--neon-cyan);
    transform: translateY(-2px);
    color: #fff !important;
}

/* モバイル対応：幅が狭い時に中央寄せ＆フル幅に */
@media (max-width: 600px) {
    .chat-support-container, .logger-link {
        width: 90%;
        min-width: unset;
    }
}/* チャット案内パネルのコンテナ */
.chat-support-container {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid var(--bg-medium);
    border-left: 4px solid var(--neon-magenta); /* アクセントカラー */
    background-color: var(--bg-medium);
    border-radius: 8px;
    width: 85%;
    min-width: 800px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.chat-support-title {
    font-size: 14px;
    font-weight: bold;
    color: #e4e4f1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

/* アイコン（任意：絵文字でも可） */
.chat-support-title::before {
    content: "💬";
    margin-right: 10px;
}

/* ボタン風リンクの装飾 */
.chatButton {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: bold;
    color: var(--neon-cyan) !important; /* 親要素のaタグ設定を上書き */
    border: 1px solid var(--neon-cyan);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.chatButton:hover {
    background-color: rgba(0, 255, 204, 0.1); /* ネオンカラーの微かな背景 */
    box-shadow: 0 0 15px var(--neon-cyan);
    transform: translateY(-2px);
    color: #fff !important;
}

/* モバイル対応：幅が狭い時に中央寄せ＆フル幅に */
@media (max-width: 600px) {
    .chat-support-container, .logger-link {
        width: 90%;
        min-width: unset;
    }
}
