/* ################# section : map ################# */

.map {}
.map-inner {
  width: 1300px;
  margin: auto;
  text-align: center;
}
.map-content {
  text-align: center;
}
.map-content>div {
}
.address {
  width: 1000px;
  margin: 0 auto;
  height: 300px;
  display: flex;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  padding: 50px 0px;
}
.address-item {
  width: 30%;
  padding: 30px 0;
  border-right: 1px solid #ddd;
}
.address-item:last-of-type {
  border-right: none;
}
.address-item img {
  width: 50px;
  transition: 0.5s;
}
.address-item:hover img {
  transform: rotateY(0.5turn);
}
.address-item h3 {
  font: inherit;
  font-weight: 700;
  font-size: 1em;
}
.address-item p {
  font: inherit;
  font-weight: 400;
  font-size: 0.8em;
  line-height: 1.4em;
  margin-top: 0;
}
.map-img {
  width: 100%;
  padding: 60px 0 120px 0;
}
.map-img iframe {
  width: 100%;
}
@media (max-width: 768px) {
  .map-inner {
    width: 100%;
  }
  .map-content {
  }
  .address {
    width: 90%;
    height: 550px;
    display: block;
    padding: 20px 0;
  }
  .address-item {
    padding: 20px 0px;
    width: 100%;
  }
  .address-item:hover img {
    transform: none;
  }
}