@charset "utf-8";
/* CSS Document - Tottori 2026 */

/* ============================
   Base & Background
   ============================ */
body {
  background: #ffffff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
}

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

.backimage {
  background: url("../images/backimage-s.jpg") no-repeat;
  background-size: contain;
}

.backwhite {
  background: #FFFFFF;
}

/* ============================
   Navbar
   ============================ */
.site-nav {
  background: rgba(44, 85, 48, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.site-nav .navbar-brand {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
}
.site-nav .navbar-brand:hover { color: #d4e8c2; }
.site-nav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: .5rem .9rem !important;
  border-radius: 6px;
  transition: background .2s;
}
.site-nav .nav-link:hover {
  background: rgba(255,255,255,0.13);
  color: #fff !important;
}
.site-nav .navbar-toggler {
  border-color: rgba(255,255,255,0.3);
}
.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================
   Hero / Top Visual
   ============================ */
.hero-section {
  background: #ffffff;
  padding: 0;
  position: relative;
}
.hero-section .hero-img-wrap {
  position: relative;
}
.hero-section .hero-img-wrap img {
  width: 100%;
  display: block;
}
.hero-overlay {
  padding: 32px 0 28px;
  background: #ffffff;
  color: #333;
}
.hero-overlay h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
  color: #2c5530;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.hero-badge {
  display: inline-block;
  background: #f7faf4;
  border: 1px solid #dce6d4;
  color: #2c5530;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.92rem;
  font-weight: 600;
}

/* ============================
   Section Panels (card style)
   ============================ */
.sec-panel {
  background: #fff;
  border: 1px solid #e0e0d8;
  border-radius: 16px;
  padding: 36px 32px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
@media (max-width: 767px) {
  .sec-panel { padding: 24px 18px; border-radius: 12px; }
}

/* Section heading */
.sec-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 3px solid #3d7a42;
}
.sec-heading h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2c5530;
  margin: 0;
}
.sec-heading .sec-icon {
  width: 35px; height: 35px;
}
.sec-heading-sub {
  font-size: 0.82rem;
  color: #8a9a8c;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-left: auto;
}

/* ============================
   Info Grid (3-col cards)
   ============================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.info-card {
  background: #f7faf4;
  border: 1px solid #dce6d4;
  border-radius: 14px;
  padding: 22px 20px;
}
.info-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2c5530;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c5dbb8;
}

/* ============================
   Schedule blocks
   ============================ */
.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 767px) {
  .schedule-row { grid-template-columns: 1fr; }
}
.schedule-day {
  background: #f7faf4;
  border-left: 5px solid #3d7a42;
  border-radius: 12px;
  padding: 20px 22px;
}
.schedule-day h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c5530;
  margin-bottom: 8px;
}
.schedule-day .day-label {
  display: inline-block;
  background: #3d7a42;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 2px 10px;
  margin-bottom: 8px;
}

/* ============================
   Fee display (big numbers)
   ============================ */
.fee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 18px 0;
}
.fee-box {
  text-align: center;
  background: #f7faf4;
  border: 1px solid #dce6d4;
  border-radius: 14px;
  padding: 22px 16px;
}
.fee-box .fee-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2c5530;
  line-height: 1.1;
}
.fee-box .fee-unit {
  font-size: 0.92rem;
  color: #666;
}
.fee-box .fee-label {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: #888;
}

/* ============================
   Entry period highlight
   ============================ */
.entry-highlight {
  background: #fff8f0;
  border: 2px solid #e8a04c;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 18px;
}
.entry-highlight dt {
  font-weight: 700;
  color: #c0540a;
  margin-bottom: 2px;
}
.entry-highlight dd {
  margin-left: 0;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ============================
   Transfer box
   ============================ */
.transfer-box {
  background: #f0f5ee;
  border: 1px solid #c5dbb8;
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 14px;
}
.transfer-box .bank-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #2c5530;
}

/* ============================
   Note list
   ============================ */
.note-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.note-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #666;
}
.note-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #c0540a;
  font-weight: 700;
}

/* ============================
   Uniform brand cards
   ============================ */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .brand-grid { grid-template-columns: 1fr; }
}
.brand-card {
  background: #f7faf4;
  border: 1px solid #dce6d4;
  border-radius: 12px;
  padding: 18px 20px;
}
.brand-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c5530;
  margin-bottom: 6px;
}

/* ============================
   Tent rental table
   ============================ */
.tent-table {
  width: 100%;
  max-width: 400px;
  border-collapse: collapse;
  margin: 10px 0 14px;
}
.tent-table th, .tent-table td {
  padding: 8px 14px;
  border: 1px solid #dce6d4;
  font-size: 0.95rem;
}
.tent-table th {
  background: #3d7a42;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.tent-table td {
  background: #f7faf4;
}
.tent-table td:last-child {
  text-align: right;
  font-weight: 700;
}

/* ============================
   CTA button
   ============================ */
.btn-entry {
  display: inline-block;
  background: #3d7a42;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  padding: 12px 36px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  border: none;
}
.btn-entry:hover {
  background: #2c5530;
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-entry-outline {
  display: inline-block;
  background: transparent;
  color: #3d7a42;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #3d7a42;
  border-radius: 999px;
  padding: 10px 32px;
  text-decoration: none;
  transition: all .2s;
}
.btn-entry-outline:hover {
  background: #3d7a42;
  color: #fff;
  text-decoration: none;
}

/* ============================
   Privacy / Contact
   ============================ */
.privacy-item { margin-bottom: 14px; }
.privacy-item strong { color: #2c5530; }

.contact-box {
  text-align: center;
  padding: 10px 0;
}
.contact-box img { margin-bottom: 10px; }

/* ============================
   Photo row
   ============================ */
.photo-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.photo-row img {
  border-radius: 12px;
  max-width: 240px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 24px;
  row-gap: 16px;
  align-items: start;
}
.overview-content::after {
  display: none;
}
.photo-row--right {
  grid-column: 2;
  grid-row: 1 / span 2;
  float: none;
  margin: 0;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}
.overview-table {
  grid-column: 1;
  grid-row: 1;
  max-width: 500px;
  width: 100%;
}
.overview-content .access-thumb {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
}
@media (max-width: 767px) {
  .overview-content {
    grid-template-columns: 1fr;
  }
  .photo-row--right {
    grid-column: 1;
    grid-row: 1;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 8px;
  }
  .overview-table {
    grid-row: 2;
  }
  .overview-content .access-thumb {
    grid-row: 3;
  }
}

/* ============================
   Footer
   ============================ */
.site-footer {
  background: #ffffff;
  color: #888;
  padding: 28px 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid #e0e0d8;
}
.site-footer img {
  max-height: 60px;
  margin-bottom: 10px;
}
.site-footer a { color: #2c5530; }

/* ============================
   Access map thumbnail
   ============================ */
.access-thumb {
  display: block;
  margin: 16px 0 0;
  text-align: left;
}
.access-thumb img {
  width: 150px;
  border-radius: 8px;
  border: 1px solid #dce6d4;
}
.access-thumb small {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: #888;
}

/* ============================
   Smooth scroll offset
   ============================ */
[id] {
  scroll-margin-top: 64px;
}
