/* =====================================
   土用の丑の日 特設ページ
   ushinohi.html 専用CSS
===================================== */

.ushi-page {
  padding-bottom: 80px;
}

.ushi-page-header {
  padding-top: 45px;
  text-align: center;
}

.ushi-page-header > div {
  width: 100%;
}

.ushi-kicker {
  margin: 0 0 6px;
  color: #971c06;
  font-family: 'Shippori Mincho B1', serif;
  letter-spacing: .18em;
  font-size: 15px;
}

.ushi-lead {
  margin: 20px 15px 0;
  line-height: 1.9;
  text-align: center;
}

.ushi-anchor-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1000px;
  margin: 35px auto 20px;
  padding: 0 15px;
}

.ushi-anchor-nav a {
  flex: 1 1 170px;
  padding: 12px 8px;
  background: #3a2311;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  transition: opacity .25s ease;
}

.ushi-anchor-nav a:hover {
  opacity: .82;
}

.ushi-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 70px 20px;
  scroll-margin-top: 90px;
}

.ushi-section + .ushi-section {
  border-top: 1px solid #eadfd8;
}

.ushi-section h2 {
  margin: 0 0 30px;
  color: #971c06;
  text-align: center;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 28px;
}

.ushi-section-intro,
.ushi-note,
.ushi-update-time {
  text-align: center;
  line-height: 1.8;
}

.ushi-note {
  margin-top: 20px;
  color: #666;
  font-size: 13px;
}

.ushi-date-box {
  max-width: 650px;
  margin: 0 auto 35px;
  padding: 26px 20px;
  border: 1px solid rgba(151, 28, 6, .35);
  border-radius: 14px;
  background: linear-gradient(135deg, #fff 0%, #fbf4e9 100%);
  text-align: center;
  box-shadow: 0 7px 24px rgba(0, 0, 0, .05);
}

.ushi-date-label {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 18px;
  border-radius: 999px;
  background: #971c06;
  color: #fff;
  font-size: 13px;
}

.ushi-date-main {
  margin: 0;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 27px;
}

.ushi-date-sub {
  margin: 12px 0 0;
  line-height: 1.8;
}

.ushi-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ushi-product-card {
  padding: 22px 18px;
  border: 1px solid #eadfd8;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 5px 16px rgba(0, 0, 0, .045);
}

.ushi-product-card h3 {
  margin: 0 0 12px;
  color: #3a2311;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
}

.ushi-product-desc {
  min-height: 3.5em;
  margin: 0;
  line-height: 1.75;
  font-size: 14px;
}

.ushi-product-price {
  margin: 18px 0 0;
  color: #971c06;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  font-weight: 700;
}

.ushi-product-price span {
  margin-left: 3px;
  color: #333;
  font-family: 'Sawarabi Mincho', serif;
  font-size: 12px;
  font-weight: 400;
}

.availability-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 25px 0 18px;
  font-size: 14px;
}

.status {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}

.status-open { background: #2d7a45; color: #fff; }
.status-few  { background: #b06b00; color: #fff; }
.status-full { background: #8b8b8b; color: #fff; }

.availability-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .05);
}

.availability-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.availability-table th,
.availability-table td {
  padding: 16px 14px;
  border: 1px solid #eadfd8;
  text-align: center;
}

.availability-table thead th {
  background: #3a2311;
  color: #fff;
  font-weight: 400;
}

.availability-table tbody th {
  white-space: nowrap;
  font-weight: 700;
}

.status-badge {
  display: inline-block;
  min-width: 105px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.ushi-update-time {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
}

.ushi-notice-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 28px;
  border-left: 5px solid #d88c36;
  border-radius: 8px;
  background: #fbf6ef;
}

.ushi-notice-important {
  border-left-color: #971c06;
  background: #fff4f1;
}

.ushi-check-list {
  margin: 0;
  padding-left: 1.4em;
}

.ushi-check-list li {
  margin: 10px 0;
  line-height: 1.8;
}

.ushi-action-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ushi-primary-btn,
.ushi-secondary-btn {
  display: inline-block;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-family: 'Shippori Mincho B1', serif;
}

.ushi-primary-btn {
  background: #971c06;
  color: #fff;
}

.ushi-secondary-btn {
  border: 1px solid #971c06;
  background: #fff;
  color: #971c06;
}

.ushi-layout-figure {
  max-width: 850px;
  margin: 25px auto 0;
  text-align: center;
}

.ushi-layout-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #eadfd8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(0, 0, 0, .08);
}

.ushi-layout-figure figcaption {
  margin-top: 12px;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
}

.ushi-contact-box {
  max-width: 700px;
  margin: 20px auto 0;
  padding: 25px 20px;
  border-radius: 12px;
  background: #3a2311;
  color: #fff;
  text-align: center;
}

.ushi-contact-box p {
  margin: 0 0 8px;
}

.ushi-contact-box a {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
}

/* トップページから特設ページへ誘導するバナー */
.ushi-top-banner {
  max-width: 960px;
  margin: 25px auto 10px;
  padding: 0 20px;
}

.ushi-top-banner a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 24px 70px 24px 24px;
  border: 1px solid rgba(151, 28, 6, .4);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff8ef 0%, #f5e2cf 100%);
  color: #2c1b0c;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.ushi-top-banner a::after {
  content: "→";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #971c06;
  font-size: 28px;
}

.ushi-top-banner-small,
.ushi-top-banner-title,
.ushi-top-banner-text {
  display: block;
}

.ushi-top-banner-small {
  color: #971c06;
  font-size: 12px;
}

.ushi-top-banner-title {
  margin-top: 4px;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
}

.ushi-top-banner-text {
  margin-top: 7px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .ushi-page-header {
    padding-top: 20px;
  }

  .ushi-page-header .page-title {
    font-size: 27px;
  }

  .ushi-anchor-nav {
    position: static;
    margin-top: 25px;
  }

  .ushi-anchor-nav a {
    flex: 1 1 45%;
    padding: 10px 6px;
    font-size: 12px;
  }

  .ushi-section {
    padding: 48px 15px;
    scroll-margin-top: 75px;
  }

  .ushi-section h2 {
    font-size: 23px;
  }

  .ushi-date-main {
    font-size: 22px;
  }

  .ushi-product-grid {
    grid-template-columns: 1fr;
  }

  .ushi-product-desc {
    min-height: 0;
  }

  .availability-table-wrap {
    overflow: visible;
    box-shadow: none;
  }

  .availability-table,
  .availability-table tbody,
  .availability-table tr,
  .availability-table th,
  .availability-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .availability-table thead {
    display: none;
  }

  .availability-table tr {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid #eadfd8;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
  }

  .availability-table th,
  .availability-table td {
    position: relative;
    padding: 12px 12px 12px 44%;
    border: 0;
    border-bottom: 1px solid #eee5df;
    text-align: left;
  }

  .availability-table td:last-child {
    border-bottom: 0;
  }

  .availability-table th::before,
  .availability-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 12px;
    top: 12px;
    width: 38%;
    color: #6b5142;
    font-size: 12px;
    font-weight: 700;
  }

  .ushi-notice-box {
    padding: 20px 18px;
  }

  .ushi-primary-btn,
  .ushi-secondary-btn {
    width: 100%;
    box-sizing: border-box;
  }

  .ushi-contact-box {
    margin-left: 15px;
    margin-right: 15px;
  }

  .ushi-top-banner a {
    padding: 20px 52px 20px 18px;
  }

  .ushi-top-banner-title {
    font-size: 20px;
  }
}


/* =====================================
   きも焼き 予約受付終了表示
===================================== */
.ushi-soldout-notice {
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  border: 2px solid #971c06;
  border-radius: 10px;
  background: #fff3f0;
  color: #3a2311;
  text-align: center;
  box-shadow: 0 5px 16px rgba(151, 28, 6, .08);
}

.ushi-soldout-notice strong,
.ushi-soldout-notice span {
  display: block;
}

.ushi-soldout-notice strong {
  color: #971c06;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px;
}

.ushi-soldout-notice span {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.7;
}

.ushi-product-soldout {
  position: relative;
  overflow: hidden;
  border: 2px solid #8b8b8b;
  background:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)),
    repeating-linear-gradient(-45deg, #eeeeee 0, #eeeeee 8px, #e2e2e2 8px, #e2e2e2 16px);
}

.ushi-product-soldout h3,
.ushi-product-soldout .ushi-product-price,
.ushi-product-soldout .ushi-regular-price {
  color: #777;
}

.ushi-soldout-ribbon {
  margin: -22px -18px 16px;
  padding: 9px 10px;
  background: #6d6d6d;
  color: #fff;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .12em;
}

.ushi-soldout-reason {
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px dashed #aaa;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ushi-soldout-notice {
    margin-bottom: 16px;
    padding: 12px 14px;
  }

  .ushi-soldout-notice strong {
    font-size: 15px;
  }

  .ushi-soldout-notice span {
    font-size: 11px;
  }

  .ushi-soldout-ribbon {
    margin: -22px -18px 12px;
    padding: 7px 8px;
    font-size: 15px;
  }

  .ushi-soldout-reason {
    margin-top: 8px;
    padding-top: 7px;
    font-size: 11px;
  }
}


/* 会場レイアウト サムネイル・拡大表示 */
.ushi-layout-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;max-width:900px;margin:28px auto 0}
.ushi-layout-card{margin:0;text-align:center}
.ushi-layout-thumb{position:relative;display:block;width:100%;padding:0;overflow:hidden;border:1px solid #d8ccc4;border-radius:12px;background:#fff;box-shadow:0 6px 20px rgba(0,0,0,.08);cursor:zoom-in}
.ushi-layout-thumb img{display:block;width:100%;height:320px;object-fit:contain;background:#f7f7f7;transition:transform .25s ease}
.ushi-layout-thumb:hover img{transform:scale(1.02)}
.ushi-layout-zoom-label{position:absolute;right:10px;bottom:10px;padding:5px 10px;border-radius:999px;background:rgba(58,35,17,.88);color:#fff;font-size:12px;pointer-events:none}
.ushi-layout-card figcaption{margin-top:10px;color:#3a2311;font-family:'Shippori Mincho B1',serif;font-size:15px}
.ushi-layout-modal{position:fixed;inset:0;z-index:3000;display:flex;align-items:center;justify-content:center;padding:24px;background:rgba(0,0,0,.88);opacity:0;visibility:hidden;pointer-events:none;transition:opacity .2s ease,visibility .2s ease}
.ushi-layout-modal.open{opacity:1;visibility:visible;pointer-events:auto}
.ushi-layout-modal img{display:block;max-width:min(96vw,1400px);max-height:90vh;width:auto;height:auto;object-fit:contain;background:#fff;box-shadow:0 12px 40px rgba(0,0,0,.35)}
.ushi-layout-modal-close{position:fixed;top:15px;right:18px;z-index:3001;width:46px;height:46px;border:1px solid rgba(255,255,255,.65);border-radius:50%;background:rgba(0,0,0,.6);color:#fff;font-size:30px;line-height:1;cursor:pointer}
@media(max-width:768px){.ushi-layout-grid{grid-template-columns:1fr;gap:18px;margin-top:20px}.ushi-layout-thumb img{height:240px}.ushi-layout-zoom-label{right:8px;bottom:8px;font-size:11px}.ushi-layout-card figcaption{font-size:14px}.ushi-layout-modal{padding:10px}.ushi-layout-modal img{max-width:98vw;max-height:88vh}.ushi-layout-modal-close{top:8px;right:8px;width:42px;height:42px;font-size:27px}}
