/*
Theme Name: Beauty Device Store
Theme URI: https://example.com/beauty-device-store
Author: Your Name
Author URI: https://example.com
Description: 業務用美容機器の販売サイト向けカスタムWordPressテーマ。WooCommerce対応。
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clinic-theme
*/

/* Tailwind CSS は functions.php で個別に読み込む(二重読み込み防止のため@import禁止) */

/* カスタムスタイル */
:root {
  --primary-color: #D96E7E;
  --primary-hover: #C05568;
  --text-color: #1F2123;
  --bg-color: #ffffff;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
}

/* アニメーション */
.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ヘッダー */
.site-header {
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* フッター */
.site-footer {
  background-color: #1F2123;
  color: #ffffff;
}

/* チャットボット */
.chat-bot-button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 50;
}

.chat-bot-window {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 50;
  width: 24rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .chat-bot-window {
    width: calc(100% - 2rem);
  }
}
