@charset "UTF-8";

/*== footer
======================================================================*/
.footer {
	width: 100%;
}

.footer__inner {
	padding: 60px 20px;
}

.footer__info {
	text-align: center;
	line-height: 1.6;
}

.footer__info-logo img {
	width: 100%;
	max-width: 140px;
}

.footer__info-address {
	font-size: 16px;
	margin-top: 15px;
}

.footer__sitemap {
	margin-top: 30px;
}

.footer__message{
	background: #EEF2F9;
}

.footer__message-inner{
	max-width: 100%;
	padding: 30px 20px;
	margin: 0 auto;
}

.footer__message-text{
	color: #222;
	font-size: 14px;
}

.footer__copy {
	background: #1955A6;
}

.footer__copy small {
	color: #fff;
	font-size: 14px;
	text-align: center;
	padding: 30px 20px;
	display: block;
}

.footer__pagetop {
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: -80px;
	right: 15px;
	z-index: 80;
	transition: all ease .3s;
}

.footer__pagetop.js-active{
	bottom: 30px;
}

.footer__pagetop a {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #222;
	position: relative;
}

.footer__pagetop a:before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	margin: -4px 0 0 -8px;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	left: 50%;
}

@media screen and (min-width:1024px) {
	.footer__inner {
		max-width: 100%;
		padding: 60px 30px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}

	.footer__info {
		width: 35%;
		text-align: left;
		padding-top: 15px;
	}

	.footer__sitemap {
		width: 60%;
		margin: 0;
		display: flex;
		justify-content: flex-end;
		gap: 0 2.5%;
	}

	.footer__message-inner{
		padding: 30px;
	}

	.footer__copy small {
		font-size: .8em;
		text-align: left;
		padding: 30px;
		max-width: 100%;
		display: block;
		margin: 0 auto;
	}

	.footer__pagetop {
		right: 30px;
		bottom: 60px;
	}
}



/*== footer nav01
======================================================================*/
.footer__nav01 {
	border-bottom: 1px solid #ccc;
	padding: 20px 0 10px;
}

.footer__nav01 .footer__nav-list {
	display: flex;
	font-size: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.footer__nav01 .footer__nav-list li {
	margin-bottom: 10px;
	position: relative;
}

.footer__nav01 .footer__nav-list li::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background: #ccc;
	top: 0;
	right: 0;
}

.footer__nav01 .footer__nav-list li:last-child::after {
	display: none;
}

.footer__nav01 .footer__nav-list li a{
	padding: 0 15px;
	display: inline-block;
}

@media screen and (min-width:1024px) {
	.footer__nav01 {
		padding: 30px 0 20px;
	}

	.footer__nav01 .footer__nav-list {
		font-size: 14px;
	}

	.footer__nav01 .footer__nav-list li a{
		padding: 5px 25px;
	}

}



/*== footer nav02
======================================================================*/
.footer__nav02 {
	border-bottom: 1px solid #ccc;
}

.footer__nav02 .footer__nav-list {
	max-width: 800px;
	padding: 40px 20px 60px;
	margin: 0 auto;
}

.footer__nav02 .footer__nav-list li {
	border-bottom: 1px solid #ccc;
	display: block;
}

.footer__nav02 .footer__nav-list li a{
	padding: 15px 30px 10px 0;
	position: relative;
	display: block;
}

.footer__nav02 .footer__nav-list li a:before{
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #222;
	border-right: 2px solid #222;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -3px;
}

@media screen and (min-width:1024px) {

}



/*== footer nav03
======================================================================*/
.footer__nav03{
	width: 100%;
}

.footer__nav03 .footer__nav-list li {
	border-bottom: 1px solid #ddd;
	display: block;
}

.footer__nav03 .footer__nav-list li a{
	padding: 15px 0 15px 25px;
	position: relative;
	display: block;
}

.footer__nav03 .footer__nav-list li a:before{
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid #222;
	border-right: 0;
	position: absolute;
	top: 50%;
	left: 10px;
	margin-top: -5px;
}

@media screen and (min-width:1024px) {
	.footer__nav03 .footer__nav-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.footer__nav03 .footer__nav-list li {
		width: calc(50% - 15px);
	}
}