@charset "utf-8";
.profile_box {
	margin: auto;
	max-width: 1000px;
	box-sizing: border-box;
}
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 {
	box-sizing: inherit;
	padding: 10px;
	width: 100%;
	display: block;
}
.map {
}
.map iframe {
	max-width: 1000px;
}
/* ------------------------------------------------------------------------------------------------------------------------
	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;
	}
	.lline::before {
		padding-left: 10px;
		content: " / ";
	}
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 1024px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 1024px) {
	dt,dd {
		padding: 20px;
	}

}