@charset "utf-8";
/* CSS Document */

header {
	padding: 30px 0 10px;
	text-align: center;
	margin: 0 auto 30px;
}
header.en {
	padding: 10px 0 10px;
}

header img {
	max-width: 900px;
	width: 100%;
	height: auto;
}
header img.en {
	max-width: 950px;
}
footer {
	background: #C68F9D;
	padding: 20px;
	text-align: center;
	clear: both;
	color: #FFF;
	font-size: 1.4rem;
	width: 100%;
}

footer a:link {
	color: #FFF;
}
footer a:visited {
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

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;
}

.pagetop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 15px;
}
.pagetop a {
	display: block;
	background: #66A6DA;
	text-align: center;
  color: #fff;
  font-size: 30px;
	text-decoration: none;
	padding: 10px 15px;
	filter:alpha(opacity=90);
	-moz-opacity: 0.9;
  opacity: 0.9;
  border-radius: 9999px;
  transition: all .5s ease;
  line-height: 1;
  z-index: 99;
}
.pagetop a:hover {
	display: block;
	background: #66A6DA;
	text-align: center;
	text-decoration: none;
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
  opacity: 0.7;
}

@media print {
	.print_none {
			display: none;
	}
}

/* 表示領域が991.98px以下の場合に適用するスタイル */
@media print, screen and (max-width: 991.98px) {
	header {
		padding: 25px 0;
		max-width: 768px;
		margin: 0 auto;
	}
	header.en {
		padding: 3%;
	}
	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;
		min-height: 600px;
	}
  .pcOnly {
    display: none !important;
  }
	.fixed-bottom {
		position: static;
	}
}

/* 表示領域が992px以上の場合に適用するスタイル */
@media screen and (min-width: 992px) {
	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 20px;
		min-height: 600px;
	}
	#left-contents {
		margin-bottom: 20px;
	}
  .spOnly {
    display: none !important;
  }
}