@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* -------------------------
 * Intro Screen
 * ------------------------- */
#intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--color-yellow, #ffcc00);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#intro-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-logo {
  width: 200px;
  animation: introPulse 1.8s ease-in-out infinite;
}

@keyframes introPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

.intro-countdown {
  text-align: center;
  line-height: 1.4;
}

.intro-countdown .label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
  color: var(--color-text, #333);
  letter-spacing: 0.08em;
}

.intro-countdown .days {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(72px, 14vw, 120px);
  font-weight: 900;
  color: var(--color-orange, #eb592c);
  line-height: 1;
  display: block;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.06);
}

.intro-countdown .days-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 900;
  color: var(--color-text, #333);
  letter-spacing: 0.15em;
  display: block;
  margin-top: 4px;
}

/* Loading bar */
.intro-loading-bar-wrap {
  width: min(360px, 80vw);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.intro-loading-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.intro-loading-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--color-orange, #eb592c);
  border-radius: 999px;
  transition: width 0.08s linear;
}

.intro-loading-pct {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-orange, #eb592c);
  letter-spacing: 0.05em;
}


:root {
  --color-yellow: #ffcc00;
  /* Main yellow bg */
  --color-orange: #eb592c;
  /* Greeting bg */
  --color-teal: #4db39d;
  /* Artist bg */
  --color-beige: #f5ebe1;
  /* Access bg */
  --color-text: #333333;
  --color-white: #ffffff;
  --color-border: #cccccc;
  --font-en: 'Montserrat', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-beige);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* -------------------------
 * Header & Hero
 * ------------------------- */
.hero-section {
  background-color: var(--color-yellow);
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 110;
  transition: all 0.3s ease;
}

.header-inner.scrolled {
  background-color: rgba(255, 204, 0, 0.95);
  padding: 10px 20px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.logo {
  text-align: center;
  width: 120px;
  z-index: 100;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  transition: all 0.3s ease;
}

.header-inner.scrolled .logo {
  width: 100px;
  margin-top: 0;
}

/* Hamburger & Mobile Menu (Hidden on PC) */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  z-index: 110;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-orange);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 204, 0, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 90;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 24px;
  color: var(--color-text);
  letter-spacing: 0.1em;
}

.mobile-menu .btn-entry-nav {
  margin-top: 20px;
  border: 2px solid var(--color-text);
  padding: 10px 40px;
  border-radius: 30px;
}

.btn-entry-nav {
  border: 2px solid var(--color-text);
  padding: 8px 30px;
  border-radius: 40px;
  font-weight: 700;
  background: transparent;
  transition: all 0.3s;
}

.btn-entry-nav:hover {
  background: var(--color-text);
  color: var(--color-yellow);
}

.hero-content {
  position: relative;
  width: 90%;
  margin: 0 auto;
  height: 600px;
  z-index: 5;
  margin-top: 40px;
}

.entry-badge {
  position: absolute;
  top: 50px;
  left: 20px;
  width: 216px;
  z-index: 10;
}

/* バッジリンクを relative にしてオーバーレイの基準にする */
.badge-link {
  position: relative;
  display: block;
}

.badge-bg {
  display: block;
  width: 100%;
}

/* カウントダウンオーバーレイ */
.badge-countdown {
  position: absolute;
  bottom: 42px;
  left: 43%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  pointer-events: none;
}

@media screen and (max-width: 890px) {
  .badge-countdown {

    bottom: 28px;
  }
}

.badge-cd-label {
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.05em;
  text-shadow: none;
}

.badge-cd-days {
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.badge-cd-unit {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.1em;
  text-shadow: none;
}

.star-large {
  position: absolute;
  top: 280px;
  left: 30px;
  width: 50px;
  z-index: 8;
}

.star-small {
  position: absolute;
  top: 150px;
  left: 250px;
  width: 25px;
  z-index: 8;
}

.log-house {
  position: absolute;
  top: 77px;
  left: 50%;
  transform: translateX(-50%);
  width: 530px;
  z-index: 5;
  mix-blend-mode: multiply;
}

.hero-text {
  position: absolute;
  top: 80px;
  right: -25px;
  width: 310px;
  z-index: 10;
  /* 背景とテキストを合成して視認性を保つ（差の絶対値など） */
  mix-blend-mode: difference;
}

.en-title {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 38px;
  color: var(--color-orange);
  line-height: 0;
  letter-spacing: 0.05em;
}

.date-marker {
  background: linear-gradient(transparent 40%, rgba(176, 255, 152, 0.761) 40%);
  display: inline-block;
  line-height: 1.2;
  padding: 0 4px;
}

.jp-desc {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.scroll-down {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  z-index: 10;
}

.wave-orange {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 10;
}

.wave-orange svg {
  width: 100%;
  height: 100%;
}

/* -------------------------
 * GREETING Section
 * ------------------------- */
.greeting-section {
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 80px 0 80px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.greeting-section .inner {
  position: relative;
  z-index: 10;
}

.section-title.en {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 40px;
}

.section-subtitle br {
  display: none;
}

.greeting-text p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 2.2;

}

.owner-couple {
  position: absolute;
  top: 0;
  right: 2%;
  width: 390px;
  z-index: 1;
}

/* -------------------------
 * Photo Slideshow
 * ------------------------- */
.photo-slideshow-wrap {
  overflow: hidden;
  width: 100%;
  background-color: var(--color-orange);
  padding: 32px 0 60px;
  position: relative;
  z-index: 4;
}

.photo-slideshow-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: slideScroll 30s linear infinite;
}

.photo-slideshow-wrap:hover .photo-slideshow-track {
  animation-play-state: paused;
}

.photo-slideshow-track img {
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-slideshow-track img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

@keyframes slideScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* 7枚分の幅（260px + 16px gap）× 7 = 1932px */
    transform: translateX(calc(-276px * 7));
  }
}

/* -------------------------
 * Photo Lightbox
 * ------------------------- */
#photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#photo-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.lb-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 90vw;
  max-height: 90vh;
}

.lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lb-img {
  max-width: min(800px, 80vw);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
  transition: opacity 0.2s ease;
}

#lb-img.fade {
  opacity: 0;
}

/* Prev / Next ボタン行 */
.lb-nav-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* PC: 絶対配置で画像の左右に出す */
#lbPrev {
  position: absolute;
  left: -70px;
  top: 40%;
  transform: translateY(-50%);
}

#lbNext {
  position: absolute;
  right: -70px;
  top: 40%;
  transform: translateY(-50%);
}

.lb-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.lb-nav:hover {
  background: var(--color-orange, #eb592c);
  border-color: var(--color-orange, #eb592c);
  transform: translateY(-50%) scale(1.08);
}

#lbPrev:hover,
#lbNext:hover {
  transform: translateY(-50%) scale(1.08);
}

/* 閉じるボタン */
.lb-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  backdrop-filter: blur(4px);
}

.lb-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* カウンター表示 */
.lb-counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  letter-spacing: 0.1em;
}

/* スライドショー画像にカーソルポインタ */
.photo-slideshow-track img {
  cursor: pointer;
}

/* -------------------------
 * ARTIST Section
 * ------------------------- */
.artist-section {
  background-color: var(--color-teal);
  padding: 12vw 0 10vw;
  /* padding top accommodates overlap */
  color: var(--color-white);
  text-align: center;
  position: relative;
  z-index: 2;
  /* Diagonal cut bottom */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
  margin-bottom: -8vw;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.artist-card {
  text-align: left;
}

.artist-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
}

.artist-name {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
}

/* -------------------------
 * SHOP Section
 * ------------------------- */
.shop-section {
  background-color: var(--color-yellow);
  padding: 12vw 0 100px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.shop-card {
  display: flex;
  background: transparent;
  text-align: left;
  gap: 20px;
  align-items: center;
}

.shop-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.shop-info {
  flex: 1;
}

.shop-name {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 5px;
}

.shop-account {
  color: var(--color-orange);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
}

.shop-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

/* Genre Badges */
.genre-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.genre-food {
  background: #ff6b35;
  color: #fff;
}

.genre-drink {
  background: #2ec4b6;
  color: #fff;
}

.genre-goods {
  background: #44b36b;
  color: #fff;
}

.genre-apparel {
  background: #9b59b6;
  color: #fff;
}

.genre-experience {
  background: #8b5e3c;
  color: #fff;
}

.genre-other {
  background: #999;
  color: #fff;
}

.wave-white {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 10;
}

.wave-white svg {
  width: 100%;
  height: 100%;
}

/* -------------------------
 * ACCESS Section
 * ------------------------- */
.access-section {
  background-color: var(--color-beige);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.section-title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.section-title-wrap .line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--color-text);
}

.section-title-jp {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.access-catch {
  font-family: var(--font-en);
  color: var(--color-teal);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1em;
}

.access-sub {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
}

.map-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.address {
  font-size: 16px;
  font-weight: 500;
}

/* -------------------------
 * VENUE Section
 * ------------------------- */
.venue-section {
  background-color: #efe5db;
  /* Slightly darker than var(--color-beige) */
  padding: 40px 0 0;
}

.venue-section .section-title-jp {
  color: var(--color-white);
}

.venue-section .line {
  background-color: var(--color-white);
}

.venue-map {

  width: 100%;
}

.venue-map img {
  width: 100%;
}

.caution-box {
  background-color: var(--color-yellow);
  padding: 20px 0;
  text-align: center;
  margin-top: 0px;
}

.caution-box p {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

/* -------------------------
 * TIMETABLE Section
 * ------------------------- */
.timetable-section {
  background-color: var(--color-white);
  padding: 80px 0;
}

.timetable-list {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
}

.timetable-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 2px dashed #f0f0f0;
  transition: background 0.3s ease;
}

.timetable-item:last-child {
  border-bottom: none;
}

.timetable-item .time {
  width: 120px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 28px;
  color: var(--color-orange);
  text-align: right;
  line-height: 1;
}

.timetable-item .artist-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.timetable-item .artist-info img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-yellow);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timetable-item .artist-info .name {
  font-weight: 900;
  font-size: 20px;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.timetable-item.end {
  background: #fafafa;
  border-radius: 12px;
  padding: 20px 30px;
  border-bottom: none;
  margin-top: 10px;
}

.timetable-item.end .time {
  color: #999;
}

.timetable-item.end .name {
  color: #999;
  font-size: 16px;
}

@media screen and (max-width: 600px) {
  .timetable-item {
    gap: 15px;
    padding: 20px 0;
  }

  .timetable-item .time {
    width: 70px;
    font-size: 20px;
  }

  .timetable-item .artist-info img {
    width: 48px;
    height: 48px;
  }

  .timetable-item .artist-info .name {
    font-size: 16px;
  }
}

/* -------------------------
 * MESSAGE BOARD Section
 * ------------------------- */
.messages-section {
  background-color: var(--color-teal);
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}

.messages-section .section-title-jp {
  color: var(--color-white);
}

.messages-section .section-desc {
  text-align: center;
  color: var(--color-white);
  margin-top: -20px;
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 16px;
}

.message-board {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.message-card {
  width: min(340px, 90vw);
  background: var(--color-white);
  padding: 30px;
  border-radius: 4px;
  /* Post-it style */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.message-card:nth-child(even) {
  transform: rotate(2deg);
}

.message-card:nth-child(odd) {
  transform: rotate(-1.5deg);
}

.message-card:nth-child(3n) {
  transform: rotate(1deg) translateY(-10px);
}

.message-card:hover {
  transform: rotate(0) scale(1.03) !important;
  z-index: 10;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
}

/* Card color variants */
.message-card.c1 {
  border-top: 10px solid var(--color-orange);
}

.message-card.c2 {
  border-top: 10px solid var(--color-yellow);
}

.message-card.c3 {
  border-top: 10px solid #a3e635;
}

/* a lime green */
.message-card.c4 {
  border-top: 10px solid #38bdf8;
}

/* a light blue */

.message-text {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 500;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  white-space: pre-wrap;
  min-height: 80px;
}

.message-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #eee;
  padding-top: 15px;
}

.message-author {
  font-weight: 900;
  color: var(--color-text);
  font-size: 15px;
}

.message-date {
  font-size: 12px;
  color: #999;
  font-family: var(--font-en);
}

.message-actions {
  text-align: center;
}

.btn-post-message {
  background: var(--color-yellow);
  color: var(--color-text);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-post-message:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: #f7c100;
}

/* -------------------------
 * ENTRY Section
 * ------------------------- */
.entry-section {
  background-color: #fff8e1;
  padding: 40px 0 100px;
}

.entry-form {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 50px 60px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 25px;
}

.form-group label {
  font-weight: 900;
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  font-family: inherit;
  font-size: 16px;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(235, 89, 44, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 10 6" xmlns="http://www.w3.org/2000/svg"><path d="M0 0l5 6 5-6z" fill="%23333"/></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 10px 6px;
}

.select-wrap {
  width: 100%;
  display: flex;
}

.select-wrap select {
  width: 100%;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.file-upload {
  width: 100%;
  display: flex;
}

.btn-file {
  display: inline-flex;
  padding: 16px 30px;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  cursor: pointer;
  font-weight: 700;
  color: #64748b;
  width: 100%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.btn-file:hover {
  background: #f1f5f9;
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.btn-file input[type="file"] {
  display: none;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.btn-cancel {
  background: #f1f5f9;
  color: #64748b;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  flex: 1;
  transition: all 0.3s;
}

.btn-cancel:hover {
  background: #e2e8f0;
  color: var(--color-text);
}

.btn-submit {
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  flex: 2;
  box-shadow: 0 4px 15px rgba(235, 89, 44, 0.3);
  transition: all 0.3s;
}

.btn-submit:hover {
  background: #d44920;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235, 89, 44, 0.4);
}

/* -------------------------
 * CONTACT Section
 * ------------------------- */
.contact-section {
  background-color: var(--color-white);
  padding: 100px 0;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 50px auto 0;
  background: var(--color-beige);
  padding: 60px 40px;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-info {
  margin-bottom: 50px;
}

.contact-lead {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 15px;
}

.contact-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-family: var(--font-en);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 900;
  color: var(--color-orange);
  background: var(--color-white);
  padding: 15px 40px;
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(235, 89, 44, 0.15);
  transition: all 0.3s ease;
  line-height: 1;
}

.contact-tel:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(235, 89, 44, 0.25);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  border-top: 2px dashed rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-item .label {
  font-size: 14px;
  font-weight: 900;
  color: var(--color-orange);
  letter-spacing: 0.1em;
}

.detail-item .value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}

@media screen and (max-width: 600px) {
  .contact-container {
    padding: 40px 20px;
    margin-top: 40px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-tel {
    padding: 12px 25px;
    width: 100%;
  }
}

/* -------------------------
 * Footer
 * ------------------------- */
.site-footer {
  background-color: var(--color-yellow);
  text-align: center;
  padding-top: 60px;
  position: relative;
}

.footer-content {
  margin-bottom: 20px;
}

.footer-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-orange);
  margin-bottom: 10px;
}

.footer-date,
.footer-address {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.footer-bg img {
  width: 100%;
  display: block;
}

/* -------------------------
 * Artist Modal
 * ------------------------- */
.artist-card {
  cursor: pointer;
  transition: transform 0.3s;
}

.artist-card:hover {
  transform: translateY(-5px);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 196, 0, 0.9);
}

.modal-content-wrap {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 800px;
}

.modal-close-btn {
  position: absolute;
  top: -60px;
  right: -30px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 50px;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s;
}

.modal-close-btn:hover {
  transform: scale(1.1);
}

/* モーダル 前後ナビボタン */
.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.modal-nav-btn:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateY(-50%) scale(1.08);
}

.modal-nav-prev {
  left: -64px;
}

.modal-nav-next {
  right: -64px;
}

/* PC時: modal-nav-rowは表示しないでabsoluteボタンのみ使う */
.modal-nav-row {
  display: contents;
  /* 子要素を直接親に展開し、自身はレイアウトに関与しない */
}

/* カウンター */
.modal-nav-counter {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.modal-content {
  background: var(--color-white);
  border-radius: 40px;
  padding: 40px;
  display: flex;
  gap: 40px;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.6);
  color: var(--color-text);
}

.modal-left {
  flex: 1.2;
}

.modal-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.modal-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.modal-right h3 {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 14px;
  line-height: 1.8;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 20px;
  margin-bottom: 20px;
}

/* Custom Scrollbar for Modal Desc */
.modal-desc::-webkit-scrollbar {
  width: 6px;
}

.modal-desc::-webkit-scrollbar-track {
  background: transparent;
}

.modal-desc::-webkit-scrollbar-thumb {
  background: var(--color-text);
  border-radius: 10px;
}

.modal-socials {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-text);
  border-radius: 50%;
  transition: opacity 0.3s;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  opacity: 0.7;
}

/* -------------------------
 * Responsive (Tablet/Small Desktop)
 * ------------------------- */
@media screen and (max-width: 1200px) {
  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .logo {
    width: 200px;
  }

  .log-house {
    width: 580px;
    left: 45%;
  }

  .hero-text h1 {
    line-height: 0.9;
  }

  .en-title {
    font-size: 28px;
    line-height: 0.9;
  }

  .hero-text {
    width: 270px;
    padding-right: 10px;
  }

  .jp-desc {
    font-size: 14px;
  }
}

/* -------------------------
 * Responsive (Tablet)
 * ------------------------- */
@media screen and (max-width: 1030px) {
  .log-house {
    width: 552px;
    margin-top: 27px;
    left: 41%;

  }
}

/* -------------------------
 * Responsive (Mobile)
 * ------------------------- */
@media screen and (max-width: 890px) {
  .inner {
    padding: 0 20px;
  }

  .photo-slideshow-track img {
    width: 180px;
    height: 140px;
  }

  @keyframes slideScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-196px * 7));
    }
  }

  .venue-section {
    overflow: hidden;
  }

  .venue-map {
    margin: 0;
    max-width: 100%;
  }

  .greeting-text p {
    text-align: left;

  }

  .greeting-text p br {
    display: none;

  }

  .section-subtitle br {
    display: block;
  }

  .header-inner {
    flex-direction: row;
    gap: 0;
  }

  .logo {
    width: 100px;
    margin-top: 0;
  }

  .header-inner.scrolled .logo {
    width: 110px;
    margin-top: 10px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
    /* Push to right edge */
  }

  .hero-content {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 150px;
    margin-top: 80px;
  }

  .star-large,
  .star-small,
  .log-house,
  .hero-text {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: 0;
  }

  .entry-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 195px;
    margin: 0;
    z-index: 20;
  }

  .star-large,
  .star-small {
    display: none;
    /* Hide stars on mobile or position them differently */
  }

  .log-house {
    width: 100%;
    max-width: 600px;
  }

  .hero-text {
    margin-top: 30px;
    width: 100%;
    text-align: center;
  }

  .owner-couple {
    width: 250px;
    right: 5%;
  }

  .greeting-section {
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    margin-bottom: -18vw;
  }

  .artist-section {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 96%);
    margin-bottom: -18vw;
    padding-top: 18vw;
    padding-bottom: 22vw;
  }

  .shop-section {
    padding-top: 22vw;
  }

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

  .modal-content {
    flex-direction: column;
    padding: 20px 16px;
    border-radius: 20px;
    gap: 16px;
    max-height: 80vh;
    overflow-y: auto;
  }

  .modal-left img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: auto;
  }

  .modal-close-btn {
    top: -70px;
    right: 0;
  }

  /* ライトボックス：スマホでは絶対配置を解除して写真下のlb-nav-rowに収める */
  #lbPrev,
  #lbNext {
    position: static;
    transform: none;
  }

  #lbPrev:hover,
  #lbNext:hover {
    transform: scale(1.08);
  }

  #lb-img {
    max-width: 90vw;
    max-height: 65vh;
  }

  /* モバイル：ナビボタンをコンテンツ内に横並びで表示 */
  .modal-content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 92%;
  }

  .modal-content {
    order: 1;
    width: 100%;
  }

  .modal-nav-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    order: 2;
  }

  .modal-nav-btn {
    position: static;
    transform: none;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }

  .modal-nav-btn:hover {
    transform: scale(1.08);
  }

  .modal-nav-counter {
    position: static;
    transform: none;
    font-size: 14px;
  }

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

  .entry-form {
    padding: 30px 20px;
  }

  .form-group {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
    margin-bottom: 20px;
  }

  .form-group label {
    margin-bottom: 8px;
    width: auto;
  }

  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group input[type="email"],
  .select-wrap,
  .form-group textarea {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
    gap: 15px;
  }
}