/* ========== ACCESS Section ========== */
.access-section {
  background-color: var(--color-dark-2);
  padding: 80px 60px 80px;
	overflow-x: hidden;
}

.access-section__inner-wrap {
  max-width: 1600px;
  margin: 0 auto;
}

/* ヘッダー */
.access-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.access-section__heading {
  font-family: var(--font-midashi-go);
  font-size: 75px;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.06em;
  line-height: 1;
}

.access-section__subheading {
  font-family: var(--font-sawarabi);
  font-size: 23px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.1em;
  margin-top: 10px;
}

/* 2カラム */
.access-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  gap: 0;
  align-items: stretch;
  padding: 10px;
}

/* マップ */
.access-section__map {
  min-height: 400px;
  overflow: hidden;
}

.access-section__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  filter: grayscale(20%);
}

/* 店舗情報 */
.access-section__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 48px;
}

/* 店名ラップ */
.access-section__shop-name-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 店名 */
.access-section__shop-name {
  font-family: var(--font-sawarabi);
  font-size: 45px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.05em;
}

/* ロゴ */
.access-section__logo {
  height: 110px;
  width: auto;
  object-fit: contain;
}

/* 住所 */
.access-section__address {
  font-family: var(--font-bunkyu-go);
  font-size: 18px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* アクセス */
.access-section__access {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.access-section__access p {
  font-family: var(--font-bunkyu-go);
  font-size: 16px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* 営業時間・電話番号 */
.access-section__detail-row {
  font-family: var(--font-bunkyu-go);
  font-size: 14px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.access-section__detail-row strong {
  font-weight: 700;
  font-size: 18px;
}

.access-section__detail-row a {
  color: #111;
}

/* アクション */
.access-section__actions {
  display: flex;
  padding-top: 25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.access-section__action-btn {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-dark-2);
  border: 1px solid var(--color-dark-2);
  letter-spacing: 0.1em;
  padding: 10px 0;
  display: block;
  width: 230px;
  text-align: center;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.access-section__action-btn:hover {
  opacity: 0.6;
}

/* ========== Mobile ========== */
@media (max-width: 1024px) {
  .access-section {
    padding: 60px 24px;
  }

  .access-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .access-section__heading {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .access-section {
    padding: 40px 16px 60px;
  }

  .access-section__header {
    margin-bottom: 24px;
  }

  .access-section__heading {
    font-size: 36px;
  }

  .access-section__subheading {
    font-size: 13px;
  }

  .access-section__inner {
    gap: 0;
  }

  .access-section__info {
    padding: 24px 20px;
    gap: 16px;
  }

  .access-section__shop-name {
    font-size: 28px;
  }

  .access-section__logo {
    height: 48px;
  }

  .access-section__address {
    font-size: 13px;
  }

  .access-section__access p {
    font-size: 12px;
  }

  .access-section__detail-row {
    font-size: 13px;
  }

  .access-section__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 8px;
  }

  .access-section__action-btn {
    font-size: 12px;
    padding: 10px 16px;
    flex: 1 1 auto;
    text-align: center;
    white-space: nowrap;
  }
}
