/* ==========================================================================
   Utility classes
   ========================================================================== */
.vhidden {
    visibility: hidden;
}
.hidden {
    display: none;
}
.dnone {
    display: none;
}
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}


/***  ***/
.c-wh {
    color: #fff;
}
.fwb {
    font-weight: bold;
}
.tac {
    text-align: center;
}
.ofh {
    overflow: hidden;
}
.narrower {
    width: 85%;
    margin-right: auto;
    margin-left: auto;
}
.mb0 {
    margin-bottom: 0 !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb40{
    margin-bottom: 40px !important;
}
.mb50{
    margin-bottom: 50px !important;
}
.mb60{
    margin-bottom: 60px !important;
}
.mb70{
    margin-bottom: 70px !important;
}
.mb80{
    margin-bottom: 80px !important;
}
.mb90{
    margin-bottom: 90px !important;
}
.mb100{
    margin-bottom: 100px !important;
}
.thinner {
    font-weight: normal !important;
}

.caution-wh1 {
    color: #fff;
    font-weight: bold;
    text-align: center;
    border: 3px solid #fff;
    padding: 15px 20px;
}

/*** Overlay style ***/
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(153,204,51,0.9);
}

/* Overlay closing cross */
.menu__close {
    width: 80px;
    height: 80px;
/*     position: absolute;
    left: 50%;
    bottom: 40px; */
    overflow: hidden;
    border: none;
    background: url(../images/menu_cross_def.png) no-repeat center center;
    text-indent: 200%;
    color: transparent;
    outline: none;
    z-index: 100;
/*     margin-left: -41px; */
display: block;
text-align: center;
margin: auto;
    }
.menu__close:hover {
	background: url(../images/menu_cross_over.png) no-repeat center center;
}

/* Menu style */
.overlay__nav {
	text-align: center;
/* 	position: relative;
	top: 33%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%); */
}

.menu__list {
	list-style: none;
	padding: 0 16px 0;
	margin: 0 auto 40px;
	display: inline-block;
	height: 100%;
	position: relative;
	max-width: 640px;
}

.menu__list__item {
    font-size: 125%;
    font-weight: bold;
	display: block;
	height: 12.5%;
	height: calc(100% / 9);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	line-height:2;
}
.menu__list__item.cs {
    opacity: 0.4;
    pointer-events: none;
}

.menu__list__item > a {
	display: block;
	color: #1f1f1f;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

.menu__list__item > a:hover,
.menu__list__item > a:focus {
	color: #f0f0f0;
}

.menu__list-event {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}

.menu__list-event a {
	display: block;
	padding: 32px 24px;
}

.menu__list-event li {
	width: calc(100% / 3 - 4px);
}

.menu__list-event__item01 {
	background-color: #00050F;
	margin: 16px 0;
	position: relative;
}


.menu__list-event__item01 a::before {
	content: "";
	height: 47px;
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	background-image: url(../images/img-menu01.png);

}

.menu__list-event__item01 a:hover {
	background-color: #ffffff;
}

.menu__list-event__item01 a:hover::before {
	background-image: url(../images/img-menu01-b.png);
	background-repeat: no-repeat;
}

.menu__list-event__item01 a::after {
content: url(../images/icon-arrow01.svg);
width: 10px;
height: 10px;
display: block;
position: absolute;
top: 50%;
margin: auto;
bottom: 50%;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
right: 24px;
}

.menu__list-event__item01 a:hover::after {
	content: url(../images/icon-arrow02.svg);
}

.menu__list-event__item01 a {
 	padding: 32px 24px;
	display: block;
}

.menu__list-event__item01 img {
	width:160px;
}

.menu__list-event__item02 {
	background-color: #FFFE00;
}

.menu__list-event__item03 {
	background-color: #FF1FA8;
}

.menu__list-event__item04 {
	background-color: #00B6FF;
}

.menu__list-event__item a:hover {
	background-color: #ffffff;
}

/* Effects */
html, body {
	overflow-x: hidden;
}

.container {
	overflow-x: hidden;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;	
}

.container.overlay-open {
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
}

.container::after {
	content: '';
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

.container.overlay-open::after {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.overlay-contentpush {
	background: #ca0915;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
	transition: transform 0.5s, visibility 0s 0.5s;
}

.overlay-contentpush.open {
	visibility: visible;
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	overflow-y: scroll;
}

@media screen and (max-height: 30.5em) {
	.overlay nav {
		font-size: 13px;
	}
	.overlay ul li {
	}
}

@media screen and (max-width: 677px) {
	.menu__list__item {
		line-height: 3;
	}
}