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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.app-container {
  background-color: white;
  min-height: 100vh;
  position: relative;
}

/* Header */
.header {
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 48px 60px;
    align-items: center;
  }
}

.header-title {
  font-size: 24px;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .header-title {
    font-size: 32px;
  }
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  gap: 32px;
  color: #ff7000;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop button {
  background: none;
  border: none;
  color: #ff7000;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.nav-desktop button:hover {
  opacity: 0.7;
}

/* Hamburger Menu Button */
.hamburger-button {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 768px) {
  .hamburger-button {
    display: none;
  }
}

.hamburger-line {
  width: 100%;
  height: 1px;
  background-color: #2f2f2f;
  transition: all 0.3s;
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 50;
  transition: opacity 0.3s;
  display: none;
}

@media (max-width: 767px) {
  .menu-overlay {
    display: block;
  }
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay.closed {
  opacity: 0;
  pointer-events: none;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 50;
  transition: transform 0.3s ease-in-out;
  display: none;
}

@media (max-width: 767px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu.closed {
  transform: translateX(100%);
}

.mobile-menu-content {
  padding: 24px;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}

.mobile-menu-title {
  font-size: 24px;
}

.close-button {
  position: relative;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.close-button span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 1px;
  background-color: #2f2f2f;
  transform: translateY(-50%);
}

.close-button span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.close-button span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

/* Mobile Navigation */
.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.nav-mobile-item {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-mobile-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.nav-mobile-text {
  font-size: 18px;
  color: #2f2f2f;
}

/* Main Visual */
.main-visual {
  position: relative;
}

.main-visual-inner {
  position: relative;
  height: 368px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .main-visual-inner {
    height: 515px;
  }
}

.main-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Section */
.about-section {
  background-color: white;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .about-section {
    padding: 64px 0;
  }
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .section-container {
    padding: 0 60px;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .about-content {
    gap: 32px;
  }
}

.about-title {
  font-size: 24px;
  color: #ff7000;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 32px;
  }
}

.about-title span {
  display: block;
}

@media (min-width: 768px) {
  .about-title span {
    display: inline;
  }
}

.about-text {
  font-size: 14px;
  color: #2f2f2f;
  max-width: 960px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .about-text {
    font-size: 16px;
  }
}

/* Lineup Section */
.lineup-section {
  background-color: #fff8e0;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .lineup-section {
    padding: 96px 0;
  }
}

.section-title {
  font-size: 24px;
  color: #2f2f2f;
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 48px;
  }
}

.lineup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 343px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lineup-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
}

.lineup-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.lineup-image-wrapper {
  height: 210px;
  overflow: hidden;
}

.lineup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-item-content {
  padding: 16px;
}

.lineup-item-title {
  font-size: 18px;
  color: #2f2f2f;
  margin-bottom: 16px;
}

.lineup-badge {
  background-color: #fff8e0;
  display: inline-block;
  padding: 4px 16px;
  margin-bottom: 16px;
}

.lineup-badge-text {
  color: #ff7000;
}

.lineup-description {
  font-size: 14px;
  color: #2f2f2f;
  margin-bottom: 16px;
  line-height: 1.6;
}

.lineup-store {
  font-size: 14px;
  color: #ff7000;
  border-bottom: 1px solid #ff7000;
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.lineup-price {
  font-size: 14px;
  color: #ff7000;
  margin-bottom: 16px;
}

.lineup-button {
  width: 100%;
  background-color: #ff7000;
  color: white;
  padding: 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
}

.lineup-button:hover {
  background-color: #e66600;
}

.lineup-button-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 12px;
}

/* Access Section */
.access-section {
  background-color: white;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .access-section {
    padding: 96px 0;
  }
}

.access-title {
  font-size: 24px;
  color: #2f2f2f;
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .access-title {
    font-size: 32px;
  }
}

.access-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .access-address {
    margin-bottom: 32px;
  }
}

.access-icon {
  width: 20px;
  height: 24px;
}

.access-address-text {
  font-size: 14px;
  color: #2f2f2f;
}

@media (min-width: 768px) {
  .access-address-text {
    font-size: 16px;
  }
}

.access-map {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .access-map {
    margin-bottom: 32px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
  }
}

.access-map-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.access-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .access-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1160px;
    margin: 0 auto;
  }
}

.access-info-title {
  font-size: 16px;
  color: #ff7000;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .access-info-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.access-info-text {
  font-size: 14px;
  color: #2f2f2f;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .access-info-text {
    font-size: 16px;
  }
}

/* News Section */
.news-section {
  background-color: #ff7000;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .news-section {
    padding: 96px 0;
  }
}

.news-title {
  font-size: 24px;
  color: white;
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .news-title {
    font-size: 32px;
    margin-bottom: 48px;
  }
}

.news-content {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .news-content {
    padding: 48px;
  }
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .news-list {
    gap: 32px;
  }
}

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

@media (min-width: 768px) {
  .news-item {
    gap: 12px;
  }
}

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

@media (min-width: 768px) {
  .news-item-header {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

.news-date {
  background-color: #fff8e0;
  display: inline-block;
  padding: 4px 16px;
  width: fit-content;
}

.news-date-text {
  font-size: 14px;
  color: #ff7000;
}

@media (min-width: 768px) {
  .news-date-text {
    font-size: 16px;
  }
}

.news-item-title {
  font-size: 16px;
  color: #ff7000;
}

@media (min-width: 768px) {
  .news-item-title {
    font-size: 18px;
  }
}

.news-item-description {
  font-size: 14px;
  color: #2f2f2f;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: white;
  padding: 32px 0;
}

@media (min-width: 768px) {
  .footer {
    padding: 64px 0;
  }
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-title {
  font-size: 24px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #ff7000;
}

@media (min-width: 768px) {
  .footer-nav {
    flex-direction: row;
    gap: 32px;
  }
}

.footer-nav button {
  background: none;
  border: none;
  color: #ff7000;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: opacity 0.2s;
}

@media (min-width: 768px) {
  .footer-nav button {
    text-align: center;
  }
}

.footer-nav button:hover {
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.social-icon {
  width: 24px;
  height: 24px;
  background-color: #2f2f2f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon.facebook {
  border-radius: 2px;
}

.social-icon.twitter,
.social-icon.instagram {
  border-radius: 50%;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.social-icon-text {
  color: white;
  font-size: 18px;
}

.footer-copyright {
  font-size: 12px;
  color: #2f2f2f;
}
