
.btnPageBox{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 100px;
}


.pageContInnerWrap{
	max-width: 1080px;
	margin: 0 auto;
}

.pageContInner{
	margin-bottom: 150px;
	font-weight: bold;
	color: #00053a;
}

.innerTite{
	font-size: 3.6rem;
	text-align: center;
	margin-bottom: 45px;
}

.innerIntro{
	text-align: center;
	margin: 30px 0 60px;
}

.ownCarList{
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}


.ownCarList li{
	width: calc(100% / 3 - 50px);
	margin-bottom: 50px;
}

.thumb {
  width: 100%;
  height: 230px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ownCarList li a{
	color: #00053a;
}

.carName{
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.5;
}

.carName span{
	font-size: 1.4rem;
	display: block;
	text-align: center;
}	

.carPersonalBox{
	text-align: center;
	margin-top: 20px;
}

.carPersonal{
	display: inline-block;
	color: #fff;
	text-align: center;
	background: #a6a6a6;
	border-radius: 50px;
	padding: 0 20px;
	margin: 0 auto;
}

.innerItem dl{
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid #ededed;
	display: flex;
}

.innerItem dt{
	width: 23%;
}

.innerItem dd{
	width: 77%;
	font-weight: normal;
	color: #000;
	line-height: 2;
}

.innerItemTxt{
	border-top: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
	padding: 30px 0;
}

.innerItemTxt dt{
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.innerItemTxt dd{
	font-weight: normal;
	color: #000;
	line-height: 1.5;
	margin-bottom: 20px;	
}

.sighnature{
	display: block;
	text-align: right;
	font-weight: normal;
	color: #000;
}


/*------ detail-------*/
.detailHead{
	align-items: flex-start!important;
	margin-bottom: 30px;
}

.detailHead .contentTitle{
	margin-bottom: 0;
}


.detailHead .contentTitle strong{
	font-size: 3.6rem;
	font-weight: bold;

}
.detailHead .contentTitle span{
	font-size: 1.4rem;
}

.cateList{
	display: flex;
	gap: 20px;
}

.cateList li{
	text-align: center;
	width: 130px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	font-weight: bold;
}

.cateList li.cate_1{
	background: #00b3a6;
}

.cateList li.cate_2{
	background: #006c54;
}

.cateList li.cate_3{
	background: #006c54;
}

.pageDetailInfoWrap{
	display: flex;
	justify-content: space-between;
}

.imgListWrap{
	width: 75%;
	position: relative;
}


.imgList{
	position: relative;
	z-index: 1;
	max-height: 640px;
	overflow: hidden;
} 


.imgList img {
  width: 100%;
  height: auto;
  display: block;
}

.imgList .slick-slide li {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 640px;
}



#arrows_pos{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 96%;
	height: 64px;
	z-index: 2;
}

#arrows_pos .arrow{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	cursor: pointer;
	max-width: 50px;	
}

#arrows_pos .arrow:hover{
	opacity: 0.7;
}

#arrows_pos .arrow.prev{
	left: 0;
}	

#arrows_pos .arrow.next{
	right: 0;
}
 
.imgList .slick-dots {
	bottom: 20px;
}

.imgList .slick-dots li button::before {
	opacity: 1;
	color: #fff;
}

.imgList .slick-dots li.slick-active button::before {
  opacity: 1;
  color: #00053a;
}


.detailInfoBox{
	width: 22%;
}

.detailInfo{
	margin-bottom: 20px;
}

.infoItemList{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #ccc;
	border-bottom:none;
	font-size: 1.4rem;
}

.infoItemList dt,
.infoItemList dd{
	border-bottom: 1px solid #ccc;
	padding: 10px 12px;
}	

.infoItemList dt{
	border-right: 1px solid #ccc;
	background: #ededed;
	width: 32%;
}

.infoItemList dd{
	width: 68%;
}

.btnScale {
  display: flex;
  justify-content: center;
  margin: 15px auto 0;
  gap: 10px;
  width: 100%;
  font-size: 15px;
}

.btnScale img{
	max-width:16px ;
}


.detailInfoBox .btnCommon{
	width: 100%;
}


/*--- js-modal ---*/

.js-modal.open {
    visibility: inherit;
    height: 100vh;
    z-index: 1050;
}




.modal-open{
  cursor: pointer;  
}

.modal {
	/*
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100vw;
    left: 0;
    z-index: 1050;
    */
    visibility: hidden;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100vw;
    left: 0;
    z-index: -1;
}

.modal.open {
    visibility: inherit;
    height: 100vh;
    z-index: 1050;
}


.modal_bg{
  background: rgba(0,0,0,0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

/*
.modal_content {
    left: 50%;
    padding: 50px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}
*/

.modal_content {
  background: #fff;
  left: 50%;
  padding: 50px;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 70%;
  /*max-width: 830px;*/
}


.btnCloseModal{
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50px;
  right: 50px;
  border: 1px solid #00053a;
  border-radius: 10px;
  cursor: pointer;
  z-index: 3;
}

.btnCloseModal span {
    position: absolute;
    width: 20px;
    height: 1px;
    left: 10px;
    top: 18px;
    background-color: #00053a;
}

.btnCloseModal span:nth-of-type(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.btnCloseModal span:nth-of-type(2) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.seatImgLoop{
	position: relative;
	z-index: 2;
}


.seatImgLoop .slick-slide img {
  margin: auto;
  height: 100%;
  width: auto;
  max-width: initial;
}
.seatImgLoop .slick-prev::before, 
.seatImgLoop .slick-next::before {
	color: #00053a;
	font-size: 30px;
}	

.seatImgLoop .slick-prev {
  left: -40px;
}


.seatImgLoop .slick-slide li {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 640px;
}


.infoBox{
	margin-bottom: 50px;
}

.infoBoxTitle{
	font-weight: bold;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ededed;
}

.detailInfoBox .infoBoxTitle {
	padding-bottom: 5px;
	margin-bottom: 10px;	
}


.optionList{
	display: flex;
	gap:20px;
	flex-wrap: wrap;
}

.optionList li{
	width: calc(100% / 10 - 20px);
	margin-bottom: 20px;
}

.priceList{
	display: flex;
	gap: 40px;
	/*max-width: 1014px;*/
}

.priceList li{
	/*width:calc(100% / 4 - 40px);*/
	width: 20%;
	max-width: 220px;
	background: #ededed;
	padding: 20px 10px;
}

.priceList li strong{
	display: block;
	text-align: center;
	font-weight: bold;
}

.priceList li strong span{
	display: block;
}

.priceList li p{
	font-size: 1.4rem;
	line-height: 1.2;
} 

.priceListTitle{
		color: #00b3a6;
		margin-bottom: 10px;
}

.priceListTitle strong{
	font-size: 2.2rem;
}	

.priceListTitle span{
	font-size: 1.6rem;
}

.priceListHour{
		color: #00053a;
		margin-bottom: 10px;
}

.priceListHour{
	font-size: 1.4rem;
	font-weight: normal!important;
}	

.priceListPrice{
	font-size: 2.2rem;
	margin-bottom: 25px;
}


.simulatorBox{
	background: #ededed;
	padding: 30px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.simulatorItem{
	width: 260px;
}

.simulatorItem dt{
	font-weight: bold;
	margin-bottom: 15px;
}



.simulatorItem select{
	border: none;
  width: 100%;
  position: relative;
  background: #fff;
  padding: 10px 20px;
}

.simulatorResult{
	background: #fff;
	padding: 20px 30px;
}

.simulatorResult dt{
	font-weight: bold;
}	

.simulatorResult dd{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.result{
	font-weight: bold;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
}

.result strong{
	font-size: 3rem;
}

.attentionList li{
	margin-bottom: 10px;
}

.attentionList li strong{
	font-weight: bold;
}

.btnBox{
		display: flex;
		justify-content: center;
		gap: 30px;
		margin-bottom: 150px;
}


.carListWrap{
  position: relative;
  margin-bottom: 100px;
}

.wrapTitle{
	display: block;
	font-size: 3.6rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}

.carList{
  max-width: 1150px;
  /*overflow: hidden;*/
  margin:auto;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 50px;
}

.carList .slick-slide li{
  margin: 0 30px;
  width: 330px!important;
  /*padding: 0 50px 0 0;*/

}

.carList li img{
  margin: auto;
}


.carList li .carName {
  text-align: center;
  color: #00053a;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
}

#arrows_pos_car{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  z-index: 1;
}

#arrows_pos_car .arrow{
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  max-width: 36px;  
}

#arrows_pos_car .arrow:hover{
  opacity: 0.7;
}

#arrows_pos_car .arrow.prev{
  left: 0;
} 

#arrows_pos_car .arrow.next{
  right: 0;
}
 

.carList .slick-dots {
  bottom: -50px;
}


/* Media Queries ================================================== */
/*896*/
@media screen and (max-width: 896px) {

	.btnPageBox{
	  gap: 10px;
	  margin-bottom: 50px;
	}


	 .btnPage {
	    width: calc((100% / 2) - 5px);
	    /*text-align: left;*/
    	padding-left: 10px;
    	font-size: 1.4rem;
	 }

	 .btnPage.firstChild {
	 	padding-left: 0;
	 	text-align: center;
	 }   


	.pageContInner{
		margin-bottom: 50px;
	}

	.innerTite{
		margin-bottom: 40px;
		font-size: 3rem;
	}

	.innerIntro{
		margin-bottom: 30px;
		text-align: left;
	}

	.ownCarList{
		gap: 25px;
	}


	.ownCarList li{
		width: calc(100% / 2 - 13px);
		margin-bottom: 0;
		position: relative;
		padding-bottom: 80px;
	}

	.thumb {
	  height: 130px;
	}

	.carPersonalBox{
		margin-top: 10px;
		position: absolute;
		bottom: 0;
	    left: 0;
	    right: 0;
	}

	.carPersonal {
		padding: 0 10px;
		font-size: 1.4rem;
	}


	.innerItem dl{
		margin-bottom: 25px;
		padding-bottom: 25px;
		display: block;
	}

	.innerItem dt{
		width: 100%;
		margin-bottom: 20px;
	}

	.innerItem dd{
		width: 100%;
	}

	.innerItemTxt{
		padding: 20px 0;
	}

	.innerItemTxt dt{
		margin-bottom: 10px;
	}

	.innerItemTxt dd{
		margin-bottom: 10px;	
	}


	/*------ detail-------*/
	.detailHead{
		display: block;
	}


	.detailHead .contentTitle {
	  margin-bottom: 20px;
	}


	.pageDetailInfoWrap{
		display: block;
		margin-bottom: 40px;
	}

	.imgListWrap{
		width: 100vw;
	  position: relative;
	  left: 50%;
	  transform: translateX(-50%);
	}


	.imgList{
		max-height: 300px;
	} 


	.imgList img {
	  width: 100%;
	  height: auto;
	}

	.imgList .slick-slide li{
		height: 300px;
	}


	#arrows_pos{
		height: 34px;
	}

	#arrows_pos .arrow{
		max-width: 34px;	
	}


	.detailInfoBox{
		width: 100%;
	}

	.seatImg{
		display: block;
		margin: auto;
	}


	.seatImgLoop .slick-slide img {
	  height: auto;
	  width: 100%;
	  max-width: initial;
	}


	/*--- js-modal ---*/
	/*
	.modal_content {
	    top: 30%;
	    padding: 0;
	    text-align: center;
	    width: 96%;
	}
	*/

	  .modal_content {
	    width: 96vw;
	    padding: 40px 20px 20px;
	    max-height: 70vh;
	    overflow-y: scroll;
	  }

	.seatImgLoop .slick-slide li {
	  height: 300px;
	}

.btnCloseModal {
	top: 20px;
	right: 20px;
}


	.infoBox{
		margin-bottom: 30px;
	}


	.optionList li{
		width: calc(100% / 3 - 20px);
		margin-bottom: 0;

	}

	.optionIntro{
		margin-top: 20px;
	}

	.priceList{
		gap: 10px;
		flex-wrap: wrap;
	}

	.priceList li{
		width:calc(100% / 2 - 5px);
	}

	.simulatorBox{
		display: block;
	}

	.simulatorItem{
		width: 100%;
		margin-bottom: 20px;
	}

	.simulatorItem dt{
		margin-bottom: 10px;
	}

	.simulatorResult {
		padding: 20px;
	}


	.simulatorResult dt {
		margin-bottom: 10px;
	}

	.simulatorResult dd{
		display: block;
	}

	.resultItem{
		margin-bottom: 20px;
	}

	.result{
		font-size: 2.4rem;
		display: block;
	}

	.result strong{
		font-size: 4rem;
		display: block;
	}

	.attentionList li{
		margin-bottom: 5px;
	}


	.btnBox{
			margin-bottom: 50px;
			flex-wrap: wrap;
			gap: 20px;
	}

	.btnBox a{
		width: 100%;
	}



	.carListWrap{
	  position: relative;
	  margin-bottom: 100px;
	}

	.wrapTitle{
		font-size: 2.4rem;
		margin-bottom: 25px;
	}

  .carList {
      max-width: calc(100% - 40px - 40px);  
  }
  /*      
  .carList li{
    margin: 0;
    padding: 0;
  }
  */	

.carList .slick-slide li{
    margin: 0;
    padding: 0;
    width: 100%!important;
}


  #arrows_pos_car .arrow{
    max-width: 20px;  
  }


}


/* Media Queries ================================================== */
/*414*/
@media screen and (max-width: 414px) {

 .btnPage {
    width: 100%;
    text-align: center;
}    

	.ownCarList li {
		padding-bottom: 40px;
	}	

  .carPersonal {
    font-size: 1.2rem;
  }

}	

/*========●スマホ iPhone Pro Max========*/
@media screen and (max-width: 428px){
 .btnPageBox {
    gap: 10px;
    margin-bottom: 50px;
  }
   .btnPage.firstChild {
    padding-left: 0;
    text-align: center;
  }
  .btnPage {
    width: calc((100% / 1) - 5px);
    text-align: center;
    padding-left: 10px;
    font-size: 1.4rem;
  }
}