@charset "UTF-8";

/* -------------------------------------------------access */

/* ----- map ----- */

.map-access {
  display: flex;
  flex-wrap: wrap; /* 画面が狭い時は縦積み */
  gap: 30px;
  justify-content:space-between;
}

.access-block {
  flex: 1 1 45%; /* 2カラムにする */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.map-box iframe {
  width: 100%;
  height: 250px;
}

.access-text h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.access-text p {
  margin: 4px 0;
  line-height: 1.6;
}

/* スマホ時は縦積み */
@media (max-width: 768px) {
  .map-access {
    flex-direction: column;
  }
}