/*----------------------------------------------------
** 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:0 1em;
		box-sizing:border-box;
	}
	section.termwrap{
		padding:50px 0;
	}
	section.termwrap h2{
		text-align:left;
		font-size:18px;
		color:#e8599a;
		font-weight:700;
		padding:0 1em;
		box-sizing:border-box;
	}
	section.termwrap > p{
		text-align:left;
		line-height:2em;
		padding:1em 1em 3em 1em;
		box-sizing:border-box;
		color:#444;
	}
	div.term dl{
		width:100%;
		color:#444;
		margin-bottom:2em;
	}
	div.term dl dt{
		font-size:16px;
		color:#e8599a;
		font-weight:700;
	}
	div.term dl dd{
		line-height:2em;
		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:0 6vw;
		box-sizing:border-box;
	}
	section.termwrap{
		padding:70px 0;
	}
	section.termwrap h2{
		text-align:left;
		font-size:24px;
		color:#e8599a;
		font-weight:700;
		padding:0 6vw;
		box-sizing:border-box;
	}
	section.termwrap > p{
		text-align:left;
		line-height:2em;
		padding:1em 6vw 3em 6vw;
		box-sizing:border-box;
		color:#444;
	}
	div.term dl{
		width:100%;
		color:#444;
		margin-bottom:2em;
	}
	div.term dl dt{
		font-size:18px;
		color:#e8599a;
		font-weight:700;
	}
	div.term dl dd{
		line-height:2em;
		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:0px auto;
	}
	section.termwrap{
		padding:100px 0;
	}
	section.termwrap h2{
		text-align:left;
		font-size:24px;
		color:#e8599a;
		font-weight:700;
		width:1100px;
		margin:0 auto;
	}
	section.termwrap > p{
		text-align:left;
		line-height:2em;
		width:1100px;
		margin:1em auto 3em auto;
		color:#444;
	}
	div.term dl{
		width:100%;
		color:#444;
		margin-bottom:2em;
	}
	div.term dl dt{
		font-size:18px;
		color:#e8599a;
		font-weight:700;
	}
	div.term dl dd{
		line-height:2em;
		padding: 0 1em;
		box-sizing: border-box;
	}
	
}