:root {
  --color-base: #FEFEFE;
  --color-main: #4CAF50;
  --color-accent: #FF6B35;
  --color-text: #2C2C2C;
  --font-heading: 'M PLUS Rounded 1c', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --radius: 12px;
  --section-padding: 80px;
  --container-max: 1200px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --gradient-main: linear-gradient(135deg, var(--color-main) 0%, #66BB6A 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, #FF8A50 100%);
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-base);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--color-main);
  border: 2px solid var(--color-main);
}

.btn-secondary:hover {
  background: var(--color-main);
  color: white;
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76, 175, 80, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--color-main);
  margin-bottom: 0;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.phone-link:hover {
  background: var(--color-main);
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(76, 175, 80, 0.6) 50%, rgba(255, 107, 53, 0.7) 100%);
  z-index: -1;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: var(--section-padding) 0;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .accent {
  color: var(--color-accent);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Spacing */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* Commitment Section */
.commitment {
  background: #F8F9FA;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.commitment-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.commitment-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-main);
}

.commitment-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.commitment-title {
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.commitment-text {
  color: #666;
  line-height: 1.7;
}

/* Seasonal Products Section */
.seasonal {
  background: var(--color-main);
  color: white;
  position: relative;
}

.seasonal .section-title,
.seasonal .section-subtitle {
  color: white;
}

.seasonal-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.seasonal-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.seasonal-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.seasonal-btn.active,
.seasonal-btn:hover {
  background: white;
  color: var(--color-main);
}

.seasonal-panel {
  display: none;
}

.seasonal-panel.active {
  display: block;
}

.seasonal-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  color: #666;
  font-size: 0.9rem;
}

/* Direct Delivery Section */
.direct-delivery {
  background: var(--color-base);
}

.direct-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.direct-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.direct-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.direct-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-number {
  background: var(--gradient-accent);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h4 {
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-content p {
  color: #666;
  line-height: 1.7;
}

/* Reviews Section */
.reviews {
  background: #F8F9FA;
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
  border-left: 4px solid var(--color-main);
}

.review-stars {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-text {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 700;
  color: var(--color-text);
}

.author-info {
  color: #666;
  font-size: 0.9rem;
}

/* Atmosphere Section */
.atmosphere {
  background: var(--color-base);
}

.atmosphere-gallery {
  display: grid;
  gap: 1.5rem;
}

.gallery-main {
  width: 100%;
}

.gallery-main .gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item .gallery-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.gallery-item .gallery-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* Store Info Section */
.store-info {
  background: #F8F9FA;
}

.info-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item h4 {
  color: var(--color-main);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.info-item p {
  color: var(--color-text);
  line-height: 1.6;
}

.map-container {
  background: #E0E0E0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 300px;
}

.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* Hours Section */
.hours {
  background: var(--color-base);
}

.hours-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}

.hours-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hours-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hours-item h4 {
  color: var(--color-main);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hours-time {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.hours-item small {
  color: #666;
  display: block;
}

.hours-calendar {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hours-calendar h4 {
  color: var(--color-main);
  margin-bottom: 1rem;
}

.calendar-note {
  color: #666;
}

.fresh-note {
  color: var(--color-accent) !important;
  font-weight: 700;
  margin-top: 1rem;
}

/* Contact Section */
.contact {
  background: var(--color-main);
  color: white;
  position: relative;
}

.contact .section-title,
.contact .section-subtitle {
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.method-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.method-content h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.phone-number {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.method-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.delivery-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 1rem;
}

.delivery-info h4 {
  color: white;
  margin-bottom: 1rem;
}

.delivery-info ul {
  list-style: none;
}

.delivery-info li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

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

/* Contact Form */
.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-weight: 700;
}

.required {
  color: var(--color-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: var(--color-text);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-info h3 {
  color: var(--color-main);
  margin-bottom: 1rem;
}

.footer-info p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-main);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seasonal-content {
    grid-template-columns: 1fr 2fr;
  }

  .seasonal-nav {
    position: sticky;
    top: 2rem;
    align-self: flex-start;
  }

  .seasonal-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .direct-content {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .atmosphere-gallery {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto auto;
  }

  .gallery-main {
    grid-row: 1 / 3;
  }

  .gallery-main .gallery-image {
    height: 400px;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .info-content {
    grid-template-columns: 1fr 1fr;
  }

  .hours-content {
    grid-template-columns: 1fr 1fr;
  }

  .hours-info {
    flex-direction: row;
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

/* PC Styles */
@media (min-width: 1280px) {
  .container {
    padding: 0 60px;
  }

  .section-title {
    font-size: 3rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .commitment-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .seasonal-content {
    grid-template-columns: 1fr 3fr;
  }

  .seasonal-products {
    grid-template-columns: repeat(3, 1fr);
  }

  .direct-content {
    grid-template-columns: 2fr 3fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .atmosphere-gallery {
    grid-template-columns: 2fr 1fr;
  }

  .gallery-main .gallery-image {
    height: 500px;
  }

  .gallery-item .gallery-image {
    height: 120px;
  }

  .contact-content {
    grid-template-columns: 2fr 3fr;
  }
}

/* Hover Effects and Micro Animations */
.btn,
.contact-method,
.product-card,
.review-card,
.commitment-item {
  cursor: pointer;
}

.commitment-item:hover .commitment-icon {
  transform: scale(1.1) rotate(5deg);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .header,
  .hero-buttons,
  .contact-form,
  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}