@charset "utf-8";

/* section
---------------------------- */
.section {
	padding: 80px 0 150px;
}
.section .contents {
	padding-top: 40px;
	font-size: 1.6rem;
}
.section .contents h2 {
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #000;
	margin: 0;
	padding: 80px 0 0.6em;
}
.section .contents .qa {
	border-bottom: 1px solid #d8d8d8;
	padding: 25px 0 25px 55px;
	position: relative;
}
.section .contents .qa::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  position: absolute;
  top: 21px;
  left: 0;
  background-color:#000;
}
.section .contents .qa::after {
  content: "Q";
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 18px;
  left: 11px;
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: normal;
  color: #fff;
}
.section .contents .qa h3 {
	font-size: 1.8rem;
	font-weight: bold;
	position: relative;
	cursor: pointer;
	margin: 0;
	padding: 0 60px 0 0;
}
.section .contents .qa h3::before,
.section .contents .qa h3::after {
  content: "";
  display: block;
  width: 17px;
  height: 2px;
  background: #333;
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
}
.section .contents .qa h3::after {
  background: #333;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}
.section .contents .qa h3.active::before {
	display: none;
}
.section .contents .qa h3.active::after {
  transform: rotate(0);
  transition: 0.5s;
}
.section .contents .qa .qa_a {
	display: none;
	padding-top: 25px;
}
.section .contents .qa_a a {
	text-decoration: underline;
}
.section .contents .qa_a a:hover {
	text-decoration: none;
}
@media screen and (max-width:767px){
	.section {
		padding: 15% 0 15%;
	}
	.section .contents {
		padding-top: 10%;
		font-size: 1.4rem;
		line-height: 1.6;
	}
	.section .contents h2 {
		font-size: 1.8rem;
		line-height: 1.4;
		padding: 15% 0 0.6em;
	}
	.section .contents .qa {
		padding: 20px 0 20px 35px;
	}
	.section .contents .qa::before {
	  width: 26px;
	  height: 26px;
	  border-radius: 13px;
	  top: 18px;
	}
	.section .contents .qa::after {
	  width: 26px;
	  height: 26px;
	  top: 16px;
	  left: 8px;
	  font-size: 1.7rem;
	}
	.section .contents .qa h3 {
		font-size: 1.4rem;
		padding: 0 30px 0 0;
	}
	.section .contents .qa h3::before,
	.section .contents .qa h3::after {
	  width: 13px;
	}
	.section .contents .qa .qa_a {
		padding-top: 15px;
	}
}
