/* ===================================================
   Air Fryer Product Page Styles
   Based on SVG design comp analysis
   =================================================== */

/* CSS Variables - Design System */
:root {
  /* Colors */
  --color-primary: #cb634c;
  --color-secondary: #5b544a;
  --color-accent: #352a25;
  --color-bg-light: #f9f9f3;
  --color-bg-dark: #c6beb2;
  --color-white: #ffffff;
  
  /* Typography */
  --font-family: 'Noto Sans JP', sans-serif;
  --font-size-h1: 28px;
  --font-size-h2: 39px;
  --font-size-h3: 28px;
  --font-size-body: 18px;
  --font-size-point: 22px;
  --font-size-recipe: 16px;
  --line-height-body: 1.8;
  --line-height-heading: 1.4;
  
  /* Spacing */
  --space-xs: 10px;
  --space-sm: 20px;
  --space-md: 30px;
  --space-lg: 40px;
  --space-xl: 100px;
  
  /* Layout */
  --container-max-width: 1366px;
  --container-padding: 20px;
  --border-radius: 6px;
  --border-radius-circle: 50%;
}

/* Base Styles */
#pikupot * {
  box-sizing: border-box;
}

#pikupot {
  font-family: var(--font-family);
  line-height: var(--line-height-body);
  color: var(--color-secondary);background-color: var(--color-bg-light);
  
}

#pikupot .inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0;
  background-color: var(--color-bg-light);
}
#pikupot #wrap {}

/* Hero Section */
#pikupot .hero-section {
  width: 100%;
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: var(--space-xl); /*border-bottom: 60px solid #C6BEB2;*/
}

#pikupot #at {  background-color: #C6BEB2; text-align: center; color: #FFF;}
#pikupot #at a { display: block; height: 100%; text-decoration: none; transition: all .4s ease 0s; color: #FFF; font-size: 120%;padding: 2em 2em;}
#pikupot #at:hover { opacity: .5;}


/* Points Section Container */
#pikupot .points-container {
  background-color: var(--color-bg-light);
  padding: 0;
}

/* Point Section Base */
#pikupot .point-section {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xl);
  gap: var(--space-lg);
  position: relative;
}

#pikupot .point-section:nth-child(even) {
  flex-direction: row-reverse;
}

#pikupot .point-section:nth-child(even) .point-content {
  padding-left: 0;
  padding-right: 0;
}

#pikupot .point-section:nth-child(odd) .point-content {
  padding-right: 0;
  padding-left: 0;
}

/* Point Image */
#pikupot .point-image {
  flex: 0 0 468px;
  height: 327px;
  position: relative;
}

#pikupot .point-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

/* Point Content */
#pikupot .point-content {
  flex: 1;
  padding: var(--space-sm);
}

#pikupot .point-label {
  color: var(--color-primary);
  font-size: var(--font-size-point);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

#pikupot .point-title {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-heading);
}

#pikupot .point-description {
  font-size: var(--font-size-body);
  color: var(--color-secondary);
  line-height: var(--line-height-body);
  margin-bottom: var(--space-md);
}

/* Point Circle Badge */
#pikupot .point-circle {
  position: absolute;
  width: 151px;
  height: 151px;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-circle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  z-index: 10;
}

#pikupot .point-section:nth-child(odd) .point-circle {
  left: -75px;
  bottom: -60px;
}

#pikupot .point-section:nth-child(even) .point-circle {
  right: -75px;
  bottom: -60px;
}

/* Recipe Book Section */
#pikupot .recipe-book-section {
  background-color: var(--color-bg-dark);
  padding: var(--space-xl) 0;
  text-align: center; margin-bottom: var(--space-xl); background-image: url("../img/bg2.svg"); background-repeat: no-repeat; background-size: 100% auto;
}

#pikupot .recipe-book-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

#pikupot .recipe-book-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

#pikupot .recipe-book-subtitle {
  color: var(--color-white);
  font-size: var(--font-size-body);
  margin-bottom: var(--space-lg);
}

/* Recipe Grid */
#pikupot .recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 205px);
  gap: 40px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

#pikupot .recipe-item {
  text-align: center;
}

#pikupot .recipe-image {
  width: 205px;
  height: 205px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: var(--space-xs);
}

#pikupot .recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#pikupot .recipe-name {
  font-size: var(--font-size-recipe);
  font-weight: 500;
  color: var(--color-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  #pikupot .inner {
    padding: 0 var(--container-padding);
  }
  
  /* Hero */
  #pikupot .hero-section {
    margin-bottom: var(--space-md); border: none;
  }
  
  /* Points Layout */
  #pikupot .point-section {
    flex-direction: column;
    margin-bottom: var(--space-lg);
  }
  
  #pikupot .point-section:nth-child(even) {
    flex-direction: column;
  }
  
  #pikupot .point-image {
    flex: none;
    width: 100%;
    max-width: 390px;
    height: 272px;
    margin-bottom: var(--space-sm);
    position: relative;
  }
  
  #pikupot .point-content {
    padding: 0;
  }
  
  #pikupot .point-section:nth-child(even) .point-content,
  #pikupot .point-section:nth-child(odd) .point-content {
    padding: 0; width: 100%;
  }
  
  /* Point Circle Mobile */
  #pikupot .point-circle {
    position: absolute;
    width: 110px;
    height: 111px;
    font-size: 14px;
    bottom: -55px;
    right: -10px;
  }
    
    #pikupot .point-section { gap:0;}
    #pikupot .point-label { margin-bottom: .4em;}
  
  #pikupot .point-section:nth-child(odd) .point-circle,
  #pikupot .point-section:nth-child(even) .point-circle {
    position: absolute;
    bottom: -55px;
    right: -10px; left: auto;
  }
  
  /* モバイルでの画像の右下配置を確実にする */
  #pikupot .point-image {
    position: relative;
  }
  
  #pikupot .point-image .point-circle {
    position: absolute;
    bottom: -20px;
    right: -20px;
  }
  
  /* Typography Mobile */
  #pikupot .point-title {
    font-size: 24px;
  }
  
  /* Recipe Grid Mobile */
  #pikupot .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    max-width: 100%;
    padding: 0 var(--space-sm);
  }
  
  #pikupot .recipe-item {
    width: 100%;
  }
  
  #pikupot .recipe-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  
  /* Recipe Book Mobile */
  #pikupot .recipe-book-title {
    font-size: 28px;
  }
}

p.te {
    width: 100%;
    max-width: 900px;
    margin: 1em auto; margin-bottom: 60px;
} 
#zj_ma17-info table {margin-bottom: 1em;}

@media (max-width: 480px) {
  #pikupot .hero-section {
  }
  
  #pikupot .point-title {
    font-size: 20px;
  }
  
  #pikupot .point-description {
    font-size: 16px;
  }
  
  /* レシピグリッドの超小画面対応 */
  #pikupot .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 var(--space-xs);
  }
    
  #pikupot .recipe-book-section { margin-bottom: 100px;}
}