@charset "utf-8";
/* CSS Document */

header {
	padding: 15px 0 15px;
	margin: 0;
	text-align: center;
}

header img {
	width: 100%;
	max-width: 1090px;
	height: auto;
}

footer {
	background: #FFF;
	padding: 15px;
	clear: both;
	font-size: 1.3rem;
	width: 100%;
}
footer .footer01 {
	display: flex;
	margin: 0 auto;
	max-width: 1200px;
	justify-content: center;
	align-items: center;
	gap: 0 20px;
}

hr.hr01 {
	border-top: 1px solid #DCCDDC;
	margin: 0.5em;
}

#contents {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}

.pagetop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 15px;
}
.pagetop a {
	display: block;
	background: #EACD19;
	text-align: center;
  color: #FFF;
  font-size: 30px;
	text-decoration: none;
	padding: 10px 13px;
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
  opacity: 0.7;
  border-radius: 9999px;
  transition: all .5s ease;
  line-height: 1;
  z-index: 99;
}
.pagetop a:hover {
	display: block;
	background: #EACD19;
	text-align: center;
	text-decoration: none;
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
  opacity: 0.5;
}

/* 表示領域が991.98px以下の場合に適用するスタイル */
@media print, screen and (max-width: 991.98px) {
	header {
		padding: 15px;
		max-width: 991.98px;
		margin: 0 auto;
	}
	header img {
		max-width: 576px;
	}


	footer .footer01 {
		flex-direction: column;
	}
	footer address {
		font-size: 1.4rem;
		border-bottom: 1px solid #CCC;
		padding: 5px 10px 5px;
		margin: 10px;
	}

	.pcOnly {
    display: none !important;
  }
	.fixed-bottom {
		position: static;
	}
}

/* 表示領域が992px以上の場合に適用するスタイル */
@media screen and (min-width: 992px) {
	.header_in {
		margin: 0 auto;
		padding-bottom: 10px;
	}
	header {
		/*margin-bottom: 10px;*/
	}
	footer {
		width: 100%;
	}
	footer address {
		flex-direction: column;
	}
	footer address div:nth-of-type(2) {
		padding: 7px 10px 0;
		margin-left: 10px;
	}
	#contents { /* 以上 */
		display: flex;
		justify-content: space-between;
	}
	#left-contents {
		margin-bottom: 10px;
	}
  .spOnly {
    display: none !important;
  }
}