@charset "utf-8";
html {
	font-size: 62.5%;
}

body {
	font-size: 1.4rem;
	line-height: 1.5;
	font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	color: #000000;
}

.sf {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.meiryo {
	font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, sans-serif;
}

.mincho {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

a {
	text-decoration: none;
}

img {
	border: 0;
	max-width: 100%;
}

.inner {
	position: relative;
	width: 1000px;
	margin: 0 auto;
}

.clear:after,
.inner:after {
	display: block;
	content: "clear";
	width: 0;
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}

.fade {
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}


/* -------------------- header -------------------- */

header {
	width: 100%;
	background: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	padding: 22px 0;
	border-top: 5px solid #c8161d;
}

header.fixed {
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: 0.3s all;
}

header .inner {
	display: table;
}

.logo {
	width: auto;
	display: table-cell;
	vertical-align: middle;
}

.logo a {
	width: 52px;
	height: 68px;
	display: block;
}

.logo img {
	display: block;
}

nav {
	width: 590px;
	display: table-cell;
	vertical-align: middle;
}

.nav_list {
	width: 100%;
	display: table;
}

.nav_list li {
	width: auto;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 0 12px;
}

.nav_list li:last-of-type {
	width: 125px;
	padding-right: 0;
}

.nav_list li a {
	display: block;
	color: #000000;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 4px 5px 7px 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

.nav_list li:last-of-type a {
	background: #c8161d;
	color: #FFFFFF;
	border: 2px solid #c8161d;
}
.nav_list li a:hover {
	color: #c8161d;
}

.nav_list li:last-of-type a:hover {
	background: #FFFFFF;
	color: #c8161d;
}

.d-menu {
	display: none;
}


/* -------------------- footer -------------------- */

footer {
	width: 100%;
	background: #c8161d;
	color: #FFFFFF;
	padding: 90px 0 30px 0;
}

.foot_logo {
	display: block;
	width: 86px;
	margin: 0 auto;
}

.foot_logo img {
	display: block;
}
.foot_list_wrap{
	width: 100%;
	padding: 0 90px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.foot_list {
	width: 100%;
	text-align: center;
	border-bottom: 1px solid #FFFFFF;
	padding: 55px 0 40px 0;
	margin-bottom: 30px;
}

.foot_list li {
	width: auto;
	display: inline-block;
	margin-right: 40px;
}

.foot_list li:last-of-type {
	margin-right: 0;
}

.foot_list li a {
	color: #FFFFFF;
	font-size: 1.6rem;
	font-weight: bold;
}

.foot_list li a:hover {
	text-decoration: underline;
}

.copyright {
	text-align: center;
	font-size: 1.4rem;
}

.pagetop {
	display: none;
	width: 58px;
	height: 58px;
	background: url(../img/pagetop.png) no-repeat center center #FFFFFF;
	border: 3px solid #3f4548;
	position: fixed;
	right: 100px;
	bottom: 100px;
	z-index: 10;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

@media only screen and (max-width:1024px) {
	.inner {
		width: 90%;
	}
	.fade {
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		transition: none;
	}
	/* -------------------- header -------------------- */
	.nav_list li a:hover {
		color: #000000;
	}
	.nav_list li:last-of-type a:hover {
		background: #C8161D;
		color: #FFFFFF;
	}
	/* -------------------- footer -------------------- */
	.foot_list li a:hover {
		text-decoration: none;
	}
}

@media only screen and (max-width: 1023px) {
	/* -------------------- header -------------------- */
	header {
		padding: 20px 0;
	}
	nav {
		width: 550px;
	}
	.nav_list li {
		padding: 0 5px;
	}
	/* -------------------- footer -------------------- */
	
	.foot_list_wrap{
		padding: 0;
	}
	.pagetop {
		right: 20px;
		bottom: 20px;
	}
}

@media only screen and (max-width:767px) {
	/* -------------------- header -------------------- */
	nav {
		width: 100%;
		display: none;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 100;
		background: #C8161D;
	}
	.nav_list {
		width: 100%;
		display: block;
	}
	
	.nav_list li {
		width: 100%;
		display: block;
		padding: 0;
		border-bottom: 1px solid #FFFFFF;
		text-align: left;
	}
	
	.nav_list li:last-of-type {
		width: 100%;
	}
	
	.nav_list li a {
		display: block;
		color: #FFFFFF;
		padding: 20px 5% 20px 5%;
	}
	
	.nav_list li:last-of-type a {
		border: none;
	}
	.nav_list li a:hover {
		color: #FFFFFF;
	}
	
	.nav_list li:last-of-type a:hover {
		background: #c8161d;
		color: #FFFFFF;
	}
	.d-menu {
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto;
		width: 50px;
		height: 50px;
		cursor: pointer;
		overflow: hidden;
	}
	.panel-btn {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		background: #C8161D;
	}
	.panel-btn-icon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 30px;
		height: 2px;
		margin: -2px 0 0 -15px;
		background: #FFFFFF;
		transition: .2s;
	}
	.panel-btn-icon:before,
	.panel-btn-icon:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 30px;
		height: 2px;
		background: #FFFFFF;
		transition: .3s;
	}
	.panel-btn-icon:before {
		margin-top: -10px;
	}
	.panel-btn-icon:after {
		margin-top: 8px;
	}
	.panel-btn .close {
		background: transparent;
	}
	.panel-btn .close:before,
	.panel-btn .close:after {
		margin-top: 0;
	}
	.panel-btn .close:before {
		-ms-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.panel-btn .close:after {
		-ms-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	/* -------------------- footer -------------------- */
	
	footer {
		padding-top: 60px;
	}
	.foot_list {
		padding: 40px 0 20px 0;
		overflow: hidden;
		clear: both;
	}
	
	.foot_list li {
		width: 32%;
		display: block;
		float: left;
		margin-right: 2%;
		margin-bottom: 20px;
	}
	
	.foot_list li:nth-of-type(3n) {
		margin-right: 0;
	}
	
	.pagetop {
		width: 40px;
		height: 40px;
		background-size: 22px;
		border-width: 2px;
	}
}

@media only screen and (max-width: 480px) {
	/* -------------------- header -------------------- */
	header{
		padding: 15px 0;
		border-top-width: 3px;
	}
	.logo {
		width: 40px;
	}
	.logo a {
		width: 40px;
		height: 53px;
	}
	.d-menu {
		width: 40px;
		height: 40px;
	}
	.panel-btn-icon {
		width: 20px;
		height: 2px;
		margin: -1px 0 0 -10px;
	}
	.panel-btn-icon:before,
	.panel-btn-icon:after {
		height: 2px;
		width: 20px;
	}
	.panel-btn-icon:before {
		margin-top: -8px;
	}
	.panel-btn-icon:after {
		margin-top: 6px;
	}
	/* -------------------- footer -------------------- */
	.foot_logo{
		width: 70px;
	}
	.foot_list{
		padding-top: 30px;
		margin-bottom: 20px;
	}
	.foot_list li{
		margin-bottom: 10px;
	}
	.pagetop {
		right: 10px;
	}
}