/*----------------------------------------------------
** WEB COMBO / exsample.css *ページに合わせてファイル名を変更する
** Ver.1.0.0
** copyright 2020 GRANTEST Inc.
**----------------------------------------------------
** Common settings
**----------------------------------------------------*/

/*共通のスタイルをここに記載*/

@media only screen and (-webkit-min-device-pixel-ratio:2), (min-resolution: 2dppx){
	
	/*レティーナディスプレイ用のスタイルをここに記載*/
	
}
@media screen and (max-width:767px){
	
	/*スマートフォン用のスタイルをここに記載*/
		div.childinner{
		width:100%;
		padding-left:1em;
		padding-right:1em;
		box-sizing:border-box;
	}
	div.question{
		padding-top:50px;
		padding-bottom:50px;
	}
	div.q_box{
		padding-top:70px;
	}
	div.q_box:first-child{
		padding-top:0;
	}
	div.q_box h3{
		font-size:18px;
		color:#444;
		font-weight:700;
		border-bottom:2px solid #e8599a;
	}
	div.q_box dl{
		color:#444;
		margin-top:1em;
		padding:1em;
		box-sizing:border-box;
		background-color:rgba(255,255,255,0.5);
	}
	div.q_box dl dt{
		font-size:16px;
		color:#e8599a;
		padding:5px 1em 5px 40px;
		box-sizing:border-box;
		border-bottom:1px solid #e8599a;
		position:relative;
		z-index:1;
	}
	div.q_box dl dt span{
		position:absolute;
		left:0;
		top:2px;
		display:block;
		width:30px;
		height:30px;
		background-color:#e8599a;
		border-radius:50%;
		text-align:center;
		line-height:30px;
		color:#fff;
		font-weight:700;
	}
	div.q_box dl dd{
		line-height:2em;
		font-size:14px;
		padding:0 1em;
		box-sizing:border-box;
	}
	
}
@media screen and (max-width:320px){
	
	/*小さいサイズのスマートフォン用のスタイルをここに記載*/
	
}
@media screen and (min-width:768px) and (max-width:1099px){
	
	/*タブレット用のスタイルをここに記載*/
	div.childinner{
		width:100%;
		padding-left:6vw;
		padding-right:6vw;
		box-sizing:border-box;
	}
	div.question{
		padding-top:70px;
		padding-bottom:70px;
	}
	div.q_box{
		padding-top:70px;
	}
	div.q_box:first-child{
		padding-top:0;
	}
	div.q_box h3{
		font-size:24px;
		color:#444;
		font-weight:700;
		border-bottom:2px solid #e8599a;
	}
	div.q_box dl{
		color:#444;
		margin-top:2em;
		padding:1em;
		box-sizing:border-box;
		background-color:rgba(255,255,255,0.5);
	}
	div.q_box dl dt{
		font-size:18px;
		color:#e8599a;
		line-height:2em;
		padding:0 1em 0 40px;
		box-sizing:border-box;
		border-bottom:1px solid #e8599a;
		position:relative;
		z-index:1;
	}
	div.q_box dl dt span{
		display:block;
		width:30px;
		height:30px;
		border-radius:50%;
		background-color:#e8599a;
		text-align:center;
		line-height:30px;
		color:#fff;
		font-weight:700;
		position:absolute;
		left:0;
	}
	div.q_box dl dd{
		line-height:2em;
		font-size:16px;
		padding:0 1em;
		box-sizing:border-box;
	}
	
}
@media (orientation: landscape) and (max-width:568px){
	
	/*小さいサイズのスマートフォン用横向きのスタイルをここに記載*/
	
}
@media (orientation: landscape) and (min-width:569px) and (max-width:724px){
	
	/*大きいサイズのスマートフォン用横向きのスタイルをここに記載*/
	
}
@media (orientation: landscape) and (min-width:725px) and (max-width:1099px){
	
	/*タブレット用横向きのスタイルをここに記載*/
	
}
@media screen and (min-width:1100px){
	
	/*PC用のスタイルをここに記載*/
	div.childinner{
		width:1100px;
		margin:0 auto;
	}
	div.question{
		padding:100px 0;
	}
	div.q_box{
		padding-top:100px;
		width:1000px;
		margin:0 auto;
	}
	div.q_box:first-child{
		padding-top:0;
	}
	div.q_box h3{
		font-size:24px;
		color:#444;
		font-weight:700;
		border-bottom:2px solid #e8599a;
	}
	div.q_box dl{
		color:#444;
		margin-top:2em;
		padding:1em;
		background-color:rgba(255,255,255,0.5);
		box-sizing:border-box;
	}
	div.q_box dl dt{
		font-size:18px;
		color:#e8599a;
		line-height:2em;
		padding:0 1em 0 40px;
		box-sizing:border-box;
		border-bottom:1px solid #e8599a;
		position:relative;
		z-index:1;
	}
	div.q_box dl dt span{
		width:30px;
		height:30px;
		background-color:#e8599a;
		border-radius:50%;
		line-height:30px;
		text-align:center;
		color:#fff;
		font-weight:700;
		display:block;
		position:absolute;
		left:0;
	}
	div.q_box dl dd{
		line-height:2em;
		font-size:16px;
		padding:0 1em;
		box-sizing:border-box;
	}
	
}