/* ------------------------------------------------------------------------
    Header
------------------------------------------------------------------------  */
header {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	-webkit-transition: all .6s;
	transition: all .6s;
	border-bottom: 1px solid #ccc;
}
header.Scrl {
	background: rgba(255,255,255,.9);
}
/* Toppage */
@media screen and (max-width:1023px){
	#Index header {
		border-bottom: none;
	}
	#Index header.Scrl {
		border-bottom: 1px solid #ccc;
	}
}
@media screen and (min-width:1024px){
	#Index header {
		border-bottom: none;
	}
	#Index header.Scrl {
		border-bottom: 1px solid #ccc;
	}
	#Index header .cl-sona span,
	#Index header a{
		color: #fff;
	}
	#Index header.Scrl .cl-sona span,
	#Index header.Scrl a{
		color: #323232;
	}
}

header .container{
	position: relative;
	max-width: 100%;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .container .HD-Logo{
	position: absolute;
	left: 20px;
	top: -10px;
	display: flex;
	align-items: baseline;
	transform: translateY(10%);
	z-index: 110;
}
header .container .HD-Logo .cl-sona{
	font-size: 4.125em;
	font-family: 'Century Gothic', sans-serif;
	font-weight: bold;
	line-height: 1em;
}
header .container .HD-Logo .cl-sona span{
	vertical-align: baseline;
	font-size: 0.45em;
	font-weight: bold;
	color: #333;
}
@media screen and (min-width:1024px){
	header .container .HD-Logo{
		position: static;
	}
}

/* ------------------------------------------------------------------------
    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%);
	-webkit-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 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 screen and (min-width:1024px){
	.hamburger{display: none;}
}

/* ------------------------------------------------------------------------
    Nav
------------------------------------------------------------------------  */
nav ul{
}
nav ul li a{
}
@media screen and (max-width:1023px){
	nav {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0; /* right:-100% or left:-100% */
		right: -100%;
		z-index: 100;
		transition: right .6s 0s ease;
		-webkit-transition: right .6s 0s ease;

		overflow: auto !important;
		overflow-x: auto !important;
		overflow-y: scroll !important;
		webkit-overflow-scrolling: touch;
		background: #f5f5f5;
	}
	nav.open {
		/* Top */
		right:0; /* right:0 or left:0 */
		
	}
	nav ul{
		padding-top: 100px;
		padding-bottom: 20px;
		background: #fff;
		box-sizing: border-box;
	}
	nav li {
		padding: 20px 0;
		list-style: none;
		border-top: 1px solid #dcdcdc;
	}
	nav li:first-child {
		border-top: none;
	}
	nav ul li a{
		text-decoration: none;
		position: relative;
		display: block;
		vertical-align: middle;
		padding-left: 20px;
		padding-right: 20px;
	}
	nav ul li 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;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	/* Info */
	.NavInfo{
		text-align: center;
		background: #f5f5f5;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	/* Overlay */
	.Overlay {
		position: fixed;
		top: 0;
		left: 0;
		display: none;
		width : 100%;
		height: 100%;
		background-color:rgba(255,255,255,.5);
	}
	.Overlay.open {
		display:block;
	}
}
@media screen and (min-width:1024px){
	.NavSp{display: none !important;}
	nav ul{
		display: flex;
	}
	nav ul li a{
		padding-left: 1em;
		padding-right: 1em;
	}
}


/* ------------------------------------------------------------------------
    Main
------------------------------------------------------------------------  */
#Main {
	padding-top: 100px;
}

/* ------------------------------------------------------------------------
    PageTop
------------------------------------------------------------------------  */
#PageTop {
	padding-bottom: 4.285em;
	padding-top: 4.285em;
	display: flex;
	justify-content: center;
}
#PageTop h2{
	position: relative;
	font-size:1.875em;
	font-weight: 500;
	line-height:1.5em;
	color: #00b0ff;
}
#PageTop h2:after{
	position: absolute;
	bottom: -30px;
	left: 50%;
	content: '';
	width: 100px;
	height: 3px;
	background: #00b0ff;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

/* ------------------------------------------------------------------------
    Footer
------------------------------------------------------------------------  */
footer {
	border-top: 1px solid #ccc;
}
.FT-Container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.FT-Container .FT-Company{
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}
.FT-Container .FT-Company p{
	line-height: 1.5em;
}
.FT-Container .FT-Company p:first-child{
	padding-bottom: 1em;
}
.FT-Container .FT-BtnArea{
}
.FT-Container .FT-BtnArea a{
	margin-left: 1em;
	margin-right: 1em;
}
.FT-Container .FT-BtnArea .FT-Btn{
	width: 150px;
	margin-left: auto;
	margin-right: auto;
}
.FT-Links {
	display: flex;
	justify-content: center;
	font-size: 14px;
	margin-left: -1em;
	margin-top: 1.5em;
}
.FT-Links a{
	margin-left: 1em;
	margin-right: 1em;
}
@media screen and (max-width:768px){
	.FT-Links {
		flex-wrap: wrap;
	}
	.FT-Links a{
		width: 100%;
		margin-top: 1em;
	}
}
@media screen and (min-width:1024px){
	.FT-Container .FT-Company{
		text-align: left;
		width: auto;
		margin-bottom: 0;
	}
	.FT-Container .FT-BtnArea{
		width: auto;
	}
	.FT-Container .FT-BtnArea .FT-Btn{
		margin-right: 0;
	}
	.FT-Container {
		justify-content: space-between;
	}
	.FT-Links {
		justify-content: flex-start;
	}
}
.copy {
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #00b0ff;
	color: #fff;
	font-size: 1.2rem;
}
