@charset "UTF-8";

/*------------------------------------------------*/

.access-wrap {
	display: flex;
	flex-flow: column;
	align-items: center;
	color: rgb(10,10,10);
}

.access-content {
	/*background: url("../img/access_backimg.png");*/
	/*background-size: cover;*/
	/*background-position: center;*/
	background-color: rgb(44,84,120);
	padding: 2em;
	width: calc(100% - 4em);
	max-width: calc(1280px - 4em);
}

.access-item {
	position: relative;
	padding: 1em;
	width: calc(100% - 2em);
	z-index: 1;
}

.access-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(145deg, rgba(250,250,250,0.9), white, rgba(240,240,240,0.9));
	border-radius: 6px;
	backdrop-filter: blur(3px);
	box-shadow: 5px 5px 2px rgba(10,10,10,0.3);
	width: 100%;
	height: 100%;
	z-index: -1;
}

.access-item:not(:last-child) {
	margin-bottom: 2em;
}

.access-flex {
	display: flex;
}

.access-text {
	margin-right: 0.5em;
	width: calc(50% - 0.5em);
}


.access-text h1 {
	background: linear-gradient(180deg, transparent 70%, rgba(0,90,100,0.3) 30%);
	padding: 0.2em 0.5em 0.2em 0.5em;
}

.access-text p {
	padding: 1em;
}

.access-telfax {
	display: flex;
	align-items: center;
	padding: 0.5em 1em 0.5em 1em;
}

.access-telfax span:nth-child(odd) {
	background-color: rgb(44,84,120);
	margin-right: 0.5em;
	padding: 0 0.5em 0 0.5em;
	color: white;
}

.access-telfax span:nth-child(even) {
	font-weight: bold;
	font-size: 1.6em;
	color: rgb(44,84,120);
}

.access-image {
	margin-left: 0.5em;
	width: calc(50% - 0.5em);
	height: 300px;
}

.access-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.access-map {
	margin-top: 1em;
	width: 100%;
	height: 300px;
}

/*------------------------------------------------*/

@media screen and (max-width: 768px) {
.access-wrap {
	font-size: 0.7rem;
}
.access-content {
	padding: 1em;
	width: calc(100% - 2em);
}
.access-flex {
	display: flex;
	flex-flow: column;
}
.access-text {
	margin-right: 0;
	width: 100%;
}
.access-image {
	margin-top: 1em;
	margin-left: 0;
	width: 100%;
	height: 180px;
}
.access-map {
	height: 240px;
}
}

/*------------------------------------------------*/


