@charset "utf-8";
/* ---------------------------------------- /
/
/ location.css
/
/ ---------------------------------------- */

/* location-info */
.location-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:flex-start;
	margin: 60px auto 80px auto;
}
.location-list {
	width: calc(100% - 440px);
	max-width: 610px;
}
.location-list h3 {
	font-size: 1.6rem;
	font-weight: 600;
	padding-bottom: 1.0rem;
}
.location-list ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 2.0rem;
}
.location-list li {
	width: 49%;
	margin-bottom: 0.5rem;
}
.location-list li a {
	display: block;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #c6c6c6;
	padding: 0.5rem;
	background-image: url("../img/location-list.webp");
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

@media screen and (max-width: 1050px) {
.location-list li {
	width: 100%;
}
}

.location-map {
	text-align: right;
}
.location-map img {
	width: 90%;
	max-width: 440px;
	height: auto;
}

@media screen and (max-width: 768px) {
.location-info {
	display: block;
}
.location-list {
	display: none;
}
.location-map {
	text-align: center;
}
}



/* table-company */
.table-company {
	width: 100%;
	margin-bottom: 70px;
}
.table-company tr {border: none!important;}
.table-company th {
	font-weight: 600;
	padding: 3.4rem 1.0rem;
	vertical-align: text-top;
	text-align: left;
	border-bottom: 1px solid #c6c6c6;
	display: table-cell!important;
	width: 25%;
	font-size: 1.6rem;
}
.table-company td {
	padding: 3.4rem 1.0rem;
	vertical-align: text-top;
	text-align: left;
	border-bottom: 1px solid #c6c6c6;
	display: table-cell!important;
	width: 80%;
}

@media screen and (max-width: 768px) {
.table-company th {
	width: 100%;
	display: block!important;
	padding: 3.4rem 1.0rem 1.0rem 1.0rem;
	border-bottom: none;
}
.table-company td {
	width: 100%;
	display: block!important;
	padding: 0 1.0rem 3.4rem 1.0rem;
}
}

/* map-link */
a.map-link {
	background: #f07822;
    color: #fff;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
	border: 1px solid #e07c00;
	transition: all 0.3s linear 0s;
}
a.map-link:hover {
	opacity: 1.0!important;
	border: 1px solid #e07c00;
	background: #fff9f3;
	color: #e07c00;
}
/* link-orange */
a.link-orange {color: #e07c00;}

/* font-s */
.font-s {
	font-size: 1.6rem;
	border-bottom: none!important;
	padding: 0;
}