@charset "utf-8";

/* main_head
---------------------------- */
#main {
	letter-spacing: 0.05em;
}
.main_head {
	text-align: center;
}
.main_head .title {
	padding: 100px 0 0;
	font-size: 3.4rem;
	letter-spacing: 0.08em;
}
@media screen and (max-width:767px) {
	.main_head .title {
		padding: 10% 0 0;
		font-size: 2.4rem;
	}
}

/* searchBox
---------------------------- */
.searchBox {
	background-color: #fbf7e8;
	margin-top: 50px;
	text-align: center;
	font-size: 1.5rem;
	padding: 40px 0;
}
.searchBox .title {
	font-weight: bold;
	font-size: 1.6rem;
}
.searchBox .category {
	padding-top: 20px;
}
.searchBox .category ul li {
	display: inline-block;
	background-color: #fff;
	color: #fc7215;
	border: 1px solid #fc7215;
	border-radius: 5px;
	padding: 5px 15px;
	margin: 0 5px;
	cursor: pointer;
}
.searchBox .category ul li.active {
	background-color: #f5f6f9;
	color: #333;
	border: 1px solid #d3d3d3;
}
.searchBox .pagelink {
	padding-top: 15px;
}
.searchBox .pagelink ul li a {
	text-decoration: underline;
}
.searchBox .pagelink ul li a:hover {
	text-decoration: none;
}
.searchBox .pagelink ul {
  padding: 0 2.5%;
  text-align: center;
}
.searchBox .pagelink ul li {
	display: inline-block;
	padding: 10px 20px;
}
@media screen and (max-width:767px){
	.searchBox {
	  padding: 20px 4%;
	  margin-top: 10%;
	}
	.searchBox .category {
		padding-top: 5px;
	}
	.searchBox .category ul li {
		padding: 5px 0;
		margin: 10px 3px 0;
		font-size: 1.4rem;
		width: 47%;
	}
	.searchBox .pagelink ul {
		padding: 0;
	}
	.searchBox .pagelink ul li {
		padding: 5px 0;
		width: 48%;
		text-align: left;
	}
	.searchBox .pagelink ul li a {
		position: relative;
		padding-left: 15px;
		font-size: 1.4rem;
	}
	.searchBox .pagelink ul li a::after{
	  position: absolute;
	  top: 0;
	  bottom: 0;
	  left: 0;
	  margin: auto;
	  margin-top: 3px;
	  content: "";
	  width: 7px;
	  height: 7px;
	  border-bottom: 1px solid #333;
	  border-right: 1px solid #333;
	  -webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	}
}

/* section
---------------------------- */
.section .inner {
  width: 90%;
  margin: 0 auto;
}
.section h2 {
	font-size: 3rem;
	color: #fc7215;
	text-align: center;
	border-bottom: 2px solid #fc7215;
	padding: 100px 0 25px;
}
.section .qa {
	border-bottom: 1px solid #d1d1d1;
	padding: 30px 0 30px 40px;
	position: relative;
}
.section .qa::before {
  content: "Q";
  display: block;
  width: 2em;
  height: 2em;
  position: absolute;
  top: 23px;
  left: 0;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fc7215;
}
.section .qa h3 {
	font-size: 1.8rem;
	font-weight: bold;
	position: relative;
	cursor: pointer;
	padding-right: 60px;
}
.section .qa h3::before,
.section .qa h3::after {
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  background: #333;
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
}
.section .qa h3::after {
  background: #333;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}
.section .qa h3.active::before {
	display: none;
}
.section .qa h3.active::after {
  transform: rotate(0);
  transition: 0.5s;
}
.section .qa .qa_a {
	display: none;
	padding-top: 25px;
	font-size: 1.6rem;
}
.section .qa_a a {
	text-decoration: underline;
	color: #fc7215;
}
.section .qa_a a:hover {
	text-decoration: none;
}
.section .qa .icon_01 {
	width: 40px;
	margin: 0 5px;
}
@media screen and (max-width:1100px) {
	.section .inner {
	  width: 100%;
	}
}
@media screen and (max-width:767px) {
	.section h2 {
		font-size: 2rem;
		line-height: 1.5;
		padding: 10% 0 20px;
		font-weight: normal;
	}
	.section .qa {
		padding: 20px 0 20px 28px;
	}
	.section .qa::before {
	  top: 16px;
	  font-size: 1.8rem;
	}
	.section .qa h3 {
		font-size: 1.4rem;
		padding-right: 30px;
	  line-height: 1.6;
	}
	.section .qa h3::before,
	.section .qa h3::after {
	  width: 13px;
	}
	.section .qa .qa_a {
	  font-size: 1.4rem;
	  line-height: 1.6;
	}
	.section .qa .icon_01 {
		width: 30px;
	}
}