* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  color: #1C2B39;
  background: #F7FAFD;
  line-height: 1.8;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0),
      rgba(0,0,0,.55)
    ),
    url("images/hero-bbq.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,.04), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 30px;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.badge,
.section-label {
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 900;
  color: #0A3D91;
}

.badge {
  color: #0A3D91;
  display: inline-block;
  padding: 9px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(212,175,55,.55);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.hero h1 {
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.22;
  margin: 24px 0;
  font-weight: 900;
  letter-spacing: .04em;
  text-shadow: 0 6px 20px rgba(0,0,0,.45);
}

.lead {
  font-size: clamp(17px, 3vw, 23px);
  font-weight: 600;
  text-shadow: 0 4px 12px rgba(0,0,0,.35);
}

.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  margin: 8px;
  transition: .35s ease;
}

.btn.main {
  color: #fff;
  background: linear-gradient(135deg, #D4AF37, #E8C75A);
  box-shadow: 0 12px 28px rgba(10, 61, 145, .28);
}

.btn.sub {
  background: rgba(255,255,255,.94);
  color: #0A3D91;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
}


.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px 20px;
}

.section h2 {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.35;
  text-align: center;
  margin: 10px 0 34px;
  color: #0A3D91;
}

.section-label {
  display: block;
  text-align: center;
  margin-bottom: 8px;
}

.intro {
  text-align: center;
}

.intro p {
  font-size: 18px;
}

.comfort,
.family {
  max-width: none;
  background: linear-gradient(135deg, #EEF6FF, #FFFFFF);
  padding-left: max(20px, calc((100% - 1120px) / 2));
  padding-right: max(20px, calc((100% - 1120px) / 2));
}

.comfort-box {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(10, 61, 145, .14);
  border-radius: 34px;
  padding: 54px 46px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(10, 61, 145, .10);
}

.comfort-main-text {
  font-size: 17px;
  font-weight: 600;
}

.comfort-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.comfort-list span {
  background: #fff;
  border-radius: 999px;
  padding: 14px;
  font-weight: 900;
  color: #0A3D91;
  box-shadow: 0 4px 12px rgba(10,61,145,.08);
}

.comfort-photo {
  margin: 36px auto 0;
  max-width: 920px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 42px rgba(10, 61, 145, .16);
}

.comfort-photo img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.comfort-photo p {
  position: absolute;
  left: 24px;
  bottom: 20px;
  margin: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #0A3D91;
  font-size: 14px;
  font-weight: 800;
}

.comfort-caution {
  margin-top: 22px;
  font-size: 14px;
  color: #7A8795;
}

.view-time-section {
  max-width: 1180px;
}

.view-time-lead {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
  font-size: 17px;
  line-height: 2;
}

.view-time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.view-time-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 520px;
  box-shadow: 0 18px 42px rgba(10, 61, 145, .16);
}

.view-time-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform .7s ease;
}

.view-time-card:hover img {
  transform: scale(1.06);
}

.view-time-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 25%, rgba(0,0,0,.68) 100%);
  z-index: 1;
}

.view-time-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: #fff;
}

.view-time-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: #fff;
}

.time-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 14px;
  padding: 10px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.time-badge span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.time-badge strong {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .03em;
}

.view-time-content h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.35;
  text-shadow: 0 4px 18px rgba(0,0,0,.38);
}

.view-time-content h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 36px);
}

.view-time-content p {
  margin: 0;
  font-size: 15px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(10, 61, 145, .12);
  box-shadow: 0 10px 28px rgba(10, 61, 145, .08);
  transition: .35s ease;
}

.card:hover,
.photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(10, 61, 145, .15);
}

.card span,
.card h3,
.photo-card h3,
.food-price {
  color: #0A3D91;
}

.card span {
  font-size: 30px;
  font-weight: 900;
}

.family {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.family h2,
.family .section-label {
  text-align: left;
}

.price-box {
  background: #fff;
  border-radius: 30px;
  padding: 36px;
  border: 1px solid rgba(10, 61, 145, .14);
  box-shadow: 0 14px 34px rgba(10, 61, 145, .10);
}

.price-box > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(10, 61, 145, .12);
  padding: 14px 0;
}

.price-box strong {
  font-size: 34px;
  color: #0A3D91;
}

.play {
  text-align: center;
}

.play-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.play-grid div {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  font-weight: 900;
  color: #0A3D91;
  box-shadow: 0 8px 22px rgba(10, 61, 145, .07);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.photo-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(10, 61, 145, .08);
  transition: .35s ease;
}

.photo-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.photo-card h3,
.photo-card p {
  padding: 0 26px;
}

.photo-card p {
  padding-bottom: 24px;
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10, 61, 145, .09);
}

.price-table th {
  background: #0A3D91;
  color: #fff;
  padding: 18px;
}

.price-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(10, 61, 145, .10);
  text-align: center;
}

.price-table td:first-child {
  font-weight: 900;
  text-align: left;
  color: #0A3D91;
}

.faq details {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(10, 61, 145, .06);
}

.faq summary {
  font-weight: 900;
  cursor: pointer;
  color: #0A3D91;
}

.final-cta {
  background:
    linear-gradient(rgba(10,61,145,.82), rgba(21,101,192,.84)),
    url("images/hero-bbq.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px 130px;
}

.final-cta h2 {
  font-size: clamp(30px, 5vw, 54px);
  color: #fff;
}

.final-cta p {
  color: #D4AF37;
  font-weight: 900;
  letter-spacing: .14em;
}

.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,.96);
  padding: 10px 14px;
  box-shadow: 0 -5px 20px rgba(0,0,0,.16);
  z-index: 999;
}

.fixed-cta a {
  display: block;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(135deg, #D4AF37, #E8C75A);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

/* Scroll Animation */

.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.fade-up {
  transform: translateY(46px);
}

.fade-left {
  transform: translateX(-54px);
}

.fade-right {
  transform: translateX(54px);
}

.fade-up.show,
.fade-left.show,
.fade-right.show {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(24px); }
}

@media (max-width: 900px) {
  .family,
  .two-column,
  .view-time-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .comfort-list {
    grid-template-columns: 1fr 1fr;
  }

  .family h2,
  .family .section-label {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 86vh;
  }

  .section {
    padding: 64px 18px;
  }

  .cards,
  .play-grid,
  .comfort-list {
    grid-template-columns: 1fr;
  }

  .comfort-box {
    padding: 34px 22px;
  }

  .comfort-photo img {
    aspect-ratio: 4 / 3;
  }

  .comfort-photo p {
    position: static;
    border-radius: 0;
    text-align: center;
  }

  .view-time-card,
  .view-time-card img {
    min-height: 420px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .badge,
  .section-label {
    font-size: 11px;
  }
}

.info-section{
  max-width:1000px;
}

.info-table{

  background:#fff;

  border-radius:30px;

  overflow:hidden;

  box-shadow:
  0 15px 35px rgba(10,61,145,.08);

}

.info-row{

  display:grid;

  grid-template-columns:
  220px 1fr;

  border-bottom:
  1px solid rgba(10,61,145,.08);

}

.info-row:last-child{
  border-bottom:none;
}

.info-title{

  background:#F3F8FF;

  padding:24px;

  font-weight:700;

  color:#0A3D91;
}

.info-content{

  padding:24px;

  line-height:2;
}

.info-content a{

  color:#0A3D91;

  font-weight:700;

  text-decoration:none;
}