﻿*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#globalMenu {
	/* width:720px; */
	width: calc(100%-240px) !important;
	width: -webkit-calc(100%-240px) !important;
	background: #fff;
	margin: 0 auto;
	padding: 1.1em 0em;
	text-align: right;
}

nav a {
	position: relative;
	display: inline-block;
	margin: 15px;
	outline: none;
	color: #404040;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 13pt;
	text-decoration: none;
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

nav a:link {
	color:#404040;
}

nav a:visited {
	color:#404040;
}

nav a:hover,
nav a:focus {
	color: #404040;
	outline: none;
}

.cl-effect-3 a {
	/* padding: 8px 0; */
}

.cl-effect-3 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgba(195,33,55,0.9);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}

.cl-effect-3 a:hover::after,
.cl-effect-3 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}
@media screen and (max-width: 959px) {
	nav a {
		font-size: 11pt;
		margin: 15px 9px;
	}
}