@charset "utf-8";
/* CSS Document */

.p-office {
	margin-top: clamp(5rem,10vw,10rem);
}

.p-office-list__wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 0px;
	margin-bottom: 2rem;
	@media (max-width: 767.98px) {
		margin-bottom: 0;
	}
}

.l-blue_txt_ttl {
	width: 30%;
	@media (max-width: 767.98px) {
		width: 100%;
	}
}

.office_list {
	width: 70%;
	@media (max-width: 767.98px) {
		width: 100%;
	}
}

.office_list > dl {
	border-bottom: 1px solid #0075C2;
	padding: 2vw 0px;
	display: flex;
	flex-wrap: wrap;
}

.office_list > dl:first-of-type {
	border-top: 1px solid #0075C2;
}

.office_list > dl > * {
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	@media (max-width: 767.98px) {
		font-size: 1.4rem;
	}
}

.office_list > dl > dt {
	max-width: 140px;
	width: 100%;
	font-weight: bold;
}

.office_list > dl > dd {
	max-width: 670px;
	width: 100%;
	font-weight: 500;
}


.googlemap_link {
	display: block;
	margin-block: 10px;
	font-size: 1.2rem;
	font-weight: normal;
}

.googlemap_link a {
	padding: 7px;
	color: #fff;
	font-size: clamp(1.2rem,1.4vw,1.4rem);
	font-weight: bold;
	line-height: calc(22 / 14);
	letter-spacing: 0.1em;
	background: #0075C2;
	border-radius: 5px;
	@media (max-width: 767.98px) {
		padding: 3px;
		font-size: 1.2rem;
	}
}

.factory_list {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
	gap: 6rem 2rem;
	width: 70%;
	@media (max-width: 767.98px) {
		width: 100%;
	}
}

.factory_list > dl > * {
	display: grid;
	place-items: center;
	gap: 2rem;
	@media (max-width: 767.98px) {
		gap: 10px;
	}
}

.factory_list > dl > dt > picture {
	max-width: 470px;
	width: 100%;
	margin: 0px auto;
	@media (max-width: 599px) {
		width: 80%;
	}
}

.factory_name {
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	font-weight: bold;
	margin-top: clamp(2rem,2.5vw,2.5rem);
	@media (max-width: 767.98px) {
		margin-top: 10px;
		font-size: 1.4rem;
	}
}

.factory_info {
	font-size: clamp(1.4rem,1.8vw,1.8rem);
	font-weight: 500;
	@media (max-width: 767.98px) {
		font-size: 1.4rem;
	}
}

.factory_tel {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 1em;
	width: 100%;
}

.l-detail__btn {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    align-items: center;
    justify-content: space-between;
    width: 80%;
    border: 2px solid #007dc5;
    border-radius: 5em;
    padding-block: 10px;
    padding-inline: 30px;
    background-color: #007dc5;
    color: #fff;
    line-height: calc(29 / 20);
	font-size: clamp(1.4rem,1.8vw,1.8rem);
    transition: background-color 0.3s;
    color 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	&:hover {
		background-color: #fff;
		color: #007dc5;
	}
	@media (max-width: 767.98px) {
		font-size: 1.4rem;
	}
		&::after {
		content: "";
		display: block;
		width: 8px;
		height: 15px;
		background-color: currentColor;
		mask: url(../img/common/icon-arrow-cta_02.svg) no-repeat center center / contain;
		right: 30px;
		position: absolute;
	}
}

.p-company-list {
	margin-block: 6vw 10rem;
	@media (max-width: 767.98px) {
		margin-block: 4rem 4rem;
	}
}






