﻿@charset "utf-8";

img, object, embed, video {
	max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*Yahoo system 用
---------------------------------------------------------------------------*/

.mdItemInfoCatch{
	color:#ff0000;}
	
	
.elPriceWrap{
	color:#ff0000;}
	
	
/*全体の設定
---------------------------------------------------------------------------*/

body {
	color: #666;
	font: 14px/2 "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	width:700px;
}



/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #555555;	/*リンクテキストの色*/
}
a:hover {
	color: #666666;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
a:hover img {
	filter: alpha(opacity=70);  /* IE7以下用 */
	-ms-filter: "alpha(opacity=70)"; /* IE8用 */
	-moz-opacity: 0.7; /* Firefox 1.5未満, Netscape用 */
	-khtml-opacity: 0.7;  /* Safari 1.x, 他khtmlに対応したブラウザ用  */
	opacity: 0.7; /* Firefox 1.5以上, Opera, Safari用 */
}
a {
	outline: none;
}
img {
	border: none;
}
ul li {
	word-wrap: break-word;
}


/*ランキング用スライダー
---------------------------------------------------------------------------*/
.rankIMG img {
	width: 50px;
	position: relative;
	margin: 0px 145px 0px 25px;
	top: -310px;
}

.rankIMG2 img {
	width: 50px;
	position: relative;
	margin: 0px 145px 0px 25px;
	top: -260px;
}

.mi-slider {
	position: relative;
	margin-top: 145px;
	height: 165px;
}
.mi-slider ul {
	list-style-type: none;
	position: absolute;
	width: 100%;
	left: -60px;
	bottom: 4px;
	overflow: hidden;
	text-align: center;
	pointer-events: none;
}
.no-js .mi-slider ul {
	position: relative;
	left: auto;
	bottom: auto;
	margin: 0;
	overflow: visible;
}
.mi-slider ul.mi-current {
	pointer-events: auto;
}
.mi-slider ul li {
	display: inline-block;
	padding: 10px 40px;
	width: 20%;
	max-width: 300px;
	-webkit-transform: translateX(600%);
	transform: translateX(600%);
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}
.no-js .mi-slider ul li {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.mi-slider ul li a, .mi-slider ul li img {
	display: block;
	width: 180px;
	margin: 0 auto;
}
.mi-slider ul li a {
	outline: none;
	cursor: pointer;
	text-decoration: none;
	line-height: 15px;
	font-size: 12px;
	padding: 5px 5px;
}
.mi-slider ul li img {
	max-width: 100%;
	border: none;
}
.mi-slider ul li h4 {
	color: #E93434;
	display: inline-block;
	font-weight: 600;
	font-size: 18px;
	margin:10px;
}

.mi-slider ul li:hover {
	opacity: 0.7;
}
/* ★20210901 色変更箇所　#1D356Bから#61BBF2へ　*/	
.mi-slider nav {
	position: relative;
	top: 140px;
	text-align: center;
	max-width:700px;
	margin: 0 auto;
	border-top: 5px solid #61BBF2;
}
.no-js nav {
	display: none;
}
.mi-slider nav a {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 25px 30px 3px 34px;
	text-decoration: none;
	position: relative;
	color: #666666;
	outline: none;
	font-weight: 600;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	border-left: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	border-right: 1px solid #dcdcdc;
}
.mi-slider nav a span {
	font-size: 9px;
	display: block;
	font-weight: normal;
	letter-spacing: 0.2em;
	color: #E93434;
}
.mi-slider nav a:hover, .mi-slider nav a.mi-selected {
	background-color: #00B3FF;
	color: #FFF;
}
.mi-slider nav a.mi-selected:after, .mi-slider nav a.mi-selected:before {
	content: '';
	position: absolute;
	top: -5px;
	border: solid transparent;
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.mi-slider nav a.mi-selected:after {
	border-color: transparent;
	border-top-color: #fff;
	border-width: 20px;
	left: 50%;
	margin-left: -20px;
}
/* ★20210901 色変更箇所　#1D356Bから#61BBF2へ　*/	
.mi-slider nav a.mi-selected:before {
	border-color: transparent;
	border-top-color: #61BBF2;
	border-width: 27px;
	left: 50%;
	margin-left: -27px;
}
/* Move classes and animations */

.mi-slider ul:first-child li, .no-js .mi-slider ul li {
	-webkit-animation: scaleUp 350ms ease-in-out both;
	animation: scaleUp 350ms ease-in-out both;
}
 @-webkit-keyframes scaleUp {
 0% {
-webkit-transform: translateX(0) scale(0);
}
 100% {
-webkit-transform: translateX(0) scale(1);
}
}
 @keyframes scaleUp {
 0% {
-webkit-transform: translateX(0) scale(0);
transform: translateX(0) scale(0);
}
 100% {
-webkit-transform: translateX(0) scale(1);
transform: translateX(0) scale(1);
}
}
.mi-slider ul:first-child li:first-child {
	-webkit-animation-delay: 90ms;
	animation-delay: 90ms;
}
.mi-slider ul:first-child li:nth-child(2) {
	-webkit-animation-delay: 180ms;
	animation-delay: 180ms;
}
.mi-slider ul:first-child li:nth-child(3) {
	-webkit-animation-delay: 270ms;
	animation-delay: 270ms;
}
.mi-slider ul:first-child li:nth-child(4) {
	-webkit-animation-delay: 360ms;
	animation-delay: 360ms;
}
/* moveFromRight */

.mi-slider ul.mi-moveFromRight li {
	-webkit-animation: moveFromRight 350ms ease-in-out both;
	animation: moveFromRight 350ms ease-in-out both;
}
/* moveFromLeft */

.mi-slider ul.mi-moveFromLeft li {
	-webkit-animation: moveFromLeft 350ms ease-in-out both;
	animation: moveFromLeft 350ms ease-in-out both;
}
/* moveToRight */

.mi-slider ul.mi-moveToRight li {
	-webkit-animation: moveToRight 350ms ease-in-out both;
	animation: moveToRight 350ms ease-in-out both;
}
/* moveToLeft */

.mi-slider ul.mi-moveToLeft li {
	-webkit-animation: moveToLeft 350ms ease-in-out both;
	animation: moveToLeft 350ms ease-in-out both;
}
/* Animation Delays */

.mi-slider ul.mi-moveToLeft li:first-child, .mi-slider ul.mi-moveFromRight li:first-child, .mi-slider ul.mi-moveToRight li:nth-child(4), .mi-slider ul.mi-moveFromLeft li:nth-child(4) {
	-webkit-animation-delay: 0ms;
	animation-delay: 0ms;
}
.mi-slider ul.mi-moveToLeft li:nth-child(2), .mi-slider ul.mi-moveFromRight li:nth-child(2), .mi-slider ul.mi-moveToRight li:nth-child(3), .mi-slider ul.mi-moveFromLeft li:nth-child(3) {
	-webkit-animation-delay: 90ms;
	animation-delay: 90ms;
}
.mi-slider ul.mi-moveToLeft li:nth-child(3), .mi-slider ul.mi-moveFromRight li:nth-child(3), .mi-slider ul.mi-moveToRight li:nth-child(2), .mi-slider ul.mi-moveFromLeft li:nth-child(2) {
	-webkit-animation-delay: 180ms;
	animation-delay: 180ms;
}
.mi-slider ul.mi-moveToLeft li:nth-child(4), .mi-slider ul.mi-moveFromRight li:nth-child(4), .mi-slider ul.mi-moveToRight li:first-child, .mi-slider ul.mi-moveFromLeft li:first-child {
	-webkit-animation-delay: 270ms;
	animation-delay: 270ms;
}

/* Animations */

@-webkit-keyframes moveFromRight {
 0% {
-webkit-transform: translateX(600%);
}
 100% {
-webkit-transform: translateX(0%);
}
}
 @-webkit-keyframes moveFromLeft {
 0% {
-webkit-transform: translateX(-600%);
}
 100% {
-webkit-transform: translateX(0%);
}
}
 @-webkit-keyframes moveToRight {
 0% {
-webkit-transform: translateX(0%);
}
 100% {
-webkit-transform: translateX(600%);
}
}
 @-webkit-keyframes moveToLeft {
 0% {
-webkit-transform: translateX(0%);
}
 100% {
-webkit-transform: translateX(-600%);
}
}
 @keyframes moveFromRight {
 0% {
-webkit-transform: translateX(600%);
transform: translateX(600%);
}
 100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
 @keyframes moveFromLeft {
 0% {
-webkit-transform: translateX(-600%);
transform: translateX(-600%);
}
 100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
 @keyframes moveToRight {
 0% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
 100% {
-webkit-transform: translateX(600%);
transform: translateX(600%);
}
}
 @keyframes moveToLeft {
 0% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
 100% {
-webkit-transform: translateX(-600%);
transform: translateX(-600%);
}
}
.mi-slider {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Media Queries */
@media screen and (max-width: 710px) {
.mi-slider nav {
	max-width: 90%;
}
.mi-slider nav a {
	font-size: 12px;
	padding: 40px 10px 30px 14px;
}
}

@media screen and (max-width: 740px) {
.mi-slider {
	height: 300px;
}
.mi-slider nav {
	top: 220px;
}
}

@media screen and (max-width: 490px) {
.mi-slider {
	text-align: center;
	height: auto;
}
.mi-slider ul {
	position: relative;
	display: inline;
	bottom: auto;
	pointer-events: auto;
}
.mi-slider ul li {
	-webkit-animation: none !important;
	animation: none !important;
	-webkit-transform: translateX(0) !important;
	transform: translateX(0) !important;
	padding: 10px 3px;
	min-width: 140px;
}
.mi-slider nav {
	display: none;
}
}
