/*
 * jQuery FlexSlider v2.7.2
 * https://www.woocommerce.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* 
/* =========================================================================================
 * BASE STYLES
 * =========================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
	clear: left;
	position: relative;
	width: 100%;
  zoom: 1;

}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  height: auto;
  -moz-user-select: none;
	border-radius: 0px 0px 10px 10px;	/*角丸のサイズ。左上、右上、右下、左下200。*/
/*  display: block;*/
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* =========================================================================================
 * DEFAULT THEME
 * =========================================================================================*/

.flexslider .slides {
  zoom: 1;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}

.flex-caption {
	position: absolute;
/*	bottom: 0;*/
	top: 15px;
	right: 0;
	text-align: right;
	color  :white;
/*	background: rgba(80, 80, 80, 0.40);*/
	width: 98%;
	margin-left: 2%;
	padding-right: 20px;
}

/* ==========================================================================================
 * RESPONSIVE
 * ==========================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }

.flex-caption {
	display: none;
}


}




