@charset "utf-8";


.faq {
  max-width: 900px;
  margin: 30px auto;
}

.faq h3 {
  background-color: #54a4a6;
  color: #ffffff;
  margin-top: 50px;
  padding-top: 10px;
  padding-left: 20px;
  padding-bottom: 5px;
}

.faq p {
  line-height: 2;
  padding-top: 10px;
  padding-bottom: 5px;
}

.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #444444;
	background:#f0fff0;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #808080;
	border-right: 2px solid #808080;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

.faq-a h3 {
  margin-top: 5px;
}

.content a {
	color: #000066;
	text-decoration: underline;
}





@media (max-width: 768px) {


  .link-button-area {
	margin-top: 30px;
   }
  






}