@charset "UTF-8";

/*under_header*/
.under_header{
    background: url(../img/carlife/mv.jpg) center / cover no-repeat;
}

/* keeper_box
***************************************************************/
.keeper_box--sub{
	width: 29.8%;
	background-color: var(--gray);
	padding: 20px;
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}

.keeper_box--sub > dl{
	display: flex;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid #707070;
	padding-top: 25px;
}
.keeper_box--sub > dl:first-of-type{
	margin-top: 25px;
	padding-bottom: 25px;
}
.keeper_box--sub > dl:last-of-type{
	margin-top: auto;
}
.keeper_box--txt01{
	font-size: clamp(16px, 1.8vw, 19px);
	font-weight: 700;
	text-align: center;
}

.keeper_box--txt02{
	font-size: clamp(16px, 1.8vw, 19px);
	font-weight: 700;
	line-height: 1.45;
	color: #707070;
	margin-top: 1em;

	.txt_red{
		color: #E3190F;
	}
	.txt_small{
		font-size: 90%;
	}

}

.keeper_box--txt03{
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	margin-top: 10px;
}

.keeper_box--img02{
	width: 65%;
	margin-top: 10px;
}

@media all and (max-width:853px) and (min-width:768px) {
	.keeper_box--txt02 br{
		display: none;
	}
}


/*--------------------PC--------------------*/
@media all and (min-width:768px) {
	.keeper_box.flex_box{
		justify-content: space-between;
	}

}

/*--------------------SP--------------------*/
@media all and (max-width:767px) {
	.keeper_box--sub{
        max-width: 395px;
        width: 100%;
        margin: 20px auto 0;
    }

}


/* store_list
***************************************************************/
/*.anchor{
	margin-top: -115px;
}*/
#osaka-city.anchor{
	margin-top: -180px;
}

.area_block:not(.osaka-city) {
    margin-top: 65px;
}
.area_block--ttl{
	width: 100%;
	height: 36px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background-color: var(--blue);
    display: flex;
    align-items: center;
    padding-left: 15px;
}
.area_block .flex_box{
	flex-wrap: wrap;
    gap: 60px 3.8%;
    margin-top: 15px;
}
.area_block .flex_box + .flex_box{
    margin-top: 60px;
}

.store_img{
	width: 100%;
	padding-top: 72%; /* aspect ratio 500/360 = 1.388... → 360/500 * 100 = 72% */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.store_name{
	font-size: 16px;
	font-weight: 700;
	margin-top: 1.3em;
	margin-bottom: 1em;
}
.store_address,
.store_tel {
    font-size: 16px;
    line-height: 2;
}
.area_block .blue_btn{
	margin-top: 20px;
}

/*--------------------PC--------------------*/
@media all and (min-width:768px) {
	.store_list--box{
		width: 48.1%;
	}

}

/*--------------------SP--------------------*/
@media all and (max-width:767px) {
	/*.anchor{
		margin-top: -50px;
	}*/
	#osaka-city.anchor {
	    margin-top: -85px;
	}
	.area_block:not(.osaka-city) {
        margin-top: 35px;
    }
	.store_list--box + .store_list--box{
		margin-top: 30px;
	}
	.area_block .blue_btn{
		margin-top: 15px;
	}
    .area_block .flex_box + .flex_box{
        margin-top: 30px;
    }
    

}


/* map
***************************************************************/
#map { 
    height: 715px; 
    width: 100%; 
}

/* info-window
***************************************************************/
.info-window {
    max-width: 300px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #707070;
    padding: 0 0 10px 6px;
}

.info-window img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    margin-bottom: 20px;
}

.info-window h3 {
    margin: 0 0 8px 0;
    color: #464646;
    font-size: 16px;
}

.info-window .category {
    background: #e3f2fd;
    color: #1976d2;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 8px;
}

.info-window .address,
.info-window .phone {
    margin: 4px 0;
    color: #707070;
}

.info-window .phone {
    color: #707070;
    text-decoration: none;
}

.info-window .phone:hover {
    text-decoration: underline;
}

.info-window .link {
    color: #E3190F;
    text-decoration: underline;
}

/* custom-marker
***************************************************************/
.custom-marker {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.custom-marker:hover {
    transform: scale(1.1);
}

/* search_btn
***************************************************************/
.search_btn.active {
    background-color: #004d91 !important;
    color: white !important;
}

/* area_block
***************************************************************/
.area_block {
    display: block;
}

.area_block.hidden {
    display: none;
}

/* arrow_s
***************************************************************/
.arrow_s {
    position: relative;
    display: inline-block;
    padding-left: 16px;
}

.arrow_s:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0px 8px 12px;
    border-color: transparent transparent transparent #E3190F;
    position: absolute;
    top: 1px;
    left: 0;
    bottom: 0;
    margin: auto;
}