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

/*=========================================== 
スマホ向けのレイアウトの指定：～768px 
===========================================*/
@media only screen and (min-width: 0px) {

body{
	overflow-x: hidden;
}
	
#container{
	width:100%;
	margin:0 auto;
	overflow: hidden;
}

#wrapper{
	width:100%;
	margin:0 auto;
}

/*メインビジュアル*/
.mv{
	background: url(../images/faq_mv.jpg) no-repeat top center;
	background-size: cover;
}


/*コンテンツ*/
.faq{
	width: 90%;
	margin: 80px auto;
}

.text{
	margin: 0 auto;
	font-size: 16px;
	text-align: center;
	line-height: 1.7;
	letter-spacing: 0.12em;
	font-family: serif;
}

.faq dl{
	margin: 48px auto 0;
	position: relative;
}

.faq dl dt{
	margin: 0 0 20px 0;
	padding: 10px 24px 10px 70px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3;
	letter-spacing: 0.16em;
	background: url(../images/faq_bg.png) repeat top center;
	background-size: 36px;
	border-radius: 18px;
}

.faq dl dt.icon_q {
	margin: 0 10px 0 12px;
	padding: 0;
   	font-size: 40px;
	font-weight: normal;
	letter-spacing: 0;
	font-family: serif;
	color: rgb(139,199,207);
	position: absolute;
    top: -16px;
    left: 0;
	background: none;
}

.faq dl dd{
	margin: 0 12px;
	font-size: 16px;
	text-align: justify;
	text-justify: inter-ideograph;
	line-height: 1.7;
	letter-spacing: 0.12em;
	
	position: relative;
	padding: 5px 0 0 56px;
}

.faq dl dd:before{
	content: "A.";
	padding: 0;
   	font-size: 26px;
	font-family: serif;
	color: rgb(130,130,130);
	position: absolute;
    top: 10px;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    left: 30px;
}
}


/*=========================================== 
PC向けのレイアウトの指定：768px〜
===========================================*/
@media only screen and (min-width: 769px) {

#container{
	width:100vw;
}


/*コンテンツ*/
.faq{
	width: auto;
	max-width: 940px;
	padding: 10px;
}

.faq dl dt{
	padding: 10px 24px 10px 80px;
}

.faq dl dt.icon_q {
	margin: 0 10px 0 24px;
}

.faq dl dd{
	margin: 0 0 0 24px;
}
}