@charset "utf-8";
.others_box {
	margin: auto;
	max-width: 1000px;
	box-sizing: border-box;
}
.others_title {
	text-align: left;
	letter-spacing: 0.15em;
	color: #FF6699;
}
.others_title h5 {
	font-size: 1.5em;
	padding: 20px;
}
dl {
	box-sizing: inherit;
	display: flex;
	flex-direction: column;	
	line-height: 1.5em;
	letter-spacing: 0.15em;
	font-size: 1em;
}

dt {
	box-sizing: inherit;
	padding: 10px;
	width: 100%;
	background: #FFE6EE;
}

dd {
	text-align: left;
	box-sizing: inherit;
	padding: 10px;
	width: 100%;
	display: block;
}
.d_bold {
	font-weight: bold;
}
.d_txt {
	font-size: 0.7em;
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 768px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 768px) {
	dl {
		flex-direction: row;
		justify-content: space-between;
		font-size: 1em;
		text-align: left;
	}
	dl:first-child {
		border-top: 1px dotted #222222;
	}
	dt {
		width: 25%;
		border-bottom: 1px dotted #222222;
	}
	dd {
		width: calc(100% - 25%);
		border-bottom: 1px dotted #222222;
	}
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 1024px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 1024px) {
	dt,dd {
		padding: 20px;
	}
}