.help .help-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  border-radius: 8px;
	color: #000;
}

.help .help-title {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 40px;
	color: #000;
}
.help-category-title{
	background-color: #10386b;
	color: #fff;
	padding: 12px 20px;
	font-size: 18px;
	margin: 40px 0 0;
}
/* --- FAQリスト (image_1.png風の白ベース) --- */
.help .help-faq-list {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.help .help-faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.help .help-faq-item:last-child {
  border-bottom: none;
}

.help .help-faq-question {
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
	gap:20px;
}

.help .help-faq-question::-webkit-details-marker {
  display: none;
}

.help .help-faq-question::after {
  content: '+';
  font-size: 1.6rem;
  color: #10386b;
}

.help .help-faq-item[open] .help-faq-question::after {
  content: '−';
}

.help .help-faq-answer {
  padding: 15px 20px;
  background-color: #fafafa;
  border-top: 1px solid #f0f0f0;
  line-height: 1.6;
}

/* --- フィードバックエリア --- */
.help .help-feedback-section {
  margin-top: 40px;
  text-align: center;
}

.help .help-feedback-title {
  font-size: 24px;
  font-weight: bold;
  margin: 40px 0 20px;
}

.help .help-feedback-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* ボタン共通 */
.help .help-btn-yes,
.help .help-btn-no {
  width: 200px;
  padding: 10px;
  border-radius: 5px;
  color: #10386b;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s;
  border: 2px solid #10386b;
}

.help .help-btn-yes:hover,
.help .help-btn-no:hover {
  background-color: rgba(16, 56, 107, 0.1);
}

/* --- 問い合わせ誘導エリア (image_1.png再現) --- */
.help .help-contact-box {
  margin-top: 25px;
  padding: 25px;
  background-color: #f2f2f2;
}

.help .help-contact-message {
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
	color: #10386b;
}

/* リンクボタン */
.help .help-contact-link {
  display: inline-block;
  background-color: #e95520;
  color: #fff;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.2s;
	position: relative;
    max-width: 400px;
    width: 100%;
}

.help .help-contact-link:hover {
 opacity: .9;
}
.help .help-contact-link .img_box{
	position: absolute;
    width: 20px;
    right: 2%;
    transformX: translate(50%);
    top: 50%;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  .help .help-feedback-buttons {
    align-items: center;
  }
  .help .help-btn-yes,
  .help .help-btn-no {
    width: 50%;
    max-width: 300px;
  }
	.help .help-title{
		font-size: 22px;
		margin-bottom: 20px;
	}
	.help .help-container {
	  margin: 20px auto 40px;
	}
	.help .help-faq-question::after{
		font-size: 1.4rem;
	}
	.help .help-contact-box{
		padding: 20px;
	}
	.help-category-title{
		font-size: 16px!important;
		margin: 30px 0 8px;
	}
	.help .help-feedback-title{
		font-size: 20px!important;
	}
	.help .help-faq-question{
		padding: 12px 20px;
	}
}