@charset "UTF-8";

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

.footer-wrap {
	background-color: white;
	border-top: solid 8px rgb(44,84,120);
	border-bottom: solid 8px rgb(44,84,120);
	display: flex;
	justify-content: center;
}

.footer-content {
	background-color: white;
	display: flex;
	justify-content: space-between;
	padding: 2em 1em 2em 1em;
	width: calc(1280px - 2em); /*padding:-2em*/
}

.footer-left {
	width: calc(50% - 0.5em);
}

.footer-logo {
	border-bottom: solid 6px rgba(44,84,120,0.5);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0.5em 0.2em 0.5em;
}

.footer-logo img {
	height: 60px;
}

.footer-logo h1 {
	font-family: serif;
	color: rgb(44,84,120);
}

.footer-address {
	padding: 1em;
	font-family: serif;
	font-weight: bold;
	font-size: 1.2em;
}

.footer-telfax {
	display: flex;
	align-items: center;
	padding: 1em 0 0 1em;
	font-weight: bold;
}

.footer-telfax p:nth-of-type(1) {
	background-color: rgb(44,84,120);
	margin: 0.2em 0.5em 0 0.5em;
	padding: 0 0.5em 0 0.5em;
	color: white;
}

.footer-telfax p:nth-of-type(2) {
	font-size: 1.8em;
	color: rgb(44,84,120);
}

.footer-txt {
	padding: 0.5em 0 0.5em 2em;
	font-weight: bold;
	color: rgb(44,84,120);
}

.footer-right {
	width: calc(50% - 0.5em);
}

.footer-right h4 {
	margin: 0em 0em 0.2em 1em;
}

.footer-card {
	background: linear-gradient(145deg, rgb(240,240,240), white, rgb(235,235,235));
	border: solid 1px silver;
	border-radius: 3px;
	box-shadow: 5px 5px 2px rgba(10,10,10,0.3);
	padding: 1em;
	width: calc(100% - 2em - 2px);
}

.footer-card:not(:last-child) {
	margin-bottom: 2em;
}

.card-item {
	border-bottom: solid 1px silver;
	display: flex;
}

.card-item:not(:first-child) {
	margin-top: 0.5em;
}

.card-item p:nth-of-type(1) {
	width: 40%;
}

.my-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 3em;
	font-weight: bold;
	color: rgb(44,84,120);
}

/*--------------------------------------------------*/
@media screen and (max-width: 480px) {
.footer-wrap {
	font-size: 0.7rem;
}
.footer-logo img {
	height: 40px;
}
}

@media screen and (max-width: 1000px) {
.footer-content {
	display: flex;
	flex-flow: column;
	align-items: center;
}
.footer-left, .footer-right {
	width: 100%;
	max-width: 800px;
}
.footer-left {
	margin-bottom: 2em;
}
}

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