/* CSS Document */

#header{
  height: 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 10;
  position: fixed;
  top:0;
  width: calc(100% - 60px);
  transform: skewX(-20deg);
  background: #94082f;
  left: 30px;
  align-items: center;
}


#header h1{
  display: flex;
  justify-content: center;
  align-items: center;
  transform: skewX(20deg);
}

#header h1 a{
	margin-left: 30px;
}

#header h1 span{
	text-indent: -9999px;
	display: block;
	width: 360px;
	aspect-ratio:50/8;
	background: url("../img/logo.png") center;
	background-size: cover;
}

.pc-navi{
	display: flex;
  align-items: center;
  transform: skewX(20deg);
  padding-right: 30px;
}


.pc-navi #g-navi {
	height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.pc-navi #g-navi .g-navi-right{
	display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.g-navi-right .tel-box{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 15px;
  font-size: 1.2rem;
  align-items: center;
  letter-spacing: 0.1rem;
  font-style: italic;
}

.g-navi-right .tel-box a{
    display: flex;
    flex-direction: row;
    color: #fff;
    align-items: center;
    gap: 5px;
}

.g-navi-right .tel-box p{
	color: #fff;
}

.pc-navi #g-navi ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}


.pc-navi #g-navi ul li {
    margin: 0;
}


.pc-navi #g-navi ul li a {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
  position: relative;
  font-style: italic;
}

.pc-navi #g-navi ul li a::after {
	position: absolute;
	content: '/';
	display: block;
	width:5px;
	top: 50%;
	right: -2px;
	transform: translate(0,-50%);
	transition: all 300ms ease-in-out;
	color: #fff;
}


#header #g-navi ul li a p::before {
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #fff;
	bottom: 0;
	left: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease-in-out;
}

#header #g-navi ul li a:hover p::before {
	transform: scaleX(1);
}

.pc-navi #g-navi ul li:last-child a::after {
	display: none;
}

.pc-navi #g-navi ul li a span {
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;    
  color: #fff;
  text-shadow: 1px 1px 4px #000;
}

.pc-navi #g-navi ul li a p {
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.04rem;
  color: #fff;
  position: relative;
  top: 1px;
}


.contact-header .btn{
  display: flex;
  background: #f4d206;
  align-items: center;
  color: #fff;
  justify-content: center;
  transform: skewX(-20deg);
  gap: 5px;
  padding: 2px 20px;
  border: 1px solid #fff;
  font-size: 20px;
  font-weight: 600;
}

.contact-header .btn::after{
  display: none;
}

.icon-box{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sns-box{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  gap: 5px;
}


#header.HeightMin{
  position: fixed;
  z-index: 999;
  animation: DownAnime 0.5s forwards;
  width: 100%;
  left: 0;
  height: 70px;
}

@keyframes DownAnime{
  from {
  	opacity: 0;
/*	transform: translateY(-170px);*/
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}


#header.HeightMin h1,
#header.HeightMin .pc-navi{
  transform: inherit;
}



#header.HeightMin .pc-navi .inquiry-box a{
	height: 70px!important;
	padding: 0 1rem;
}

#header.HeightMin .pc-navi .inquiry-box i {
	font-size: 14px;
}

#header.HeightMin .pc-navi .inquiry-box p {
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.1rem;
    z-index: 1;
    position: relative;
	line-height: 1;
}


#header.HeightMin .g-navi-right .tel-box {
  display: none;
}

#header.HeightMin .pc-navi #g-navi .g-navi-right {
  gap:0;
}

#header.HeightMin .icon-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

@media(max-width: 1460px){

  #header.HeightMin .pc-navi #g-navi ul li a p {
    font-size: 1.05rem;
    letter-spacing: 0.02rem;
  }
  
   #header.HeightMin .sns-box {
    margin-left:0;
  }
}

@media(max-width: 1360px){
  
  #header {
    width: calc(100% - 40px);
    left: 20px;
  }
  
  #header h1 span {
    width: 320px;
    background: url(../img/logo.png) center no-repeat;
    background-size: contain;
  }
  
  .pc-navi #g-navi .g-navi-right {
    gap: 2px;
  }
  
  .pc-navi #g-navi ul li a p {
    font-size: 1.05rem;
  }
  
  .contact-header .btn {
    padding: 2px 15px;
    font-size: 1.1rem;
  }
  
  .g-navi-right .tel-box {
    gap: 10px;
    font-size: 1.1rem;
  }
  
  #header.HeightMin .icon-box .sns-box{
    display: none;
  }
  
  
}

@media(max-width: 1200px){
	
  #header {
      width: calc(100% - 0px);
      left: 0;
      transform: inherit;
  }
  
  #header h1 {
    transform: inherit;
  }
	
	#header h1 a {
		margin-left: 20px;
	}
  
  
  #header h1 span {
    width: 280px;
  }
  
  .pc-navi {
    transform: inherit;
    padding-right: 20px;
  }
  
  .contact-header .btn {
    transform: inherit;
  }
  
  .contact-header .btn {
      padding: 1px 10px;
      font-size: 1rem;
  }
  
  header .icon-box{
    gap: 5px;
    display: flex;
    flex-direction: column;
  }
  
  .sns-box {
    margin-left: 0;
  }
  
  .sns-link {
    height: 30px;
  }
	
	.g-navi-right .tel-box {
    padding-right: 15px;
    font-size: 1rem;
	}
	
	.pc-navi #g-navi ul li a {
    	padding: 0px 15px;
	}
	
	.pc-navi #g-navi .up-g-navi li {
		margin: 0 5px !important;
	}
	
	
	.pc-navi #g-navi .up-g-navi {
		margin-bottom: 5px;
	}

	.pc-navi #g-navi ul li a span {
		font-size: 10px;
		line-height: 1;
	}
	
	.pc-navi #g-navi ul li a p {
		font-size: 0.95rem;
	}
}
/*

@media(max-width: 1000px){
	

	#header {
		height: 70px;
	}
	
	#header h1 a {
    	height: 70px;
	}
	
	.inquiry-box a {
		height: 70px;
		width: 100px;
	}
	

	.g-navi-right .tel-box {
    	padding-right: 10px;
		font-size: 0.9rem;
    }
	
    .pc-navi .inquiry-box p {
        letter-spacing: 1px;
        font-size: 1rem;
    }
	
	.pc-navi #g-navi .g-navi-right {
		gap: 0;
	}
	
	.pc-navi #g-navi ul li a {
        padding: 0px 10px;
    }
	
	#header h1 a {
		width: 240px;
		margin-left: 10px;
	}
	
	#header h1 span {
    	width: 240px;
	}
	
	#header.HeightMin h1 a {
    	width: 240px;
        margin-left: 10px;
    }
	
	#header.HeightMin h1 span {
    	width: 100%;
	}
	
	 #header.HeightMin .pc-navi .inquiry-box p {
        letter-spacing: 0;
        font-size: 1rem;
    }
	
	
	.pc-navi #g-navi ul li a p {
		font-size: 0.95rem;
	}
	
	
	
	
	
}
*/



/*　s--navi */

@media(min-width:1001px){
	.sp-navi{
		display:none;
	}
}


@media(max-width:1000px){
  
  .fv-bike span {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    bottom: 0;
    left: 0;
    background: url(../img/chief-vintage-light.png) no-repeat center;
    background-size: 100% auto;
    aspect-ratio: 16 / 9;
  }
  
  .feature-item {
    padding: 30px 15px;
    text-align: center;
  }
	
	
	
	#header {
		align-items: center;
		padding: 0;
		box-shadow: none;
		z-index: 10;
		background: #fff;
    height: 70px;
	}
	
	#header h1 {
		display: block;
		background: #94082f;
		text-align: left;
		z-index: 99;
    height: 70px;
		width: 100%;
	}
  
   #header h1 a {
    margin-left: 0;
    height: 70px;
    display: flex;
    border-bottom: 3px solid #fff;
    padding-left: 10px;
     box-shadow: 1px 1px 5px #ccc;
  }
	
	.pc-navi{
		display: none;
	}
	
	
	@keyframes DownAnime{
	  from {
		opacity: 1;
		transform: translateY(0);
	  }
	  to {
		opacity: 1;
		transform: translateY(0);
	  }
	}

	
	/*ハンバーガーメニュー*/
	
	.sp-navi .toggle_btn{
		display: block;
		z-index: 100;
	}
	
	
	#sp-navi {
		display: block;
		position: fixed;
		top: -100vh;
		right: 0;
		bottom: 0;
		width: 100%;
		color: #fff;
		padding: 70px 0 0; 
		background-color: #94082f;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 20;
		opacity: 0;
		transition: ease-in-out 0.5s;
    height: 0;
	}

	#sp-navi .sp-nav-menu a {
    color: #94082f;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    width: 100%;
    opacity: 0.9;
    border-bottom: 1px solid rgba(148, 8, 47, 0.25);
    position: relative;
	}
	
	#sp-navi .sp-nav-menu a::before {
		position: absolute;
        display: block;
        content: '';
        width: 5px;
        aspect-ratio: 1 / 1;
        border-top: 1px solid #94082f;
        border-right: 1px solid #94082f;
        transform: rotate(45deg) translateY(-50%);
        right: 20px;
        top: 50%;
	}
	
	
	#sp-navi a p{
    letter-spacing: 1px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
	}	
	
	
	.sp-nav-menu a p::before{
		position: absolute;
		content: '';
		display: block;
		width: 10px;
		background: url("../img/decorate/title-dec.png");
		background-size: 100% 100%;
		aspect-ratio:35/50;
		left: 0;
	}
	
	.sp-menu-btn ul{
		display: flex;
		flex-direction: row!important;
		gap:10px;
	}
	
	
	.sp-menu-btn p,
	.sp-menu-btn span{
		color: #94082f;
        font-size: 14px;
        letter-spacing: 2px;
        padding-right: 0;
    }

	.sp-menu-btn p {
		display: flex;
		flex-direction: row;
		gap:5px;
	}
	
	.sp-menu-btn p span {
		padding-right: 0!important;
    color: #94082f!important;
	}
	
	.open #sp-navi {
		opacity: 1;
		top:0;
		height: 100vh;
		background: #fff;
	}

	.sp-nav-menu {
		padding: 0;
		margin: 0 auto;
		display: grid;
    grid-template-columns: repeat(1, 1fr);
	}

	#sp-navi ul.nav-menu {
	  margin-bottom: 60px;
	  border-top: solid 1px #fff;
	}

	#sp-navi ul.nav-menu li {
	  position: relative;
	  margin: 0;
	  padding: 20px 0;
	  border-bottom: solid 1px #fff;
	}

	#sp-navi ul.nav-sns li {
	  padding: 5px 0;
	}

	.toggle_btn {
		display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    transition: all .5s;
    cursor: pointer;
    z-index: 20;
    margin-right: 1px;
	}
	
	.toggle_btn span {
    display: block;
    position: absolute;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all .3s;
    transform: translateX(-50%);
	}
	

	.toggle_btn span:nth-child(1) {
		top: 16px;
	}

	.toggle_btn span:nth-child(2) {
		top: 50%;
		transform: translate(-50%,-50%);
	}

	.toggle_btn span:nth-child(3) {
		bottom: 16px;
	}

	.open .toggle_btn span {
	    background-color: #fff;
		background: #fff;
	}
	
	.open .toggle_btn{
		border:1px solid #fff;
	}

	.open .toggle_btn span:nth-child(1) {
		-webkit-transform: translateY(10px) rotate(-315deg);
		height: 1.5px;
		left: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
		top: 50%;		
	}

	.open .toggle_btn span:nth-child(2) {
	  opacity: 0;
	}

	.open .toggle_btn span:nth-child(3) {
		-webkit-transform: translateY(-10px) rotate(315deg);
		height: 1.5px;
		left: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
		top: 50%;
	}

	#mask {
	  display: none;
	  transition: all .5s;
	}

	.open #mask {
	  display: block;
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100vh;
	  background: #fff;
	  opacity: .6;
	  z-index: 10;
	  cursor: pointer;
	}
	
	
	.sp-menu-info{
		text-align: left;
		margin-top:20px;
		margin: 0 auto 80px;
	}
	
	.sp-menu-info .sp-menu-btn{
        margin: 10px 0;
        padding: 0 20px;
    }
	
	.sp-menu-btn ul,
	.sp-menu-btn ul li,
	.sp-menu-btn ul li a{
		width: 100%;
	}
	
	.sp-menu-info .sp-menu-btn a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 5px 16px 5px;
    transition: all 500ms ease-in-out;
    color: #94082f;
    gap: 5px;
    background: #fff;
    border: 2px solid #94082f;
  }
  
  #sp-navi .sp-menu-btn a p {
     color: #94082f;
  }
  
  #sp-navi .btn::before{
    display: none;
  }
	
	.sp-menu-info a:hover{
		opacity: 0.8;
	}
	
	
	.sp-menu-logo{
		width: 300px;
		margin: auto;
	}
	
	.sp-detail-info p{
		font-size: 13px;
        line-height: 18px;
        padding-bottom: 8px;
	}
	
	.sp-detail-info a i{
		font-size:8px;
		position: relative;
		top:-2px;
		left:2px;
	}
	
	.sp-detail-info{
        color: #fff;
        padding: 20px;
        text-align: center;
        background:#94082f;
        background-size: 100% 100%;
    }
	
  
  
  
	.ft-map,
	.ft-map iframe{
		width: 100%;
		height: 450px;
	}
	
	.menu-sp-copy{
        color: #fff;
        text-align: center;
        padding:5px  10px;
        background: #000;
	}
	
	.sp-detail-info dl{
		margin-top: 10px;
	}
	
	.sp-detail-info dl dt{
		font-size: 1.15rem;
	}
	
	.sp-menu-group-link{
		gap: 10px;
		padding: 20px 20px 0!important;
	}
	
	.sp-menu-group-link p{
		color: #000;
        font-size: 1rem !important;
        text-align: center !important;
        margin: auto;
        justify-content: center !important;
	}
	
	.sp-navi .footer-logo span {
        width: 240px;
    }
	
	.sp-menu-info dl dd{
		color: #fff;
		text-align: left;
	}
  
  
  .sp-menu-info iframe{
    width: 100%;
    height: 400px;
  }
  
  .sp-logo span{
    display: block;
    background:url("../img/logo.png") no-repeat;
    background-size: contain;
    width: 280px;
    aspect-ratio: 53/8;
  }
  
  
  .sp-navi .feature {
    position:inherit;
    background: #fff;
  }
  
  .sp-navi .feature .fv-container{
    align-items: center;
    width: 100%;
    flex-direction: column;
    padding: 20px;
    border-top:1px solid rgba(161,0,0,0.5);
    border-bottom:1px solid rgba(161,0,0,0.5);
    display: flex;
  }
  
  .sp-navi .feature .fv-bike span {
    position: inherit;
  }

   .sp-navi .feature-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
  
  .sp-navi .feature-item {
    padding: 0;
  }
  
  .sp-navi .feature-item p {
    margin-top: 10px;
    font-style: italic;
  }
  
  .sp-navi .feature-item p a {
    font-size: 1.1rem;
    border: 2px solid #fff;
    background:#000;
  }
  
  .sp-navi .feature-item:last-child p a {
      background:#000;
  }
  
  .sp-navi .fv-bike{
    width: 70%;
  }
  
  .sp-detail-info .sns-box{
    margin-top: 10px;
    justify-content: flex-start;
  }

}


@media(max-width:600px){


	#sp-navi{
		width: 100%;
    
	}
	
	.sp-menu-btn p span {
        font-size: 1rem !important;
        letter-spacing: 1px !important;
    }
	
	#sp-navi {
    	padding: 70px 0 0;
	}
  
	.sp-detail-info dl dd {
		font-size: 0.9rem;
		letter-spacing: 0.08rem;
	}
	
	.sp-menu-group-link {
        grid-template-columns: repeat(1, 1fr)!important;
    }
	
	.sp-menu-info .sp-menu-btn a {
		flex-direction: column;
		align-content: center;
	}
	
}


@media(max-width:400px){

	.sp-menu-btn-inquiry p{	
	    position: relative;
    	top: -2px;
		letter-spacing: 4px!important;
	}
}

/*　s--navi ↑↑↑↑  /////////////////　*/