/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 18 2025 | 00:30:21 */
/* フローティングバナー
-------------------------------------------------- */
.rtc_list_floating {
	list-style: none;
	margin: 0;
	padding: 0;
	position: fixed;
	right: 10px;
	bottom: 60px;
	z-index: 999;
}
.rtc_list_floating > li {
	width: fit-content;
}
.rtc_list_floating > li:not(:last-child) {
	margin-bottom: 10px;
}
.rtc_list_floating > li:first-child,
.rtc_list_floating > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 110px;
	height: 110px;
	background: linear-gradient( -45deg, rgba( 0, 0, 0, 1 ) 50%, rgba( 38, 38, 38, 1 ) 0 );
	border: 2px solid #000;
	box-shadow: 3px 3px 0 #000;
	transition: all ease .6s;
}
.rtc_list_floating > li:first-child:hover,
.rtc_list_floating > li a:hover {
	box-shadow: none;
}
#rtc_modal-open {
	cursor: pointer;
}
.rtc_list_floating > li img {
	width: 100px;
	height: 100px;
}
.rtc_list_floating > li a:hover img {
	transform: scale( 1 );
}
.rtc_list_floating > li:first-child {
	background: linear-gradient( -45deg, rgba( 238, 29, 35, 1 ) 50%, rgba( 234, 72, 73, 1 ) 0 );
}

/* モーダル - modal
-------------------------------------------------- */
/* モーダルと背景の指定 */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	padding: 10rem 2rem;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba( 255, 255, 255, 80% );
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index: 9999;
}

/* モーダルの擬似要素の指定 */
.modal:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
	opacity: 1;
	visibility: visible;
}

/* モーダル内側の指定 */
.modal-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 640px;
	width: 100%;
	height: 100%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 10px;
	right: 10px;
	color: #363539;
	font-size: 64px;
	cursor: pointer;
	z-index: 1;
	transition: all ease .6s;
}
.modal-close:hover {
	color: #ee1d23;
}
.modal-content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.rtc_list_modalshop {
	margin: 0;
	width: 100%;
	list-style: none;
}
.rtc_list_modalshop > li a {
	display: block;
	background: #363539;
	color: #fff;
	font-size: 18px;
	line-height: 1.4;
	padding: 15px;
	border-radius: 50px;
	transition: all ease .2s;
}
.rtc_list_modalshop > li a:hover {
	text-decoration: none;
	background: #ee1d23;
}
.rtc_list_modalshop > li:not(:last-child) {
	margin-bottom: 20px;
}


@media ( width <= 480px ) {
	.rtc_list_floating {
		bottom: 70px;
	}
	.rtc_list_floating > li:first-child, .rtc_list_floating > li a {
		width: 60px;
		height: 60px;
	}
	.rtc_list_floating > li img {
		width: 50px;
		height: 50px;
	}
}