/*----------
	bicycle-care
----------*/
.bicycle-care {
	margin-top: 30px;
}
.bicycle-care__btns {
	display: none;
}
.bicycle-care__content {
	position: relative;
	padding: 30px 0;
	background: url(/kids/assets/img/common/bg_line_dot.png) repeat-x 0 0/7px auto;
}
.bicycle-care__content:last-child {
	padding-bottom: 0;
}
.bicycle-care__figure {
	position: absolute;
	left: 0;
	top: 30px;
	width: 120px;
	height: 120px;
}
.bicycle-care__figure::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 32px;
	height: 32px;
	background: url(/kids/assets/img/common/icon_exclamation.svg) no-repeat 0 0/32px auto;
}
.bicycle-care__sttl {
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	height: 120px;
	padding-left: 130px;
	color: var(--color-prim);
	font-size: 1.8rem;
	font-weight: bold;
}
.bicycle-care__text {
	margin-top: 8px;
}
.bicycle-care__close {
	display: none;
}
@media (min-width: 744px) {
	.bicycle-care {
		margin-top: 20px;
	}
	.bicycle-care__btns {
		position: relative;
		display: block;
		transform: rotate(0.03deg);
	}
	.bicycle-care__trigger {
		position: absolute;
		display: flex;
		height: 65px;
		align-items: center;
		color: var(--color-prim);
		font-size: 2.4rem;
		font-weight: bold;
		cursor: pointer;
		transition: transform 0.2s ease-in-out;
		transform: rotate(0.03deg);
	}
	.bicycle-care__trigger:hover {
		transform: scale(1.06);
	}
	.bicycle-care__trigger::before {
		content: "";
		display: block;
		width: 65px;
		height: 65px;
		background: url(/kids/assets/img/common/icon_exclamation_shadow.svg) no-repeat 0 0/65px auto;
	}
	.bicycle-care__trigger--1 {
		top: 6%;
		left: 43%;
	}
	.bicycle-care__trigger--2 {
		top: 28%;
		right: 2.5%;
	}
	.bicycle-care__trigger--3 {
		bottom: 7%;
		left: 30.5%;
	}
	.bicycle-care__trigger--4 {
		top: 35%;
		left: 3.5%;
	}
	.bicycle-care__content {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 500;
		opacity: 0;
		visibility: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding: 0;
		background: rgba(0, 0, 0, 0.2);
		transition: opacity 0.3s, visibility 0.3s;
	}
	.bicycle-care__content:last-child {
		padding-bottom: 0;
	}
	.bicycle-care__content.is-open {
		opacity: 1;
		visibility: visible;
	}
	.bicycle-care__content.is-loaded {
		transition: all 0s;
	}
	.bicycle-care__content-inner {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 780px;
		height: 420px;
		margin: 0 20px;
		padding: 80px 30px;
		background-color: #FFFFFF;
		border-radius: 30px;
	}
	.bicycle-care__figure {
		position: static;
		left: 0;
		top: 0;
		width: 260px;
		height: 260px;
	}
	.bicycle-care__figure::before {
		display: none;
	}
	.bicycle-care__textarea {
		display: flex;
		width: 400px;
		flex-direction: column;
		justify-content: center;
		padding-left: 30px;
		transform: rotate(0.03deg);
	}
	.bicycle-care__sttl {
		height: 50px;
		padding-left: 0;
		font-size: 2.4rem;
		transform: rotate(0.03deg);
	}
	.bicycle-care__sttl::before {
		content: "";
		display: block;
		width: 50px;
		height: 50px;
		margin-right: 9px;
		background: url(/kids/assets/img/common/icon_exclamation_line.svg) no-repeat 0 0/50px auto;
	}
	.bicycle-care__text {
		margin-top: 15px;
	}
	.bicycle-care__close {
		position: absolute;
		left: calc(50% - 25px);
		bottom: -25px;
		display: block;
		width: 50px;
		height: 50px;
		background-color: var(--color-seco-blue);
		border-radius: 100%;
		text-align: center;
		cursor: pointer;
	}
	.bicycle-care__close > i {
		color: #FFFFFF;
		font-size: 2.4rem;
		line-height: 50px;
	}
}