@charset "utf-8";


:root{
	/* color */
	--color-bk:#000;
	--color-red:#e60013;
	--color-arrow:#eb613b;
	--color-bg:#fff;
	--color-gray:#767a89;

	/* font */
	--font-base:clamp(1rem, 14vw, 1.1rem);

	/* radius */
	--radius-card:11px;
	--radius-shop:29px;
	--radius-serviceabout:19px;
	--radius-pay:27px;
	--radius-service:32px;
	--radius-fun:34px;

	/* shadow */
	--shadow-color:rgb(0 0 0 / 0.15);
	--shadow-sm:1px 3px 6px var(--shadow-color);
	--shadow-md:2px 8px 16px var(--shadow-color);
	--shadow-lg:3px 13px 26px var(--shadow-color);

	--header-height:110px;
}

html{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	background-color: #fff;
	scroll-padding-top: 90px;
}

*,
*::before,
*::after{
	margin:0;
	padding:0;
	box-sizing:border-box;
}
img{
	display: block;
	max-width: 100%;
	height: auto;
}
ul{
	list-style:none;
	text-decoration: none;
}
:where(p, h1, h2, h3, h4, h5, h6){
	overflow-wrap:break-word;
} 


body{
	font-size: var(--font-base); 
	line-height: 1.7;
}

body, p, h1, h2, h3, a{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400; 

}
strong, b {
	font-weight: 700; 
}

h1, h2, h3 {
	font-weight: 700; 
}

p,h4, h5, h6 {
	font-weight: 300; 
}

/*お支払い*/
.banner-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* PC 2列 */
	gap: 20px;
	padding: 0 20px;
	max-width: 1200px;
	margin: 0 auto 20px auto;
}

.banner-card {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.banner-card img {
	width: 100%;
	display: block;
	height: auto;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.banner-card:hover img {
	transform: scale(1.05);
}

.banner-text {
	position: absolute;
	display: block;
	width:100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;  
}
.banner-text h3 {
	font-size:2.2rem;
	font-weight:bold!important;
	margin-bottom: 16px;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}
@media(max-width:768px){
	.banner-text h3 {
		font-size:1.5rem;
		font-weight:bold!important;
		margin-bottom: 16px;
		text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
	}

}

.banner-btn {
	display:inline-flex;
	align-items:center;
	gap:8px;
	padding: 1px 30px;
	background-color: #e60013;
	color: #fff;
	font-weight:400!important;
	border-radius: 12px;
	text-decoration: none;
	transition: background 0.5s ease;
}
/* 矢印画像 */
.banner-btn .arrow img{
	width:8px; 
	height:auto;
	display:block;
}
.banner-btn:hover {
	background-color: #b80010;
}

/* タブレット */
@media (max-width: 1024px) {
	.banner-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* スマホ */
@media (max-width: 767px) {
	.banner-wrapper {
		grid-template-columns: 1fr;
	}
}

/*==================================================
MV
===================================*/
.mv {
	position: relative;
	overflow: hidden;
	height: 100vh; 
	height: auto;
}
@media (max-width: 767px) {
	.mv {
		margin-top: 82px;
	}
}

.slider-mv{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.mv-text{
	position: absolute;
	z-index: 5;
	top: 50%;
	transform: translate(-50%, -50%); 
	font-size: 1.8rem;
	font-style:none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	color: #fff;
	text-shadow: var(--shadow-sm);
}
.slider-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mv-text {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size:clamp(1.2rem, 14vw, 1.8rem);
	text-align: center;
	text-shadow: 
		3px 2px 6px rgba(0,0,0,0.8),
		3px 2px 6px rgba(0,0,0,0.8);
}

.slider-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 1024px){
	.mv-text{
		font-size: 2.8rem;
		left:30%;
		top:40%;
	}
	.mv-text p{
		text-align:left;	
	}
}

@media (max-width: 768px){
	.mv-text{
		font-size: 1.8rem;
		z-index: 5;
		left:50%;
		top: 40%;
		text-align:left;
		width:100%;
		margin: auto;
	}
	.mv-text p{
		text-align:center;	
	}
}

.slider-mv .slick-dots li button {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #999;
	color: transparent;
	font-size: 0;
	padding: 0;
}

.slider-mv .slick-dots li.slick-active button {
	background: var(--color-red);
}

/* MVスライダー画像 */
.slider-mv .slider-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


@media (max-width: 768px){
	.slider{
		aspect-ratio: 3 / 4;
	}

}
.slider-item {
	width: 100%;
	height: 100%; 
}
.slick-prev {
	left:2.5%;
	transform: rotate(-135deg);
}

.slick-next {
	right:2.5%;
	transform: rotate(45deg);
}


.slick-dots {
	position: absolute; 
	bottom: 110px;   
	left: 50%;
	transform: translateX(-50%);
	z-index: 30;
}
@media (min-width:1024px){
	.slick-dots {
		position: absolute; 
		bottom: 18px;   
		left: 28%;
		transform: translateX(-50%);
		z-index: 30;
	}
	.mv-text{
		position: absolute;
		z-index: 5;
		top: 50%;
		left: 25%;
		font-size: 3.5rem;
		line-height: 1.5;
		color: #fff;
	}
}
.slick-dots li {
	display:inline-block;
	margin:0 5px;
}

.slick-dots button {
	color: transparent;
	outline: none;
	width:15px;
	height:15px;
	border: none;
	display:block;
	border-radius:50%;
	background: #999;
}

.slick-dots .slick-active button{
	background:var(--color-red);
}

/*new*/
.news-bar{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 10;
	width: 100%;
	background-color: var(--color-red);
	padding: 0 5px;
	font-size: var(--font-base);
	min-height: 80px;
}
.news-inner{
	padding: 10px 10px 45px 10px;
	color: var(--color-bg);
	font-size:1.12rem;
}
.news_link{
	display: block;
	position: absolute;
	right: 20px;
	bottom:10px;
	z-index: 15;
}
.sp-only{
	display: inline;
}
.news-more img {
	transition: opacity 0.3s;
}
/*.news_link:hover {
	content:url("../img/front-page/more_af.png");
}*/
.news-ul li a {
	color: #ffffff;  /* 文字色を白に */
	text-decoration: none; /* 下線を消す場合 */
}

.news-ul li a .day,
.news-ul li a dd {
	color: #ffffff; /* 日付やタイトルも白に */
}
.news-ul li a dd {
	white-space: nowrap;     
	overflow: hidden;        
	text-overflow: ellipsis;  
}
.news-ul li a .icon__new {
	color: #ffffff;
	background-color: #e60013; 
	padding: 0 0.3em;
	border-radius: 0.2em;
	font-size: 0.8em;
}

@media(max-width:767px){
	.news-title img{
		width: auto;
		width: 50%; 
		font-size:1rem;
	}
}
@media (min-width:768px){
	.sp-only{
		display: none;
	}
	.news-inner{
		display: flex;
		align-items: flex-end;
		gap: 20px;
		padding-bottom: 20px;
		font-size:1rem;
	}
   .news-title img{
		width: 80%; 
	}
	.news_link{
		position: static; 
		margin-left: auto; 
	}
}

/* news-bar 右寄せ＆幅固定 */
@media (min-width:1024px){
	.news-bar{
		position: absolute;
		bottom: 0;
		right: 0;    
		width: 65%;   
		z-index: 10;
		background-color: var(--color-red);
		clip-path: polygon(
			40px 0,   
			100% 0,
			100% 100%,
			0 100%
		);
	}
	.news-title img{
		width: auto;
		width: 90%;   
	}
	.news-inner{
		display: flex;
		align-items: flex-end;
		gap: 10px;    
		padding: 10px 0px;
	}

	.news-title img{
		width: auto;
		max-width: 95%;
		margin-left:30px;
		gap:20px;
	}
	.news-link{
		position: static;  
		margin-left: auto; 
	}
}

.scrolldown4{
	position:absolute;
	bottom:15%;
	right:50%;
	transform: translateX(50%);
	animation: arrowmove 1s ease-in-out infinite;
	z-index: 10;
}

@keyframes arrowmove{
	0%{bottom:10%;}
	50%{bottom:12%;}
	100%{bottom:10%;}
}

.scrolldown4:before {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	right: -6px;
}

@media(max-width:768px){
	.scrolldown4{
		display:none;
	}
}
/*FIND A CAR*/
.carousel-findacar {
	position: relative;
	width: 100%;
	padding: 40px 0 0 0;
	overflow: visible; 
}
.carousel-findacar {
	background: url("../img/front-page/bk_img01_pc.jpg") no-repeat center / cover;
}
.mySwiper {
	position: relative; 
	width: 90%;
	margin: 0 auto;
}
.swiper {
	padding: 20px 0;
	z-index: 2;
}
.swiper-slide {
	transition: transform 0.5s ease;
	display: flex;
	justify-content: center;
}

.swiper-slide img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
	padding: 0; 
}

/* 中央スライドを大きく */
.swiper-slide-active {
	transform: scale(3); 
	z-index: 5;
	transition: transform 0.5s ease;
}

.swiper-button-prev {
	left: -60px;
}

.swiper-button-next {
	right: -60px;
}
/**/
/* 矢印ボタン共通 */
.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50% !important;     /* 上下中央 */
	transform: translateY(-50%);
	width: 50px !important;  /* ボタンの幅 */
	height: 50px !important; /* ボタンの高さ */
	z-index: 999 !important; /* スライド(scale(3))より必ず上に来るようにする */
	cursor: pointer;
	display: flex !important; /* 強引に表示させる */
	align-items: center;
	justify-content: center;
}

/* 左矢印の位置 */
.swiper-button-prev {
	left: 10px !important;   /* 最初は内側(10px)でテストしてください */
}

/* 右矢印の位置 */
.swiper-button-next {
	right: 10px !important;  /* 最初は内側(10px)でテストしてください */
}

/* Swiper標準の青い矢印記号を消す */
.swiper-button-prev::after,
.swiper-button-next::after {
	display: none !important;
	content: "" !important;
}

/* 自前の画像を表示 */
.swiper-button-prev img,
.swiper-button-next img {
	display: block !important;
	width: 50px;
	height: auto;
}
/**/
.swiper-button-prev::after,
.swiper-button-next::after {
	display: none;
}
.swiper-button-prev img,
.swiper-button-next img {
	display: block;
	width: 50px;
	height: auto;
}

.swiper-pagination {
	position: absolute;  
	top: 10px;           
	left: 50%;           
	/* 	transform: translateX(-50%); */
	text-align: center;
	font-size: 20px;    
	font-weight: 400;  
	color: #333;         
	z-index: 20;       
}

/* 左側の ＜ */
/*.swiper-pagination::before {
	content: "＜";
	font-weight: bold;
	cursor: default;
}

/* 右側の ＞ */
/*.swiper-pagination::after {
	content: "＞";
	font-weight: bold;
	cursor: default;
}*/


.swiper-pagination-bullet {
	width: auto !important;
	height: auto !important;
	background: none !important;
	border-radius: 0 !important;
	color: #999;
	opacity: 1;
	margin: 0 5px;
}

.swiper-pagination-bullet-active {
	color: var(--color-red);
}
.find img {
	display: block;
	width:700px;
	height: auto;
	margin-left: clamp(10px,5vw,60px);
}
.ttl_find {
	width: 90%;
	margin: 20px  auto;
	display: flex;
	justify-content: space-between;
	line-height: 1.5;
	align-items: end;

}
.btn_find {
	color: var(--color-red);
	cursor: pointer;
	font-size: 1.1rem;
	text-decoration: underline;
}
.btn_find a {
	color: var(--color-red); 
	text-decoration: none;  
	border-bottom: 1px solid transparent;
	transition: border-bottom 0.3s ease; 
}
.pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: inline;
  }
}
.btn_find a:hover {
	border-bottom: 1px solid var(--color-red); 
}
/* SP版で左右矢印を非表示 */
@media (max-width: 768px) {
	.swiper-button-prev,
	.swiper-button-next {
		display: none !important;
	}
	.ttl_find {
		flex-direction: column; 
		align-items: flex-start; 
		gap: 10px; 
	}
	.ttl_find p{
		text-align: justify;
	}
	.find img{
		margin-top:20px;
		width:80%;
	}
	.carousel-findacar {
		background: url("../img/front-page/bk_img01_sp.jpg") no-repeat center / cover;
	}
}

.find__car{
	border: 1px solid var(--color-red);
	width:90%;
	margin: 0 auto 30px auto;
}

/*==================================================
在庫一覧、会社情報css
===================================*/
.list{
	display: flex;
	justify-content: center;
	line-height: 1.5;
	width:75%;
	margin:auto;
}
.titl_list{
	font-size:clamp(1.95rem, 0.8rem + 0.8vw, 2.5rem);
}
.list_butn{
	display: flex;
	margin-bottom:50px;
}
.list_butn li {
	display: inline-block;      
	margin-left: 50px;
	font-size: var(--font-base);
	color: var(--color-red);
	padding: 5px 10px;            /* 枠線が見えるように少し余白を入れる */
	border: 2px solid transparent; /* ホバー前は透明にしておく */
	transition: border 0.3s ease;  /* ホバー時のアニメーション */
}

.list_butn li:hover {
	border: 2px solid var(--color-red); /* ホバーで赤い枠線 */
	border-radius: 10px;                  /* 角を少し丸くする場合 */
}

@media (max-width:768px){
	.list{
		display: block;
		line-height: 1.5;
		width:100%;
		text-align: center; /* 子要素を中央に揃える補助 */
	}

	.titl_list{
		margin-left: 0; /* 中央寄せなので左マージン削除 */
		text-align: center;
	}

	.list_butn{
		display: flex;           /* 横並びにする */
		justify-content: center; /* 中央寄せ */
		flex-wrap: wrap;         /* 幅狭い場合は折り返す */
		gap: 10px;               /* ボタン間の隙間 */
		margin: 0 auto;          /* 親要素内で中央寄せ */
	}
}
/* スライダー全体 */
.slider-wrapper {
	position: relative; /* 数字ナビや矢印の基準 */
	width: 80%;
	margin: 0 auto 60px auto;
}

/* カード画像を70％に縮小 */
.slide picture {
	display: block;
	width: 95%;
	margin: 0 auto;
}

/* カード間隔を狭くする */
.slider-slick .slick-slide {
	margin: 0 5px;
}

/* Slickスライドの余白調整 */
.slider-slick .slick-list {
	margin: 0 -5px;
}

/* 矢印 */
.slick-prev, .slick-next {

}
.slick-prev.slick-arrow {
	left: -4em;
}
.slick-next.slick-arrow {
	right: -4em;
}
.slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	border: none;
	cursor: pointer;	
	display: block;
	width: 4em;
	height: 4em;
	border-radius: 50%;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	background: url("../img/front-page/btn_right.png") center / contain no-repeat; 
}

.slick-prev.slick-arrow {
	transform: translateY(-50%) scale(-1, 1);
}





.swiper-button-prev, 
.swiper-button-next {
	font-size: 0 !important;
	line-height: 0 !important;
	color: transparent !important;
	text-indent: -9999px !important; /* 文字を画面外へ飛ばす */
	overflow: hidden !important;
}


/* 数字ナビをカード下に固定・中央寄せ */
.slider-slick .slick-dots {
	position: absolute;     /* 親の relative 基準 */
	bottom: -40px;          /* カード下40pxに配置 */
	left: 50%;              /* 親の中央に寄せる */
	transform: translateX(-50%);
	display: flex !important;
	justify-content: center;
	padding: 0;
	margin: 0;
	z-index: 15;
}

/* 数字ボタン */
.slider-slick .slick-dots li button {
	width: auto;
	height: auto;
	background: none;
	padding: 0 6px;
	font-weight: 400;
	font-size: 19px;
}


/* 現在のページ */
.slider-slick .slick-dots li.slick-active button {
	font-weight: bold;
	color: var(--color-red);
}
/* 通常の数字ボタン */
.slider-slick .slick-dots li button {
	color: #888; /* 薄いグレー */
	font-weight: normal;
	background: none;
}
/* SP版で矢印を非表示 */
@media (max-width: 768px) {
	.slick-prev,
	.slick-next {
		display: none !important;
	}
	slider-wrapper {
		position: relative; /* 数字ナビや矢印の基準 */
		width: 100%;
		margin: 0 auto;
	}
	.list{
		align-items: center; /* 左寄せ */
		gap: 10px; /* 上下の間隔 */
	}
	.list_butn li {
		display: inline-block;        /* 横並びでもOK */
		margin-left: 0px;
		padding: 5px 5px;           
		border: 2px solid transparent; 
		transition: border 0.3s ease; 
	}

	.list_butn li:hover {
		border: 2px solid var(--color-red); /* ホバーで赤い枠線 */
		border-radius: 10px;                  /* 角を少し丸くする場合 */
	}
}

/*service*/
.service{
	padding:80px 5%;
	background:#f7f7f7;
	text-align:center;
	background-image:url("../img/front-page/bk_img02_pc.jpg");
	background-size: cover;
	background-position: center;
	margin-bottom: 40px;
}

.service-title{
	font-size:40px;
	margin-bottom:50px;
	font-weight:700;
}

.service-grid{
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: auto;
	gap:20px;
	max-width:1000px; /* 全体幅制御（中央寄せ用） */
	padding:0;
	list-style:none;
}
.service__card {
	width: calc((100% - 40px) / 3);
	border-radius: 31px;
	margin-bottom: 30px;
}
.service__card img{
	border-radius: 25px;
	box-shadow: 1px 1px 3px #5C5252;
	transition: transform 0.3s ease;
	overflow: hidden;
}

.service__card :hover{
	transform: scale(1.1);
}


/* TB：2枚 */
@media screen and (max-width: 1024px) {
	.service__card {
		width: calc((100% - 20px) / 2);
	}
}

/* SP：1枚 */
@media screen and (max-width: 768px) {
	.service__card {
		width: 100%;
	}
}
/* タイトル画像 */
.title-box{
	text-align:center;
}

/* 画像を小さく */
.title-box img{
	width:50%; /* サイズに調整 */
	max-width:100%;
	display:block;
	margin:20px auto 40px auto;
}
@media screen and (max-width:768px){
	.title-box img{
		width:100%;
		display:block;
		margin:20px auto 30px auto;
	}
}
/**/

/* テキスト */
.title-box p{
	font-size:1.3rem;
	margin-bottom: 20px;
}
.service-card{
	background:#fff;
	border-radius:20px;
	padding:40px 30px;
	box-shadow:0 10px 20px rgba(0,0,0,0.15);
	transition:.3s;
}

.service-card:hover{
	transform:translateY(-10px);
	box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.service-card img{
	width:80px;
	margin-bottom:20px;
}

.service-card h3{
	color:#e60012;
	font-size:18px;
	margin-bottom:10px;
}

.service-card p{
	font-size:13px;
	line-height:1.6;
	color:#333;
}
.btn_service {
	display: inline-block;
	color: var(--color-red);
	padding: 5px 10px;
	border: 3px solid var(--color-red);
	border-radius:10px;
	text-decoration: none;
	background-color: #fff;
	transition: 0.3s;
	margin-bottom:30px;
}
.btn_service a{
	font-size: 1.2rem;
	font-weight: 700!important;	
}
.btn_service:hover{
	background: var(--color-red);
	color: #fff;
}
.brn_keeper {
	width:50%;
	margin: 0 auto;
}
.brn_keeper img {
	display: block;
	margin: 0 auto;
}

@media(max-width:768px){
	.brn_keeper {
		width:100%;
		margin: 0 auto;
	}
	.service-grid{
		grid-template-columns:1fr 1fr;
	}
}
.sp-br {
  display: none;
}

/* スマホだけ表示 */
@media screen and (max-width: 767px) {
  .sp-br {
    display: block;
  }
	.btn_service{
		line-height:30px;
	}
}

/*店舗情報*/
.car-card {
	display: flex;
	flex-wrap: wrap;
	justify-content: center; /* 中央 */
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

/* 画像をキレイに */
.car-card img {
	width: 100%;
	height: auto;
	display: block;
}

/* PC：3枚 */
.car-card li {
	width: calc((100% - 40px) / 3);
	overflow: visible;
}

/* TB：2枚 */
@media screen and (max-width: 1024px) {
	.car-card li {
		width: calc((100% - 20px) / 2);
	}
}

/* SP：1枚 */
@media screen and (max-width: 768px) {
	.car-card li {
		width: 100%;
	}
}


/* ボタン */
.shop-btn{
	display:flex;
	align-items: center;  
	gap: 5px;          
	width:fit-content;
	margin-left:auto;
	color:var(--color-red);
	padding:8px 15px;
	text-decoration:none;
	font-size:0.9rem;
	font-weight:700;
	vertical-align: middle;
}
.shop-btn img {
	width: 5px;
	vertical-align: top;
}
.shop-btn:hover{
	opacity:0.8;
}

/* カード本体 */
.shop-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border-radius: 15px; /* ← 角丸 */
	text-decoration: none;
	color: #333;
	border: 1px solid #e6e6e6;

	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
	transition: 0.3s;
}


/* map Area
* -------------------- */
.map-area {
	display: flow-root;
	padding-top: min(8%, 60px);
	background-color: #e6e6e6;
}
.map-area .title-box {
	width: 48%;
	margin: 0 auto;	
}

.map-area .title-box img {
	width: 100%;
	margin: 0;
}
.map-list ul {
	list-style: none;
}
.map-list li {
	position: absolute;
	width: auto;
	font-size: 4.48vw;
	white-space: nowrap;
}
.map-list a {
	display: grid;
	grid-template-columns: 1fr 1em;
	grid-gap: .5em;
	align-items: center;
	color: #000;
	transition: color .5s;
}
.map-list li a:after {
	content: '';
	display: block;
	width: 1em;
	height: 1em;
	margin: 0;
	background: url("../img/index/map/map-arrow.png") no-repeat top left;
	background-size: contain;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, .4);
}

.map-list {
	position: relative;
	z-index: 1;
	width: 92%;
	margin: min(8%, 60px) auto;
	padding: 8% 0 16%;
}

/* SIX スポーツ店 */
.map-list li.six {
	top: 8.5%;
	left: 45%;
}
/* 1st ミニバン店 */
.map-list li.first {
	top: 0;
	left: 8.6%;
}
/* 2nd セダン店 */
.map-list li.second {
	top: 83.8%;
	left: 10%;
}
/* 3rdアウトレット店 */
.map-list li.third {
	top: 75.5%;
	left: 45.3%;
}
/* ファイブスター阿見店 */
.map-list li.ami {
	top: 92%;
	right: 0;
	margin: 0;
	padding-right: .5em;
	border-bottom: .13em solid #848277;
}
@media screen and (min-width: 769px) {
	.map-area {
		padding-top: min(4.2156862%, 43px);
	}
	.map-area .title-box {
		width: min(26.0784313%,266px);
	}
	.map-list {
		width: min(92%,1100px);
		margin: min(8%, 60px) auto;
		padding: 0;
	}
	.map-img {
		/* 		width: min(90.3636363%,994px); */
		width: min(100%,994px);
		margin-bottom: min(9.090909%,100px);
	}
	.map-list ul {
		z-index: 1;
	}
	.map-list li {
		top: 0;
		left: 0;
		width: fit-content;
		font-size: min(2.3vw,1.5em);
	}
	.map-list a {
		position: relative;
	}
	.map-list li.six {
		top: .5%;
		left: 1%;
	}
	.map-list li.first {
		top: 22.5%;
		left: 1%;
	}
	.map-list li.second {
		top: 66.5%;
		left: 1%;
	}
	.map-list li.third {
		top: 85.5%;
		left: 1%;
	}
	.map-list li.ami{
		top: 102%;
		left: 0;
		margin: 0;
		padding: 0 .3em;
		box-sizing: border-box;
		border-bottom: clamp(2px, 0.2727vw ,3px) solid #848277;
	}
	.map-list li a::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 1.3em;
		height: 1.7em;
		margin: 0 0 0 0;
		background: url("../img/index/map/icon_mark.png") no-repeat top left;
		background-size: contain;
		transition: transform .5s;
	}

	.map-list li.six a::before {
		margin: 99% 0 0 285%;
	}
	.map-list li.first a::before {
		margin: 69% 0 0 272%;
	}
	.map-list li.second a::before {
		margin: -10% 0 0 314%;
	}
	.map-list li.third a::before {
		margin: -2% 0 0 235%;
	}
	.map-list li.ami a::before{
		display: none;
	}
	.map-list a:hover::before {
		animation: updown1 2s ease-in-out infinite;
	}
	.map-list ul a::hover {
		color: #e60013;
	}
}
@media screen and (min-width: 1090px) {
	.map-list li.six a::before {
		margin: 203px 0 0 587px;
	}
	.map-list li.first a::before {
		margin: 137px 0 0 557px;
	}
	.map-list li.second a::before {
		margin: -19px 0 0 591px;
	}
	.map-list li.third a::before {
		margin: -8px 0 0 609px;
	}	
}


/* other
* -------------------- */
.other-links {
	display: grid;
	grid-gap: 1em;
	width: 93.3333%;
	margin: 1em auto 3em;
}

.other-links a {
	display: grid;
	grid-template-columns: 3.5em 1fr 1.5em;
	grid-gap: .8em;
	align-items: center;
	padding: .5em;
	font-size: .8em;
	line-height: 1.3;
	background-color: #fff;
	border: 2px solid var(--color-red);
	border-radius: .7em;
}

.other-links a span::after {
	content: attr(data-en);
	display: block;
	font-size: 1em;
	color: currentColor;
}
.other-links a::before {
	content: "";
	width: 100%;
	height: 100%;
	margin: auto;
}
.other-links a::after {
	content: "";
	position: relative;
	display: block;
	width: .8em;
	height: .8em;
	margin: auto;
	border-top: 3px solid var(--color-red);
	border-right: 3px solid var(--color-red);
	transition: .5s;
	transform: translateY(-.12em) rotate(135deg);
}
.other-links .link-flow a::before {
	background: url("../img/front-page/icon_flow.png") center / contain no-repeat;
}
.other-links .link-faq a::before {
	background: url("../img/front-page/icon_faq.png") center / contain no-repeat;
}
.other-links .link-contact a::before {
	background: url("../img/front-page/icon_contact.png") center / contain no-repeat;
}
@media screen and (min-width: 769px) {
	.other-links {
		grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
		grid-gap: .5em;
		width: min(92.549%,1020px);
		margin: 0 auto 3em;
	}
	.other-links a {
		grid-template-columns: 3.0em 1fr 1.5em;
		padding: 1em .5em;
		font-size: 1em;
		line-height: 1.5;
		border-radius: 1.8em;
		border-width: 3px;
	}
}

/*キャンペーン*/
.title-box_campain{
	text-align:center;
}

.title-box_campain img{
	width:50%; 
	max-width:100%;
	display:block;
	margin:0 auto 10px auto;
}

.campaign_bk{
	background-image: url("../img/front-page/bk_camp.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding-top:30px;
	min-height: 60vh;
	display:flow-root;
}
.campaign-cards {
	max-width: 900px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin: 0 auto 50px auto;
}

/* タブレット：2列 */
@media screen and (max-width: 1024px) {
	.campaign-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* スマホ：1列 */
@media screen and (max-width: 768px) {
	.campaign-cards {
		grid-template-columns: 2fr;
	}
	.campaign_bk{
		padding-top:30px;
	}
	.card {
		width: 100% !important;
		margin: 0 auto !important;
	}
	.campaign_bk{
		padding:30px 20px;
	}
	.card .btn {
		display: flex;
		align-items: stretch; /* 高さを揃える */

	}
	.card .btn img {         
		height: auto;         /* 高さは自動 */
		flex-shrink: 0;
		object-fit: cover;    /* 必要なら */
	}

	.card .text {
		display: flex !important;
		flex-direction: column !important;        
		
	}
	.card h3,
	.card p {
		display: block !important;
		font-size: 15px !important;
		margin-bottom: 5px;
	}

	.card p {
		font-size: 16px;
		line-height: 1.5;
		max-height: 90px;  
  
	}
}
/* =========================
カードデザイン
========================= */
.card{
	width: 350px;
	margin: auto;
	gap:20px;

}
.card a {
	display: block;
	text-decoration: none; 
	color: #333;
	background: #fff;
	border-radius: 12px;
	transition: 0.3s;
}

/* ホバー */
.card a:hover {
	transform: translateY(-5px);
}


/* =========================
画像
========================= */
.card img {
	width: 100%;
	height: auto;
	display: block;
}



.card h3 {
	font-size: 1.2rem;
	margin: 12px;
}

.card p {
	font-size: 14px;
	margin: 0 12px 16px;
	line-height: 1.6;
}
/* =========================
FUN
========================= */
.wrapper_fun{
	background-image: url("../img/front-page/bk_fun.jpg");
	background-size: cover; 
	background-repeat: no-repeat;
	display: flow-root;
}
@media(max-width:768px){
	.wrapper_fun{padding-bottom: 60px;}
}
.buttons{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 100%; 
	padding-left:30% ;
	margin:40px auto;
}
.buttons fun{
	width:20%;
}
.buttons li{
	margin-bottom: 30px;
	border:3px solid var(--color-red);
	border-radius: 20px;
	overflow: hidden;
}

.buttons li img {
	display: block;
	width: 100%;
	transition: transform 0.3s ease; 
}

.buttons li:hover img {
	transform: scale(1.1);
}
.buttons btn{
	border-radius: 20px;
	gap:20px;
}
.character img{
	width: 100%;
	height: auto;
	object-fit: cover;
}
.buttons img {
	width: 35%;
	transition: transform 0.3s ease;
}

.buttons img:hover {
	transform: scale(1.1);
}

@media screen and (max-width:1024px){
	.wrapper_fun{
		background-image:url("../img/front-page/bk_fun_tb.jpg");
		background-size: cover; 
		background-repeat:no-repeat;
	}
	.buttons img {
		width: 60%;
	}
}

.buttons .btn__btn{
	margin-bottom: 15px;
}

.buttons .btn__btn:last-child{
	margin-bottom: 0;
}
@media screen and (max-width:768px){
	.wrapper_fun{
		background-image:url("../img/front-page/bk_fun_sp.jpg");
		background-size: cover; 
		background-repeat:no-repeat;
	}
	.buttons{
		display: flex;
		flex-direction: column;
		align-items: flex-end; /* ← 右寄せに変更 */
		gap: 20px;
		padding-right: 20px; /* ← 右に20px余白 */
	}

	.buttons img{
		width: 100%;
		max-width: 400px;
	}

}


/*Pagetoplink*/
#page-top a img {
	transition: 0.3s;
}

#page-top a:hover img {
	content:url("../img/front-page/pagetop_hover.png");
}

#page-top {
	position: fixed;
	right: 10px;
	bottom: 50px;
	opacity: 1;
	transform: none; 
	z-index:7;
}

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(100px);
	}
}


/*----------------------------------------
fadeUp
----------------------------------------*/
.fadeUp {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.footer-container {
	width:90%;
}
.fadeUp.is-show {
	opacity: 1;
	transform: translateY(0);
}



/* 店舗情報
-------------------- */
.link-shop-all {
	position: relative;
	width: 	min(92% ,1300px);
	margin: 0 auto 1em;
	text-align: right;
}
.link-shop-all a {
	display: grid;
	grid-template-columns: 1fr .5em;
	align-items: center;
	grid-gap: .5em;
	color: var(--color-red);
	text-decoration: underline;
}
.link-shop-all a::after {
	content: "";
	position: relative;
	display: block;
	width: .5em;
	height: .5em;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transition: .5s;
	transform: translateX(-50%) rotate(45deg);
}
@media (min-width: 769px) {
	.link-shop-all {
		top: -4em;
	}
}

/* header
-------------------- */
.warpper {
	min-width: 0;
		z-index:20;
}
.header-box {
	position: fixed;
	top: 0;
}
.header-list-flex {
	padding: 18px 3%;
}
.header-list-flex h1.logo-5star {
	width: 140px;
}

.header-box {
	width: 100%;
	border-radius: 0;
}
.header-list-flex {
	background-color: #fff;
}
.sp-menu-box {
	width: 50px;
	height: 46px;
	padding: .5em;
	background-color: var(--color-red);
	border-radius: .3em;
}
.header-box .sp-menu-box {
	min-height: 30px;
}
.sp-menu-ber,
.header-box span:nth-child(3) {
	width: 70%;
	height: 3px;
	background-color: #fff;
	border-radius: 3em;
	transition: .2s;
}
.header-box .sp-menu-ber:nth-child(1) {
	left: 50%;
	top: 22%;
	transform: translate(-50%, 0);
}
.header-box .sp-menu-ber:nth-child(2) {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.header-box span:nth-child(3) {
	right: auto;
	left: 50%;
	bottom: 20%;
	transform: translate(-50%, 0);
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.header-box.open .sp-menu-ber:nth-child(1) {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(135deg);	
}
.header-box.open .sp-menu-ber:nth-child(2) {
	display: none;
}
.header-box.open span:nth-child(3) {
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-135deg);

}
.nav.open {
	top: 77px;
}

.header-ul span {
	background-color: var(--color-red);
}

.header-ul ul li {
	background-color: #e1e1e1;
}
.header-ul ul li {
	border-bottom-color: #fff;
}
.header-ul a:before {
	background: none;
}
.header-ul span a {
	padding: .8em .6em;
	font-size: .9em;
}
.header-ul ul:not(.contact-list) a {
	display: grid;
	grid-template-columns: .6em 1fr;
	grid-gap: .2em;
	align-items: center;
	padding: .8em .6em;
	font-size: .9em;
	color: var(--color-red);
	letter-spacing: normal;
}
.header-ul ul:not(.contact-list) li a::before {
	content: "";
	position: relative;
	display: block;
	width: .5em;
	height: .5em;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transition: .5s;
	transform: translateX(-50%) rotate(45deg);	
}
.header-ul .contact-list li {
	background-color: var(--color-red);
}
.header-ul .contact-list li:nth-child(1) span {
	width: fit-content;
}
.header-ul .contact-list li:nth-child(1) span a {
	padding: .2em 2.8em;
	font-size: 4.8vw;
}
@media (min-width: 769px) {	
	.header-box {
		position: sticky;
		top: 0;
	}
	.header-list-flex {
		width: 100%;
		max-width: 100%;
		padding: .85em;
		box-shadow: none;
		background-color: rgb(255 255 255 / .8);
		border-radius: 0;
	}
	.header-list-flex h1.logo-5star {
		position: absolute;
		z-index: 5;
		top: 50%;
		left: 50%;
		width: min(10.5%,120px);
		transform: translate(-50%,-50%);
	}
	.nav {
		width: 100%;
	}
	.nav.open {
		top: 0;
	}	
	.header-ul {
		justify-content: center;
		font-size:clamp(.69em,1.5vw,.8em);
	}
	.header-ul li {
		padding-left: 0;
	}
	.header-ul li:nth-child(4) {
		margin-right: min(8%,120px);
	}
	.header-ul li:nth-child(5) {
		margin-left: min(8%,120px);
	}
	.header-list-flex a {
		color: #000;
	}
	.header-list-flex nav ul a {
		width: auto;
	}
	.header-ul .nav-contact span a {
		margin-left: 2em;
		padding: .4em .6em;
		color: #fff;
		background-color: #010101;
		border-radius: .5em;
	}
	.header-ul li a:hover:before,
	.header-ul li a:before {
		background: none;
	}
	.header-list-flex a:after {
		display: grid;
	}
	.header-ul li a:before {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: 0;
		background: none;
		transition: .2s;
	}
	.header-ul li a:hover:before {
		left: 0;
	}
	.header-list-flex :not(.logo-5star) a:before {
		border-top: 2px solid transparent;
	}
	.header-list-flex :not(.logo-5star) a:after {
		content: "";
		border-bottom: 2px solid transparent;
		transition: .2s;
	}
	.header-list-flex .nav-contact a:before,
	.header-list-flex .nav-contact a:after {
		border: none;
	}
}
@media (hover: hover) {
	.logo-5star a {
		transition: .2s;
	}
	.logo-5star a:hover {
		transform: scale(1.1);
	}
	.header-list-flex a:hover:before,
	.header-list-flex a:hover:after {
		border-color: var(--color-red);
	}
	.header-list-flex .nav-contact a {
		transition: background .2s;
	}
	.header-list-flex .nav-contact a:hover {
		background-color: var(--color-red);
	}
}
/* footer
 * --------------------- */
footer {
	display: flow-root;
	color: #fff;
	background-color: #020202;
}
.footer-container {
	width: 100%;	
}
.footer-nav {
	font-size: .9em;
	border-bottom: 1px solid #7e7b7b;
}

.footer-nav a {
	display: grid;
	grid-template-columns: .5em 1fr;
	grid-gap: .2em;
	align-items: center;
	width: 100%;
	padding: 1.5em 1.8em;
	color: var(--color-red);
	border-top: 1px solid #7e7b7b;
}
.footer-nav a::before {
	content: "";
	position: relative;
	display: block;
	width: .5em;
	height: .5em;
	margin-top: -.1em;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transition: .5s;
	transform: translateX(-50%) rotate(45deg);
}
.footer-nav-sub {
	border-bottom: 1px solid #7e7b7b;
}
.footer-nav-sub a {
	color: #fff;
	border-top: 1px solid #7e7b7b;
}
.brand-logos {
	display: grid;
	grid-gap: 2em;
	margin: 2em 1em;
}
.brand-logos a {
	display: grid;
	grid-template-columns: 30% 1fr;
	grid-gap: 1em;
	align-items: center;
	font-size: .9em;
	line-height: 1.4;
	color: #fff;
}
/* sns
 * -------------------- */
.sns-icons {
	margin: 2em auto;
	color: #fff;
}
.sns-title {
	text-align: center;
}
.sns-icons-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: .5em 1em;
	width: 100%;
	margin: 2em auto;
}
.sns-icons-list li {
	width: calc( (100% - 2em) / 3);
}
.sns-icons-list li a {
	padding: .5em;
	font-size: 0;
}
.sns-icons-list li a img {
	display: block;
	width: 60%;
	height: auto;
	margin: auto;
}
.copyright {
	padding: 1em;
	text-align: center;
}


@media (min-width: 769px) {
	.footer-container {
		display: grid;
		grid-template-columns: 1fr 12em;
		width: min(92%, 1000px);
		margin: 4em auto 4em;
	}
	.footer-nav {
		display: grid;
		grid-template-columns: auto 1fr;
		column-gap: 3em;
		border-bottom: none;
	}
	.footer-nav-sub,
	.footer-nav a {
		border: none;
	}
	.footer-nav a {
		grid-template-columns: 1fr;
		padding: 0;
	}
	.footer-nav a::before {
		display: none;
	}
	.footer-nav > li:nth-child(1) {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}
	.footer-nav > li:nth-child(2) {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	.footer-nav > li:nth-child(3) {
		grid-column: 1 / 2;
		grid-row: 3 / 7;
	}
	.footer-nav > li:nth-child(4) {
		grid-column: 1 / 2;
		grid-row: 7 / 10;
	}
	.footer-nav > li:nth-child(5) {
		grid-column: 2 / 3;
		grid-row: 1 / 4;
	}
	.footer-nav > li:nth-child(6) {
		grid-column: 2 / 3;
	}
	.footer-nav > li:nth-child(7) {
		grid-column: 2 / 3;
	}
	.footer-nav > li:nth-child(8) {
		grid-column: 2 / 3;
	}
	.footer-nav > li:nth-child(9) {
		grid-column: 2 / 3;
	}
	.footer-nav > li:nth-child(10) {
		grid-column: 2 / 3;
	}
	.footer-nav > li:nth-child(11) {
		grid-column: 2 / 3;
	}
	
	.brand-logos {
		grid-gap: 0;
		margin: 0 0 0 2em;
	}
	.brand-logos a {
		grid-template-columns: 1fr;
		grid-template-rows: max-content 1fr;
		grid-gap: 0;
	}
	.brand-logos a img {
		width: 4.5em;
		margin-bottom: .5em;
	}
	
	.sns-icons-list li {
		width: auto;
	}
}

@media (min-width: 910px) {
	.footer-nav {
		grid-template-columns: auto auto 1fr;
	}
	
	.footer-nav > li:nth-child(1) {
		grid-column: 1 / 2;
		grid-row: 1 / 4;
	}
	.footer-nav > li:nth-child(2) {
		grid-column: 1 / 2;
		grid-row: 4 / 5;
	}
	.footer-nav > li:nth-child(3) {
		grid-column: 1 / 2;
		grid-row: 5 / 8;
	}
	.footer-nav > li:nth-child(4) {
		grid-column: 1 / 2;
		grid-row: 9 / 10;
	}
	.footer-nav > li:nth-child(5) {
		grid-column: 2 / 3;
		grid-row: 1 / 7;
	}
	.footer-nav > li:nth-child(6) {
		grid-column: 3 / 4;
		grid-row: 1 / 2;
	}
	.footer-nav > li:nth-child(7) {
		grid-column: 3 / 4;
		grid-row: 2 / 3;
	}
	.footer-nav > li:nth-child(8) {
		grid-column: 3 / 4;
		grid-row: 3 / 4;
	}
	.footer-nav > li:nth-child(9) {
		grid-column: 3 / 4;
		grid-row: 4 / 5;
	}
	.footer-nav > li:nth-child(10) {
		grid-column: 3 / 4;
		grid-row: 5 / 6;
	}
	.footer-nav > li:nth-child(11) {
		grid-column: 3 / 4;
		grid-row: 6 / 7;
	}	
}

@media (min-width: 1100px) {
	.footer-nav {
		grid-template-columns: auto auto auto 1fr;
	}	
	.footer-nav > li:nth-child(1) {
		grid-column: 1 / 2;
		grid-row: 1 / 4;
	}
	.footer-nav > li:nth-child(2) {
		grid-column: 1 / 2;
		grid-row: 4 / 5;
	}
	.footer-nav > li:nth-child(3) {
		grid-column: 1 / 2;
		grid-row: 5 / 8;
	}
	.footer-nav > li:nth-child(4) {
		grid-column: 2 / 3;
		grid-row: 1 / 7;
	}
	.footer-nav > li:nth-child(5) {
		grid-column: 3 / 4;
		grid-row: 1 / 7;
	}
	.footer-nav > li:nth-child(6) {
		grid-column: 4 / 5;
		grid-row: 1 / 2;
	}
	.footer-nav > li:nth-child(7) {
		grid-column: 4 / 5;
		grid-row: 2 / 3;
	}
	.footer-nav > li:nth-child(8) {
		grid-column: 4 / 5;
		grid-row: 3 / 4;
	}
	.footer-nav > li:nth-child(9) {
		grid-column: 4 / 5;
		grid-row: 4 / 5;
	}
	.footer-nav > li:nth-child(10) {
		grid-column: 4 / 5;
		grid-row: 5 / 6;
	}
	.footer-nav > li:nth-child(11) {
		grid-column: 4 / 5;
		grid-row: 6 / 7;
	}	
}

/* スマホ：1列 */
@media screen and (max-width: 768px) {
	.card picture, .card .text  {
		width:50%;
	}
	 .card .text p{
		font-size:14px;
	}
.news_link a{
	 position: relative;
	display:display: inline-block;;
	pointer-events: auto !important;
    position: relative;
    z-index:10;
}
}
@media screen and (min-width:768px){
	.card .text{
		padding-bottom:1em;
	}
}