@charset "utf-8";
/* CSS Document */

/*==============================*/
/* 枠 */
/*==============================*/
div.rental{
	max-width: 920px;
	margin: 0 auto;
}

div.rental div ul li:not(:last-child){ margin-bottom: 6px;}

div.rental div dl dt{ margin-bottom: 10px;}

div.rental p a,
div.rental ul li a{
	word-break: break-all;
}

	/* ======= PC =======*/
	@media (min-width: 601px) {
		div.rental div p{ line-height: 2.8em!important;}
		div.rental div ul li{ line-height: 2em!important;}
	}

	/* ======= SP =======*/
	@media (max-width: 600px) {
		div.rental div figure{
			background: #ccc;
			max-width: 100%;
			width: 100%;
			margin: 0 0 24px 0!important;
		}
		div.rental div figure img{ width: 100%!important; height: auto;}
	}


/*==============================*/
/* メイン */
/*==============================*/
.rentalMain{
	position: relative;
	margin-bottom: 80px;
	padding: 88px 0 88px 96px;
	border: 10px solid #FFCF8B;
	text-align: center;
	font-size: 52px;
	font-weight: bold;
	font-family: 'Noto Sans Japanese', sans-serif;
	color: #FF9D03;
}
.rentalMain::before{
	position: absolute; top: 50%; left: 48px;
	content: "";
	width: 96px;
	height: 96px;
	background: #ccc;
	border-radius: 50%;
	margin-top: -48px;
}


#rental_store .rentalMain::before{
	background: url("/common/img/rental/store/icon_store.png");
	background-size: cover;
}

#rental_web .rentalMain::before{
	background: url("/common/img/rental/web/icon_web.png");
	background-size: cover;
}
#rental_web .rentalMain{
	border: 10px solid #8CCDBA;
	color: #33ada1;
}

	/* ======= SP =======*/
	@media (max-width: 600px) {
		.rentalMain{
			margin-bottom: 40px;
			padding: 48px 16px 48px 16px;
			border: 8px solid #FFCF8B;
			font-size: 24px;
			line-height: 1.3em;
		}
		.rentalMain::before{ display: none;}
		#rental_web .rentalMain{ border: 8px solid #8CCDBA; }
	}


/*==============================*/
/* ナビ */
/*==============================*/
ul.rentalNavi{
	display: flex; display: -webkit-flex;
	flex-wrap: wrap; -webkit-flex-wrap: wrap;
	margin-bottom: 80px;
	gap: 0 20px;
	counter-reset: step;
}
ul.rentalNavi li{ width: calc( calc( 100% - calc( 20px * 4 ) ) / 5 );}
ul.rentalNavi li a{
	position: relative;
	display: block;
	padding: 48px 0 24px 0;
	border: 4px solid #FFCF8B;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #FF9D03;
}
ul.rentalNavi li a::before{
	position: absolute; top: 20px; left: 50%;
	counter-increment: step;
	content:"STEP" counter(step) ;
	margin-left: -32px;
}
ul.rentalNavi li a::after{
	position: absolute; bottom: 10px; left: 50%;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #EA952C;
	border-right: 2px solid #EA952C;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	margin-left: -4px;
}
ul.rentalNavi li a:hover{
	background: #FFCF8B;
	color: #fff;
}

#rental_web ul.rentalNavi li a{
	border: 4px solid #8CCDBA;
	color: #33ada1;
}
#rental_web ul.rentalNavi li a::after{
	border-top: 2px solid #33ada1;
	border-right: 2px solid #33ada1;
}
#rental_web ul.rentalNavi li a:hover{ background: #8CCDBA; color: #fff;}

	/* ======= SP =======*/
	@media (max-width: 600px) {
		ul.rentalNavi{
			margin-bottom: 40px;
			gap: 12px 12px;
			counter-reset: step;
		}
		ul.rentalNavi li{ width: calc( calc( 100% - calc( 12px * 1 ) ) / 2 );}
		ul.rentalNavi li a{
			padding: 32px 0 24px 0;
			font-size: 14px;
		}
		ul.rentalNavi li a::before{
			position: absolute; top: 14px; left: 50%;
			counter-increment: step;
			content:"STEP" counter(step) ;
			margin-left: -24px;
		}
	}


/*==============================*/
/* タイトル */
/*==============================*/
.rentalTitle{
	margin-bottom: 40px;
	padding: 28px 20px;
	background: #8CCDBA;
	color: #fff;
	font-size: 21px;
	font-weight: 500;
	font-family: 'Noto Sans Japanese', sans-serif;	
}
#rental_web .rentalTitle{ background: #8CCDBA;}
#rental_store .rentalTitle{ background: #FFCF8B;}


/* ======= SP =======*/
@media (max-width: 600px) {
	.rentalTitle{
		margin-bottom: 24px;
		padding: 16px 16px;
		font-size: 18px;
	}
}


/*==============================*/
/* メインスライダー */
/*==============================*/
ul.rentalImg{
	display: flex; display: -webkit-flex;
	justify-content: space-between; -webkit-justify-content: space-between;
	max-width: 848px;
	margin: 0 auto;
}
ul.rentalImg li{
	width: calc(50% - 4px);
}
/* ======= SP =======*/
@media (max-width: 600px) {
}



/*==============================*/
/* 配送利用方法 */
/*==============================*/
dl.deliveryUse dt{ font-weight: bold;}


/*==============================*/
/* リンクリスト */
/*==============================*/
ul.linkList li a{
	position: relative;
	display: inline-block;
	padding-left: 20px;
}
ul.linkList li a::before{
	position: absolute; top: 0; left: 0;
	content: "→";
}
ul.linkList li a::after{
	position: absolute; bottom: 2px; left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background: #F9C375;
}


#rental_web ul.linkList li a{ color: #7ccab7;}
#rental_store ul.linkList li a{ color: #F9C375;}

#rental_web ul.linkList li a::after{ background: #7ccab7;}
#rental_store ul.linkList li a::after{ background: #F9C375;}

/* ======= SP =======*/
@media (max-width: 600px) {
}



