/* ------------------------------------------------------------------------
    Header
------------------------------------------------------------------------  */
header {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 20;
	transition: background-color .4s linear;
}
header.Scrl {
	background: rgba(255,255,255,1);
}
header .HD_container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
}
header h1{
	width: 100%;
}
@media screen and (min-width:1024px){
	header .HD_container{
		padding: 15px 20px;
	}
	header h1{
		max-width: 70px;
		transition: all .3s;
	}
	header.Scrl h1{
		max-width: 50px;
		transition: all .6s;
	}
}
@media screen and (max-width:1023px){
	header h1{
		max-width: 50px;
	}
}

/* SP MENU OPEN */
body.fixed header{
	background: #fff;
}

/* ------------------------------------------------------------------------
    Icon
------------------------------------------------------------------------  */

/* ------------------------------------------------------------------------
    Humburger
------------------------------------------------------------------------  */
.hamburger {
	display: block;
	width: 35px;
	height: 35px;
	vertical-align: middle;
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 110;
	transform: translateY(-50%);
	transition: transform .5s;
}

.hamburger span {
	display: block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #323232;
	transition: all .5s;
}
.hamburger.open span{
	background-color: #323232;
}
.Scrl .hamburger span {
	background-color: #323232;
}
.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);
}
@media screen and (min-width:769px){
	#TOP-PAGE .hamburger span {
		background-color: #fff;
	}
	#TOP-PAGE .hamburger.open span {
		background-color: #323232;
	}
}
/* none */
@media screen and (min-width:1200px){
	.hamburger{display: none;}
}

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

/* SP */
@media screen and (max-width:1200px){
	nav{
		background: #fff;
	}
	/* drawer menu */
	nav.nav_list {
		width: 100%;
		height: calc(100% - 70px);
		position: fixed;
		top: 70px; /* right:-100% or left:-100% */
		padding-bottom: 61px;
		right: -100%;
		z-index: 100;
		transition: all .6s 0s ease;

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

		right: 12px;
		top:0;
		bottom:0;

		width: 8px;
		height: 8px;
		border-top: 1px solid #717171;
		border-right: 1px solid #717171;
		transform: rotate(45deg);
	}
	/* info */
	.NavInfo{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding:40px 20px;
		background: #d2d2d2;
	}
}

/* PC */
@media screen and (min-width:1200px){
	.NavSp{display: none !important;}
	nav{}
	nav ul{
		display: inline-flex;
	}
	nav ul li{
		margin-left: 1.5em;
	}
	#TOP-PAGE nav ul li a{
		color: #fff;
	}
	#TOP-PAGE .Scrl nav ul li a {
		color: #323232;
	}
	/* SubMenu */
	.MenuTriger {
		cursor:pointer;
	}
	.SubMenu {
		display: none;
	}
}

/* ------------------------------------------------------------------------
    Main
------------------------------------------------------------------------  */
main {
	flex: 1 0 auto;
}

/* ------------------------------------------------------------------------
    PageTitle
------------------------------------------------------------------------  */
#PAGE-TITLE {
	margin-top: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 40px;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 40px;
}
#PAGE-TITLE #PT_Box {
	width: 100%;
	padding: 1em 0;
}
#PAGE-TITLE #PT_Box h2{
	font-size: 1.875em;
	line-height: 1.5em;
	font-weight: 500;
	margin-bottom: .5em;
}

/* ------------------------------------------------------------------------
    Contact
------------------------------------------------------------------------  */
#Right_Contact {}
#Right_Contact .RC_Container{}
#Right_Contact .RC_Container .RC_Close{}

/* LINE */
#Right_Contact .LogoOA {
	text-align: center;
}
#Right_Contact .LogoOA img {
	max-width: 200px;
}
#Right_Contact .Line_Box {
	width: 100%;
	box-sizing: border-box;
}
#Right_Contact .BtnC {
	margin-top: 20px;
	max-width: 100% !important;
}
#Right_Contact p {
	line-height: 1.4em;
}
@media screen and (max-width:1023px){
	#Right_Contact {display: none;}
}
@media screen and (min-width:1024px){
	#Right_Contact {
		-webkit-backface-visibility:hidden;
		backface-visibility:hidden;
		
		opacity: 0;
		position: fixed;
		right: 40px;
		bottom: 40px;
		width: 350px;
		background: #00b900;
		box-sizing: border-box;
		transition: all .8s;
		
		z-index: 100;
	}
	#Right_Contact.active {
		opacity: 1;
	}
	#Right_Contact .RC_Container{
		position: relative;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		padding: 20px;
	}
	#Right_Contact .RC_Container .RC_Close{
		position: absolute;
		right: 0;
		top: 0;
		width: 40px;
		height: 40px;
		background: #ac0000;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.125em;
		font-weight: 500;
		color: #fff;
		
		cursor: pointer;
	}
}

/* ------------------------------------------------------------------------
    section
------------------------------------------------------------------------  */
.Topline{
	border-top: 1px solid #ccc;
}

/* ------------------------------------------------------------------------
    Section
------------------------------------------------------------------------  */
section{}
/* color */
.bg_f5{background: #f5f5f5;}
/* border */
.bd_top{border-top:1px solid #dcdcdc;}
.bd_btm{border-bottom:1px solid #dcdcdc;}

/* ------------------------------------------------------------------------
    Footer
------------------------------------------------------------------------  */
footer .FooterWrap{
	background: #f5f5f5;
}
.FT_logo {
	width: 70px;
	margin-bottom: 2em;
	margin-left: auto;
	margin-right: auto;
}
.FT_Comname {
	margin-bottom: 1em;
	text-align: center;
}
footer .BtnB,
footer .BtnD{
	margin-bottom: 10px;
	margin-top: 10px;
	margin-left: 20px;
	margin-right: 20px;
}
.FT_Link {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: -10px;
}
.FT_Link a{
	margin-left: 2em;
	margin-right: 2em;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 14px;
}
.copy {
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background: #005bac;
	font-size: 1rem;
}
.FT-Banner {
	display: flex;
	justify-content: center;
}
.FT-Banner li{
	padding: 0 5px;
	text-align: center;
}
@media screen and (min-width:1024px){
	.copy {
		font-size: 1.2rem;
		padding-bottom: 0;
	}
}
