@charset "UTF-8";

.wrapper {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}
.wrapper::after {
  content: "";
  display: block;
  clear: both;
}

/* -------------------------------------------
Section Title
-------------------------------------------*/
.section-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 60px;
  position: relative;
}
.section-title span {
  max-width: 1000px;
  display: block;
  padding: 0 20px;
  margin: 0 auto;
}
.section-title::before {
  content: "";
  width: calc((100% - 1000px) / 2);
  height: 1px;
  background-color: #1f1f1f;
  position: absolute;
  top: 12px;
  left: 0;
}
/*-------------------------------------------
Shop
--------------------------------------------*/
.shop-area {
  width: 20%;
  float:left;
  font-size: 16px; 
  margin-bottom: 20px;
}
.shop-list {
  margin-left: 20%;
}
.shop-list li {
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 60px 0;
}
.shop-list li .text {
  width: 100%;
  padding: 0 5%;
}
.shop-list li .text .name {
  font-family: 'Times New Roman', sans-serif; /* Enzoフォント */
  color: #1f1f1f; 
  font-weight: 500;
  margin-bottom: 25px;
  font-size: 20px;
}
.shop-list li .text .info {
  margin-bottom: 10px;
}
.shop-list li .text .info dt {
  float: left;
  clear: left;
  font-size: 16px;
  margin-right: 5px;
  width: 90px;
}
.shop-list li .text .info dd {
  font-size: 16px;
  margin-bottom: 5px;
}
.shop-list li .text .info::after {
  content: "";
  display: block;
  clear: both;
}
/*-------------------------------------------
map-link
--------------------------------------------*/
.map-link {
    display: inline-block;
    margin-left: 40px;
    text-decoration: underline;
    color: #1f1f1f;
    transition: opacity 0.3s;
}
.map-link:hover {
    opacity: 0.7;
}
.info dd {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/*-------------------------------------------
スマートフォン767px以下
-------------------------------------------*/
@media screen and (max-width: 767px) {
 
  .section-title {
      font-size: 24px;
    }
  .section-title::before {
    content: none;
  }
  /*--------------------------------------------
  shop
  ---------------------------------------------*/
   .shop-area {
    width: 100%;      
    float: none;      
    text-align: center; 
    margin-bottom: 10px;
  }
   .shop-list {
    margin-left: 0;   
    margin-bottom: 60px;
  }
  .shop-list li {
  padding: 20px 0;
}
  .shop-list li .text{
    width: 100%;
    padding: 20px ;
  } 
  .shop-list li .text .info dt:first-of-type {
    float: none; 
    width: 100%;     
    margin-bottom: 5px;
  }
  .shop-list li .text .info dd:first-of-type {
    margin-left: 0;  
    width: 100%;
    display: block;   
    margin-bottom: 15px;
  }
  .shop-list li .text .info dt:nth-of-type(n+2) {
    float: left; 
    clear: left;     
    width: 70px;
  }
  .shop-list li .text .info dd:nth-of-type(n+2) {
    margin-left: 70px; 
    display: block;
  }
  .map-link {
    margin-left: 0;  
    margin-top: 5px; 
    display: inline-block;
  } 

}