.slide{
	width: 100%;
background-size: cover;
background-position: center center;
background-color: black;
	
}



/*
    these are just the default styles used in the Cycle2 demo pages.  
    you can use these styles or any others that you wish.
*/


/* set border-box so that percents can be used for width, padding, etc (personal preference) */
.cycle-slideshow, .cycle-slideshow * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }


.cycle-slideshow { width: 100%; height:auto; margin: 0px; padding: 0; position: relative;
    background: url(../../images/top/loader.gif) 50% 50% no-repeat;
	background-size:50px 50px;

 }

/* slideshow images (for most of the demos, these are the actual "slides") */
.cycle-slideshow a { 
    /* 
    some of these styles will be set by the plugin (by default) but setting them here
    helps avoid flash-of-unstyled-content
    */
    position: absolute; top: 0; left: 0;
    width: 100%; padding: 0; display: block;
}

.cycle-slideshow a span { 
	display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display: -webkit-flex;/*--- safari（PC）用 ---*/
    display:flex;

	-webkit-flex-wrap: wrap; 
	flex-wrap:         wrap;
    		
	-webkit-box-pack:center;/*--- Androidブラウザ用 ---*/
    -ms-flex-pack:center;/*--- IE10 ---*/
    -webkit-justify-content:center;/*--- safari（PC）用 ---*/
    justify-content:center;	
}

.cycle-slideshow a span strong {
    bottom: 5%;
    position: absolute;
    color: #fff;
    text-decoration: none;
    /* border-bottom: 3px solid #fff; */
    background-color: #111;
    padding: 2.5% 1.5%;
    font-size: 90%;
	/* font-family: FuturaBTMedium,Century Gothic,CenturyGothic,AppleGothic,sans-serif; */
}

.cycle-slideshow a span strong.bk {
    color: #333;
    border-bottom: 3px solid #333;
}

.cycle-slideshow a span strong:hover {
	opacity: 0.9;
}

.cycle-slideshow a img {
    width: 100%;
	height:100%;
	object-fit: cover;
}


/* in case script does not load */
.cycle-slideshow img:first-child {
    position: static; z-index: 100;
}

/* pager */
.cycle-pager { 
    /* text-align: center; width: 100%; z-index: 500; position: absolute; bottom: 10px; overflow: hidden;  */
    text-align: center; width: 100%; z-index: 500; overflow: hidden; background: #f8f8f8;
}
.cycle-pager span { 
    font-family: arial; font-size: 50px; width: 16px; height: 16px; 
    display: inline-block; color: #ddd; cursor: pointer; 
}
.cycle-pager span.cycle-pager-active { color: #D69746;}
.cycle-pager > * { cursor: pointer;}


/* caption */
.cycle-caption { position: absolute; color: white; bottom: 15px; right: 15px; z-index: 700; }

@media all and (max-width: 425px) {	
.cycle-pager {
	position: absolute;
    bottom: 24%;
    background: none;    
}
.cycle-slideshow {
	background: #f8f8f8;    
    overflow: hidden !important;	
}
.cycle-slideshow a {
    margin: 0 0 5em;
}
.cycle-slideshow a span strong {
    bottom: -25%;
    padding: 5%;
    color: #333;
    text-decoration: none;
    border: 3px solid #333;
    background-color: #fff;
}

.cycle-pager span { 
 	margin-right: 8px;
}
.cycle-pager span:last-child { 
 	margin-right: 0px;
}

}




/* overlay */
.cycle-overlay { 
	-webkit-transition: fadeIn 1s ease 0s 1 normal;
    -moz-transition: fadeIn 1s ease 0s 1 normal;
    -ms-transition: fadeIn 1s ease 0s 1 normal;
    -o-transition: fadeIn 1s ease 0s 1 normal;
    transition: fadeIn 1s ease 0s 1 normal;

	
}


.cycle-overlay p{
	color:#FFF;
	text-decoration:none;
	position: absolute; bottom:45%;
	width: 100%; z-index: 101;
    color: white;
	font-family: FuturaBTMedium,Century Gothic,CenturyGothic,AppleGothic,sans-serif;
	font-size:70px;
	line-height:70px;
	display:block;
	text-align:center;
	letter-spacing:1px;
}



.cycle-overlay p span{
	padding-top:20px;
	font-size:24px;
	line-height:24px;
	display:block;
	letter-spacing:2px;
}

.cycle-overlay a:hover{
	color:#000;
	
	padding:0px 0px;
	text-decoration:none;
	display:inline-block;
	
}


/* prev / next links */
.cycle-prev, .cycle-next { position: absolute; top: 42%; width: 91px; opacity: 1; filter: alpha(opacity=1); z-index: 800; height: 99px; cursor: pointer; -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;}
.cycle-prev { left: -50px; background:url(https://mei-huntingtonbeach.com/wp-content/themes/mei_2017/css/greenroommag/images/top/btn_prev.png) no-repeat;mix-blend-mode:multiply;}
.cycle-next { right: -50px; background:url(https://mei-huntingtonbeach.com/wp-content/themes/mei_2017/css/greenroommag/images/top/btn_next.png) no-repeat;mix-blend-mode:multiply;}
.cycle-prev:hover, .cycle-next:hover { mix-blend-mode:luminosity; }

.disabled { opacity: .5; filter:alpha(opacity=50); }


/* display paused text on top of paused slideshow */
.cycle-paused:after {
    content: 'Paused'; color: white; background: black; padding: 10px;
    z-index: 500; position: absolute; top: 10px; right: 10px;
    border-radius: 10px;
    opacity: .5; filter: alpha(opacity=50);
}

/* 
    media queries 
    some style overrides to make things more pleasant on mobile devices
*/



.cycle-next:hover{
  animation: animationFrames1 linear 0.2s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: animationFrames1 linear 0.2s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
  -moz-animation: animationFrames1 linear 0.2s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: animationFrames1 linear 0.2s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: animationFrames1 linear 0.2s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes animationFrames1{
  0% {
    transform:  translate(0px,0px)  ;
  }
  100% {
    transform:  translate(10px,-10px)  ;
  }
}

@-moz-keyframes animationFrames1{
  0% {
    -moz-transform:  translate(0px,0px)  ;
  }
  100% {
    -moz-transform:  translate(10px,-10px)  ;
  }
}

@-webkit-keyframes animationFrames1 {
  0% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  100% {
    -webkit-transform:  translate(10px,-10px)  ;
  }
}

@-o-keyframes animationFrames1 {
  0% {
    -o-transform:  translate(0px,0px)  ;
  }
  100% {
    -o-transform:  translate(10px,-10px)  ;
  }
}

@-ms-keyframes animationFrames1 {
  0% {
    -ms-transform:  translate(0px,0px)  ;
  }
  100% {
    -ms-transform:  translate(10px,-10px)  ;
  }
}





.cycle-prev:hover{
  animation: animationFrames2 linear 0.2s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: animationFrames2 linear 0.2s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/ 
  -moz-animation: animationFrames2 linear 0.2s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: animationFrames2 linear 0.2s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: animationFrames2 linear 0.2s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes animationFrames2{
  0% {
    transform:  translate(0px,0px)  ;
  }
  100% {
    transform:  translate(-10px,10px)  ;
  }
}

@-moz-keyframes animationFrames2{
  0% {
    -moz-transform:  translate(0px,0px)  ;
  }
  100% {
    -moz-transform:  translate(-10px,10px)  ;
  }
}

@-webkit-keyframes animationFrames2 {
  0% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  100% {
    -webkit-transform:  translate(-10px,10px)  ;
  }
}

@-o-keyframes animationFrames2 {
  0% {
    -o-transform:  translate(0px,0px)  ;
  }
  100% {
    -o-transform:  translate(-10px,10px)  ;
  }
}

@-ms-keyframes animationFrames2 {
  0% {
    -ms-transform:  translate(0px,0px)  ;
  }
  100% {
    -ms-transform:  translate(-10px,10px)  ;
  }
}


#contentsArea h2{
	width:90%;
	margin: 0 auto;
	padding:3em 0 1em !important;
	text-align:center;
	font-family: FuturaBTMedium,Century Gothic,CenturyGothic,AppleGothic,sans-serif;
	font-size:42px;
	letter-spacing:1px;
	font-weight:normal;
	color:#aaa;
	line-height: 1.2;	
}

#contentsArea p{
	width:90%;
	margin: 0 auto;
	text-align:center;
	font-weight:normal;
	line-height: 1.2;
}





#topProduct{
	width:100%;
	background:#f8f8f8;
	
}

#topProduct article{
	width:985px;
	margin:0 auto;
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; 
	flex-wrap:         wrap;
	-webkit-justify-content: space-between;
	justify-content:         space-between;
}

#topProduct h2{
	width:100%;
	padding:60px 0;
	text-align:center;
	font-family: FuturaBTMedium,Century Gothic,CenturyGothic,AppleGothic,sans-serif;
	font-size:42px;
	letter-spacing:1px;
	font-weight:normal;
	color:#aaa;
}

#topProduct a{
	display:block;
	color:#000;
	text-decoration:none;
}

#topProduct a:hover{
	filter: brightness(80%);
}

#topProduct dl{
	width:300px;
	margin-bottom:50px;
}


#topProduct dl dd{
	width:100%;
	margin-bottom:30px;
}

#topProduct dl dd img{
	width:100%;
	height:auto;
}

#topProduct dl dt{
	font-size:16px;
	text-align:center;
	font-weight:normal;
	letter-spacing:2px;
	font-family: FuturaBTMedium,Century Gothic,CenturyGothic,AppleGothic,sans-serif;
}





#topNewsPress{
	width:100%;
	border-top:#e0e0e0 1px solid;
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; 
	flex-wrap:         wrap;
	-webkit-justify-content: space-between;
	justify-content:         space-between;
	
}

#topNewsPress article{
	width:50%;
	border-right:#e0e0e0 1px solid;
	box-sizing:border-box;
}

#topNewsPress article:last-child {
	border:none;
}


#topNewsPress article div{
	width:85%;
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; 
	flex-wrap:         wrap;
	-webkit-justify-content: space-between;
	justify-content:         space-between;
	margin:0 auto;
}

#topNewsPress article div a{
	color:#000;
	text-decoration:none;
	width:48%;
}


#topNewsPress article div a:hover dd{
	filter: brightness(80%);
}



#topNewsPress article div dl{
	width:100%;
	height:100%;
	padding:0;
	margin-bottom:40px;
}

#topNewsPress article div dl dd{
	width:100%;
	border:#e0e0e0 1px solid;
	overflow:hidden;
	margin-bottom:20px;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	font-size:0;
	letter-spacing:0;
	max-height:180px;
}

#topNewsPress article div dl dd img{
	width:100%;
	height:auto;
}

#topNewsPress article div dl dt{
	padding:0 10px;
	font-size:14px;
	line-height:22px;
}

#topNewsPress article div a dl dt span{
	font-size:12px;
	color:#ccc;
	display:block;
	margin-bottom:5px;
	font-family: FuturaBTMedium,Century Gothic,CenturyGothic,AppleGothic,sans-serif;
}


#topNewsPress article h2{
	width:100%;
	padding:60px 0;
	text-align:center;
	font-family: FuturaBTMedium,Century Gothic,CenturyGothic,AppleGothic,sans-serif;
	font-size:42px;
	letter-spacing:1px;
	font-weight:normal;
	color:#ccc;
}



#topInsta{
	width:100%;
	background:#f8f8f8;
	border-top:#e0e0e0 1px solid;
	padding-bottom:40px;
	
}

#topInsta article #instafeed {
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0 1em;    
}

.insta-box {
    padding: 1em 0;
}

.insta-box img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.col-xs-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 22%;
    -ms-flex: 0 0 22%;
    flex: 0 0 22%;
    max-width: 22%;
}

@media (max-width: 576px) {
.col-xs-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 48%;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 48%;
    
}
}



/*
#topInsta article div{
	width:200px;
	height:200px;
	overflow:hidden;
	margin:0 15px 30px 15px;
}


#topInsta article div img{
	width:auto;
	height:100%;
}

*/


#topInsta h2{
	width:100%;
	padding:60px 0;
	text-align:center;
	font-family: FuturaBTMedium,Century Gothic,CenturyGothic,AppleGothic,sans-serif;
	font-size:42px;
	letter-spacing:1px;
	font-weight:normal;
	color:#ccc;
}


#btn-more {
    background: #fff;
    border: none;
    color: #000;
    border-radius: 8px;
    display: block;
    width: 240px;
    padding: 12px;
    margin: 40px auto;
    text-align: center;
    cursor: pointer;
    transition: .6s;
}

#btn-more:hover {
    background: #383838;
    color: #fff;
}

/*
footer{
	width:100%;
	height:290px;
	background:url(../../images/top/foot_bg.jpg) repeat-x top left;
	background-size:auto 100%;
	border-top:#ddd 1px solid;
	animation: footer 200s infinite linear;
}

@keyframes footer{
    0%    { background-position: 0px 0px;  }
    100%  { background-position: -2000px 0px; }
}

footer address{
	font-family: FuturaBTMedium,Century Gothic,CenturyGothic,AppleGothic,sans-serif;
	font-size:12px;
	color:#FFF;
	text-align:center;
	padding-top:260px;
	font-style:normal;
}
*/

footer address{
	font-family: FuturaBTMedium,Century Gothic,CenturyGothic,AppleGothic,sans-serif;
	font-size:12px;
	color:#777;
	text-align:center;
    padding: 2em 0;
	font-style:normal;
}





@media all and (max-width: 1080px) {	

#topProduct article{
	width:auto;
	padding:0 20px;
}

#topProduct a{
	width:48%;
}

#topProduct dl{
	width:100%;
	margin-bottom:50px;
}


#topNewsPress article div a{
	width:100%;
}

.cycle-slideshow a img {
    width: 100%;
	height:auto;
}

















}



@media all and (max-width: 800px) {	




.cycle-overlay p{
	font-size:32px;
	line-height:32px;
}



.cycle-overlay p span{
	padding-top:15px;
	font-size:16px;
	line-height:16px;
}


#topProduct h2{
	padding:1em 0 1em;
	font-size:22px;
}

#topProduct dl dt{
	font-size:10px;
	letter-spacing:1px;
}





#topProduct dl{
	margin-bottom:30px;
}


#topProduct dl dd{
	margin-bottom:5px;
}

#topProduct a{
	width:30%;
}


#topNewsPress article div dl dt{
	padding:0;
	font-size:12px;
	line-height:18px;
}

#topNewsPress article div a dl dt span{
	font-size:10px;
	margin-bottom:5px;
}


#topNewsPress article h2{
	padding:30px 0;
	font-size:22px;
}



#topNewsPress article div dl dd{
	margin-bottom:10px;
}




#topNewsPress article div dl{
	margin-bottom:30px;
}




/*

#topInsta article div{
	width:29%;
	height:auto;
	margin:0 2% 10px 2%;
}

#topInsta article div img{
	width:100%;
	height:auto;
}
*/



#topInsta h2{
	padding:30px 0;
	font-size:22px;
}



/*

footer{
	width:100%;
	height:200px;
	background:url(../../images/top/foot_bg.jpg) no-repeat top left;
	background-size:auto 100%;
}

footer address{
	font-size:12px;
	padding-top:25%;
}


*/






}