@charset "utf-8";



/*box1とillust
---------------------------------------------------------------------------*/
.demo-box1 {
	box-sizing: border-box;
	padding: 2rem 3rem;
	margin-bottom: 2rem;
	box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
	min-height: 200px;
	background: #fff url(../images/bg_point3.png) no-repeat right bottom / 150px;
	padding-right: 150px;
}
.demo-box1 h4 {
	padding: 0 !important;
	margin: 0 !important;
	margin-bottom: 0.5rem !important;
	font-size: 1.5rem;
	color: #0bbbf0 !important;
}
.demo-box1 > p {
	padding: 0 !important;
	margin: 0 !important;
	text-shadow: 1px 1px #fff, -1px -1px #fff;
	color: #333 !important;
}
.demo-box1 p a {color: inherit !important;}
.demo-box1 h4 a {color: inherit !important;}

.demo-box1.no-image {
	padding-right: 3rem;
	background: #fff;
}

/*サムネイル群*/
.demo-box1 .thumb {
	display: flex;
}
.demo-box1 .thumb p {
	margin: 3px;
}
.demo-box1 .thumb img {
	display: inline-block;
	border: 1px solid #999;
}

	/*画面幅550px以下の追加指定*/
	@media screen and (max-width:550px) {

	.demo-box1 {
		min-height: auto;
		background: #fff;
		padding-right: 3rem;
	}

	}



/*2カラムブロック（※900px未満では１カラム）
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.q19-list-half .q19-list {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	margin-bottom: 2rem;	/*ボックスの下に2文字分のスペースを空ける*/
}

/*画像ブロック共通*/
.q19-list-half .q19-image-l, .q19-list-half .q19-image-r {
	margin-left: 1rem;margin-right: 1rem;	/*画像の左右に1文字分のスペースを空ける*/
	position: relative;	/*子要素のアイコンを絶対配置する為の設定*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		/*２カラムを囲むブロック*/
		.q19-list-half .q19-list {
			flex-direction: row;			/*子要素を横並びにする*/
			justify-content: space-between;	/*並びかたの種類の指定*/
			align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
		}
		
		/*画像ブロック共通*/
		.q19-list-half .q19-image-l, .q19-list-half .q19-image-r {
			width: 50%;			/*幅。下のテキストブロックのwidthと調整して下さい。*/
		}
		
		/*画像を右に配置する場合*/
		.q19-list-half .q19-image-r {
			margin-left: 2rem;	/*画像の左側に空けるスペース*/
		}
		
		/*画像を左に配置する場合*/
		.q19-list-half .q19-image-l {
			order: -1;
			margin-right: 2rem;	/*画像の右側に空けるスペース*/
		}

		/*テキストブロック*/
		.q19-list-half .q19-text{
			width: 50%;			/*幅。上の「画像ブロック共通」のwidthと調整して下さい。*/
		}

	}/*追加指定ここまで*/



/*横長タイプのボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.q19-list-normal .q19-list {
	display: flex;	/*flexボックスを使う指定*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 25px 0;	/*上下、左右へのボックス内の余白*/
}

.q19-list-normal .q19-list div {
	flex: 1;
}

/*１つ目のボックスにのみ上に線を入れる*/
.q19-list-normal .q19-list:nth-of-type(1) {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*ボックス内のfigure画像*/
.q19-list-normal .q19-list figure {
	width: 20%;			/*画像の幅*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}

/*ボックス内のh4タグ*/
.q19-list-normal .q19-list h4 {
	margin: 0;				/*デフォルトマージンを一旦リセット*/
	margin-bottom: 10px;	/*下に少し余白を作る*/
	color: #333;			/*文字色*/		
}
.q19-list-normal .q19-list h4 a  {
	color: inherit;
}

/*ボックス内のpタグ*/
.q19-list-normal .q19-list p {
	margin: 0;
	font-size: 0.7em;		/*文字サイズを親要素の70%に。*/
}


/*list内のtableっぽく見える所
---------------------------------------------------------------------------*/
/*ボックス全体*/
dl.q19-line {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	font-size: 0.7em;	/*文字サイズを親要素の70%に。*/
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*見出し(dt)とコメント(dd)*/
dl.q19-line dt, dl.q19-line dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 0 5px;					/*上下、左右へのボックス内の余白*/
}

/*見出し(dt)*/
dl.q19-line dt {
	width: 8em;			/*幅。8文字分。*/
	background: #f0f0f0;	/*背景色*/
}

/*コメント(dd)*/
dl.q19-line dd {
	width: calc(100% - 8em);	/*「8em」は上の「dl.line dt」のwidthの値です。*/
}


	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	dl.q19-line dd {
		width: calc(50% - 8em - 10px);	/*大きな端末向けの再設定。２列にしたいので、100%でなく半分の50%から引いています。*/
		margin-right: 10px;				/*２列になった際の間のスペース*/
	}

	dl.q19-line {border-top: none;}

	dl.q19-line dt:nth-of-type(1), dl.q19-line dd:nth-of-type(1),
	dl.q19-line dt:nth-of-type(2), dl.q19-line dd:nth-of-type(2) {
		border-top: 1px solid #ccc;
	}

	}/*追加指定ここまで*/


/*３列タイプのボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.q19-list-grid .q19-list {
	margin-bottom: 30px;	/*ボックス同士の上下間に空けるスペース*/
	padding: 20px;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*dl（下のdtとddを囲むブロック）*/
.q19-list-grid .q19-list dl {
	height: 10em;	/*高さ*/
	overflow: auto;	/*高さを超えるコンテンツである場合に、自動でスクロールバーを出す*/
}

/*dt（タイトル、日付が入っている所）*/
.q19-list-grid .q19-list dl dt {
	color: #333;		/*文字色*/
	font-weight: bold;	/*太字にする*/
}

/*dd（サンプルテキストが入っている所）*/
.q19-list-grid .q19-list dl dd {
	margin-bottom: 0.5em;	/*下に空けるスペース*/
}

/*ボックス内のh4タグ*/
.q19-list-grid .q19-list h4 {
	margin: 0;
	padding: 1rem;	/*余白。１文字分。*/
}

/*ボックス内のh4タグ内のiタグ（アイコンの事）*/
.q19-list-grid .q19-list h4 i {
	transform: scale(1.5);	/*デフォルトの1.5倍に*/
	margin-right: 1rem;		/*右側に空けるスペース。テキストとアイコンの隙間部分です。*/
}

/*タイトルの背景色バリエーション（共通）*/
.q19-bg-color0, .q19-bg-color1, .q19-bg-color2, .q19-bg-color3, .q19-bg-color4, .q19-bg-color5, .q19-bg-color6 {
	color: #fff;	/*文字色*/
	margin-bottom: 1rem !important;	/*下に空けるスペース*/
}
.q19-bg-color0 a, .q19-bg-color1 a, .q19-bg-color2 a, .q19-bg-color3 a, .q19-bg-color4 a, .q19-bg-color5 a, .q19-bg-color6 a {
	display: block;
	color: inherit;
}

/*bg-color0への追加指定*/
.q19-bg-color0 {
	background: #1c2d87;	/*背景色*/
}
/*bg-color1への追加指定*/
.q19-bg-color1 {
	background: #ff9a18;	/*背景色*/
}
/*bg-color2への追加指定*/
.q19-bg-color2 {
	background: #189aff;	/*背景色*/
}
/*bg-color3への追加指定*/
.q19-bg-color3 {
	background: #dd3d8c;	/*背景色*/
}
/*bg-color4への追加指定*/
.q19-bg-color4 {
	background: #6f3eb9;	/*背景色*/
}
/*bg-color5への追加指定*/
.q19-bg-color5 {
	background: #1b7a1e;	/*背景色*/
}
/*bg-color6への追加指定*/
.q19-bg-color6 {
	background: #7a3a1b;	/*背景色*/
}

/*ボックス内のpタグ*/
.q19-list-grid .q19-list p {
	margin: 0;
}

/*ボックス内のfigure画像*/
.q19-list-grid .q19-list figure {
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*listブロック全体を囲むブロック*/
	.q19-list-grid {
		display: flex;		/*flexボックスを使う指定*/
		flex-wrap: wrap;	/*折り返す指定*/
	}

	/*１個あたりのボックス設定*/
	.q19-list-grid .q19-list {
		width: 32%;			/*幅。３列になります。*/
		margin-right: 2%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	}
	
	/*1カラムにしたい場合*/
	.q19-list-grid.c1 .q19-list {
		width: 100%;
		margin-right: 0;
	}
	/*1カラムにしたい場合のdl（dtとddを囲むブロック）*/
	.q19-list-grid.c1 .q19-list dl {
		height: auto;
	}

	/*3の倍数目のボックスの右側のマージンをなくす*/
	.q19-list-grid .q19-list:nth-of-type(3n) {
		margin-right: 0;
	}

	/*ボックス内のtextブロック*/
	.q19-list-grid .q19-list .q19-text {
		flex: 1;
	}

	}/*画面幅900px以上の追加指定ここまで*/
