@charset "utf-8";

/* ── 共通基本設定 ── */
#fukugaku-chatbot-container {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* 右端固定・縦書きボタン */
#fukugaku-chatbot-trigger {
  position: fixed;
  /* right: 0; */
  top: 280px; /* 初期位置：ロゴやメインビジュアルの邪魔にならない高さ */
  z-index: 999999;
  background: #ffcc00;
  color: #333333;
  border: none;
  /* border-radius: 8px 0 0 8px; */
	border-radius: 0 8px 8px 0;
  padding: 18px 10px;
  width: auto;
  max-width: none;
  box-sizing: content-box;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: -2px 4px 12px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright; /* 半角英数字（AI）も回転させず縦に表示 */
  transition: all 0.3s ease;
}
#fukugaku-chatbot-trigger:hover {
  background: #e6b800;
}

/* 展開時は黄色ボタンを非表示（JS側で#fukugaku-chatbot-containerに.is-openを付与） */
#fukugaku-chatbot-container.is-open #fukugaku-chatbot-trigger {
  display: none;
}

/* チャットウィンドウ（右ベタ付け） */
#fukugaku-chatbot-window {
  position: fixed;
  right: 0;
  z-index: 999998;
  background: #ffffff;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  flex-direction: column;
  transition: all 0.3s ease;
}
#fukugaku-chatbot-window iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ✕ 閉じるボタン（更新ボタンの『左側』にピタッと配置） */
#fukugaku-chatbot-close-x {
  position: absolute;
  top: 13px;
  right: 48px;
  z-index: 1000000;
  background: transparent;
  color: #ffffff;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  transition: transform 0.2s ease;
}
#fukugaku-chatbot-close-x:hover {
  transform: scale(1.2);
  color: #ffcc00;
}

/* ── PC・タブレットサイズ（画面幅768px以上） ── */
@media (min-width: 768px) {
  #fukugaku-chatbot-window {
    top: 160px;
    width: 420px;
    height: 600px;
    max-height: 75vh;
    border-radius: 16px 0 0 16px;
  }
}

/* ── スマホサイズ（画面幅767px以下） ── */
@media (max-width: 767px) {
  #fukugaku-chatbot-trigger {
    top: 250px;
    padding: 14px 8px;
    font-size: 13px;
  }
  #fukugaku-chatbot-window {
    top: 130px;
    right: 0;
    left: 15px;
    width: auto;
    height: 78vh;
    border-radius: 12px 0 0 12px;
  }
  #fukugaku-chatbot-close-x {
    top: 12px;
    right: 44px;
    font-size: 18px;
  }
}
