@charset "UTF-8";


/*contact_box*/
.contact_box {
	display: table;
	margin: 0 auto;
	text-align: center;
}
.telno {
	font-size: 54px;
	line-height: 60px;
	color: #006A51;
	margin-bottom: 0;
}
.telno::before {
	content: url("/common/images/ic_phone.svg");
	padding-right: 10px;
}

.accessible_time {
	color: #959595;
	font-weight: normal;
	margin-bottom: 0;
	line-height: 1.8;
}


/* Faq */
.faq_container {
  position: relative;
  width: 100%;
  outline: 0;
  cursor: pointer;
  margin-bottom: 0.5em;
}

.faq_container .faq_title {
  display: block;
  position: relative;
  margin: 0;
  padding: 0.6em 1em;
  font-size: 28px;
  font-weight: normal;
  color: #006A51;
  cursor: pointer;
}

.faq_title:after {
  content: "";
  position: absolute;
  right: 35px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 15px;
  height: 15px;
  border-top: solid 2px #006A51;
  border-right: solid 2px #006A51;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.faq_title.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.faq_content {
  display: none;
  padding: 1.5em;
  background: #F7F7F7;
}
.faq_title p, .faq_content div{
	position: relative;
	padding-left: 70px;
	margin-bottom: 0;
}
.faq_title p {
	line-height: 1.8;
	font-weight: normal;
	padding-right: 50px;
}
.faq_title p::before,
.faq_content div::before{
	display: block;
	position: absolute;
	left:0;
	text-align: center;
	width: 50px;
	height: 50px;
	border-radius: 25px;
}

.faq_title p::before {
	content: "Q";
	color: #FFF;
	background: #006A51;
}
.faq_content div::before {
	content: "A";
	font-size: 28px;
	font-weight: normal;
	color: #006A51;
	background: #F7F7F7;
	border-radius: 25px;
	border: #006A51 2px solid;
}