/* ---------------------------------------- */
/* common */
.none {
	display: none !important;
}
.font_blod {
	font-weight: bold;
}
.text_center {
	text-align: center;
}
.text_right {
	text-align: right;
}
.display_flex {
	display:flex;
}
.font_large {
	font-size: 1.4rem;
}
.font_small {
	font-size: 0.85rem;
}
.max_w40rem {
	max-width: 40rem;
	/*padding: 1rem;*/
}
.max_w60rem {
	max-width: 60rem;
	/*padding: 1rem;*/
}
.padding1rem {
	padding: 1rem;
}
.margin1rem {
	margin: 1rem;
}
.margin_center {
	margin-left: auto;
	margin-right: auto;
}
.borderline {
	border: none;
	border-top: 0.125rem solid #ffffff;
	margin: 1.5rem 2rem;
}
.anc_normal {
	text-decoration: underline;
	color:orange;
	cursor: pointer;
	text-shadow: 1px 1px rgb(128 168 255);
}
.borderspan {
	display: inline-block;
	border: 0.125rem solid #FFF;
	padding: 0.25rem 0.5rem;
	border-radius: 0.5rem;
}

.img_fit {
	object-fit: contain;
	vertical-align: top;
	width: 100%;
	height: 100%;
}
.img_fit_cover {
	object-fit: cover;
	vertical-align: top;
	width: 100%;
	height: 100%;
}

.cursor_pointer {
	cursor: pointer;
}

sup {/* リセット回避 */
	vertical-align: text-top;
	font-size: 60%;
}

.position_relative {
	position: relative;
}
.position_absolute {
	position: absolute;
}

.bgcolor-ddd {
    background-color: #ddd;
}

/* レスポンシブ対応 */
@media screen and (max-width: 480px) {
}


/* ---------------------------------------- */
/* alert */

.alert_dlg {
	margin: 0;
	padding: 0;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 500;
}
.alert_dlg_body {
	width: 75%;
	max-width: 35rem;
	margin: auto;
	padding: 1rem;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: auto;
	display: flex;
	flex-flow: column;
	background-color: #fff;
	border-radius: 0.8rem;
	border: 0.125rem solid var(--color-sub);
	color: var(--color-text);
}
.alert_dlg_body .header_text {
	width: 80%;
}
.alert_dlg_body .text_area {
	width: 80%;
	margin: 0.5rem auto 1.5rem auto;
}

/* scroll対応 */
.alert_dlg div.round-base {
	/* max-height: 95vh; */
	max-height: 92vh;
	overflow: auto;
}

/* 調整 */
.alert_dlg > div.max_w40rem {
	padding: 3vh 0;
}

/* uuu */
#uuu_alert_btndiv button {
	color: #fff;
	background: var(--color-sub);
	padding: 12px 14px;
	border-radius: 8px;
	min-width: 5rem;
}


/* ------------------------------ */
/* wait */
#ml_wait .alert_dlg_body {
	display: inline-block;
	width: auto;
	height: auto;
	background-color: #fff;
	border: 0.125rem solid var(--color-sub);
	color: var(--color-sub);
}
#ml_wait .alert_dlg_body .loader_msg {
	font-size: 0.85rem;
}

/* waitマーク */
.wait0 {
	margin-top: 2rem;
	text-align: center;
}
.wait0 > div {
	width: 1rem;
	height: 1rem;
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	margin: 0 0.5rem;
	animation: kf_wait0 1.6s infinite ease-in-out both;
}
.wait0 .wait_dot1 {
	animation-delay: 0.20s;
}
.wait0 .wait_dot2 {
	animation-delay: 0.40s;
}

@keyframes kf_wait0 {
	0%, 80%, 100% { 
		transform: scale(0.0);
	} 40% { 
		transform: scale(1.0);
	}
}
/* wait用 */
.alert_dlg_body .wait0 > div {
	background-color: #fff;
}

/* ---------------------------------------- */
/* favicons */

.favorite.invalid span {
	cursor: default;
}

.rating.favorite.on > label {
	color: var(--color-btn-secondary);
}

/* sp 調整 */
.sp_block_on {
	display: none !important;
}
.sp_block_off {
	display: block !important;
}
.sp_flex_on {
	display: none !important;
}
.sp_flex_off {
	display: flex !important;
}
@media (max-width: 1200px) {
	.sp_block_on {
		display: block !important;
	}
	.sp_block_off {
		display: none !important;
	}
	.sp_flex_on {
		display: flex !important;
	}
	.sp_flex_off {
		display: none !important;
	}
}
