@charset "utf-8";

/*------------------------------*/
/* ページ固有設定*/
/*------------------------------*/

/* スライダー */
.auto_slider {
	height:450px;
}

/* タブレット */
@media only screen and (max-width:1024px) {
	.auto_slider {
		height:400px;
	}
}

/* スマホ */
@media only screen and (max-width:599px) {
	.auto_slider {
		height:300px;
	}
}

/* オートスライダー内の画像 */
.auto_slid_box img {
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	max-width:100%;
	max-height:100%;
	width:auto;
	height:auto;
}

/* サムネイルボタン */
.js_selecter_css {
	cursor: pointer;
}

/* ロータリーフェーダー */
.rotary_fader_mein {
	position:absolute;
	bottom:-20px;
	right:10px;
}

/*------------------------------*/
/* ラジオボタン */
.custom_radio_button {
	display:block;
	background-color: #fff6ea;
	border: 1px solid #333333;
	color:#333333;
	padding: 5px 10px;
	cursor: pointer;
	transition: 0.3s;
	border-radius: 5px;
	height:100%;
}
.custom_radio_button:hover {
	background-color: #ffdfb6;
}
.radio_frame {
	position: relative;
}
.radio_frame input[type="radio"] {
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0;
}
.radio_frame input[type="radio"]:checked + .custom_radio_button {
	background-color: #e26d00;
	border:1px solid #000000;
	color:#ffffff;
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.5);
}

/* -------------------- */
/* ポップアップ枠 */
.alert_popup_frame {
	position: fixed;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	border:1px solid #cccccc;
	background-color: #fff7d3;
	border-radius: 5px;
	z-index: 1;
	width:calc(100% - 20px);
	max-width:800px;
	max-height:50%;
	padding:10px 10px 35px 10px;
	-webkit-box-shadow: 0 3px 10px rgba(0,0,10,0.6);
	box-shadow: 0 3px 10px rgba(0,0,10,0.6);
	display: none;
}

/* -------------------- */
/* 数量枠 */
.quantity_frame {
	background-color: #f0f0f0;
	border:1px solid #cccccc;
	border-radius:5px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	padding: 2px 10px;
}

/* 数量選択枠 */
.select_container {
	display: flex;
	align-items: center;
}

/* ＋－ボタン */
.select_button {
	height: 50px;
	width: 80px;
	background-color: #f0f0f0;
	border: 1px solid #cccccc;
	border-radius: 7px;
	font-size: 20px;
	cursor: pointer;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	transition:0.3s;
}
.select_button:active {
	background-color: #cccccc;
}