@charset "UTF-8";

/* 共通 */
/* ---------- ヘッダーロゴ ---------- */
.logo_top {
	display: none;
}
.logo_ot {
	display: block;
	margin: 10px 0;
}
h1 {
	font-weight: 300;
	text-align: center;
	margin: 20px auto 30px;
}
h2 {
	font-weight: 400;
	text-align: center;
	position: relative;
	margin: 0 auto 20px;
}
h2:before {
	background-color: #6c727c;
	bottom: -5px;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 70px;
}
h3 {
	font-weight:600;
	text-align: center;
}
h3 span {
	font-weight: 400;
	padding:5px 0 0;
	display: block;
}
h4 {
	font-size:18px;
	font-weight: 400;
	text-align: center;
}
.section {
	margin:20px auto 0;
}
.lead {
	text-align: center;
}
.faq {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

/* ▲ 開いているときは上向き */
.question.open::after {
	transform: translateY(-30%) rotate(-135deg); /* -135°で▲に見せる */
}

/* Q. をつける */
.question::before {
	content: "Q. ";
	color: #767d88; 
	font-weight: bold;
	margin-right: 4px;
}

/* A. をつける */
.answer::before {
	content: "A. ";
	color: #767d88;
	font-weight: bold;
	margin-right: 4px;
}


/* アコーディオンの開閉アニメ（任意） */
.answer.is-open {
	display: block;
	max-width: 800px;
	margin: 0 auto;
}

/* ▼ 下向き矢印（初期） */
.question::after {
	width: 100%;
	content: "";
	position: absolute;
	top: 50%;
	right: 14px;
	width: 6px;
	height: 6px;
	border-right: 2px solid #767d88;
	border-bottom: 2px solid #767d88;
	transform: translateY(-70%) rotate(45deg); /* 45°で▼に見せる */
	transition: transform .25s ease, opacity .2s ease;
	opacity: .9;
}

/* PC */
@media screen and (min-width: 769px) {
h1 {
	font-size:50px;
}
h2 {
	font-size: 35px;
}
.section {
	width: 1200px;
	padding: 0 30px;
}
.menulist {
	margin:30px auto;
}
.menulist ul {
	display: flex;
	list-style: none;
	padding: 0;
	gap: 10px;
	justify-content: center;
}
.menulist ul li {
	background:#a8acb8;
	padding:5px 15px;
	text-align:center;
	}
.menulist ul li a {
	text-decoration:none;
	color:#ffffff;
}
.faq {
	width:900px;
	margin:0 auto;
}

.question {
	position: relative;
	height: 50px;
	border-top: 1px solid #ccc;
	color: #767d88;
	text-align: left;
	line-height: 50px;
	cursor: pointer;
	padding-right: 40px; /* 右端に矢印の余白を確保 */
	text-indent: -1.5em;
	padding-left: 1.5em;
}
.answer {
	display: none;
	padding: 0 4em 2em 1em;
	background-color: #ffffff;
	text-align: left;
	margin: 0;
	line-height: 1.8;
	text-indent: -1.5em;
	padding-left: 1.5em;
}
}

/* SP */
@media screen and (max-width: 769px) {
h1 {
	font-size:40px;
	padding: 40px 0 0;
}
h2 {
	font-size: 30px;
}
.section {
	width: 100%;
	margin:20px auto 0;
	padding: 0 10px;
}
.lead {
	font-size: 14px;
}
.menulist {
	margin:30px auto;
}
.menulist ul {
	list-style: none;
	padding: 0;
	gap: 10px;
	justify-content: center;
}
.menulist ul li {
	background:#a8acb8;
	padding:5px 15px;
	text-align:center;
	margin:5px;
}
.menulist ul li a {
	text-decoration:none;
	color:#ffffff;
}

.question {
	position: relative;
	border-top: 1px solid #ccc;
	color: #767d88;
	text-align: left;
	line-height: 1.8;
	cursor: pointer;
	padding: 10px 40px 10px 1.5em; /* 右端に矢印の余白を確保 */
	text-indent: -1.5em;
}
.answer {
	display: none;
	padding: 1em 2em 2em 1em;
	background-color: #ffffff;
	text-align: left;
	margin: 0;
	line-height: 1.8;
	text-indent: -1.5em;
	padding-left: 1.5em;
}
}