/* styles.css */

/* リセット＆ベース */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

/* ヘッダー */
.site-header {
  background-color: #4a90e2;
  color: #fff;
  padding: 1rem;
  text-align: center;
}
.site-header h1 {
  font-size: 1.8rem;
}

/* メインコンテンツ */
.site-main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* 操作方法 */
.instructions {
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.instructions h2 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  color: #4a90e2;
}
.instructions ol li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

/* チャットボット枠 */
.chatbot {
  margin-top: 2rem;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  /* 高さ固定ではなく最小高さ */
  min-height: 700px;
}
.chatbot-frame {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 700px;
}

/* フッター */
.site-footer {
  text-align: center;
  padding: 1rem 0;
  color: #777;
  font-size: 0.9rem;
}
