/********** vending_set_detail_common **********/
.wrapper_vending_set_detail {
  min-width: 1366px;
  background-color: var(--white);
  margin:0 auto 80px auto;
  padding-top:208px;
}
.vending_set_detail {
  min-width: 1366px;
  margin:0 auto;
}
.wrapper_vending_set_detail .content{
  width:800px;
  margin:0 auto;
}

.main-title{
  width:100%;
  margin:0 auto;
}
.main-title img{
  display: block;
  margin:0 auto;
}
.main-title h1{
  color:var(--text-color3);
  font-size:32px;
  margin:18px auto 45px auto;
  text-align: center;
}

/********** swiper **********/
.swiper{
  margin: 0 auto 25px auto;
  width:950px;
}
.swiper-wrapper {
  /* wrapperのサイズを調整 */
  width: 800px;
  height: 480px;
  margin:0 auto;
  transition-timing-function:linear !important; 
}

.swiper-slide {
  /* スライドのサイズを調整 */
  width: 800px;
  height: 480px;
}
.swiper-slide img{
  width:800px;
  height: 480px;
  border-radius: 15px;
}

.swiper-pagination-bullets {
  position: static;
  margin-top: 16px;
} 

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 10px !important;
  border:2px solid var(--text-color);
  background-color: var(--white);
  opacity: 1;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px; /* ボタンの幅 */
  height: 40px; /* ボタンの高さ */
  background-size: 40px 40px; /* 表示したいサイズ */
  transform: translateY(-50%);
  margin-top: 0;
}
.swiper-pagination-bullet-active {
  background: var(--text-color);
}

/* 次ページボタンのスタイル */
.swiper-button-next {
background-image: url(../img/icon/arrow/swiper_right.svg);
}

/* 前ページボタンのスタイル */
.swiper-button-prev {
  background-image: url(../img/icon/arrow/swiper_left.svg);
}

.swiper-button-prev:after,
.swiper-button-next:after {
 display: none;
}


/********** detail **********/
.vending_set_detail .detail .title{
  background-color: #2465A0;
  border-radius: 15px;
  padding:25px;
  margin: 45px auto 56px auto;
}
.vending_set_detail .detail .set_date{
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color2);
  margin:0;
}
.vending_set_detail .detail .set_mark{
  font-size: 15px;
  font-weight: 500;
  background-color: var(--white);
  color: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 25px;
  padding:1px 20px;
  margin-right: 8px;
}
.vending_set_detail .detail .set_title{
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  /* margin:20px auto 0 auto; 設置日非表示の指示 2022/3/5*/
  margin:0 auto;
}

.vending_details{
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.vending_details .detail_left,
.vending_details .detail_right{
  width:375px;
}
.vending_details .detail_left h3{
  font-size: 24px;
  font-weight: 500;
  color:var(--text-color3);
  margin:0 0  25px 0;
}
.vending_details .detail_left p{
  font-size: 15px;
  font-weight: 500;
  color:var(--text-color2);
  line-height: 1.7;
  margin:30px 0;
}
.vending_details .detail_left span{
  color:var(--text-color3);
}

.vending_details .right_item{
  border-top:1px dotted var(--text-color2);
  padding:10px 0;
  display: flex;
}
.vending_details .right_item:last-child{
  border-bottom:1px dotted var(--text-color2);
}
.vending_details .right_item .right_title{
  font-size: 15px;
  font-weight: 500;
  color:var(--text-color3);
  flex : 0 0 115px;
  margin:0;
}
.vending_details .right_item .right_detail{
  font-size: 15px;
  font-weight: 500;
  color:var(--text-color2);
  margin:0;
}




/********** paging **********/
.vending_set_detail .paging .prev::before{
  content:url(../img/icon/arrow/paging_left.png);
}
.vending_set_detail .paging .next::after{
  content:url(../img/icon/arrow/paging_right.png);
}
.vending_set_detail .paging .prev::before{
  position:absolute;
  top: 0;
  left: -44px;
  animation: arrow-move-return_prev 0.3s ease-in-out forwards;
}
.vending_set_detail .paging .next::after{
  position:absolute;
  top: 0;
  right: -44px;
  animation: arrow-move-return 0.3s ease-in-out forwards;
}
.vending_set_detail .paging .prev:hover::before{
  animation: arrow-move_prev 0.3s ease-in-out forwards;
}
.vending_set_detail .paging .next:hover::after{
  animation: arrow-move 0.3s ease-in-out forwards;
}
@keyframes arrow-move_prev {
  0% {transform: translateX(0);}
  100% {transform: translateX(-50%);}
}
@keyframes arrow-move-return_prev {
  0% {transform: translateX(-50%);}
  100% {transform: translateX(0);}
}
.vending_set_detail .paging{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vending_set_detail .paging{
  color: var(--sub-color2);
}
.vending_set_detail .paging .prev,
.vending_set_detail .paging .next,
.vending_set_detail .paging .nbsp_left,
.vending_set_detail .paging  .nbsp_right{
  font-size: 12px;
  font-weight: 500;
  flex:0 0 135px;
  position:relative;
}
.vending_set_detail .paging a{
  color:#DD973A;
  text-decoration: none;
  width:50px;
  text-align: center;
  display: inline-block;
}
.vending_set_detail .paging .prev,
.vending_set_detail .paging .nbsp_left{
  margin-left: 60px;
  margin-right: auto;
  text-align: left;
}
.vending_set_detail .paging .next,
.vending_set_detail .paging .nbsp_right{
  margin-right: 60px;
  margin-left: auto;
  text-align: right;
}
.detail_bt{
  position: static;
  margin:0 auto;
  transform: translateX(0);
}
.vending_set_detail .detail_bt a{
  color:#fff;
  width:100%;
}
.vending_set_detail .detail_bt a:hover{
  color:var(--sub-color2);
}

/********** vending_set_detail map **********/
#map{
  width:800px;
  height: 250px;
  margin:0 auto 35px auto;
  border-radius: 15px;
}




/********** ここからスマホ **********/
@media only screen and (max-width:599px){


  /********** vending_set_detail_common **********/
.wrapper_vending_set_detail {
  min-width: 100vw;
  padding-top:120px;
  margin:0 auto;
}
.vending_set_detail {
  min-width: 100vw;
}
.sp_margin{
  margin:0 0 90px 0;
}
.wrapper_vending_set_detail .content{
  width: 90%;
}
.main-title h1{
  font-size:24px;
  font-weight: 700;
  margin:12px auto 40px auto;
}

/********** swiper **********/
.swiper{
  margin: 0 auto 18px auto;
  width:90%;
}
.swiper-wrapper {
  /* wrapperのサイズを調整 */
  width: 90%;
  height: 220px;
}

.swiper-slide {
  /* スライドのサイズを調整 */
  width: 90%;
  height: 220px;
}
.swiper-slide img{
  width:90%;
  height: 220px;
}
.swiper-button-prev{
  left:0;
}
.swiper-button-next {
  right: 0;
}


/********** detail **********/
.vending_set_detail .detail .title{
  padding:25px;
  margin: 36px auto 42px auto;
}
.vending_set_detail .detail .set_date{
  font-size: 14px;
}
.vending_set_detail .detail .set_mark{
  font-size: 14px;
  font-weight: 500;
}
.vending_set_detail .detail .set_title{
  font-size: 20px;
  font-weight: 700;
  /* margin:12px auto 0 auto; 設置日非表示の指示 2022/3/5*/
  margin:0 auto;
}

.vending_details{
  flex-wrap:wrap;
  margin-bottom: 24px;
}
.vending_details .detail_left,
.vending_details .detail_right{
  width:366px;
}
.vending_details .detail_left h3{
  font-size: 18px;
}
.vending_details .detail_left p{
  font-size: 14px;
  margin:24px 0;
}
.vending_details .right_item{
  padding:8px 0;
}
.vending_details .right_item .right_title{
  font-size: 14px;
  flex : 0 0 100px;
}
.vending_details .right_item .right_detail{
  font-size: 14px;
}

/********** paging **********/
.vending_set_detail .paging .prev::before{
  left: -33px;
}
.vending_set_detail .paging .next::after{
  right: -33px;
}
.vending_set_detail .paging .prev{
  margin-left: 0;
  left:55px;
  bottom: 30px;
}
.vending_set_detail .paging .next{
  margin-right: 0;
  right:55px;
  bottom: 30px;
}
.detail_bt{
  transform: translate(-50%, 40px);
  left: 50%;
  position: absolute;
}
.vending_set_detail .detail_bt a{
  width:240px;
}
.vending_set_detail .paging .prev,
.vending_set_detail .paging .next,
.vending_set_detail .paging .nbsp_left,
.vending_set_detail .paging  .nbsp_right{
  flex:0 0 0;
}
.vending_set_detail .paging{
  margin-top: 50px;
}
/********** vending_set_detail map **********/
#map{
  width:100%;
}

}