@charset "utf-8";



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

.acbox {
	margin:10px auto;
}


/* アコーディオン */
.ac-container{
    width: auto;
    margin: 30px auto;
}
.ac-container label{
    width: 90%;
    text-align: left;
	background-color:#efefef;
	background-image:
	url(../faq/images/hq.png),
	url(../faq/images/mkp.png);
	background-repeat:no-repeat,
					  no-repeat;	
	background-position:left 50%,
						right 50%;
    margin: auto;
    padding: 15px 45px 15px 40px;
    position: relative;
    display: block;
    height: auto;
    cursor: pointer;
    color: #000;
	font-weight:bold;
}
.ac-container label:hover{
	background-color:#c0c0c0;
 	background-image:
	url(../faq/images/hq.png),
	url(../faq/images/mkp.png);
	background-repeat:no-repeat, no-repeat;	
	background-position:left 50%, right 50%;

    -webkit-transition: all .3s;
    transition: all .3s;
}
.ac-container label:after{
}
.ac-container input:checked ~ label::after {
}
.ac-container input{
   display: none;
}
.ac-container div{
   background: #fff;
   margin-top: 5px;
   overflow: hidden;
   height: 0px;
   position: relative;
   z-index: 10;
   transition: 
   height 0.3s ease-in-out, 
   box-shadow 0.6s linear;
}
.ac-container input:checked ~ div{
   transition: 
   height 0.5s ease-in-out, 
}
.ac-container div p{
   color: #000;
   line-height: 23px;
   padding: 20px;
}
/* 高さの定義 */
.ac-container input:checked ~ div.ac-at{
   height: auto;
}

.ac-container input:checked ~ div.ac-small{
   height: 150px;
}
.ac-container input:checked ~ div.ac-medium{
   height: 200px;
}
.ac-container input:checked ~ div.ac-large{
   height: 300px;
}






/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

.ac-container label{
    width: 80%;
}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

.ac-container label{
    width: 70%;
}

}
