@charset "utf-8";
/* The Toyama Chamber of Commerce and Industry
   Toyama Business Draft
-----------------------------------------------------*/

/* ==============================================
    pagetitle
============================================== */

#pagetitle h1 {
	font-size: 2em;
	line-height: 1.2;
	font-weight: bold;
	color: #fff;
	background: #009dd3;
	text-align: center;
	min-height: 84px;
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

#pagetitle h1::before,
#pagetitle h1::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff100;
}
#pagetitle h1::before {
	top: 8px;
}
#pagetitle h1::after {
	bottom: 8px;
}

/* ==============================================
    faq
============================================== */
.faq_section {
	margin-bottom: 50px;
}
.faq_section h2 {
	font-size: 1.25em;
	font-weight: normal;
	margin-bottom: 20px;
}
.faq_section dt {
	background: #e3f5ff;
	padding: 20px 50px 20px 50px;
	margin-top: 10px;
	cursor: pointer;
	position: relative;
	transition: .2s;
}

.faq_section dt::before {
	content: "Q";
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 1.375em;
	font-weight: bold;
	color: #009dd3;
	display: block;
	position: absolute;
	top: 15px;
	left: 20px;
}

.faq_section dt::after {
	content: "";
	display: block;
	background: url("image/arrow_down.svg") no-repeat 0 0 / contain;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 20px;
	right: 20px;
	transition: .1s;
}
.faq_section dt:hover {
	background: #c1e4f8;
}
.faq_section dt.is-open {
	background: #c1e4f8;
}
.faq_section dt.is-open::after {
	transform: rotate(-180deg);
}

.faq_section dd {
	display: none;
	margin-bottom: 20px;
	padding: 20px;
	border: 2px solid #c1e4f8;
	border-top: none;
	border-radius: 0 0 10px 10px;
}

