@charset "UTF-8";

h2.gray_blue_h2 {
	background-color: #f7f7f7;
	border-left: 4px solid #0060be;
	color: #333;
	padding: calc(1.8rem * 0.25) calc(1.8rem * 0.25) calc(1.8rem * 0.25) calc(1.8rem * 0.5);
}

h2.gray_blue_h2:nth-child(n+2) {
	margin-top: 76px;
}

.c-col1__flex {
	display: flex;
	flex-wrap: wrap;
}

.c-col1__item {
	width: 50%;
	margin-top: 37px !important;
}

.c-col1__img {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: block;
	margin-top: 0;
}

.c-col1__img:before {
	content: "";
	display: block;
	padding-top: 75%;
}

.c-col1__img img {
	object-fit: contain;
	font-family: "object-fit: contain;";
}

.c-col1__ttl1 {
	font-size: 1rem;
	text-align: center;
	width: 75%;
	margin: 0.5em 0 0;
}

@media print,
screen and (min-width: 64em) {
	.c-col1__item {
		width: 25%;
	}
}


.c-productTtlArea__ttl {
	font-size: 1.2rem;
	line-height: 1;
	background-color: #f7f7f7;
	color: #333;
	padding: calc(1.8rem * 0.25) calc(1.8rem * 0.25) calc(1.8rem * 0.25) calc(1.8rem * 0.5);
}

.c-productMvArea__txtArea {
	padding-left: 0;
}

@media print,
screen and (min-width: 64em) {
	.c-productMvArea__txtArea {
		padding-right: 44px;
	}
}

.c-productTtlArea__btnLink {
	display: inline-block;
	margin: 24px auto 0;
}

.c-productMvArea__slideItem {
	background: none;
}

.c-tbl2col {
	margin-top: 0;
}

.c-tbl2col dt {
	white-space: nowrap;
}

.c-tbl2col dd {
	text-align: left;
}

@media print,
screen and (min-width: 64em) {
	.c-productTtlArea__ttl {
		line-height: 42px;
		padding: 0;
	}

	.c-productMvArea {
		flex-direction: row-reverse;
	}

	.c-productTtlArea__btnLink {
		margin-top: 0;
	}

	.c-productTtlArea__txtArea {
		padding-right: 44px;
		width: calc(100% - 380px);
	}
}


.dl-modal-open {
	width: 100%;
	cursor: pointer;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.dl-modal-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index: 9999;
}

/*モーダル本体の擬似要素の指定*/
.dl-modal-container:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.dl-modal-container.active {
	opacity: 1;
	visibility: visible;
}

/*モーダル枠の指定*/
.dl-modal-body {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 900px;
	width: 100%;
}

/*モーダルを閉じるボタンの指定*/
.dl-modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 5px;
	right: 5px;
	width: 30px;
	height: 30px;
	font-size: 30px;
	color: rgba(0, 0, 0, 50%);
	cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.dl-modal-content {
	background: #fff;
	text-align: center;
	padding: 45px 30px 60px 30px;
}