@charset "utf-8";
/* CSS Document */

.footerFixed {
  display: grid;
  grid-template-rows: 1fr min-content;
  grid-template-columns: 100%;
  min-height: 100vh;
}

#container {
  display: grid;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}

#left-contents {
	grid-area: left-contents;
}
#middle-contents {
	grid-area: middle-contents;
}
#right-contents {
	grid-area: right-contents;
}
#bn-contents {
	grid-area: bn-contents;
}

footer {
	background: #083190;
	padding: 15px;
	text-align: center;
	clear: both;
	color: #FFF;
	font-size: 1.3rem;
	width: 100%;
}

footer address {
	display: flex;
	flex-direction: column;
	text-align: center;
	flex-wrap: wrap;
	justify-content: center;
}
footer address div:first-of-type {
	padding-bottom: 10px;
}
footer address div:nth-of-type(2) {
	border-top: 1px solid #FFF;
	padding: 10px 0;
}

footer a:link {
	color: #FFF;
}
footer a:visited {
	color: #FFF;
}
footer a:hover {
	color: #CCC;
}
footer a:active {
	color: #CCC;
}

footer hr.hr01 {
	border: 0;
	border-top: 1px solid #8c8b8b;
	margin: 1em;
}

.pagetop {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 15px;
}
.pagetop a {
	display: block;
	background: rgba(53,102,216,7.00);
	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: rgba(102,137,220,1.00);
	text-align: center;
	text-decoration: none;
	filter:alpha(opacity=50);
	-moz-opacity: 0.7;
  opacity: 0.7;
}

/* 表示領域が991.98px以下の場合に適用するスタイル */
@media print, screen and (max-width: 991.98px) {
  .pcOnly {
    display: none !important;
  }
	.fixed-bottom {
		position: static;
	}
}