/*-------------------------------------------
　所在地の紹介
-------------------------------------------*/
.map-area {
    background-color: #f0f0f0;
  }
  
  .map-content {
    display: flex;
    flex-direction: row;
    flex:calc(100% / 2);
  }
  
  
  .center{
    text-align: center;
    }
    
    
  
  .map-item {
    background-color: #f0f0f0;
    margin-bottom: 30px;
    flex:calc(100% / 2);
    padding: 10px;
  }

  
    
    /*box-shadow: 1px 1px 3px #aaa;*/
  
  
  .map-info {
    padding: 0 10px 10px;
    text-align: center;
  }
  
  .map-title {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #666;
  }
  .map-area img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
  }
  .map-area iframe{
    width: 300px;
    height: 300px; 
  }
  
  @media (max-width:768px) {
    .map-content {
      flex-direction: column;
      display: flex;
      
      justify-content:center;
               
    }
    
    
    /*.map-item {
      flex:calc(100% / 3);
      margin-top: 0;
      margin-left: 15px;
      margin-right: 15px;
   }*/
  }
  
  
   