@charset "utf-8";
/* CSS Document */
@media screen and (min-width: 769px) {

}
@media screen and (max-width: 768px) {

}
@media screen and (min-width: 481px) and (max-width: 768px) {
}
@media screen and (min-width: 481px) {
}
@media screen and (max-width: 480px) {
}

.sec-ttl_pic img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 20px;
}

.questions_wrap {
	margin-bottom: 40px;
}

.questions_details {
	background-color: #fbe5d6;
	padding: 15px;
	margin-bottom: 15px;
}

.questions_Q_wrap {
	cursor: pointer;
	list-style: none;
	position: relative;
	font-weight: 600;
	font-size: 16px;
	padding-right: 30px;
	text-decoration: underline;
}
.questions_Q_wrap::-webkit-details-marker {
  display: none;
}


/* === ＋／− アイコン（線で描画） === */
.toggle-icon {
  position: absolute;
right: -5px;
  top: -5px;
  width: 30px;
  height: 30px;
  margin-left: auto;
  background-color: #fff;
}

.toggle-icon::before,
.toggle-icon::after {
  content: "";
  position: absolute;
top: 14px;
  left: 4px;
  width: 22px;
  height: 4px;
  background-color: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* 横線 */
.toggle-icon::before {
  transform: translateY(-50%);
}

/* 縦線（＋の縦棒） */
.toggle-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

/* open時：− に変形 */
.questions_details[open] .toggle-icon::after {
  opacity: 0;
}

.questions_details::details-content {
  opacity: 1;
}

/* === 回答アニメーション（改善版） === */
.questions_details::details-content {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.questions_details[open]::details-content {
  opacity: 1;
}
.questions_A_wrap strong{
	font-weight: 600;
}
.questions_A_wrap strong a{
	text-decoration: underline;
	font-weight: 600;
}

.questions_Q {
	display: inline-block;
	padding-right: 5px;
}

.questions_A {
	display: inline-block;
	padding-right: 5px;
}

.answer-wrapper {
	margin-top: 10px;
}

picture.center img{
	max-width: 100%;
	height: auto;
}
picture.center {
	display: block;
}