@charset "utf-8";

/**
 * inbound_custom.css
 * フリースペース用カスタムスタイル（CLUB BLENDA サンプル）
 */

/* ==========================================================================
   guide ページ固有 / フリースペース基本要素
   ========================================================================== */

/* --- 店舗情報・記事ブロック --- */
.info-article {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  padding: 1.5rem 1rem;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .info-article {
    padding: 2rem;
    margin-bottom: 2rem;
  }
}

.info-article p {
  margin-bottom: 1rem;
}

.info-article p:last-child {
  margin-bottom: 0;
}

/* --- ご利用手順 --- */
.howto-lead {
  color: var(--color-primary-light);
  font-weight: bold;
  margin-bottom: 1rem;
}

.howto-step {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
  padding: 1.5rem 1rem;
}

@media screen and (min-width: 768px) {
  .howto-step {
    padding: 2rem;
    margin-bottom: 2rem;
  }
}

.howto-step-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(106, 88, 25, 0.3);
  padding-bottom: 0.75rem;
}

.howto-step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary-light);
  margin-right: 1rem;
  font-family: 'Noto Serif JP', serif;
}

.howto-step-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
}

.howto-step-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.howto-step-img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

@media screen and (min-width: 768px) {
  .howto-step-body {
    flex-direction: row;
    gap: 2rem;
  }
  .howto-step-img {
    width: 200px;
    height: 150px;
    max-height: none;
  }
}

.howto-step-desc {
  flex-grow: 1;
}

.howto-accent {
  color: var(--color-primary-light);
  font-weight: bold;
  margin: 0.5rem 0;
}

.howto-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.howto-option-note {
  color: var(--color-primary-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.howto-warning {
  color: #ff3366;
  font-weight: bold;
  margin-top: 0.5rem;
}

.howto-map-wrap {
  margin-top: 1.5rem;
}

.guide-route-btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* --- 地図レスポンシブ枠 --- */
.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 1rem;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- 禁止事項・注意事項 --- */
.warning-note {
  margin-top: 1.5rem;
  color: #ff3366;
  font-weight: bold;
}

.forbidden-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .forbidden-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.forbidden-item {
  display: flex;
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(106, 88, 25, 0.3);
  padding: 1rem;
  align-items: center;
}

.forbidden-img-wrapper {
  width: 90px;
  height: 68px;
  flex-shrink: 0;
  margin-right: 1rem;
  overflow: hidden;
  background-color: #111;
}

.forbidden-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.forbidden-text {
  font-size: 0.9rem;
  color: #ffffff;
}


/* ==========================================================================
   schedule (daysche) ページ固有要素
   ========================================================================== */

/* --- お問い合わせ（SNS） --- */
.sns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}

.sns-item {
  padding: 0.25rem 0;
  display: grid;
  grid-template-columns: 48px 75px 1fr;
  align-items: center;
  gap: 0.75rem;
}

.sns-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.sns-qr {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  background-color: #fff;
  padding: 3px;
  border: none;
  object-fit: contain;
}

.sns-info {
  font-size: 0.9rem;
  color: #ffffff;
}

.sns-info strong {
  display: block;
}

@media screen and (min-width: 768px) {
  .sns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .sns-item {
    padding: 0.5rem 0;
    grid-template-columns: 64px 90px 1fr;
    gap: 1.5rem;
  }
  .sns-icon {
    width: 64px;
    height: 64px;
  }
  .sns-qr {
    width: 90px;
    height: 90px;
  }
}

.sns-link-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--gold-gradient);
  color: #000 !important;
  font-weight: bold;
  font-size: 0.8rem;
}

/* --- 料金システム --- */
.price-list-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .price-list-container {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.price-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0;
  background: rgba(17, 17, 17, 0.4);
}

.price-list-header {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid var(--color-primary-light);
  color: var(--color-primary-light);
  font-weight: bold;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid rgba(106, 88, 25, 0.15);
}

.price-item:hover {
  background-color: rgba(203, 179, 97, 0.05);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item-name {
  font-size: 2rem;
  font-weight: bold;
  white-space: nowrap;
  color: #ffffff;
}

.price-item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(203, 179, 97, 0.25);
  margin: 0 1.5rem;
  position: relative;
  top: 4px;
}

.price-item-cost {
  font-size: 1.7rem;
  text-align: right;
  font-weight: bold;
  white-space: nowrap;
}

.price-number {
  font-size: 2rem;
  color: var(--color-primary-light);
  font-weight: 700;
}

.price-tax {
  display: block;
  font-size: 1.25rem;
  color: var(--color-text-muted);
}

.price-cancel {
  font-size: 2rem;
}

.price-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.price-other-title {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-left: 2px solid var(--color-primary-light);
  padding-left: 0.5rem;
  color: var(--color-primary-light);
}

@media screen and (max-width: 480px) {
  .price-list {
    padding: 0.5rem 0;
  }
  .price-item-dots {
    margin: 0 0.5rem;
  }
  .price-item-name {
    font-size: 1.5rem;
  }
  .price-item-cost {
    font-size: 1.2rem;
  }
  .price-number {
    font-size: 1.5rem;
  }
  .price-tax {
    font-size: 1rem;
  }
  .price-cancel {
    font-size: 1.5rem !important;
  }
}
