@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@700&display=swap');

.serif {
	font-family: 'Zen Old Mincho', serif;
}

/* office_list */
.office_list.flex {
	flex-flow: row wrap;
	justify-content: flex-start;
	margin-top: 3em;
}
.office_list.flex > div {
	width: 30%;
	margin-left: 5%;
}
.office_list.flex > div:nth-child(3n+1) {
	margin-left: 0;
}
.office_list.flex > div:nth-child(n+4) {
	margin-top: 4em;
}
.office_list.flex > div .sec_stit {
	color: inherit;
	border-bottom: 1px solid #ccc;
	padding-bottom: .5em;
}
.office_list.flex > div ._add {
	min-height: 8em;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
}
.office_list.flex > div ._add .list {
	line-height: 1.4;
	margin-top: 1em;
}
.office_list ._mapbtn {
	margin-top: 1.5em;
}
.office_list ._mapbtn a {
	display: block;
	text-align: center;
	background: #0b2582;
	border-radius: 5px;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 110%;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: .1em;
	padding: .5em 1em;
	position: relative;
}
.office_list ._mapbtn a::before,
.office_list ._mapbtn a::after {
	content: "";
	display: block;
	width: .5em;
	height: .5em;
	margin: auto;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
}
.office_list ._mapbtn a::before {
	left: calc(50% + 1.4em);
}
.office_list ._mapbtn a::after {
	left: calc(50% + 1.8em);
}

/* showroom_block */
.showroom_block {
	background: #fadce9;
	padding: 60px 0 120px;
	text-align: center;
}
.showroom_block .sec_tit {
	background: none;
	color: #e85292;
	font-size: clamp(32px, 1.5vw, 34px);
	padding: 0;
	margin-bottom: 50px;
}
.showroom_block .sec_tit > span {
	display: inline-block;
}
.showroom_body figure {
	width: 47%;
}
.showroom_body figure img {
	border: 3px solid #fff;
	border-radius: 15px;
	box-shadow: 5px 5px 5px rgba(158,0,93,.1);
}
.showroom_body figure figcaption {
	margin-top: .75em;
}


@media only screen and (max-width: 768px) {
	/* office_list */
	.office_list.flex {
		flex-flow: column nowrap;
		margin-top: 2em;
	}
	.office_list.flex > div {
		width: 100%;
		margin-left: 0;
	}
	.office_list.flex > div:nth-child(n+2) {
		margin-top: 3em;
	}
	.office_list.flex > div ._add {
		min-height: inherit;
	}
	.office_list ._mapbtn a::before,
	.office_list ._mapbtn a::after {
		border-top-width: 2px;
		border-right-width: 2px;
	}
	
	/* showroom_block */
	.showroom_block {
		padding: 30px 0 60px;
	}
	.showroom_block .sec_tit {
		font-size: clamp(22px, 5vw, 24px);
		letter-spacing: 0;
		margin-bottom: 20px;
	}
	.showroom_body figure {
		width: 90%;
		margin: 0 auto;
	}
	.showroom_body figure + figure {
		margin-top: 30px;
	}
	.showroom_body figure img {
		border-width: 2px;
		border-radius: 10px;
		box-shadow: 3px 3px 3px rgba(158,0,93,.1);
	}
	.showroom_body figure figcaption {
		margin-top: .5em;
	}
	
	
	
	
}
@media only screen and (min-width: 769px) {
	
}