<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* /////////////////////
FAQのcss
///////////////////// */

/* FAQ目次
------------------ */
#faq_index ul{
	border: 3px solid #e4e4e4;
	line-height: 1.4;
	font-size: 75%;
}

#faq_index ul li:not(:last-child){
	border-bottom: 1px solid #e4e4e4;
}

#faq_index ul a{
	display: block;
	padding: 0.8rem 1rem;
	text-decoration: none;
	transition: 0.2s;
	position: relative;
}

#faq_index ul a:after{
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #ccc;
	border-right: 2px solid #ccc;
	transform: translateY(-4px) rotate(135deg);
	position: absolute;
	top: 50%;
	right: 1rem;
}

#faq_index ul a:hover{
	background: #efefef;
}

@media print, screen and (min-width: 768px){
#faq_index ul{
	font-size: 87.5%;
}
}

@media print, screen and (min-width: 1040px){
#faq_index{
	margin-bottom: 3rem;
}

#faq_index ul{
	display: flex;
	flex-wrap: wrap;
}

#faq_index ul li{
	display: inline-block;
	width: 50%;
	box-sizing: border-box;
}

#faq_index ul li:nth-last-of-type(2){
	border-bottom: none;
}

#faq_index ul a{
	padding: 0.8rem 2rem;
}

#faq_index ul a:after{
	right: 2rem;
}
}

/* FAQ大カテゴリブロック
------------------ */
.faq_section{
	padding-top: 30px;
}

.faq_section .heading4{
	margin-bottom: 1rem;
}

/* FAQ質問
------------------ */
.faq{
	margin-bottom: 1rem;
}

.faq .q{
	background: #e4e4e4;
	padding: 0.5rem 1.2rem 0.5rem 0.5rem;
	font-weight: normal;
	position: relative;
}

.faq .q:after{
	content: "＋";
	display: inline-block;
	color: #999;
	position: absolute;
	top: 50%;
	right: 0.5rem;
	transform: translateY(-0.8em);
}

.faq .q.trg_multi_selected:after{
	content: "－";
}


.faq .a{
	padding: 1.5rem 1rem 2rem;
	display: none;
}


.faq_a_line{
	border-bottom: 1px solid #000;
}

.faq_a_line:before{
	content: "A. ";
	font-family: linotype-sabon, sans-serif;
	font-size: 112.5%;
	color: #000;
}

@media print, screen and (min-width: 768px){
.faq .q{
	padding: 0.5rem 1.2rem 0.5rem 1rem;
}
}

/*end*/</pre></body></html>