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

#top_hide{
	display: block;
	overflow: hidden;
}

#visual{
	position: relative;
}
/*overflow: scroll;*/
  /*-webkit-overflow-scrolling: touch;*/
	/*overflow: hidden;*/

/*header*/

header{
	height: 60px;
	/*background: #00a7fd;*/
	background-color: #61c9fe;
	overflow: hidden;
}

header h1 a{
	font-size: 18px;
	font-weight: 700;
	line-height: 64px;
	margin-left: 4%;
	width: 100px;
}

#header{
	position: absolute;
	width:100%;
	top: 0;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (min-width:768px){
	header h1 a{
		font-size: 24px;
		margin-left: 15%;
		color: #1c1c1c;
	}
}
@media screen and (min-width:768px){
	header{
		-webkit-display: flex;
		-ms-display: flex;
		-moz-display: flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		-moz-flex-direction: row;
		flex-direction: row;
		-webkit-justify-content: space-between;
		-ms-justify-content: space-between;
		-moz-justify-content: space-between;
		justify-content: space-between;
	}
	
	#nav_pc ul{
		-webkit-display: flex;
		-ms-display: flex;
		-moz-display: flex;
		display: flex;
		font-size: 0;
		box-sizing: border-box;
		width: 100%;
		padding: 4px;
		list-style: none;
		text-align: center;
	}
	#nav_pc li{
		display: inline-block;
		margin-right: 20px;
	}
	#nav_pc li:last-child{
		margin-right: 30px;
	}
	
	#nav_pc li a{
		display: block;
		font-size: 18px;
		line-height: 22px;
		font-weight: 700;
		color: #1c1c1c;
		padding-bottom: 0px;
		margin-top: 21px;
	}
	#nav_pc li a:after{
		content: '';
		width: 0;
		transition: all 0.3s ease;
		border-bottom: 3px solid #1c1c1c;
		display: block;
	}
	#nav_pc li a:hover:after{
		width: 100%;
		border-bottom: 3px solid #1c1c1c;
	}
}

nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: -20px;
    left: 0;
    background: rgba(97,201,254,0.9);
    color: #1c1c1c;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
}

nav.globalMenuSp p{
	font-size: 30px;
	font-weight: 600;
	margin: 80px 0 40px;
}
 
nav.globalMenuSp ul {
	display: block;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
}
 
nav.globalMenuSp ul li {
	list-style-type: none;
	padding-bottom: 50px;
	width: 100%;
}

nav.globalMenuSp ul li:last-child {
	list-style-type: none;
	margin: 0 auto 190px;
	width: 80%;
	height: 30px;
	background: #1c1c1c;
}

 
nav.globalMenuSp ul li a{
	font-size: 36px;
	font-weight: 600;
	display: block;
	color: #1c1c1c;
	padding: 0;
}

#contact{
	color: #61c9fe;
	line-height: 75px;
}
 
nav.globalMenuSp.active {
    transform: translateY(0%);
}

/*ハンバーガー用*/
.navToggle {
	display: block;
	position: fixed;
	right: 13px;
	top: 12px;
	width: 42px;
	height: 60px;
	cursor: pointer;
	z-index: 3;
	text-align: center;
}
 
.navToggle span {
    display: block;
    position: absolute;
    width: 35px;
    border-bottom: solid 3px #131313;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}
 
.navToggle span:nth-child(1) {
    top: 5px;
}
 
.navToggle span:nth-child(2) {
    top: 17px;
}
 
.navToggle span:nth-child(3) {
    top: 30px;
}

/* 
.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}*/

/*タップ後*/
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*home*/





/*main*/

.gray{
	background: #f6f6f6;
}



