/**************************************************
**
**	OPTION
**	-----------------------------------------------
**	layout.css / style.css で上書きしたいスタイルを
**	ここに記入
**
***************************************************/

/***********************************
**
**	ALL DISABLED
**
***********************************/

.disabled input , .disabled radio , .disabled label{
	pointer-events : none;
    -ms-user-select: text;
    -webkit-user-select: auto;
    -moz-user-select: text;
}



/***********************************
**
**	RADIO / SELECTER
**
***********************************/

/* SELECTOR */
.radioSelect input {
	display: none;
}
.radioSelect label{
	display: block;
	float: left;
	cursor: pointer;
	width: 60px;
	margin: 0;
	padding: 10px;
	background: #FFFFFF;
	color: #0079FF;
	font-size: 16px;
	text-align: center;
	line-height: 1;
	transition: .2s;
	border: 1px solid #0079FF;
}
.radioSelect label:first-of-type{
	border-radius: 3px 0 0 3px;
}
.radioSelect label:last-of-type{
	border-radius: 0 3px 3px 0;
}
.radioSelect input[type="radio"]:checked + .switch-on {
	background-color: #0079FF;
	color: #FFFFFF;
}
.radioSelect input[type="radio"]:checked + .switch-off {
	background-color: #0079FF;
	color: #FFFFFF;
}



/***********************************
**
**	SCROLLING STOP
**
***********************************/

.stopScrolling {
	height: 100%;
	overflow: hidden;
}



/**************************************************
**
**	ERROR(UI DIALOG)
**
***************************************************/

.pointError{
	background-color: #FF3366;
	width: 200px;
	height: 40px;
	color: #FFFFFF;
	line-height: 40px;
	margin: 15px auto 15px;
	border: 1px solid #FF3366;
	border-radius: 18px;
}

.pointError a{
	color: #FFFFFF;
	display: block;
}



/***********************************
**
**	OPTION
**
***********************************/

.clear{
	margin: 0px;
	padding: 0px;
	clear: both;
}

.show{
	display: block;
}

.hide{
	display: none;
}



/***********************************
**
**	SWIPER REWRITE
**
***********************************/

.swiper-container{
	width: 100%;
}

#swiperPagination {
	position: relative;
	text-align: center;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

#swiperPagination .swiper-pagination-bullet{
	width: 12px;
	height: 12px;
	margin: 10px 4px;
}

/* THUMBNAIL */
#swiperThumbnailArea{
	width: 320px;
	text-align: left;
	padding-top: 10px;
	float: right;
}

.swiperThumbnail{
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100px;
	height: 100px;
	margin-bottom: 10px;
	border: 1px solid #CCCCCC;
	/*
	border-radius: 8px;
	*/
	overflow: hidden;
	display: inline-block;
}

.swiperThumbnail img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
}