/* まるもり青果店 スタイル */
:root {
  --color-base: #F8F6F0;      /* 和紙のような温かみのあるクリーム */
  --color-main: #5D4E37;      /* 深い抹茶ブラウン */
  --color-accent: #D2691E;    /* 柿色 */
  --color-text: #2C2C2C;
  --color-white: #FFFFFF;
  --color-light: #FEFCF8;
  --color-shadow: rgba(45, 44, 44, 0.1);

  --font-heading: 'Noto Serif JP', serif;
  --font-body: 'Noto Sans JP', sans-serif;

  --radius: 12px;
  --section-padding: 80px;
}

/* リセット・基本スタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  background-color: var(--color-base);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヒーローセクション */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-base) 0%, var(--color-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 20px 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(93, 78, 55, 0.03) 70%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.store-name {
  color: var(--color-accent);
  display: block;
  font-size: 3rem;
  margin-top: 10px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.opening-hours {
  background: var(--color-white);
  padding: 15px 25px;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 4px 20px var(--color-shadow);
}

.opening-hours strong {
  color: var(--color-main);
  font-size: 1.1rem;
}

.phone-number a {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.phone-number a:hover {
  border-bottom-color: var(--color-accent);
}

.hero-cta {
  display: inline-block;
  background: var(--color-main);
  color: var(--color-white);
  padding: 15px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(93, 78, 55, 0.3);
}

.hero-cta:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(210, 105, 30, 0.4);
}

.hero-image {
  flex: 1;
  max-width: 500px;
  margin-left: 40px;
}

/* 画像プレースホルダー */
.image-placeholder {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
  font-weight: 500;
  text-align: center;
  padding: 40px 20px;
  border: 2px dashed var(--color-main);
  opacity: 0.8;
  aspect-ratio: 4/3;
}

.image-placeholder.round {
  aspect-ratio: 1;
  border-radius: 50%;
}

/* セクション区切り */
.wave-divider {
  position: relative;
  height: 120px;
  overflow: hidden;
  margin: -1px 0;
}

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

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-main) 20%, var(--color-accent) 50%, var(--color-main) 80%, transparent 100%);
  margin: var(--section-padding) 0;
  opacity: 0.3;
}

/* セクション共通スタイル */
section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-main);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
  opacity: 0.8;
}

/* 店舗紹介セクション */
.about-section {
  background: var(--color-white);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding: 30px;
  background: var(--color-base);
  border-radius: var(--radius);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-main);
  font-weight: 500;
}

/* 商品紹介セクション */
.products-section {
  background: var(--color-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--color-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(45, 44, 44, 0.15);
}

.product-card.large {
  grid-column: span 6;
}

.product-card:not(.large):not(.wide) {
  grid-column: span 3;
}

.product-card.wide {
  grid-column: span 12;
  display: flex;
  align-items: center;
  padding: 40px;
  background: var(--color-main);
  color: var(--color-white);
}

.product-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-main);
  margin-bottom: 10px;
}

.product-card.wide .product-info h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* 地域食材のこだわりセクション */
.commitment-section {
  background: var(--color-base);
}

.commitment-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.commitment-points {
  margin: 40px 0;
}

.point-item {
  margin-bottom: 30px;
  padding: 25px;
  background: var(--color-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
}

.point-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-main);
  margin-bottom: 10px;
}

.partner-farms {
  background: var(--color-light);
  padding: 25px;
  border-radius: var(--radius);
  margin-top: 30px;
}

.partner-farms h4 {
  font-family: var(--font-heading);
  color: var(--color-main);
  margin-bottom: 10px;
}

/* お客様の声セクション */
.testimonials-section {
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--color-light);
  padding: 30px;
  border-radius: var(--radius);
  position: relative;
  border-left: 4px solid var(--color-accent);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 3rem;
  color: var(--color-accent);
  opacity: 0.3;
  font-family: var(--font-heading);
}

.testimonial-card p {
  margin-bottom: 20px;
  font-style: italic;
  padding-left: 20px;
}

.customer-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.customer-info strong {
  color: var(--color-main);
}

.customer-info span {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* 店主紹介セクション */
.owner-section {
  background: var(--color-base);
}

.owner-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.owner-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-accent);
  font-weight: 600;
}

.owner-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.owner-text blockquote {
  background: var(--color-white);
  padding: 25px;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-main);
  margin-top: 30px;
  font-style: italic;
  color: var(--color-main);
  position: relative;
}

/* 店舗案内セクション */
.info-section {
  background: var(--color-white);
}

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

.info-item {
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(93, 78, 55, 0.1);
}

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

.info-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-main);
  margin-bottom: 10px;
}

.info-item strong {
  color: var(--color-accent);
  font-size: 1.1rem;
}

.info-item small {
  display: block;
  margin-top: 5px;
  opacity: 0.7;
}

.map-placeholder {
  background: var(--color-base);
  height: 400px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-main);
  border: 2px dashed var(--color-main);
}

/* お問い合わせセクション */
.contact-section {
  background: var(--color-light);
}

.contact-content {
  display: grid;
  gap: 60px;
}

.phone-contact {
  text-align: center;
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px var(--color-shadow);
}

.phone-contact h3 {
  font-family: var(--font-heading);
  color: var(--color-main);
  margin-bottom: 20px;
}

.phone-large {
  margin: 30px 0;
}

.phone-large a {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.phone-large a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.05);
}

.visit-info,
.special-services {
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--radius);
}

.visit-info h3,
.special-services h3 {
  font-family: var(--font-heading);
  color: var(--color-main);
  margin-bottom: 15px;
}

.service-list {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.service-item {
  padding: 20px;
  background: var(--color-base);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
}

.service-item h4 {
  font-family: var(--font-heading);
  color: var(--color-main);
  margin-bottom: 8px;
}

.service-item small {
  opacity: 0.7;
}

/* フッター */
.footer {
  background: var(--color-main);
  color: var(--color-white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.7;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-image {
    margin-left: 0;
    margin-top: 40px;
    max-width: 400px;
  }

  .about-content,
  .commitment-content,
  .owner-content,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    padding: 0 15px;
  }

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

  .store-name {
    font-size: 2.4rem;
  }

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

  .hero-info {
    gap: 10px;
  }

  .phone-number a {
    font-size: 1.3rem;
  }

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

  .product-card.large,
  .product-card:not(.large):not(.wide),
  .product-card.wide {
    grid-column: span 1;
  }

  .product-card.wide {
    flex-direction: column;
    text-align: center;
  }

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

  .phone-large a {
    font-size: 2rem;
    padding: 12px 25px;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .store-name {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .stats {
    padding: 20px;
  }

  .stat-item {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .phone-large a {
    font-size: 1.8rem;
    padding: 10px 20px;
  }
}