@charset "utf-8";
@media only screen and (max-width:1023px){
}
@media print, screen and (min-width:1024px){
}
/* ------------------------------------------------------------------------
    Header
------------------------------------------------------------------------  */
header {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	padding-top: 10px;
	padding-bottom: 10px;
	background: rgba(255,255,255,.8) !important;
	border-bottom: 1px solid #ccc;
}
header .container{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
header .Logo img{
	max-height: 70px;
	width: auto;
}
@media print, screen and (min-width:1024px){
	header .container{
		justify-content: space-between;
	}
}

/* スクロール */
.clone-nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	transition: .3s;
	transform: translateY(-100%);
}
.is-show {
	transform: translateY(0);
}

/* ------------------------------------------------------------------------
    Humburger
------------------------------------------------------------------------  */
.hamberger_wrap {
	position: absolute;
	width: 35px;
	height: 35px;
	top: 50%;
	left: 20px;
	z-index: 110;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	font-size: 1.2rem;
	margin-top: -1em;
}
.hamburger {
	position: relative;
	display: block;
	width: 35px;
	height: 35px;
	vertical-align: middle;
	cursor: pointer;
	transition: transform .5s;
}
.hamburger:before{
	position: absolute;
	width: 100%;
	left:0;
	bottom: -1.3em;
	content: 'MENU';
	color: #666;
	display: block;
	font-size: 1.2rem;
	font-weight: 500;
	text-align: center;
}

.hamburger span {
	display: block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #666 !important;
	transition: all .5s;
}
.hamburger span:nth-of-type(1) {
	top: 20%;
}

.hamburger.open span:nth-of-type(1) {
	top:50%;
	transform: rotate(-45deg);
}

.hamburger span:nth-of-type(2) {
	bottom: 50%;
}
.hamburger.open span:nth-of-type(2) {
	opacity: 0;
}
.hamburger span:nth-of-type(3) {
	bottom: 20%;
}
.hamburger.open span:nth-of-type(3) {
	bottom:50%;
 	transform: rotate(45deg);
}
/* none */
@media print, screen and (min-width:1024px){
	.hamburger{display: none;}
}

/* ------------------------------------------------------------------------
    nav
------------------------------------------------------------------------  */
/* Nav */
nav {}
/* SP Overlay */
.Overlay {}
.Overlay.open {}
.NavSP {}



/* SP */
@media only screen and (max-width:1023px){
	nav{background: #fff !important;}
	.NavSP.Logo a{
		display: flex;
		justify-content: center;
		padding-top: 10px;
	}
	/* drawer menu */
	nav.nav_list {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0; /* right:-100% or left:-100% */
		left: -100%;
		z-index: 100;
		transition: all .6s 0s ease;
		-webkit-transition: all .5s 0s ease;

		overflow: auto !important;
		overflow-x: auto !important;
		overflow-y: scroll !important;
		webkit-overflow-scrolling: touch;
	}
	nav.nav_list.open {
		/* Top */
		left:0; /* right:0 or left:0 */
		-webkit-transition: all .5s 0s ease;
		transition: all .5s 0s ease;
	}
	.nav_list ul{
		padding-top: 20px;
		padding-bottom: 40px;
		background: #fff !important;
		padding-right: 10px;
		padding-left: 10px;
	}
	.nav_list li {
		padding: 20px 10px;
		list-style: none;
		border-top: 1px solid #ccc;
	}
	.nav_list li:first-child {
		border-top: none;
	}
	.nav_list li a{
		width: 100%;
		position: relative;
	}
	.nav_list li a:before{
		position: absolute;
		content: "";
		vertical-align: middle;
		right: 12px;
		top:0;
		bottom:0;

		width: 8px;
		height: 8px;
		border-top: 1px solid #717171;
		border-right: 1px solid #717171;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.nav_list a {
		text-decoration: none;
	}

	/* SubMenu */
	.MenuTriger {
		cursor:pointer;
	}
	.SubMenu {
		display:none;
		background:rgba(0,0,0,.5) !important;
	}

	/* Overlay */
	.Overlay {
		position: fixed;
		top: 0;
		left: 0;
		display: none;
		width : 100%;
		height: 100%;
		background-color:#fff !important;
	}
	.Overlay.open {
		display:block;
	}
}

/* PC */
@media print, screen and (min-width:1024px){
	.NavSP { display: none;}
	nav{
		width: 60%;
	}
	/* drawer menu */
	nav.nav_list {
	}
	nav.nav_list.open {
	}
	.nav_list ul#Nav{
		display: flex;
	}
	.nav_list li {
		flex:1;
		border-right: 1px solid #999;
	}
	.nav_list li:first-child {border-left: 1px solid #999;}
	.nav_list a {
		display: block;
		text-align: center;
		padding-top: .5em;
		padding-bottom: .5em;
	}

	/* SubMenu */
	.MenuTriger {
		cursor:pointer;
	}
	.SubMenu {
		display: none;
	}
}

/* ------------------------------------------------------------------------
    Main
------------------------------------------------------------------------  */
main{
	display: block;
}
#Top {
	/* header */
	padding-top: 91px;
}

/* Section */
.S_Line {
	border-top: 1px solid #b5b5b5;
}

/* ------------------------------------------------------------------------
    Footer
------------------------------------------------------------------------  */
footer {
	background: #f0f0f0 !important;
}

/* icon */
.FtLink {
	display: flex;
	justify-content: center;
}
.FtMenu{
    font-size: .875em;
    margin-top: 1em;
}
@media print, screen and (min-width:769px){
	.FtLink {
		justify-content: flex-end;
	}
    .FtMenu{
    }
}

.copy {
	width: 100%;
	height: 50px;
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 1.3em;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #666 !important;
	color: #fff;
	font-size: 1.2rem;
}
