@charset "UTF-8";
/* ####################### */
/*                         */
/* 表題: アクロスカー共通CSS */
/* 作成日: 2025-09-10      */
/* 最終更新日: 2026-01-07   */
/*                         */
/* ####################### */

/* loader */
.loader-wrap {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10050;
    top: 0;
}

.loaderFadeOut {
    animation-name: loaderFadeOut;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
@-webkit-keyframes 'loaderFadeOut' {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes 'loaderFadeOut' {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/* loader */


body {
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	/* border-bottom: 10px #631C1A solid; */
	border-bottom: 10px #333 solid;
}

a {
	color: #333;
}

a:hover {
	color: #555;
}

a img:hover {
	opacity: .75;
}

section {
	margin-bottom: 6rem;
}

section:first-of-type {
	margin-bottom: 0;
}

header {
	background:#FFF;
	/* border-top: 5px #631C1A solid; */
	border-top: 5px #333 solid;
	border-bottom: 1px solid #9B9BCC;
	box-shadow:0 2px 2px rgba(0,0,0,0.3);
}
.navbar {
	padding: .2rem 1rem;
}
.navbar .currentNav {
	background: #631c1a;
}
.navbar .currentNav a.currentNavLink {
	color: #FFF;
}
.navbar .currentNav ul li {
	color: inherit;
}
.fixed-top {
	transition: .5s;
}
h2 {
	color: #AAAAAA;
	font-weight: bold;
	font-family: 'EB Garamond', serif;
}

h2 span {
	display: block;
	font-size: 1.25rem;
	margin: 1rem 0;
	color: #333;
	font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}
/* table */
caption {
	caption-side:top;
	color: #333;
	font-weight: bold;
	padding-top: 0;
}
.table-striped tbody tr:nth-of-type(2n+1) {
	background-color: #E4FAF4;
}
.table-hover tbody tr:hover, 
.table-striped tbody tr:nth-of-type(2n+1):hover {
	background: #FFC;
}
/* table ここまで */
/* ナビゲーション */
.navbar-toggler {
	color: rgba(255, 255, 255, 0.5);
	border: none;
	padding: 0px;
	width: 30px;
	height: 30px;
	box-sizing: border-box;
	position: relative;
}
.navbar-toggler-icon {
	background-image:none;
	background-color: #333;
	width: 30px;
	height: 2px;
	display: block;
	position: absolute;
	transition: ease .5s;
}

.navbar-toggler-icon:nth-of-type(1) {top:7px;}
.navbar-toggler-icon:nth-of-type(2) {top:14px;}
.navbar-toggler-icon:nth-of-type(3) {top:21px;}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1) {
	top:13px;
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(2) {
	opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3) {
	top:13px;
	transform: rotate(-45deg);
}

.navbar-expand-lg .navbar-nav .nav-link {
	padding-right: .75rem;
	padding-left: .75rem;
}
.dropdown-menu {
	margin-top: 0;
}
.dropdown-menu.show {
	padding: 0;
}
.navbar-nav {
	font-size: .95rem;
}
.navbar-nav li {
	border-right: 1px dotted #333;
}
.navbar-nav li li {
	border-right: none;
	border-bottom: 1px dotted #333;
}
.navbar-nav li li:last-of-type {
	border-bottom: none;
}
.navbar-nav li:last-of-type {
	border-right: none;
}


.navbar-nav li a {
	font-weight: bold;
	color: #555;
	background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(99,28,26,1) 50%);
	background-position: 0 0;
	background-size: 201% auto;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-ms-transition: 0.5s;
}
.navbar-nav li a:hover {
	background-position: -99% 0;
	color: #fff;
}
.dropdown:hover > .dropdown-menu{
  display: block;
  padding: 0;
}

/* ナビゲーションここまで */

/* リンクボタン */
.linkBtn p {
	padding: 0.6em 2em;
	width: 50%;
	margin: 0 auto;
	margin-bottom: 1rem;
	background: #a33e3a;
	border: 0.1875em solid #631C1A;
	cursor: pointer;
	transition: all 0.3s ease 0s;
	font-weight:bold;
}

.linkBtn p:hover {
	background: #4d1513;
	color: #fff;
}

.linkBtn p a {
	color: #FFF;
	display: block;
	width: 100%;
	text-align: center;
}

.linkBtn p a:hover {
	text-decoration: none;
}
/* リンクボタンここまで */


/* フッター */
footer {
	border-top: 1px solid #999;
	padding-top: 3rem;
	background: #f4f4f4;
}

.footerLogoArea {
	border-top: 3px double #999;
	margin: 2rem 0 5rem;
	padding-top: 4rem;
}
footer p:nth-of-type(1) br {
	display: none;
}
/* フッターここまで */

/* ページトップボタン */
#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
}
#page-top svg {
	fill:#FFFFFF;
	vertical-align: middle;
}
#page-top a {
	background: rgba(28,125,189,0.5);
	width: 48px;
	height: 48px;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
#page-top a:hover {
	text-decoration: none;
	background: rgba(28,125,189,1);
}
/* ページトップボタンここまで */




@media screen and (min-width: 992px) and (max-width:1199px) {
}

@media screen and (max-width:1199px) {
}

@media screen and (max-width:992px) {
}

@media (max-width: 991px) {
	.dropdown-menu {
		border: none;
		margin-left: 0;
		padding: 0;
		border-radius:0;
	}
	.dropdown-menu li a {
		position: relative;
	}
	.dropdown-menu li a:before {
		display: block;
		position: relative;
		content: '';
		top: .75em;
		left: -1em;
		width: 8px;
		height: 2px;
		background-color: #666;
	}
	.navbar-nav li {
		border-right: none;
	}
}

@media screen and (min-width:769px) and (max-width:991px) {
}

@media (max-width: 768px) {
	.linkBtn p {
		width: 100%;
	}
	footer div.row div {
		margin-bottom: 2rem;
	}
	.footerLogoArea {
		margin-bottom: 2rem;
	}
	footer p:nth-of-type(1) br {
		display: inherit;
	}
}

@media (max-width: 320px) {
	.contactBtn br {
		display: none!important;
	}
}




