@charset "utf-8";
/* CSS Document */

header {
	text-align: center;
}

header img {
	width: 100%;
	height: auto;
}

footer {
	background: #2DAB97;
	padding: 15px 10px 10px;
	text-align: center;
	clear: both;
	color: #FFF;
	font-size: 1.2rem;
	width: 100%;
}

footer a:link {
	color: #FFF;
}
footer a:visited {
	color: #FFF;
}
footer a:hover {
	color: #CCC;
}
footer a:active {
	color: #CCC;
}

footer hr.hr01 {
	background-color: #A19CCA;
	border-top: 1px solid #A19CCA;
	margin: 0.5em;
}

footer address {
	display: flex;
	text-align: left;
}

#contents {
	width: 100%;
	padding: 0;
}


/* 表示領域が991.98px以下の場合に適用するスタイル */
@media print, screen and (max-width: 991.98px) {
	header {
		background: #FFF;
		padding: 0;
		margin: 0;
	}
	footer address {
		flex-direction: column;
		text-align: center;
	}
	footer address div:first-of-type {
		padding-bottom: 5px;
	}
	footer address div:nth-of-type(2) {
		border-left: none;
	}
	#contents {
		margin: 0 auto 10px;
	}
  .pcOnly {
    display: none !important;
  }
	.fixed-bottom {
		position: static;
	}
}

/* 表示領域が992px以上の場合に適用するスタイル */
@media screen and (min-width: 992px) {
	header {
		background: #FFF url("../images/header_bg01.png") top 70px center repeat-x;
		padding: 20px 0 15px;
		margin: 0;
	}
	header img {
		max-width: 950px;
	}

	footer {
		width: 100%;
	}
	footer address {
		flex-wrap: wrap;
		justify-content: center;
	}
	footer address div:nth-of-type(2) {
		border-left: 1px solid #CCC;
		padding: 0 10px;
		margin-left: 10px;
	}
	#contents { /* 以上 */
		display: flex;
		justify-content: space-between;
		margin: 0 auto 10px;
	}
	#left-contents {
		margin-bottom: 50px;
	}
  .spOnly {
    display: none !important;
  }
}