@charset "utf-8";

/*---------------------------------
CSS information
file name  :  faq.css
style info :  よくある質問用スタイル
admin info :  ファースト整骨院
---------------------------------*/

/*------------header---------------------------------*/




/*------------eyecatch---------------------------------*/

section.eyecatch{
	width:90%;
	max-width: 960px;
	margin:20px auto;
}

section.eyecatch img{
	margin-bottom:0;
}


/*------------faq_item---------------------------------*/

.faq_item {
  position: relative;
  overflow: hidden;
}

.faq_item ul {
  position: relative;
  left: 50%;
  float: left;
}

.faq_item ul li {
  position: relative;
  left: -50%;
	padding: 5px 20px ;
	margin-bottom: 20px;
  float: left;
	border-right:none;
}
.faq_item ul li:last-child{
	border-right: none;
}

.faq_item ul li a {
	color: #0e9ffa;/*#67c5ff*/

-webkit-transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
transition: all 0.6s ease;
}
.faq_item ul li a:hover {
	opacity: 0.5;
}



/*------------faq---------------------------------*/

div#faq{
	width:90%;
	max-width: 960px;
	margin:80px auto;
	padding-top:0;
	padding-bottom: 60px;
	border-bottom:1px #999999 solid;
	box-sizing: border-box;
}

div#faq h2{
	margin-bottom:40px;
	color:#000;
	font-size:1.2rem;
	font-weight: bold;
	text-align:center;
}
#mainbox #faq h3{
	margin:60px auto;
	color:#000000;
	font-size:1.2rem;
	font-weight: bold;
	text-align:center;
	border-bottom: 1px solid #999999;
	border-top:  1px solid #999999;
	padding: 20px;
}
div#faq img{
	width: 100%;
}


/*--------------q_block------------*/
.q_block {
	padding: 10px 10px 15px 10px;
	margin: 0;
	background: #f3f3f3;
}
.q_title {
	margin: 0;
	padding-right: 20px;
	border: none;
	font-weight: bold;
}
.a_block {
	padding: 10px;
	margin-top:-50px!important;
	min-height: 38px;
}

.dl-faq {
	margin: 0;
}
.dl-faq dt {
	float: left;
	width: 55px;
	overflow: hidden;
	clear: left;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.dl-faq dd {
	width: 95%;
	box-sizing: border-box;
	margin: 0 0 0 55px;
	line-height: 1.8;
	padding-right: 40px;

}


.balloonicon_q {
 	position: relative;
	display: inline-block;
	margin:0;
	padding: 0 5px;
	width: 38px;
	height: 38px;
	line-height: 38px;
	vertical-align: middle;
	text-align: center;
	color: #333;
	font-size: 20px;
	font-weight: bold;
	background: #ffffff;
	border-radius: 50%;
	box-sizing: border-box;
}

.balloonicon_q:before{
	content: "";
	position: absolute;
	bottom: -6px;
	right: -6px;
	margin-top: -3px;
	border: 8px solid transparent;
	border-left: 8px solid #ffffff;
	z-index: 0;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.balloonicon_a {
 	position: relative;
	display: inline-block;
	margin:0;
	padding: 0 5px;
	width: 38px;
	height: 38px;
	line-height: 38px;
	vertical-align: middle;
	text-align: center;
	color: #333;
	font-size: 20px;
	font-weight: bold;
	background: #ffe800;
	border-radius: 50%;
	box-sizing: border-box;
}

.balloonicon_a:before{
	content: "";
	position: absolute;
	bottom: -6px;
	right: -6px;
	margin-top: -3px;
	border: 8px solid transparent;
	border-left: 8px solid #ffe800;
	z-index: 0;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.square_btn {
	width: 100%;
    display: inline-block;
    padding: 1.2em 1em;
    text-decoration: none;
	text-align: center;
    color: #67c5ff;
	font-size: 1.2rem;
    border: solid 2px  #979797;
    border-radius: 60px;
    transition: .6s;
	box-sizing: border-box;
	margin:0 auto 0 auto;
}

.square_btn:hover {
    background: #ffe800;
    color: white;
}


.cost_comment{
	width: 100%;
    padding: 0.5em 1em 1em 1em;
    margin-top: 0;
    background: #f4f4f4;
    border-left: solid 6px /*#67c5ff*/#ffe800;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.11);
}
.cost_comment p {
    margin: 0; 
    padding: 0;
	font-size:1.0rem;

}
.cost_comment h4{
	margin:-10px auto 10px auto;
	color:#000;
	font-size:1.0rem;
	font-weight: bold;
	text-align:left;
}
.cost_comment p{
  float:left;
  width:100%;
  padding-top: 1em;
}
.cost_comment img{
  float:right;
  width:100px;

}

.cost_comment:after{
  display:block;
  clear:both;
  content:"";

} 

/*------------------------------------------------------
タブレット向けのスタイル:
------------------------------------------------------*/

@media screen and (min-width: 640px){
	
/*------------cost_item---------------------------------*/

.faq_item {
  position: relative;
  overflow: hidden;
}

.faq_item ul {
  position: relative;
  left: 50%;
  float: left;
}

.faq_item ul li {
  position: relative;
  left: -50%;
	padding: 5px 20px ;
  float: left;
	border-right: #999999 1px solid;
}
.faq_item ul li:last-child{
	border-right: none;
}

.faq_item ul li a {
	color: #67c5ff;

-webkit-transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
transition: all 0.6s ease;
}
.faq_item ul li a:hover {
	opacity: 0.5;
}
	
.cost_comment p{
  width:68%;
}
.cost_comment img{
  width:auto;
  max-width: 30%;

}
	
	
	

	
	
	
}


/*------------------------------------------------------
						PC
------------------------------------------------------*/
@media screen and (min-width: 768px){






}


/*------------------------------------------------------
						PC
------------------------------------------------------*/
@media screen and (min-width: 960px){
	



}

@media screen and (min-width: 1280px){
	
	

	
}

