@charset "UTF-8";
/**
 * block.css
 */

/* ブロック表示
--------------------------------------------------------- */
.hr_block {
	display: block;
	width: 100%;
	height: 100%;
	text-align: left;
	margin: 0;
	padding: 0;
}
	.hr_block .hr_block_inner {
		position: relative;
  	}
		.hr_block .hr_block_inner hr {
			height: 1px;
			border-width: 0;
			color: #eee;
			background-color:#eee;
		}
		.hr_block .hr_block_inner .hr_text {
			display: none;
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			margin: auto;
			text-align: center;
			background: #fff;
		}


/* レスポンシブ bootstrap4 v2
----------------------------------------------- */
/* モバイル（xs） iPhone 6,7,8 縦 */
@media (max-width: 575px) {
}
/* モバイル（sm）iPhone 6,7,8 横 */
@media (min-width: 576px) and (max-width: 767px) {
}
/* タブレット（md） iPad 縦 */
@media (min-width: 768px) and (max-width: 991px) {
}
/* タブレット（lg） iPad 横 iPad Pro 縦 */
@media (min-width: 992px) and (max-width: 1199px) {
}
/* PC（xl）iPad Pro 横 */
@media (min-width: 1200px) {
}
