/*
  access.css
  アクセスページ（page-access.php）専用スタイル
*/

/*================= マップセクション =================*/
section.access-map {
  padding: 4rem 1.25rem 6rem;
}

section.access-map .section-title,
section.access-map .pof-subtitle {
  text-align: center;
}

.access-map-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.access-map-block {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
}

.access-map-block + .access-map-block {
  margin-top: max(60px, 5vw);
  padding-top: max(60px, 5vw);
  /* border-top: 1px solid #E0D0B8; */
}

/*---- マップ ----*/
.access-map-iframe {
  flex: 1;
  min-height: 360px;
}

.access-map-iframe iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(100%);
  border: 0;
}

/*---- 情報 ----*/
.access-map-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.access-map-clinic-name {
  font-family: 'hannari';
  font-size: 1.75rem;
  font-weight: normal;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.access-map-tel {
  margin-bottom: 1rem;
}

.access-map-tel a {
  font-family: 'lineSeed-bd';
  font-size: 1.5rem;
  color: var(--color-black);
  text-decoration: none;
}

.access-map-tel a:hover {
  opacity: 0.7;
}

.access-map-tel-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.4em;
}

.access-map-tel-icon img {
  display: block;
  width: 30px;
  height: auto;
}

@media (max-width: 690px) {
  .access-map-tel-icon img {
    width: 22px;
  }
}

.access-map-detail {
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid #E0D0B8;
  border-bottom: 1px solid #E0D0B8;
}

.access-map-row {
  display: flex;
  gap: 1em;
  padding: 0.2rem 0;
  align-items: baseline;
}

.access-map-row dt {
  font-family: 'lineSeed-bd';
  font-size: 0.875rem;
  min-width: 5em;
  flex-shrink: 0;
  color: var(--color-black);
}

.access-map-row dd {
  font-family: 'lineSeed-rg';
  font-size: 0.875rem;
  color: var(--color-black);
  margin: 0;
  line-height: 1.8;
}

/*================= SP =================*/
@media screen and (max-width: 767px) {
  .access-map-block {
    flex-direction: column;
  }

  .access-map-iframe {
    min-height: unset;
    height: 250px;
  }

  .access-map-iframe iframe {
    height: 250px;
  }
}
/*=============== END マップセクション ===============*/
