@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1100px以上の場合に適用 

*******************************************************/

/* container */
.container {
	width: 100%;
	margin: 100px 0 120px 0;
	} 

.container > div {
	width: 960px;
	margin: 0 auto;
	}

.container > div > ul > li {
	width: 100%;
	max-width: 960px;
	position: relative;
	border-bottom: 1px solid #DDD;
	padding: 20px;
	margin: 0 auto;
	font-size: 1.6rem;
	}

.container > div > ul > li:first-child {
	border-top: 1px solid #DDD;
	}

.index_acco_Btn {
	border: 1px solid #5ecbd8;
	background-color: #5ecbd8;
	display: inline-block;
	width: 32px;
	height: 32px;
	vertical-align: middle;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	}

.index_acco_Btn:hover {
	cursor: pointer;
	}

.index_acco_Btn::after {
	content: '▼';
	font-size: 1rem;
	position: absolute;
	left: 10px;
	top: 7px;
	color: #FFF;
	transition: .3s;
	}

.open_index_acco::after {
	transform: rotate(60deg);
	}

.question {
	padding-left: 40px;
	position: relative;
	}

.question p {
	display: inline-block;
	vertical-align: middle;
	padding-right: 50px;
	font-weight: 600;
	}

.answer {
	display: none;
	padding-top: 20px;
	padding-right: 50px;
	padding-left: 40px;
	margin-left: 25px;
	position: relative;
	}

.question p::before {
	content: 'Q';
	font-size: 1.8rem;
	font-weight: 600;
	background-color: #5ecbd8;
	color: #FFF;
	display: inline-block;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	position: absolute;
	left: 0;
	}

.answer p::before {
	content: 'A';
	font-size: 1.8rem;
	font-weight: 600;
	background-color: #FFF;
	color: #5ecbd8;
	display: inline-block;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	position: absolute;
	left: 0;
	}
	


/******************************************************

タブレットの設定 769px〜1099pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1099px){

/* container */
.container > div {
	width: 95%;
	}

}



/******************************************************

SPの設定 768px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 768px){

/* container */
.container {
	margin: 50px 0 60px 0;
	}

.container > div {
	width: calc(100% - 40px);
	}

.container > div > ul > li {
	width: 100%;
	padding: 15px 5px;
	}

.question p {
	padding-right: 45px;
	}

.question {
	padding-left: 35px;
	}

.answer {
	padding-top: 15px;
	padding-left: 35px;
	margin-left: 0;
	}

.question p::before {
	height: 25px;
	width: 25px;
	line-height: 25px;
	}

.answer p::before {
	height: 25px;
	width: 25px;
	line-height: 25px;
	}



}