@charset "UTF-8";
/* ############################### */
/*                                 */
/* 表題: 普通車レンタカー共通CSS   */
/* 作成日: 2022-11-10              */
/* 最終更新日: 2025-07-24          */
/*                                 */
/* ############################### */
/* loader */
#loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #dfdfdf;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
#loading p {
    text-align: center;
    position: relative;
    top: 45vh;
    color: #122C8A;
    font-size: .9rem;
}
.spinner {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    top: 45vh;
    position: relative;
    background-color: #122C8A;
    border-radius: 100%;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}
@keyframes sk-scaleout {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1.0);
        opacity: 0;
    }
}
.loaded {
    opacity: 0;
    visibility: hidden;
}
/* Common */
body {
	font-family: 'Noto Sans JP', serif;
}

a img {
	transition: .3s ease;
}
a img:hover {
	opacity: .7;
}
/* header */
header {
	background: rgba(255,255,255,.75);
	position: fixed;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid #383838;
	box-shadow: 0 10px 10px rgba(0,0,0,0.25);
	transition: .5s ease;
}
header li {
	list-style-type: none;
	display: inline;
	margin: 0 10px;
}
header .subNav ul {
	text-align: right;
	margin-bottom: 0;
}
header .subNav ul li {
	padding-bottom: 3px;
}
header .subNav li a {
	color: #FFF;
	text-decoration: none;
	font-size: .85rem;
	padding: 0 10px 2px;
}
header .subNav li:nth-of-type(1) {
	background: #D6000F;
	transition: .3s ease;
}
header .subNav li:nth-of-type(1):hover {
	background: #159968;
}
header .subNav li:nth-of-type(2) {
	background: #F09D02;
	transition: .3s ease;
}
header .subNav li:nth-of-type(2):hover {
	background: #F25500;
}
header .navBarArea {
	padding-bottom: 10px;
}
header .navbar a {
	color: #333333;
	padding: .1rem .5rem;
	border-radius: 1rem;
}
header #navbarSupportedContent a:hover {
	color: #FFF;
	background: #183FC0;
}
header .navbar a.active {
	color: #FFFFFF;
	background: #122C8A;
	border-radius: 1rem;
}
.navbar-expand-lg {
	padding-top: 0;
}
header .dropdown-menu.show li {
	margin: 10px 0;
	display: inherit;
}
/* menu */
.navbar-toggler {
	background: #122d8a;
	padding: .25rem;
	font-size: .9rem;
}
.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler-icon.opened {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4,7l22,16 M4,23L26,6.999'/%3e%3c/svg%3e");
}
.navbar-toggler:focus {
	box-shadow: 0 0 0 .1rem;
}
.dropdown-menu.show {
	padding: .5rem;
}
.navbar-collapse.show, .navbar-collapse.collapsing {
	background: #FFF;
	border: 1px solid #707070;
}
/* main */
main .container-fluid {
	background: #EEF1F4;
}
main section {
	margin-bottom: 6rem;
	padding: 3rem 0;
}
main section img {
	width: 100%;
	height: auto;
}

main section.container, 
main section.container-fluid {
	opacity : 0.1;
	transform : translate(0, 80px);
	transition : all 1000ms;
}
main section.container.fadeIn, 
main section.container-fluid.fadeIn {
	opacity : 1;
	transform : translate(0, 0);
}

main b {
	background: linear-gradient(transparent 60%, #FFE600 0%);
	padding: 0 2px;
}
main p {
	line-height: 1.75;
}
main span.notes, 
main small.notes {
	color: #D90000;
}

/* main heading */
h2 {
	margin: 5rem 0 2rem 1rem;
	position: relative;
	color: #333;
	text-shadow: 0 0 2px white;
	z-index:1;
	color: #122d8a;
	font-size: 1.5rem;
	padding-left: 0!important;
}
h2:before {
	content: "";
	position: absolute;
	background: #9de5ff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	top: 50%;
	left: -15px;
	transform: translateY(-50%);
	z-index: -1;
}
main h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	position: relative;
	z-index:1;
	padding-left: 3px;
	color: #136d82;
}
main h3:before {
	content: "";
	position: absolute;
	background: #B0FF9D;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	top: 50%;
	left: -11px;
	transform: translateY(-50%);
	z-index: -1;
}


/* main Btn */
.detailBtn {
	background: #FFE600;
	padding: 0;
	text-align: center;
	width: 80%;
	margin: 0 auto;
	font-style: italic;
}
.detailBtn a {
	font-size: 1.25rem;
	color: #3d3d3d;
	padding: .5rem;
	overflow: hidden;
	display: block;
	position: relative;
	z-index: 1;
	text-decoration: none;
}
.detailBtn a:hover {
	text-decoration: none;
	color: #FFF;
}
.detailBtn a::before{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: rgb(255,255,255);
	background: linear-gradient(45deg,  rgba(40,174,201,1) 0%,rgba(126,93,173,1) 100%);
	transition: transform .3s;
	content: "";
	transform-origin: right top;
	transform: skewX(45deg) scale(0, 1);
}
.detailBtn a::after{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -2;
	border: 1px solid #3D3D3E;
	content: "";
}
.detailBtn a:hover:before{
	transform-origin: left bottom;
	transform: skewX(30deg) scale(2, 2);
	content: "";
}
.asideLogoArea {
	background: #EEF1F4;
	padding: 1rem 0;
}
.asideLogoArea a {
	width: inherit;
}
.asideLogoArea address {
	font-size: .85rem;
	margin-top: 10px;
	margin-bottom: 0;
}
.asideLogoArea address span {
	font-size: .725rem;
	margin-left: .75rem;
}
.sideSnsBtnArea {
	position: fixed;
/* 	top: 200px; */
	z-index:101;
	bottom:0;
}
.sideSnsBtnArea ul {
	padding-left: 1.5rem;
}
.sideSnsBtnArea li {
	list-style-type:none;
	line-height: 4;
	transition: .3s ease;
}

.sideSnsBtnArea li:hover {
	opacity: .85;
}

.sideSnsBtnArea li img {
	transition: .3s;
	filter:drop-shadow(0px 0px 5px #FFF);
	box-shadow:0px 0px 10px #FFF;
	border-radius: 100%;
}
.sideSnsBtnArea li img:hover {
	transform: rotate(360deg);
}

/* other */
.campingInfoArea p:nth-of-type(2) a {
	text-decoration: none;
	color: #136d82;
	position: relative;
	display: inline-block;
}
.campingInfoArea p:nth-of-type(2) a:after {
	position: absolute;
	bottom: 0;
	left:0;
	content:"";
	background:#136d82;
	transform:scale(0,1);
	transform-origin: right top;
	transition: transform .3s;
	height: 2px;
	width: 100%;
}
.campingInfoArea p:nth-of-type(2) a:hover:after {
	transform-origin: left top;
	transform: scale(1, 1);
}
.mapArea, .mapArea iframe {
	width: 100%;
	padding: 0;
}

/* footer */
footer {
	background: #129636;
	padding: 2rem 0;
}
footer .row:nth-of-type(1) {
	border-bottom: 1px solid #FFF;
}
footer ul li {
	list-style-type: none;
	display: inline-block;
}
footer ul li a {
	color: #FFF;
	font-size: .85rem;
    transition: .3s;
	position:relative;
	text-decoration: none;
}
footer div.row ul {
	margin: 1rem 0;
}
footer div.row ul li ul {
	padding-left: 1rem;
	margin: 0;
}
footer div.row ul li {
	margin-right: 3rem;
	vertical-align: top;
}
footer div.row ul li ul li{
	margin-right: 0;
	display: inherit;
}



footer div.row ul li a::before {
    position: absolute;
    top: .5rem;
    left: -8px;
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 5px;
    border-color: transparent #FFF;
}
footer div.row ul li a:hover {
    text-decoration: none;
	color: #FFF;
}
footer div.row ul li a:after {
    position: absolute;
    bottom: -2px;
    left: 50%;
    content: "";
    width: 0;
    height: 2px;
    background: #FFF;
    transition: .3s;
    transform: translateX(-50%);
}
footer div.row ul li a:hover:after {
    width: 100%;
}


footer aside {
	border-top: double 4px #FFF;
	border-bottom: double 4px #FFF;
	padding:  1.5rem 0 .75rem;
	margin: .5rem 0 1.5rem!important;
}
footer aside h3 {
	color: #FFF;
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}
footer aside li {
	width: 30%;
	margin-bottom: 1.75rem;
}
footer p {
	color: #FFF;
	font-size: .85rem;
	margin-bottom: 5rem;
	line-height: 1.75;
}
footer p a {
	text-decoration: none;
	color: #FFDD27;
	position: relative;
	display: inline-block;
}
footer p a:hover {
	color: #FFF;
}
footer p a:after {
	position: absolute;
	bottom: 0;
	left:0;
	content:"";
	background:#FFF;
	transform:scale(0,1);
	transform-origin: right top;
	transition: transform .3s;
	height: 2px;
	width: 100%;
}
footer p a:hover:after {
	transform-origin: left top;
	transform: scale(1, 1);
}



@media screen and (min-width: 992px) and (max-width:1199px) {
	.navbar-nav {
		font-size: .85rem;
	}
}

@media screen and (max-width:991px) {
	.subNav {
		padding-right: 0;
	}
	header .subNav ul li {
		margin: 0 5px;
	}
	header .subNav li a {
		padding: 0 10px;
		font-size: .8rem;
	}
	header .subNav li:nth-of-type(2) {
		margin-right: 0;
	}
	header .navbar a.active {
		background: none;
		color: #122C8A;
		border-radius: .5rem;
	}
	header .navbar a {
		border-radius: .5rem;
	}
	.navbar-nav .nav-link {
		padding: 5px;
	}
	h2 {
		max-width: 96%!important;
	}
	main h3 {
		padding-left: .5rem;
	}
	h2:before {
		left: -9px;
	}
	main h3:before {
		left: -5px;
	}
	.detailBtn {
		margin-bottom: 4rem;
		width: 100%;
	}
	.detailBtn a {
		font-size: 1.2rem;
	}
	footer aside ul {
		text-align: center;
	}
	.asideLogoArea img {
		width: 40%;
		height: auto;
	}
}
@media screen and (min-width: 769px) and (max-width:991px) {
	footer aside ul li img {
		width: 100%;
		height: auto;
	}
}


@media screen and (max-width:768px) {
	header .subNav ul {
		margin-bottom: .5rem;
	}
	.navbar-brand {
		width: 70%;
		margin-left: -1rem;
	}
	.navbar-brand img {
		width: 100%;
		height: auto;
	}
	main section {
		margin-bottom: 3rem;
	}
	main section.container, 
	main section.container-fluid {
		opacity : 0;
	}
	.campingInfoArea p:nth-of-type(2) a {
		display: inline;
	}
	.asideLogoArea address br:nth-of-type(2) {
		display: none;
	}
	.asideLogoArea address span:nth-of-type(1) {
		display: block;
		margin-left: 2.175rem;
	}
	.sideSnsBtnArea {
		top: inherit;
		left: -1rem;
		bottom:0;
	}
	.sideSnsBtnArea li {
		line-height: 3.5;
	}
	.sideSnsBtnArea li img {
		width: 30%;
		height: auto;
		filter:drop-shadow(0px 0px 3px #FFF);
		box-shadow:0px 0px 5px #FFF;
	}
	footer aside ul li {
		display: inherit;
		width: inherit;
	}
	footer div.row ul li {
		margin-right: 1.5rem;
	}
}