@charset "UTF-8";
/* CSS Document */

.sp_view {
	display: none;
}
.pc_br {
    display: block;
}


html {
	height:100%;
	width:100%;
}
body {
	height:100%;
	width:100%;
	font-family: 'Noto Sans JP', sans-serif;
	color:#333;
	background-color: #f9f4ea;
}

a {
	text-decoration:none;
	color:#000;
	transition-duration: 0.3s;
}
a:hover {
	opacity: 0.7;
}

.container {
	position: relative;
	width: auto;
	max-width: 1024px;
	margin: 0 auto;
	overflow: hidden;
}

.fblk {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.spback {
	display: none;
}

header {
	background-color: #FFF;
    border-top: 4px solid #0d2379;
    border-bottom: 4px solid #0d2379;
    height: 122px;
}
header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
    height: 100%;
	padding-left: 14px;
	box-sizing: border-box;
}
header .spmenu {
    display: none;
}
header a {
    display: block;
    text-decoration: none;
    line-height: 0;
}
header img {
    width: auto;
    height: 61px;
}
header .header_menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 40px;
	padding-top: 10px;
}
header .header_menu .close {
	display: none;
}
header .header_menu img {
    width: auto;
    height: 30px;
}
header .header_menu a {
	border-bottom: 4px solid #FFF;
}
header .header_menu a:hover {
	border-bottom: 4px solid #38a032;
}
header .header_menu span img {
	width: auto;
	height: 41px;
}

.base1 {
	background-color: #FFF;
}
.base2 {
	background-color: #f4f2f1;
}

#gotop {
	display: block;
	width: 110px;
	height: 110px;
	font-size: 0;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 50;
	transition-duration: 0.3s;
}
#gotop img {
	width: 100%;
	height: auto;
}
#gotop.hide {
	bottom: -110px !important;
}

footer {
	position: relative;
	color: #FFF;
	background-color: #181818;
}
footer p {
	font-size: 10px;
	line-height: 60px;
	text-align: center;
}
footer .container div {
	padding: 22px 0 28px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}
footer .container div a {
	text-decoration: underline;
	color: #595555;
}

.hidden {
	display: none;
}

@media screen and (max-width: 1023px) {
	.pc_view {
		display: none;
	}
	.sp_view {
		display: inherit;
	}
	.pc_br {
		display: inline;
	}
	.sp_br {
		display: block !important;
	}
	.sp_hide {
		display: none;
	}
	.container {
		width: auto;
		margin: 0 auto;
	}
	.fblk {
		flex-direction: column;
	}
	.spback {
		display: none;
		width: 100%;
		height: calc(100vh - 54px);
		position: absolute;
		top: 54px;
		left: 0;
		z-index: 99;
		background-color: rgba(0, 0, 0, 0.5);
		backdrop-filter: blur(5px);
	}
	header {
        height: auto;
		border-top-width: 2px;
		border-bottom-width: 2px;
    }
	header .container {
		padding-left: 0;
		overflow: visible;
	}
	header .spmenu {
		display: block;
		width: 21px;
		height: 21px;
		font-size: 0;
		background-image: url(../img/spmenu.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	header .spmenu.slt {
		background-image: url(../img/spmenu_on.png);
	}
	header .header_menu {
		display: none;
		flex-direction: column;
		align-items: center;
		gap: 0;
		position: absolute;
		top: 52px;
		left: 0;
		z-index: 100;
		width: 100%;
		background-color: #FFF;
		padding: 0;
	}
	header .header_menu a,header .header_menu span {
		display: block;
		position: relative;
		font-size: 0;
		width: 100%;
		text-align: center;
		margin: 0 auto;
		padding: 14px 0 10px;
		background-color: #FFF;
		border-bottom: 2px solid #B5B5B6;
	}
	header .header_menu span img {
		width: auto;
		height: 30px;
		margin: 0 auto;
	}
	header .header_menu span::after {
		content: '';
		display: block;
		width: 92px;
		height: 10px;
		background-image: url(../img/header_menu3_cs_sp.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: right center;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
		padding-left: 180px;
	}
	header .header_menu a:hover {
		border-bottom: 2px solid #B5B5B6;
	}
	header .header_menu .close {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 15px;
		font-size: 15px;
		line-height: 21px;
		color: #231815;
		background-color: #EFEFEF;
		padding: 16px 0;
	}
	header .header_menu .close img {
		width: 21px;
		height: auto;
	}
    header a {
        margin: 10px 20px;
    }
    header a img {
        width: auto;
        height: 30px;
    }
	#contents .container {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	footer {
		padding: 20px 45px;
	}
	footer p {
		line-height: 1.4;
	}
	#gotop {
		width: 70px;
		height: 70px;
	}
}