/* =========================================
   Access Page
   ========================================= */

.top-access-new{
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 80px;
}
.top-access-new__map{
  width: 100%;
  height: 600px;
  position: relative;
  z-index: 1;
}
.top-access-new__map iframe{
  width: 100%;
  height: 100%;
  border: none;
}
.top-access-new__inner{
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: -200px;
}
.top-access-new__card{
  background: #fff;
  padding: 60px 40px;
  width: 100%;
  max-width: 960px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-radius: 8px;
}
.top-access-new__card .heading{
  margin-bottom: 40px;
}
.top-access-new__content{
  display: flex;
  gap: 40px;
}
.top-access-new__photo-col{
  width: 45%;
  flex-shrink: 0;
}
.top-access-new__photo{
  width: 100%;
  height: auto;
  aspect-ratio: 440 / 280;
  object-fit: cover;
}
.top-access-new__info-col{
  flex-grow: 1;
}
.top-access-new__shopname{
  font-family: var(--ff-sans);
  font-size: 20px;
  color: var(--c-text);
  margin-bottom: 24px;
  font-weight: 700;
}
.top-access-new__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.top-access-new__list li{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #E5E7EB;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.6;
}
.top-access-new__list li:last-child {
  border-bottom: 1px solid #E5E7EB;
}
.top-access-new__list li.align-start{
  align-items: flex-start;
}
.top-access-new__icon{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--c-blue);
}
.top-access-new__text-group{
  display: flex;
  flex-direction: column;
}
.top-access-new__text-group .note{
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 4px;
}
.top-access-new__list a{
  color: var(--c-blue);
  text-decoration: underline;
}
.top-access-new__list a:hover{
  text-decoration: none;
}
.top-access-new__br-sp{
  display: none;
}

@media (max-width: 767px) {
  .top-access-new{
    padding-bottom: 40px;
  }
  .top-access-new__map{
    height: 300px;
  }
  .top-access-new__inner{
    margin-top: -60px;
  }
  .top-access-new__card{
    padding: 32px 20px;
  }
  .top-access-new__content{
    flex-direction: column;
    gap: 24px;
  }
  .top-access-new__photo-col{
    width: 100%;
  }
  .top-access-new__photo{
    aspect-ratio: 16/9;
  }
  .top-access-new__br-sp{
    display: inline;
  }
}
