/* CSS Document */



.shop-info .main-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.bg-bike {
  z-index: -1;
  position: sticky;
  width: 1px;
  height: 40vh;
  min-height: 500px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
  margin-top: 100px;
}

.bg-bike span {
  display: block;
  width: calc(100vw - 60px);
  max-width: 1140px;
  aspect-ratio: 924 / 520;
  opacity: .05;
  background: url(../img/chief-vintage-light.png) no-repeat center center / contain;
  position: absolute;
  left: 0;
}

.shop-info-table{
  width: 100%;
  padding-right: 30px;
  margin-bottom: 80px;
}

.shop-info-row{
  display: flex;
}

.shop-info-head{
  width: 220px;
  padding: 35px 25px;
  border-bottom: 1px solid #fff;
  background: #e5e5e5;
}

.shop-info-head p{
  color: #121212;
  font-weight: bold;
  letter-spacing: .08em;
}

.shop-info-content{
  width: calc(100% - 220px);
  padding: 35px 40px;
  border-right: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
}

.shop-info-row:last-child .shop-info-content{
  border-bottom: 1px solid #d9d9d9;
}

.shop-info-content p{
  color: #333;
}

.shop-info-content ul li{
  position: relative;
  padding-left: 10px;
}

.shop-info-content ul li::after{
  display: block;
  position: absolute;
  content: '';
  background: #000;
  height: 1px;
  width: 5px;
  top:50%;
  left: 0;
}

.brand-list a{
  text-decoration: underline;
  color: darkblue;
  display: inline-block;
}

.brand-list a p{
  color: darkblue;
}

.brand-list a:hover{
  opacity: 0.75;
}

/* =========================
ACCESS
========================= */

.access{
  background: #fbfaf9;
  padding-bottom: 80px;
}


.access-map iframe{
  width: 100%;
  height: 500px;
  display: block;
}

.access-area .btn-box {
  margin-top: 30px;
  margin-bottom: 0;
}

.access-area .btn-box a{
  border: 2px solid #000;
  background: #fff;
}

.access-area .btn-box .btn p {
  font-size: 1rem;
  color: #000;
}

.access-area .btn::after {
  border-right: 2px solid #000;
  border-top: 2px solid #000;
}

.access-area .btn:hover p {
  color: #fff; 
}

.access-area .btn:hover::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

/* =========================
responsive
========================= */

@media(max-width:768px){
  
  .bg-bike {
    min-height: 300px;
    margin-left: 0;
  }
  .shop-info{
    padding-bottom: 50px;
  }

  .shop-info-row{
    flex-direction: column;
  }

  .shop-info-head{
    width: 100%;
    padding: 10px 20px;
    border-right: none;
  }

  .shop-info-content{
    width: 100%;
    padding: 10px 20px;
    border: none;
  }

  .access{
    padding-bottom: 80px;
  }

  .access-map iframe{
    height: 350px;
  }
  
  .shop-info-table {
    padding-right: 0;
    margin-bottom: 0;
  }
  
  .shop-info-row:last-child .shop-info-content {
    border-bottom: none;
  }

}