@charset "utf-8";

#menuSection *
{
	padding: 0;
	margin: 0;

}

#menuSection
{
	width: 96px;
	height: 96px;
	overflow: hidden;
	position: absolute;
	top: 82px;
	right: 0;
	background: rgba(0,0,0,0);
	font-family:  Helvetica, "Helvetica Neue", Arial, Verdana, "Droid Sans", sans-serif;
	transition: background 0.2s linear, width 0s linear, height 0s linear;
	transition-delay: 0.5s, 0.9s, 0.9s;
}

#menuSection.fix
{
	position: fixed;
	top: 0;
}

#menuSection.open
{
	background: rgba(0,0,0,0.8);
	width: 100%;
	height: 100%;

	transition-delay: 0s, 0s, 0s;
}

#menuSection div.menu
{
	width: 640px;
	position: absolute;
	top: -300px;
	top: -400px;
	left: 0;

	transition: top 0.2s linear;
	transition-delay: 0.2s;
}

#menuSection.open div.menu
{
	top: 0;
	transition-delay: 0.3s;
}

#menuSection div.menu ul
{
	width: 640px;
	position: relative;
	top: 0;
	right: 0;
}

/*************************************
	menu button
*************************************/

#menuSection div.menu ul li
{
	display: table;
	width: 640px;
	background: #f8bb31;
	border-bottom: 4px solid #c69627;
}

#menuSection div.menu ul li:first-child
{
	padding-right: 96px;
}

#menuSection div.menu ul li a
{
	display: table-cell;
	height: 96px;
	padding-left: 68px;
	font-size: 42px;
	font-size: 4.2rem;
	line-height: 1.2;
	color: #ffffff;
	background:url(../img/contents/arrow_02.png) 30px 50% no-repeat;
	vertical-align: middle;
}

#menuSection div.menu ul li.terms a
{
	font-size: 32px;
	font-size: 3.2rem;
	background:url(../img/contents/arrow_03.png) 32px 50% no-repeat;
}

/*************************************
	JP / EN
*************************************/

#menuSection div.menu ul li:last-child
{
	display: block;
	height: 86px;
	background: #c69627;
	text-align: center;
}

#menuSection div.menu ul li:last-child a,
#menuSection div.menu ul li:last-child span
{
	display: inline-block;
	width: 60px;
	height: 60px;
	padding: 0;
	overflow: hidden;
	border-radius: 30px;
	margin: 13px 29px;
	font-size:2.6rem;
	vertical-align: top;
	line-height:60px;
	font-weight:bold;
	letter-spacing:0.1em;
	text-indent:0.1em;
	background-image:none;
}

#menuSection div.menu ul li:last-child a	{ background-color: #b28723;color:#fff; }
#menuSection div.menu ul li:last-child span	{ background-color: #ffffff;color:#c69627; }

/*************************************
	open / close
*************************************/

#menuSection a.open, #menuSection a.close
{
	display: block;
	width: 52px;
	height: 52px;
	border: 7px solid #ffffff;
	border-radius: 16px;
	background-color: #e60012;
	background-image: url(../img/contents/icon_open_close.png) ;
	background-repeat: no-repeat;
	position: absolute;
	top: 15px;
	text-indent: 100%;
	white-space: nowrap;
	color: rgba(0,0,0,0);

	transition: transform 0.15s linear, right 0s linear;
}

#menuSection a.close
{
	background-position:0 -52px ;
}

#menuSection a.open			{ transform: scale(1,1); right: 15px; transition-delay: 0.85s, 0.8s; }
#menuSection.open a.open	{ transform: scale(0,0); right: -66px; transition-delay: 0s, 0.2s; }
#menuSection a.close		{ transform: scale(0,0); right: -66px; transition-delay: 0s, 0.2s; }
#menuSection.open a.close	{ transform: scale(1,1); right: 15px; transition-delay: 0.85s, 0.8s; }
