/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.2
*/

@charset "UTF-8";

.owl-theme .owl-controls{
	margin-top: 10px;
	text-align: center;
}

/* Styling Next and Prev buttons */

#owl-amuse .owl-nav button {
    background: none; /* 背景色を削除 */
    border: none; /* 枠線を削除 */
    outline: none; /* フォーカス時の枠線を削除 */
    padding: 0;
    font-size: 0; /* テキストを非表示にする */
    cursor: pointer; /* カーソルをポインターに変更 */
}

#owl-amuse .owl-nav button img {
    width: 40px; /* 画像の幅を調整 */
    height: auto; /* 高さを自動調整 */
}


#owl-amuse .owl-controls .owl-buttons div {
    position: absolute;
    top: 50%; /* 動画の中央に配置 */
    transform: translateY(-50%); /* 垂直方向の中央揃え */
    width: 40px; /* ボタンの幅 */
    height: 40px; /* ボタンの高さ */
    line-height: 40px; /* ボタン内のアイコンの高さを中央揃え */
    cursor: pointer; /* ホバー時のカーソルを変更 */
    z-index: 10; /* 他の要素より前面に表示 */
}

/* 左ボタン（Prev）を左端に配置 */
#owl-amuse .owl-controls .owl-buttons .owl-prev {
    left: -5px; /* 動画の左端からの距離 */
}

/* 右ボタン（Next）を右端に配置 */
#owl-amuse .owl-controls .owl-buttons .owl-next {
    right: -5px; /* 動画の右端からの距離 */
}

#owl-amuse .owl-controls .owl-buttons div {
    color: #491001 !important; }

#owl-amuse .owl-controls .owl-page span {
   display: none !important; /* 完全に非表示にする */
}


.owl-theme .owl-controls .owl-buttons div{
	color: #ffffff;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: -25px 13px 5px 13px;
	line-height:1.7;
	font-size: 19px;
      width:40px;
	height:25px;
      padding: 3px 0 0 0;
      position:relative;
      top:4px;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 8px;
	height: 8px;
	margin: 8px 7px;
      position:relative;
      top:9px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: white;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

.owl-prev{
	float:left;
}
.owl-next{
	float:right;
}