@charset "UTF-8";
/* ############################### */
/*                                 */
/* 表題: 普通車レンタカー セカンドページ用CSS   */
/* 作成日: 2022-11-10              */
/* 最終更新日: 2023-08-02          */
/*                                 */
/* ############################### */
.mainImgArea {
	position: relative;
    padding: 0;
    top: 0;
    margin-top: 0;
    min-height: 80vh;
	width: 100%;
	margin-bottom: 0;
}

.mainImgArea .overlay {
    background: url(overlays/05.png);
    z-index: 5;
    position: absolute;
    width: 100%;
    height: 80vh;
}

.mainImgArea p {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(24,63,192,.75);
	font-size: 3.75rem;
	z-index: 6;
	text-align: center;
	width: 100%;
	color: #f7ff00;
	font-style: italic;
	text-shadow: 2px 2px 0 #000;
}
.breadCrumbs {
    background: #F5F1ED;
    border-bottom: 1px solid #C8C8C8;
}

.breadCrumbs ul {
    margin: .5rem 0;
}

.breadCrumbs ul li {
    display: inline-block;
    font-size: .8rem;
    position: relative;
    padding-right: 1rem;
	margin-right: .25rem;
}

.breadCrumbs ul li:before {
    position: absolute;
    content: ">";
    font-size: .75rem;
    top: .1rem;
    right: 0;
}

.breadCrumbs ul li:last-child:before {
    content: none;
}

.breadCrumbs a {
    position: relative;
    display: inline-block;
	color: #131313;
	text-decoration: none;
}

.breadCrumbs a:hover {
    text-decoration: none;
}

.breadCrumbs a:after {
    position: absolute;
    bottom: -1px;
    left: 0;
    content: "";
    background: #007DB7;
    transform: scale(0,1);
    transform-origin: right top;
    transition: transform .3s;
    height: 2px;
    width: 100%;
}

.breadCrumbs a:hover:after {
    transform-origin: left top;
    transform: scale(1, 1);
}

h1 {
	position: relative;
	color: #346f37;
}
h1:before {
	position: absolute;
	width: 260px;
	height: 6px;
	left: 50%;
	border-radius:6px;
	content:"";
	transform:translateX(-50%);
	background: #136d82;
	bottom: -60px;
}
@media screen and (min-width: 992px) and (max-width:1199px) {
}

@media screen and (max-width:991px) {
	.mainImgArea p {
		font-size: 3rem;
	}
}
@media screen and (min-width: 769px) and (max-width:991px) {
}


@media screen and (max-width:768px) {
	.mainImgArea p {
		font-size: 2rem;
		line-height: 1.5;
	}
	.breadCrumbs .col-12 {
		padding: 0;
	}
	.breadCrumbs ul {
		padding: 0;
		overflow-x:scroll;
		white-space:nowrap;
	}
	.h1, h1 {
		font-size: calc(1.25rem + 1.25vw);
	}
}