@charset "utf-8";
body {
  padding-top: 140px;
}
/* ラッパー */
#faq_chat_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 表示領域 */
#faq_chat_window {
  padding: 16px;
}

/* セクションタイトル */
.faq_title {
  font-size: 2rem;
  font-weight: bold;
  //margin-bottom: .5rem;
  text-align: center;
  line-height: 1.4;
}
.chat_options +.faq_title {
  margin-top: 4rem;
  text-align: left;
}
.faq_title_en {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Roboto Slab', serif;
  color: #5DAB9C;

}

/* ボタンエリア */
.chat_options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

/* ボタン */
.chat_option_button {
  flex: 0 1 calc(33.33% - 6.67px);
  padding: 14px 14px;
  background-color: #999;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease;
}
.chat_option_button:hover {
  background-color: #5DAB9C;
}
.chat_option_button.active {
  background-color: #5DAB9C;
  font-weight: bold;
}


/* ボタンエリア02 */
.chat_options02 {
  display: flex;
  flex-direction: column;  gap: 10px;
  margin-top: 4rem;
  margin-bottom: 24px;
}


/* ボタン02 */
.chat_option_button02 {
  padding: .6em 1.5em;
  color: #111;
  background-color: #eee;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}
.chat_option_button02::before {
  content:"Q.";
  display: inline-block;
  margin-right:.5em;
}
.chat_option_button02:hover {
  background-color: #ddd;
}

/* 回答表示 */
.faq_answer {
  background-color: #ffffff;
  padding: 2.5rem 3rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  font-size: 1.1rem;
}
/* 戻るボタン */
.back_button {
  padding: .5em 1.4em;
  color: #111;
  background-color: #eee;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.back_button:hover {
  background-color: #ddd;
}

/* LINE誘導 */
.faq_followup {
  margin-top: 4rem;
  text-align: center;
  color: #333;
}
.faq_followup a {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 25px;
  background-color: #00c300;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.faq_followup a:hover {
  background-color: #009900;
}

/*---------------sp用-----------------*/
/* セクションタイトル */
.is_sp .faq_title {
  font-size:min(3.6vw, 3.6vh);
}
.is_sp .chat_options +.faq_title {
  font-size:min(4vw, 4vh);
}

/* ボタン */
.is_sp .chat_option_button {
  flex: 0 1 100%;
  font-size: min(3.8vw, 3.8vh);
}
/* ボタン02 */
.is_sp .chat_option_button02 {
  padding:  min(2.8vw, 3.8vh);
  font-size: min(3.8vw, 3.8vh);
}
.is_sp .chat_option_button02:hover {
  background-color: #eee;
}
/* 回答表示 */
.is_sp .faq_answer {
  padding: 2.5rem 3rem;
  font-size: min(3.8vw, 3.8vh);
}
/* 戻るボタン */
.is_sp .back_button {
  font-size: min(3.8vw, 3.8vh);
}

/* LINE誘導 */
.is_sp .faq_followup {
  font-size: min(3.4vw, 3.4vh);
}
.is_sp .faq_followup a {
  margin-top: min(3.4vw, 3.4vh);
  padding: min(2vw, 2vh) min(6vw, 6vh);
}


