@charset "UTF-8";

@media screen and (max-width:999px){
header{
	width: 100%;
	min-width: 100%;
	height: 140px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	padding-top: 0px;
	background-color: transparent;
	overflow-y: auto;
  -webkit-overflow-scrolling: touch;
	transition: 0.2s;
}
	
	header.open{
		height: 100vh;
	}

header section{
	width: 100%;
	height: 70px;
	margin: 0 auto;
	align-items: center;
	background-color: #002542;
	background-image: url(../img/header_golfball.svg), url(../img/header_baseball.svg);
	background-position: left 5vw bottom -1px, right 5vw bottom -3px;
	background-repeat: no-repeat;
	background-size: 25px auto, 50px auto;
	border-bottom: 1px solid #fff;
}
	
header section ol{
	display: none;
}
	
	header h1{
		margin: 0 auto;
		width: 123px;
		height: 35px;
	}

/*開閉ボタン*/
#nav_toggle{
	display: block;
	position: absolute;
	top: 70px;
	right: 0;
	z-index: 100;
	cursor: pointer;
	width: 70px;
	height: 70px;
	background-color: #fff;
	padding-top: 20px;
}

#nav_toggle p {
	width: 40px;
	height: 30px;
	position: relative;
	margin: 0 auto;
}
#nav_toggle span{
	display: block;
	height: 2px;
	background: #000;
	position:absolute;
	width: 100%;
	left: 0;
	-webkit-transition: 0.35s ease-in-out;
	-moz-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
}

#nav_toggle span:nth-child(1){
	top:0px;
}
#nav_toggle span:nth-child(2){
	top:14px;
}
#nav_toggle span:nth-child(3){
	bottom: 0;
}
	
/*開閉ボタンopen時*/
.open #nav_toggle span:nth-child(1) {
	top: 14px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
}
.open #nav_toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav_toggle span:nth-child(3) {
	top: 14px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

nav{
	display:none;
	position: absolute;
	right: 0;
	top: 70px;
	width: 100vw;
	background-color: #002542;
	z-index: 99;
}
	
header section ul{
	display: block;
	overflow: visible;
	height: auto;
	margin: 0 auto;
	margin-top: 50px;
}
	
	header section ul li {
		margin-left: 0px;
	}
	
	header section ul li a::after{
		display: none;
	}
	
nav ul{
	margin: 0 auto;
	width: 90vw;
	min-width: 90vw;
	display: block;
	padding-top:25px;
	padding-bottom: 55px;
	background-image: url(../img/dot_back.png);
	background-repeat: repeat;
	background-size: auto;
}
	
nav ul li{
	text-align: center;
	font-size: 12pt;
	margin-top: 25px;
	margin-right: 0;
	display: block;
}
	
nav ul li a {
    display: inline;
	font-size: 12pt;
	font-weight: bold;
}
	
	nav ul li a span{
		background-color: #002542;
		padding: 0px 3px;
	}
	
	nav ul li a.active {
		color: #738797
	}

	nav .icon{
		display: flex;
		flex-wrap: nowrap;
		justify-content: center;
		width: 90vw;
		margin: 50px auto;
	}
	
	nav .icon p:first-of-type{
		margin-right: 25px;
	}
	
	nav .icon p:last-of-type{
		margin-left: 25px;
	}
	
	nav .icon p:nth-of-type(2) a{
		letter-spacing: 0;
	}
		
	nav .icon p:last-of-type a{
		padding-top: 18px;
	}
	
	nav .icon p:last-of-type img{
		width: 37px;
		height: 37px;
		display: block;
		margin: 0 auto;
	}
	
	nav .icon a{
		border-radius: 50%;
		width: 75px;
		height: 75px;
		line-height: 72px;
		display: block;
		border: 1px solid #fff;
		text-align: center;
		font-size: 11pt;
		font-weight: bold;
	}
	
	nav .zip{
		width: 240px;
		margin: 0 auto;
		display: block;
		padding-bottom: 70px;
	}
	
	nav .zip p{
		margin-bottom: 20px;
		font-size: 12pt;
	}
	
}

@media only screen and (min-width:1000px) and (max-width:1179px) {
}



