@charset "UTF-8";

.wrapper {
	width: 100%;
}

.logo img {
	background-color: white;
	width: 140px;
	height: auto;
}

.nav {
	width: 100%;
	border-bottom: 2px solid #000000;
}

.nav>ul {
	display: flex;
	margin: 0 auto;
	padding: 0;
}

.nav>ul>li {
	box-sizing: border-box;
	float: left;
	list-style-type: none;
	width: 150px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	word-wrap: break-word;
	margin: 0 auto;
	margin-left: -1px;
	margin-right: -1px;
	position: relative;
	font-size: 11px;
}

.global-nav-content,
.global-nav-content>a {
	display: block;
	color: black;
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0 3px;
}

.global-nav-content {
	border-right: 2px solid #ddd;
}

.global-nav-content:hover {
	background-color: #f4f8d1;
	transition: background-color .3s ease-in-out;
}

.nav>ul>li:hover {
	cursor: pointer;
}

.global-contents {
	background: white;
	padding-left: 0;
	margin-top: 70px;
	width: 300px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in-out;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 10px;
}

.global-contents>li {
	list-style-type: none;
	position: relative;
	width: 300px;
	height: 45px;
}

.global-contents>li:hover {
	background-color: #f4f8d1;
	transition: background-color .3s ease-in-out;
}

.global-contents>li>a {
	/* color: white; */
	font-weight: bold;
	font-size: 11px;
	text-align: center;
	text-decoration: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.global-show {
	visibility: inherit;
	opacity: 1;
	margin-top: 50px;
	position: relative;
	z-index: 1000000;
}

li {
	list-style: none !important;
}

ol li {
	list-style: decimal !important;
	/* ol内のliだけ番号付きにする */
}

.mg-r-10 {
	margin-right: 10px;
}

.mg-l-10 {
	margin-left: 10px;
}

.mg-t-10 {
	margin-top: 10px;
}

.mg-b-10 {
	margin-bottom: 10px;
}

.mg-r-20 {
	margin-right: 20px;
}

.mg-l-20 {
	margin-left: 20px;
}

.mg-t-20 {
	margin-top: 20px;
}

.mg-b-20 {
	margin-bottom: 20px;
}

.mg-r-30 {
	margin-right: 30px;
}

.mg-l-30 {
	margin-left: 30px;
}

.mg-t-30 {
	margin-top: 30px;
}

.mg-b-30 {
	margin-bottom: 30px;
}

.left {
	text-align: left;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}