@charset "UTF-8";

/*開閉ボタン*/
.nav_toggle{
	display: block;
	width: 55px;
	height: 50px;
	position: fixed;
	top: 2vw;
    right: 2.5vw;
	z-index: 999999;
	cursor: pointer;
	box-sizing: border-box;
	background-color: #fff;
}

.nav_toggle:after{
	content: "close";
	display: block;
	visibility: hidden;
	position: fixed;
    top: 80px;
    font-size: 1.4rem;
    padding-left: 8px;
}

.open .nav_toggle:after{
	visibility: visible;
}

.nav_toggle span{
	display: block;
	height: 2px;
	background: #111;
	position:absolute;
	width: 30px;
	right: 12px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	overflow: hidden;
}

.nav_toggle span:nth-child(1){
	top:15px;
}
.nav_toggle span:nth-child(2){
	top:23px;
}
.nav_toggle span:nth-child(3){
	top: 32px;
}

img.text_menu{
	display: none;
}

	
/*開閉ボタンclose*/
	
.open .nav_toggle span:nth-child(1) {
	top: 26px;
	transform: rotate(135deg);
}
.open .nav_toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open .nav_toggle span:nth-child(3) {
	top: 26px;
	transform: rotate(-135deg);
	right: 12px;
}

header{
	height: 60px;
	position: relative;
    z-index: 999999;
}

header h1{
    position: relative;
	width: 144px;
	height: 36px;
	left: 2.5vw;
    top: 2vw;
}

header h1 img{
	width: 100%;
	height: 100%;
	display: block;
}

.nav_wrap{
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-color:rgba(218,185,50,0.95);
	width: 100vw;
	right: 0;
	position: absolute;
}
	
.nav_innner{
	height: 100vh;
}

.nav_innner h1{
	left: auto;
	top: auto;
	margin-top: 2vw;
    margin-left: 2.5vw;
	margin-bottom: 17vh;
}
	
nav{
	display: none;
	position: fixed;
	width: 100vw;
	top: 0;
	right: 0;
}
	
nav ul{
	line-height: 1;
	margin-right: 10%;
}
	
nav ul>li{
	margin-bottom: 35px;
}
	
nav ul>li>a {
	font-size: 2.8rem;
	line-height: 1;
	letter-spacing: 0.1em;
	font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
	text-transform: capitalize;
}

nav li a:hover{
	color: #fff;
}
	
nav h2{
	border: 3px solid #111;
    background-color: #fff;
    font-size: 2.1rem;
    line-height: 1;
    height: 40px;
    width: 120px;
    font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
    display: block;
    padding-top: 5px;
    position: relative;
    text-align: center;
    text-transform: capitalize;
	margin-bottom: 75px;
	margin-left: 30%;
}

.ul_wrap{
	display: flex;
	margin-left: 30%;
}

nav ol{
	padding-top: 25px;
}

nav ol li{
	margin-left: 5px;
	margin-bottom: 25px;
}

nav ol li:before{
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	background-color: #111;
	border-radius: 50%;
	position: relative;
	top: -5px;
	left: 0;
	margin-right: 5px;
}


/* tablet版上書き ---------------------------------------- */

@media only screen and (min-width:813px) and (max-width:1024px) {
	.ul_wrap, nav h2{
		margin-left: 10%;
	}
	
} /* tablet版終わり */



/* SP版上書き ---------------------------------------- */

@media screen and (max-width:812px){
	
	header {
		height: 50px;
	}
	
	header h1{
		width: 92px;
		height: 23px;
		left: 20px;
		top: 14px;
	}
	
	.nav_toggle span:nth-child(2){
		top:24px;
	}
	
	.nav_toggle span:nth-child(3){
		top: 33px;
	}
	
	.nav_toggle{
		top: 0;
		right: 0;
	}
	
	.nav_toggle:after{
		top: 48px;
		font-size: 1.1rem;
		padding-left: 13px;
	}
	
	.nav_innner {
		height: auto;
		background-image: url("../img/footer_logo@3x.png");
		background-position: right 12vw bottom 12vw;
		background-repeat: no-repeat;
		background-size: 48px auto;
		padding-bottom: 70px;
	}
	
	.nav_innner h1{
		display: none;
	}
	
	nav h2{
		width: 90px;
		margin-bottom: 30px;
		margin-left: 7.5vw;
		margin-top: 70px;
	}
	
	.nav_wrap{
		overflow-y: scroll;
	}
	
	.ul_wrap{
		margin-left: 7.5vw;
		flex-direction: column;
	}
	
	nav ul>li {
		margin-bottom: 15px;
	}
	
	nav ul>li>a {
		font-size: 1.7rem;
	}
	
	nav ol {
		padding-top: 15px;
		padding-bottom: 5px;
	}
	
	nav ol li{
		margin-bottom: 15px;
	}
	
	nav ol li:last-child{
		margin-bottom: 0;
	}
	
	
}


/* iphone5以下 ---------------------------------------- */
@media screen and (max-width:320px) {	
}


