@charset "UTF-8";

:root {
	--bs-body-font-family: "M PLUS 1", serif;
	--bs-font-sans-serif: "M PLUS 1p", serif;
	--bs-font-monospace: "M PLUS 1p", serif;
	--bs-gradient: none;
	--bs-body-color: #171515;
	--bs-past_blue01-rgb: 0, 158, 231;
	--bs-past_blue02-rgb: 206, 239, 255;
	--bs-past_gold01-rgb: 199, 186, 154;
	--bs-past_gold02-rgb: 161, 141, 90;
	--color-Vespapa-rgb: 110, 205, 175;

	font-size: 16.5px;
}

.bg-vespa {
	--bs-bg-opacity: 1;
	background-color: rgba(var(--color-Vespapa-rgb), var(--bs-bg-opacity)) !important;
}


.bg-past_gold01 {
	--bs-bg-opacity: 1;
	background-color: rgba(207, 196, 169, var(--bs-bg-opacity)) !important;
}

.btn-past_gold01 {
	--bs-btn-color: #000;
	--bs-btn-bg: #c7ba9a;
	--bs-btn-border-color: #c7ba9a;
	--bs-btn-hover-color: #000;
	--bs-btn-hover-bg: #cfc4a9;
	--bs-btn-hover-border-color: #cdc1a4;
	--bs-btn-focus-shadow-rgb: 169, 158, 131;
	--bs-btn-active-color: #000;
	--bs-btn-active-bg: #d2c8ae;
	--bs-btn-active-border-color: #cdc1a4;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #000;
	--bs-btn-disabled-bg: #c7ba9a;
	--bs-btn-disabled-border-color: #c7ba9a;
}

.bg-aprilia {
	--bs-bg-opacity: 1;
	background-color: rgba(237, 29, 38, var(--bs-bg-opacity)) !important;
}

.dg-center {
	height: 100%;
	display: grid;
	place-items: center;
}


.fade-in-bottom {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.6s ease-out forwards;
	animation-delay: var(--fade-delay, 0s);
	/* デフォルトは0秒 */
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/*
title

*/
.HeadTitle {
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.HeadTitle p {
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 60px;
	text-align: left;
	line-height: 1;
	z-index: 2;
	color: #333;
	animation: fadeInText 1.5s ease-in-out forwards;
	opacity: 0;
}

.HeadTitle p span {
	margin-left: 40px;
	font-size: 24px;
	white-space: nowrap;
	color: #1e1e1e;
	animation: fadeInText 1.5s ease-in-out forwards 0.5s;
	opacity: 0;
}

/* 疑似要素で赤いラインを追加（translateX で左からスライド） */
.HeadTitle p::after {
	content: "";
	display: block;
	width: 180px;
	height: 4px;
	background-color: #C80000;
	margin-top: 15px;
	margin-left: 4px;
	border-radius: 3px;
	animation: slideInLine 2.5s ease forwards;
	opacity: 0;
}

.HeadTitle .titShadow {
	font-family: "M PLUS 1", serif !important;
	font-weight: 900;
	width: 100%;
	max-width: 2400px;
	display: block;
	color: #f2f2f2;
	font-size: 184px;
	letter-spacing: 0;
	text-align: right;
	line-height: 180px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	animation: slideInShadow 2s ease-in-out forwards;
	transform: translateX(100%);
	opacity: 0;
	white-space: nowrap;
}

/* アニメーション */
@keyframes fadeInText {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInShadow {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInLine {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

/* モバイル対応 */
@media (max-width: 767px) {
	.HeadTitle {
		padding: 40px 0;
	}

	.HeadTitle p {
		width: 90%;
		margin: 0 6%;
		padding: 0;
		display: block;
		position: relative;
		font-size: 50px;
	}

	.HeadTitle p span {
		display: block;
		margin-top: 10px;
	}

	.HeadTitle .titShadow {
		font-size: 80px;
	}

	.HeadTitle p::after {
		width: 60px;
		height: 3px;
		margin-top: 10px;
	}
}








/* -------------------------------- BRAKE POINT --------------------------------*/
.content-subt {
	width: 100%;
}

/* X-Small xs*/
@media (min-width: 576px) {}

/* Small sm */
@media (min-width: 768px) {
	.content-subt {
		width: 100%;
	}
}

/* Large lg*/
@media (min-width: 992px) {
	.content-subt {
		width: 205px;
	}
}

/* Extra large xl*/
@media (min-width: 1200px) {
	.content-subt {
		width: 255px;
	}
}

/* Extra extra large xxl*/
@media (min-width: 1400px) {}

/* --------------------------------  --------------------------------*/

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	backface-visibility: hidden;
	min-height: 0%;
}

*:after,
*:before {
	background-position: left top;
	background-size: 100% auto;
	background-repeat: no-repeat;
}

::-webkit-input-placeholder {
	color: #999999;
	opacity: 1;
}

::-moz-placeholder {
	color: #999999;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #999999;
}

:focus::-webkit-input-placeholder {
	opacity: 1;
	color: transparent;
}

:focus:-moz-placeholder {
	opacity: 1;
	color: transparent;
}

:focus::-moz-placeholder {
	opacity: 1;
	color: transparent;
}

:focus:-ms-placeholder {
	opacity: 1;
	color: transparent;
}

label {
	cursor: pointer;
}

body {
	font-size: 1rem;
	/*
	font-family: "M PLUS 1p", serif;
	*/
	font-optical-sizing: auto;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1.46;
	min-width: 375px;
	background-color: #000;
}

img {
	max-width: 100%;
	height: auto;
}

.noto-sans-jp {
	/*
	font-family: "Noto Sans JP", serif;
	*/
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.noto-serif-jp {
	/*
	font-family: "Noto Serif JP", serif;
	*/
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}


.text-truncate_x {
	--line: 2;
	display: -webkit-box;
	-webkit-line-clamp: var(--line);
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* -------------------------------- TEMPLATE --------------------------------*/

.site-wrap {
	overflow: clip;
	background-color: #fff;
}

/* .site-header */

.site-header {
	--h_height: 54px;
}

.site-header .nav-link {
	height: var(--h_height);
}

@media (max-width: 767px) {
	.site-header {
		--h_height: 60px;
	}

	.site-header_func {
		height: var(--h_height);
	}

	.site-header_nav_wrap {
		width: 100%;
		height: 100%;
		overflow-x: hidden;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.site-header_nav {
		padding: calc( var(--h_height) + 30px) 0;
	}

	.site-header .nav-link {
		padding: 0.75rem;
		height: auto;
	}

	.site-header .navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	}

	.site-header [aria-expanded="true"] .navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 24 24' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
	}

	.site-header .navbar-toggler{
		box-shadow: none !important;
		border-radius: 0 !important;
		border-color: #fff !important;
	}
}

/* .site-main */

.site-main {}

/* .site-footer */

.site-footer {}

/* .top-Swiper */


.top-Swiper {}

.top-Swiper_in {}

.top-Swiper .swiper-pagination {
	position: relative;
}

.top-Swiper .swiper-pagination-bullet {
	background-color: rgba(255, 255, 255, 0);
	width: 9PX;
	height: 9PX;
	border: 1px solid #fff;
	opacity: 1;
	margin: 0 5px;
}

.top-Swiper .swiper-pagination-bullet-active {
	background-color: rgba(255, 255, 255, 1);
}

.top-Swiper .swiper-button-next:after,
.top-Swiper .swiper-button-prev:after {
	color: #fff;
	font-size: 30px;
}

.top-Swiper .swiper-button-next {
	right: -30px;
}

.top-Swiper .swiper-button-prev {
	left: -30px;
}

.top-Swiper .swiper-caption {
	opacity: 0;
	transition: opacity 0.4s ease 0s;
}

.top-Swiper .swiper-slide-active .swiper-caption {
	opacity: 1;
}

@media (max-width: 767px) {
	.top-Swiper .swiper-button-next {
		right: 0px;
	}
	
	.top-Swiper .swiper-button-prev {
		left: 0px;
	}
}

/* .accordion_block01  */

.accordion_block01 {
	word-break: break-all
}

.accordion_block01 .accordion-item {
	border-radius: 0
}

.accordion_block01 .accordion-button {
	background-color: #000;
	color: #fff;
	padding: .8rem .6rem;
	border-radius: 0 !important
}

.accordion_block01 .accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important
}

.accordion_block01 hr {
	border-color: var(--bs-border-color);
	opacity: 1
}

@media screen and (max-width:767px) {
	.accordion_block01 .accordion-body>.row>.col:last-child hr {
		display: none
	}
}

@media screen and (min-width:768px) {
	.accordion_block01 .accordion-button {
		pointer-events: none
	}

	.accordion_block01 .accordion-button::after {
		display: none
	}

	.accordion_block01 .collapse:not(.show) {
		display: block !important
	}
}

.side_block01 hr {
	border-color: var(--bs-border-color);
	opacity: 1
}

@media screen and (max-width:767px) {
	.side_block01 .row>.col:last-child hr {
		display: none
	}
}


.bg-past_blue01 {
	--bs-bg-opacity: 1;
	background-color: rgba(var(--bs-past_blue01-rgb), var(--bs-bg-opacity)) !important;
}

.site-past_header {}

.site-past_header_nav_wrap {
	position: static;
}

.imghover {
	transition: opacity 0.2s ease 0s;
}

.imghover:hover {
	opacity: 0.8;
}

.site-past_header {
	--h_height: 110px;
}

.site-past_header_head {
	height: var(--h_height);
}

.navbar-contact {
	top: 0;
	display: flex;
	align-items: center;
	height: var(--h_height);
	padding: 10px 15px 0 0;
}

@media (max-width: 767px) {

	.site-past_header {
		--h_height: 94px;
	}

	.site-past_header_nav_wrap {
		position: relative;
	}

	.site-past_header_nav {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}

	.site-past_header_nav_in {
		height: calc(100vh - var(--h_height));
	}

	.site-past_header_nav_content {
		height: 100%;
		width: 100%;
		overflow-x: hidden;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.site-past_header .navbar-toggler {
		color: #fff;
		box-shadow: none !important;
		border-radius: 0;
		border-color: #fff;
	}

	.site-past_header .navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	}

	.site-past_header [aria-expanded="true"] .navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 24 24' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
	}

	.navbar-contact {
		display: block;
		padding: 20px 20px 100px 20px;
		height: auto;
	}
}