/* リセットとベーススタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'Meiryo', sans-serif;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* コンテナ */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  background-color: #fff;
  padding-bottom: 80px;
}

/* PDFページセクション */
.pdf-page {
  width: 100%;
  aspect-ratio: 780 / 1500;
  position: relative;
}

.pdf-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 店舗一覧セクション */
.hall-section {
  width: 100%;
  border-top: 30px solid #57368c;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.hall-content {
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.section-title {
  font-size: 30px;
  font-weight: 600;
  color: #57368c;
  text-align: center;
  line-height: 1.3;
  width: 260px;
  margin-bottom: 40px;
}

.contact-info {
  font-size: 16px;
  font-weight: 600;
  color: #262626;
  text-align: center;
  line-height: 1.3;
}

.contact-info p {
  margin: 0;
}

/* 店舗カードリスト */
.hall-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 360px;
}

/* 店舗カード */
.place-card {
  width: 170px;
  background-color: #fff;
  border: 1px solid #cacaca;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-image {
  width: 100%;
  height: 100px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-heading {
  border-bottom: 1px solid #cacaca;
  padding-bottom: 5px;
}

.card-heading h3 {
  font-size: 17px;
  font-weight: 600;
  color: #262626;
  line-height: 1.3;
  margin: 0;
}

.card-address {
  font-size: 12px;
  font-weight: 300;
  color: rgba(38, 38, 38, 0.7);
  line-height: 1.4;
}

.card-address p {
  margin: 0;
}

/* 注釈 */
.note {
  font-size: 12px;
  font-weight: 400;
  color: #262626;
  line-height: 1.8;
  width: 355px;
}

/* フッター */
.footer {
  width: 100%;
  max-width: 390px;
  height: 55px;
  background-color: #57368c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px 0;
}

.footer p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

/* 固定電話バナー */
.fixed-contact-banner {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  max-width: 370px;
  z-index: 1000;
  text-decoration: none;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #57368c;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.phone-icon {
  width: 46px;
  height: 46px;
  color: #fff;
  flex-shrink: 0;
}

.banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  line-height: 1.05;
}

.banner-label {
  font-size: 16px;
  font-weight: 300;
}

.banner-number {
  font-size: 26px;
  font-weight: 600;
}
