@charset "UTF-8";

/* ==========
sub-page-visual
========== */
.sub-page-visual {
  background-image: url(../images/info/page-visual-info.jpg);
}

/* ==========
store
========== */
.store {
  padding: 80px 0 40px;
}

.store h2 img {
  display: block;
  height: 96px;
  margin: 0 auto 8px;
}

.store h2::after {
  display: none;
}

.store__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.store th {
  margin-right: 24px;
}
.store th, .store td {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.store tr:first-of-type th, .store tr:first-of-type td {
  padding-top: 0;
}

.store iframe {
  border-radius: 8px;
  aspect-ratio: 3 / 2;
}

.store__img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

/* ==========
banner
========== */
.banner--news,
.banner--info {
  display: none;
}


/* ====================
PC
==================== */
@media (min-width: 769px) {
  .store__info {
    flex-direction: row;
    justify-content: space-between;
    gap: 56px;
  }

  .store__info table, .store__info iframe {
    flex: 1;
  }

  .store iframe {
    aspect-ratio: auto;
  }

  .store__img {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
  }

}